/* ============================================================
   Next Nova — Global Stylesheet
   Design system per Brand Guidelines v1.0
   Fonts: Anton (display, uppercase) + Inter (body/UI)
   60/30/10: dark surfaces / neutrals / Nova Blue action
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Primary blues */
  --nova:        #7DC0FF;   /* signature accent, action + identity */
  --sky:         #9ECBFF;
  --deep:        #2E6FD6;   /* hover / depth tone */

  /* Neutrals */
  --void:        #000000;
  --ink:         #0B0F18;   /* base surface */
  --charcoal:    #11161F;   /* raised surface */
  --slate:       #5A6B82;   /* faint text */
  --mist:        #B7C1D6;   /* body text */
  --line:        #222A38;   /* borders, 20% on dark */
  --line-2:      #33405C;
  --cloud:       #E7ECF2;
  --white:       #F7F9FF;   /* headlines */

  /* Functional (used sparingly, only in meaning) */
  --green:       #34D399;   /* profit, positive ROAS */
  --amber:       #FBBF24;   /* testing, in-flight */
  --red:         #F87171;   /* loss, alerts */
  --violet:      #A78BFA;   /* AI Search / AEO */
  --cyan:        #38BDF8;   /* data, analytics, attribution */

  /* Effects */
  --nova-soft:   rgba(125, 192, 255, .12);
  --nova-glow:   0 0 24px rgba(125, 192, 255, .45);
  --panel-grad:  linear-gradient(180deg, #121a29 0%, #0d1420 100%);

  /* Motion */
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --t-fast:      180ms;
  --t-panel:     220ms;

  /* Layout */
  --wrap:        1200px;
  --radius:      16px;
  --radius-sm:   11px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--mist);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--nova); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--sky); }
ul { list-style: none; }

/* Visible keyboard focus (WCAG 2.4.7 / 2.4.11) */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--nova); outline-offset: 3px; border-radius: 4px;
}
.btn:focus-visible { outline-offset: 2px; }

/* Skip link — hidden until focused */
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--deep); color: #fff; font-weight: 600; font-size: .9rem;
  padding: 10px 18px; border-radius: 0 0 10px 10px; transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, .display, .overline-lg {
  font-family: "Anton", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .005em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }        /* ~Display/H1 */
h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
p { max-width: 68ch; }
strong { color: var(--cloud); font-weight: 600; }

.overline {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--nova);
}
.lead { font-size: 1.18rem; color: var(--mist); }
.muted { color: var(--slate); }
.nova-text { color: var(--nova); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow-row .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--nova); box-shadow: var(--nova-glow); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .98rem;
  border-radius: 999px; padding: 15px 28px; cursor: pointer; border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--deep); color: #fff; box-shadow: 0 0 0 rgba(125,192,255,0); }
.btn-primary:hover { background: #3b7ce8; color: #fff; box-shadow: var(--nova-glow); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--nova); color: var(--white); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 24, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 30px; height: 30px; }
.brand .wordmark {
  font-family: "Anton", sans-serif; font-size: 1.25rem; letter-spacing: .04em;
  color: var(--white); text-transform: uppercase; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--mist); font-size: .95rem; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: .2s var(--ease); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px; min-width: 280px; opacity: 0; visibility: hidden;
  transition: opacity var(--t-panel) var(--ease), transform var(--t-panel) var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a { display: block; padding: 11px 13px; border-radius: 9px; color: var(--mist); font-size: .92rem; }
.dropdown a:hover { background: var(--nova-soft); color: var(--white); }
.dropdown a b { display: block; color: var(--white); font-weight: 600; font-size: .95rem; }
.dropdown a span { font-size: .82rem; color: var(--slate); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .sub { font-size: 1.18rem; color: var(--mist); max-width: 40ch; margin-bottom: 32px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--slate); font-size: .85rem; flex-wrap: wrap; }
.hero-trust .regions { display: flex; gap: 8px; }
.hero-trust .regions span { border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px; color: var(--mist); font-size: .74rem; font-weight: 500; }

/* Nova streak — the one signature flourish, hero only */
.nova-streak {
  position: absolute; top: -10%; right: -8%; width: 620px; height: 620px; pointer-events: none;
  background: radial-gradient(circle at 60% 40%, rgba(125,192,255,.14), rgba(46,111,214,.05) 42%, transparent 68%);
  filter: blur(6px);
}

/* Hero dashboard mock */
.hero-panel {
  position: relative; background: var(--panel-grad); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.hero-panel .panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-panel .panel-head .dot-row { display: flex; gap: 6px; }
.hero-panel .panel-head .dot-row i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.hero-panel .tag { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.metric {
  background: rgba(11,15,24,.6); border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px;
}
.metric .k { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.metric .v { font-family: "Anton", sans-serif; font-size: 1.9rem; color: var(--white); margin-top: 4px; line-height: 1; }
.metric .v small { font-size: .8rem; font-weight: 700; margin-left: 6px; font-family: "Inter", sans-serif; }
.up { color: var(--green); } .down { color: var(--green); }
.spark { height: 54px; display: flex; align-items: flex-end; gap: 5px; margin-top: 6px; }
.spark i { flex: 1; background: linear-gradient(180deg, var(--nova), var(--deep)); border-radius: 3px 3px 0 0; opacity: .85; }

/* ---------- Stat bar ---------- */
.statbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--charcoal); }
.statbar-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 0; }
.stat .n { font-family: "Anton", sans-serif; font-size: 2.1rem; color: var(--white); line-height: 1; }
.stat .l { color: var(--slate); font-size: .85rem; margin-top: 8px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--panel-grad); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform var(--t-panel) var(--ease), border-color var(--t-panel) var(--ease), box-shadow var(--t-panel) var(--ease);
}
.card:hover { transform: translateY(-1px); border-color: var(--line-2); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.card .icon {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: var(--nova-soft); border: 1px solid rgba(125,192,255,.28); color: var(--nova); margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--mist); font-size: .98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; font-size: .92rem; }
.card-num { font-family: "Anton", sans-serif; font-size: 2rem; color: var(--nova); line-height: 1; margin-bottom: 12px; }

.service-card { display: flex; flex-direction: column; }
.service-card ul { margin: 16px 0 0; }
.service-card ul li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--mist); font-size: .95rem; }
.service-card ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--nova); }

/* ---------- Growth Engine steps ---------- */
.engine { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.engine .step { background: var(--panel-grad); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.engine .step .s-num { font-family: "Anton", sans-serif; color: var(--nova); font-size: 1.5rem; }
.engine .step h3 { font-size: 1.05rem; margin: 10px 0 8px; }
.engine .step p { font-size: .88rem; color: var(--mist); }

/* ---------- Proof / case studies ---------- */
.case {
  background: var(--panel-grad); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.case .case-tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.case .case-headline { font-family: "Anton", sans-serif; font-size: 1.5rem; color: var(--white); text-transform: uppercase; line-height: 1.1; }
.case .metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.case .metrics .m .mv { font-family: "Anton", sans-serif; font-size: 1.7rem; }
.case .metrics .m .mv.pos { color: var(--green); }
.case .metrics .m .ml { font-size: .72rem; color: var(--slate); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }
.case blockquote { color: var(--cloud); font-size: 1rem; border-left: 2px solid var(--nova); padding-left: 16px; font-style: normal; }
.case cite { display: block; color: var(--slate); font-size: .82rem; font-style: normal; margin-top: 8px; }

/* ---------- Strategist module ---------- */
.strategist { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: center; }
.strategist .photo {
  aspect-ratio: 1/1; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(160deg, #182234, #0d1420); display: grid; place-items: center; position: relative; overflow: hidden;
}
.strategist .photo .mono { width: 96px; height: 96px; opacity: .5; }
.strategist .photo .ph-note { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: .68rem; color: var(--slate); }
.credential-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.credential { border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; background: rgba(11,15,24,.5); }
.credential .cv { font-family: "Anton", sans-serif; color: var(--white); font-size: 1.35rem; line-height: 1; }
.credential .cl { font-size: .74rem; color: var(--slate); margin-top: 5px; }

/* ---------- Process ---------- */
.steps-list { counter-reset: step; display: grid; gap: 4px; }
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.step-row:last-child { border-bottom: 0; }
.step-row .sr-num { font-family: "Anton", sans-serif; font-size: 1.8rem; color: var(--nova); }
.step-row h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-row p { color: var(--mist); font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; margin-bottom: 12px; background: var(--charcoal); transition: border-color var(--t-fast) var(--ease); }
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; color: var(--white); font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform var(--t-panel) var(--ease); color: var(--nova); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 0 20px; color: var(--mist); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-panel {
  background: var(--panel-grad); border: 1px solid var(--line-2); border-radius: 22px;
  padding: 64px; text-align: center; position: relative;
}
.cta-panel h2 { margin-bottom: 18px; }
.cta-panel .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.cta-panel .fine { color: var(--slate); font-size: .82rem; margin-top: 22px; }

/* ---------- Forms ---------- */
.form-card { background: var(--panel-grad); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--cloud); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(11,15,24,.7); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 14px; color: var(--white); font-family: inherit; font-size: .96rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--nova); box-shadow: 0 0 0 3px var(--nova-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--slate); margin-top: 14px; }
.form-status { margin-top: 16px; font-size: .92rem; }
.field .field-error { display: none; color: var(--red); font-size: .8rem; margin-top: 6px; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Legal / long-form prose pages */
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--mist); font-size: .98rem; }
.prose ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.prose ul li { margin-bottom: 8px; }

/* ---------- Feature list / two-col ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--mist); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--nova-soft); border: 1px solid rgba(125,192,255,.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237DC0FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.checklist li b { color: var(--white); }

/* ---------- Logo cloud (placeholder-honest) ---------- */
.logo-cloud { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.logo-chip {
  border: 1px dashed var(--line-2); border-radius: 10px; padding: 12px 22px; color: var(--slate);
  font-size: .8rem; letter-spacing: .04em;
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 72px 0 40px; position: relative; }
.page-hero .breadcrumbs { font-size: .8rem; color: var(--slate); margin-bottom: 20px; }
.page-hero .breadcrumbs a { color: var(--mist); }
.page-hero h1 { margin-bottom: 18px; max-width: 16ch; }
.page-hero .sub { max-width: 60ch; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--void); padding: 64px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { margin-bottom: 16px; }
.footer p { color: var(--slate); font-size: .92rem; max-width: 34ch; }
.footer h4 { font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: var(--slate); font-weight: 600; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--mist); font-size: .92rem; }
.footer ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .82rem; color: var(--slate); }
.footer-bottom .regions { display: flex; gap: 8px; }
.footer-bottom .regions span { font-size: .74rem; color: var(--slate); }

/* ---------- Consent banner ---------- */
.consent {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 9999; max-width: 720px; margin: 0 auto;
  background: var(--charcoal); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 18px 20px; display: none; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.consent.show { display: flex; }
.consent p { font-size: .85rem; color: var(--mist); max-width: 42ch; margin: 0; }
.consent .consent-actions { display: flex; gap: 10px; }
.consent .btn { padding: 10px 20px; font-size: .88rem; }

/* ---------- Utilities ---------- */
.badge { display: inline-flex; align-items: center; gap: 7px; background: var(--nova-soft); border: 1px solid rgba(125,192,255,.32); color: var(--sky); padding: 6px 13px; border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 520ms var(--ease), transform 520ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .strategist { grid-template-columns: 1fr; }
  .strategist .photo { max-width: 260px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .engine { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--charcoal); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav.open .nav-links a { padding: 14px 28px; width: 100%; }
  .nav.open .has-dropdown .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; background: transparent; min-width: 0; padding: 0 28px 8px; }
  .section { padding: 68px 0; }
  .statbar-in { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cta-panel { padding: 40px 24px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .grid-2, .grid-3, .grid-4, .engine { grid-template-columns: 1fr; }
  .case .metrics { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
}

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