:root {
  --ink: #0a1220;
  --ink-2: #14233a;
  --navy: #07111f;
  --navy-soft: #0d1b2e;
  --paper: #ffffff;
  --canvas: #f4f7fb;
  --muted: #66758a;
  --line: #dfe6ef;
  --blue: #4f7cff;
  --blue-dark: #315be8;
  --mint: #2de2b6;
  --mint-dark: #0bad82;
  --sky: #7fc8ff;
  --warning: #ffd166;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(8, 23, 45, .08);
  --shadow: 0 24px 70px rgba(8, 23, 45, .13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
}
.site-header.scrolled,
.site-header.solid {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(223, 230, 239, .9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(8, 23, 45, .05);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -.035em;
  font-size: 1.08rem;
  white-space: nowrap;
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #06101d;
  background: linear-gradient(135deg, var(--mint), #8af1dc 45%, var(--sky));
  box-shadow: 0 10px 28px rgba(45, 226, 182, .26);
  font-size: .94rem;
  letter-spacing: -.06em;
}
.logo-copy small {
  display: block;
  margin-top: -4px;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .62;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .93rem;
  font-weight: 680;
}
.nav-links > a:not(.nav-cta) { opacity: .76; transition: opacity .2s ease, color .2s ease; }
.nav-links > a:hover:not(.nav-cta), .nav-links > a.active { opacity: 1; color: var(--mint); }
.site-header.scrolled .nav-links > a:hover:not(.nav-cta),
.site-header.scrolled .nav-links > a.active,
.site-header.solid .nav-links > a:hover:not(.nav-cta),
.site-header.solid .nav-links > a.active { color: var(--blue-dark); }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: #07111f;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
.site-header.scrolled .nav-cta,
.site-header.solid .nav-cta { color: #fff; background: var(--ink); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  background: rgba(255,255,255,.12);
  color: currentColor;
  cursor: pointer;
}
.site-header.scrolled .menu-button,
.site-header.solid .menu-button { background: var(--canvas); }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 99px; }

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(79, 124, 255, .44), transparent 27%),
    radial-gradient(circle at 74% 78%, rgba(45, 226, 182, .17), transparent 31%),
    linear-gradient(135deg, #06101d 0%, #0a1930 48%, #10254a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: 190px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: 76px;
  padding: 148px 0 96px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #a9b9d2;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--mint); border-radius: 99px; }
.hero h1, .page-hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(3.4rem, 6.3vw, 6.25rem);
  line-height: .96;
  letter-spacing: -.065em;
  max-width: 780px;
}
.hero h1 .accent {
  color: transparent;
  background: linear-gradient(90deg, #fff, #8fd5ff 42%, #70efcf 82%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #b9c6d8;
  font-size: 1.16rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #06101d;
  background: linear-gradient(135deg, var(--mint), #a0f6e3);
  box-shadow: 0 16px 36px rgba(45, 226, 182, .22);
}
.button-ghost { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.button-dark { color: #fff; background: var(--ink); box-shadow: 0 16px 34px rgba(10,18,32,.16); }
.button-outline { color: var(--ink); border-color: var(--line); background: #fff; }
.button svg { width: 18px; height: 18px; }
.hero-proof { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 38px; color: #91a4be; font-size: .83rem; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { width: 16px; height: 16px; color: var(--mint); }

.dashboard-wrap { position: relative; perspective: 1200px; }
.dashboard-glow {
  position: absolute;
  inset: 13% 2% -8% 10%;
  filter: blur(55px);
  background: linear-gradient(135deg, rgba(79,124,255,.48), rgba(45,226,182,.26));
  border-radius: 50%;
}
.dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(7, 17, 31, .78);
  box-shadow: 0 42px 110px rgba(0,0,0,.42);
  backdrop-filter: blur(20px);
  transform: rotateY(-5deg) rotateX(2deg);
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.035);
}
.dots { display: flex; gap: 6px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); }
.window-title { color: #8293ad; font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.dashboard-body { padding: 20px; }
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.dash-label { color: #7f91ac; font-size: .69rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.dash-title { margin: 4px 0 0; font-size: 1.15rem; letter-spacing: -.025em; }
.score {
  min-width: 82px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid rgba(45,226,182,.25);
  border-radius: 13px;
  background: rgba(45,226,182,.09);
}
.score b { display: block; color: var(--mint); font-size: 1.2rem; }
.score span { color: #8ba0bd; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.chart-card {
  position: relative;
  margin-top: 18px;
  padding: 17px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}
.chart-stats { display: flex; gap: 24px; margin-bottom: 8px; }
.chart-stats span { display: block; color: #7f91ac; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.chart-stats strong { font-size: 1.05rem; }
.chart { width: 100%; height: 126px; }
.keyword-list { display: grid; gap: 9px; margin-top: 13px; }
.keyword-row {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) .55fr .55fr;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  color: #c3cede;
  background: rgba(255,255,255,.04);
  font-size: .73rem;
}
.keyword-row.head { color: #71839e; background: transparent; text-transform: uppercase; letter-spacing: .08em; font-size: .58rem; font-weight: 800; }
.keyword-row .good { color: var(--mint); font-weight: 800; }
.floating-card {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 180px;
  padding: 16px;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.floating-card .fc-top { display: flex; align-items: center; gap: 9px; }
.floating-card .fc-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--blue); }
.floating-card strong { display: block; font-size: .82rem; }
.floating-card small { color: var(--muted); font-size: .68rem; }
.floating-card .bar { height: 6px; margin-top: 13px; overflow: hidden; border-radius: 99px; background: #e9eef6; }
.floating-card .bar i { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--mint)); }
@keyframes float { 50% { transform: translateY(-8px); } }

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -32px;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: 13px; padding: 21px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--blue-dark); background: #edf2ff; }
.trust-icon svg { width: 19px; height: 19px; }
.trust-item strong { display: block; font-size: .86rem; }
.trust-item small { display: block; color: var(--muted); font-size: .72rem; }

.section { padding: 104px 0; }
.section-white { background: #fff; }
.section-dark { color: #fff; background: var(--navy); }
.section-head { max-width: 740px; margin-bottom: 46px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 99px; background: currentColor; }
.section-dark .eyebrow { color: var(--mint); }
h2 {
  margin: 15px 0 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
h3 { margin: 0; font-size: 1.17rem; letter-spacing: -.025em; }
p { margin-top: 0; }
.lead-copy { color: var(--muted); font-size: 1.08rem; max-width: 680px; }
.section-dark .lead-copy { color: #9caec5; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(8,23,45,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: #cbd7ff; box-shadow: 0 24px 55px rgba(8,23,45,.11); }
.service-number { position: absolute; right: 22px; top: 16px; color: #edf1f7; font-size: 4.3rem; line-height: 1; font-weight: 900; letter-spacing: -.09em; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 52px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--blue), #75a0ff); box-shadow: 0 14px 30px rgba(79,124,255,.23); }
.service-card:nth-child(2) .service-icon { color: #06101d; background: linear-gradient(135deg, var(--mint), #92f1dc); box-shadow: 0 14px 30px rgba(45,226,182,.22); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #7b61ff, #bf7dff); box-shadow: 0 14px 30px rgba(123,97,255,.22); }
.service-icon svg { width: 24px; height: 24px; }
.service-card p { margin: 11px 0 0; color: var(--muted); font-size: .94rem; }
.service-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; color: var(--blue-dark); font-size: .82rem; font-weight: 850; }

.process-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: center; }
.steps { display: grid; gap: 10px; margin-top: 30px; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.1); }
.step:first-child { border-top: 0; }
.step b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--mint); background: rgba(45,226,182,.1); font-size: .78rem; }
.step h3 { font-size: 1rem; }
.step p { margin: 4px 0 0; color: #8fa3bd; font-size: .88rem; }
.insight-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
}
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 22px; }
.panel-head small { color: #7e91aa; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: #9ff5df; background: rgba(45,226,182,.1); font-size: .65rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(45,226,182,.1); }
.opportunity-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.map-card, .mini-card { border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(0,0,0,.13); }
.map-card { min-height: 280px; position: relative; overflow: hidden; padding: 18px; }
.map-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 34px 34px; }
.map-route { position: absolute; inset: 32px 22px; }
.map-card .map-label { position: relative; z-index: 2; color: #7f91aa; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.pin { position: absolute; z-index: 3; width: 18px; height: 18px; border: 4px solid var(--navy); border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(45,226,182,.14); }
.pin.one { left: 22%; top: 40%; }
.pin.two { left: 62%; top: 24%; background: var(--blue); box-shadow: 0 0 0 6px rgba(79,124,255,.15); }
.pin.three { left: 72%; top: 67%; background: #9f7cff; box-shadow: 0 0 0 6px rgba(159,124,255,.15); }
.side-stack { display: grid; gap: 12px; }
.mini-card { padding: 17px; }
.mini-card span { color: #7d90aa; font-size: .62rem; text-transform: uppercase; letter-spacing: .09em; }
.mini-card strong { display: block; margin-top: 5px; font-size: 1.35rem; }
.mini-card .trend { color: var(--mint); font-size: .7rem; font-weight: 800; }

.audience-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 66px; align-items: center; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 11px; }
.tag { padding: 13px 17px; border: 1px solid var(--line); border-radius: 999px; color: #354359; background: #fff; box-shadow: 0 8px 24px rgba(8,23,45,.045); font-size: .84rem; font-weight: 720; }
.tag.featured { color: #07111f; border-color: transparent; background: linear-gradient(135deg, #9af3df, #b8dcff); }

.cta-block {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #0a1930, #163970 65%, #105f61);
  box-shadow: var(--shadow);
}
.cta-block::after { content: ""; position: absolute; width: 320px; height: 320px; right: -80px; top: -150px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02); }
.cta-block h2 { position: relative; z-index: 1; max-width: 760px; font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.cta-block p { position: relative; z-index: 1; max-width: 660px; color: #bbcadc; }
.cta-block .hero-actions { position: relative; z-index: 1; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 88px;
  color: #fff;
  background: radial-gradient(circle at 76% 30%, rgba(79,124,255,.35), transparent 25%), linear-gradient(135deg, #06101d, #0e2448);
}
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom, #000, transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.6rem); }
.page-hero p { max-width: 720px; color: #b7c5d8; font-size: 1.08rem; }
.page-kicker { color: var(--mint); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 38px rgba(8,23,45,.05); }
.detail-card .service-icon { margin-bottom: 25px; }
.detail-card h3 { font-size: 1.35rem; }
.detail-card p, .detail-card li { color: var(--muted); }
.detail-card ul { padding-left: 20px; margin-bottom: 0; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 27px; border-radius: 20px; color: #fff; background: var(--navy-soft); border: 1px solid rgba(255,255,255,.08); }
.value-card b { display: inline-grid; place-items: center; width: 37px; height: 37px; margin-bottom: 28px; border-radius: 11px; color: #07111f; background: var(--mint); }
.value-card p { margin: 9px 0 0; color: #96a8be; }

.sample-wrap { display: grid; gap: 24px; }
.sample-banner { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 25px; border: 1px solid #d4dded; border-radius: 18px; background: #eef4ff; }
.sample-banner strong { font-size: 1rem; }
.sample-banner span { color: var(--muted); font-size: .84rem; }
.sample-badge { flex: 0 0 auto; padding: 8px 11px; border-radius: 999px; color: #2451c4; background: #dbe6ff; font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-board { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.portfolio-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.portfolio-top small { color: var(--muted); }
.portfolio-body { display: grid; grid-template-columns: .7fr 1.3fr; }
.portfolio-sidebar { padding: 24px; border-right: 1px solid var(--line); background: #f8faff; }
.portfolio-sidebar dl { display: grid; gap: 18px; margin: 0; }
.portfolio-sidebar dt { color: var(--muted); font-size: .66rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.portfolio-sidebar dd { margin: 3px 0 0; font-weight: 750; }
.portfolio-main { padding: 24px; }
.data-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.data-table th { padding: 12px 10px; color: var(--muted); border-bottom: 1px solid var(--line); text-align: left; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.data-table td { padding: 15px 10px; border-bottom: 1px solid #edf1f6; }
.data-table tr:last-child td { border-bottom: 0; }
.status { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px; color: var(--mint-dark); background: #ddf8f0; font-size: .65rem; font-weight: 850; }

.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; }
.contact-item .icon-box { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--blue-dark); background: #edf2ff; }
.contact-item strong { display: block; font-size: .84rem; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .88rem; overflow-wrap: anywhere; }
.email-panel { min-height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 42px; border-radius: 23px; color: #fff; background: linear-gradient(145deg, #07111f, #13396c); box-shadow: var(--shadow); }
.email-panel p { color: #aebfd3; }
.email-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: 12px; color: var(--mint); font-weight: 850; font-size: 1.05rem; overflow-wrap: anywhere; }

.legal { padding: 72px 0 110px; }
.legal article { padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.legal h2 { margin-top: 38px; font-size: 1.65rem; letter-spacing: -.035em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: #4f5d70; }

.site-footer { padding: 58px 0 28px; color: #c2ccda; background: #050d18; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; gap: 70px; padding-bottom: 38px; }
.site-footer .logo { color: #fff; }
.footer-copy { max-width: 430px; margin-top: 17px; color: #8292a7; font-size: .88rem; }
.footer-title { margin-bottom: 14px; color: #fff; font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: #8c9bb0; font-size: .85rem; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: #67778d; font-size: .76rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; padding-bottom: 110px; }
  .hero-copy { max-width: 760px; }
  .dashboard-wrap { width: min(690px, 94%); margin: 0 auto; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .process-grid, .audience-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 70px; }
  .nav-links {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links > a { padding: 10px; }
  .nav-cta { color: #fff !important; background: var(--ink) !important; text-align: center; }
  .menu-button { display: block; }
  .hero { min-height: auto; }
  .hero-grid { padding: 118px 0 92px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-lead { font-size: 1rem; }
  .dashboard { transform: none; }
  .floating-card { display: none; }
  .keyword-row { grid-template-columns: minmax(0,1.4fr) .6fr; }
  .keyword-row > :last-child { display: none; }
  .hero-proof { gap: 12px; }
  .trust-strip { margin-top: -25px; }
  .trust-inner, .service-grid, .detail-grid, .values-grid, .portfolio-body { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-card:last-child { grid-column: auto; }
  .section { padding: 78px 0; }
  .section-head { margin-bottom: 34px; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 230px; }
  .side-stack { grid-template-columns: 1fr 1fr; }
  .cta-block { padding: 34px 25px; }
  .page-hero { padding: 122px 0 68px; }
  .portfolio-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .portfolio-main { overflow-x: auto; }
  .data-table { min-width: 620px; }
  .email-panel { padding: 32px 25px; }
  .legal article { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
