/* =============================================================
   SpyAdsNow — Front Page
   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Layout & utilities
   5.  Buttons
   6.  Icons
   7.  Announcement bar
   8.  Header / navigation
   9.  Hero
   10. Product mockup
   11. Research loop strip
   12. Section shell + headings
   13. Problem
   14. Features (navy)
   15. Explainability
   16. How it works
   17. Comparison
   18. Personas
   19. FAQ
   20. Final CTA
   21. Footer
   22. Reveal animation
   23. Responsive
   24. Reduced motion / print
   ============================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --blue-primary: #0866FF;
  --blue-hover:   #0757D8;
  --blue-light:   #EAF3FF;
  --blue-pale:    #F5F9FF;
  --navy:         #081A33;
  --navy-deep:    #07182F;
  --navy-surface: #0D2749;
  --navy-line:    #1C3D63;

  --text-primary:   #0B1729;
  --text-secondary: #627187;
  --text-muted:     #8794A4;

  --surface:      #FFFFFF;
  --surface-soft: #F7FAFE;
  --border:       #E3EAF3;

  --success: #16A36A;
  --warning: #F59E0B;
  --danger:  #E74C5B;

  --font-display: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body:    "DM Sans", "Segoe UI", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(80px, 9vw, 120px);

  --radius-btn: 10px;
  --radius-card: 16px;
  --radius-feature: 20px;
  --radius-lg: 26px;

  --shadow-xs: 0 1px 2px rgba(11, 23, 41, .05);
  --shadow-sm: 0 2px 6px rgba(36, 78, 133, .07);
  --shadow-md: 0 10px 30px -12px rgba(36, 78, 133, .18);
  --shadow-lg: 0 34px 80px -28px rgba(36, 78, 133, .34);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* clip (not hidden): stops sideways overflow WITHOUT making <body> a scroll
     container — a scroll container here makes position:sticky stick to the body
     scrollport and leave blank/stale strips while the page scrolls */
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}

img, svg { max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(8, 102, 255, .16); }

:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--blue-primary); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.svg-sprite { position: absolute; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: inherit;          /* follows section context: dark on light, white on navy */
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.07;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.038em;
}

h3 { font-size: 1.3125rem; letter-spacing: -0.025em; }
h4 { font-size: 1rem; letter-spacing: -0.02em; }

p { margin: 0; }

/* ---------- 4. Layout & utilities ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--pale { background: var(--surface-soft); }
.section--navy { background: var(--navy-deep); color: #fff; }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-primary);
}
.kicker--light { color: #7FB6FF; }

.section__head {
  max-width: 780px;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.section__head .kicker { margin-bottom: 16px; }
.section__head h2 + p {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.section--navy .section__head h2 + p { color: #A9BED9; }

/* accent word in section headings — always blue, never italic */
h2 em { font-style: normal; color: var(--blue-primary); }
.section--navy h2 em { color: #6EAEFF; }

.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
}
.section__head--split .kicker { margin-bottom: 14px; }
.section__head--split p {
  color: #A9BED9;
  font-size: 1rem;
  line-height: 1.75;
}

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-py: 13px;
  --btn-px: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn--sm { --btn-py: 10px; --btn-px: 15px; font-size: 13px; border-radius: 9px; }
.btn--lg { --btn-py: 16px; --btn-px: 26px; font-size: 15.5px; }

.btn--primary {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(8, 102, 255, .24), 0 12px 26px -10px rgba(8, 102, 255, .55);
}
.btn--primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 1px 2px rgba(8, 102, 255, .24), 0 18px 34px -12px rgba(8, 102, 255, .6); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { border-color: #C6D6EC; transform: translateY(-1px); }
.btn--ghost .ico { width: 17px; height: 17px; color: var(--blue-primary); }

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: #0B2240; transform: translateY(-1px); }

/* ---------- 6. Icons ---------- */
.ico {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 7. Announcement bar ---------- */
.announce {
  background: var(--navy-deep);
  color: #CFE0F5;
  font-size: 13px;
}
.announce__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 7px;
  text-align: center;
}
.announce a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 1px;
}
.announce a:hover { border-color: #fff; }

/* ---------- 8. Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  /* own compositing layer — stops Chromium leaving blank/stale strips
     when a backdrop-filtered sticky element scrolls */
  transform: translateZ(0);
  will-change: transform;
}

/* Solid fallback where backdrop-filter is unsupported or disabled */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: rgba(255, 255, 255, .97); }
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(36, 78, 133, .35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(150deg, #1E7BFF, #0757D8);
  box-shadow: 0 8px 20px -6px rgba(8, 102, 255, .55);
}
.brand__mark svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 2; }
.brand__dot {
  position: absolute;
  top: -3px; right: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #38E39A;
  border: 2px solid #fff;
}
.site-footer .brand__dot { border-color: var(--navy-deep); }

.site-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.site-nav a { position: relative; padding-block: 6px; transition: color .15s var(--ease); }
.site-nav a:hover { color: var(--text-primary); }
.site-nav a[aria-current="true"] { color: var(--blue-primary); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.link-muted { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.link-muted:hover { color: var(--text-primary); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.lang-toggle .ico { width: 15px; height: 15px; color: var(--text-muted); }
.lang-toggle__sep { opacity: .5; }
.lang-toggle [data-lang-choice].is-active { color: var(--blue-primary); }

.nav-toggle { display: none; padding: 6px; border-radius: 8px; color: var(--text-primary); }
.nav-toggle .ico { width: 24px; height: 24px; }

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px var(--gutter) 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 12px 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border: 0; margin-top: 10px; }
.mobile-nav .btn { justify-content: center; }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(60px, 8vw, 96px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F8FF 62%, #FFFFFF 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  /* isolate decorative layers so scrolling the page above them
     doesn't trigger blank-repaint of the whole hero */
  transform: translateZ(0);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(8, 102, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 102, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
}
.hero__glow {
  position: absolute;
  left: 50%; top: -320px;
  width: min(960px, 120vw); height: 560px;
  transform: translateX(-50%);
  /* pre-softened gradient — no filter:blur(), which forces a large,
     repaint-heavy layer that some renderers drop on scroll */
  background: radial-gradient(closest-side,
    rgba(158, 202, 255, .55) 0%,
    rgba(158, 202, 255, .28) 45%,
    rgba(158, 202, 255, 0) 78%);
}
.hero__inner { position: relative; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid #D3E4FB;
  background: rgba(255, 255, 255, .7);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A6BC0;
}
.eyebrow__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 106, .18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 106, .28); }
  50% { box-shadow: 0 0 0 5px rgba(22, 163, 106, .06); }
}
.tag-new {
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--blue-primary);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.hero__title {
  margin: 22px auto 18px;
  max-width: 20ch;
  text-wrap: balance;          /* even line lengths regardless of language */
}
.hero__title .accent { color: var(--blue-primary); }

/* Indonesian copy runs ~60% longer per line — ease the scale so it stays
   proportional instead of overpowering the hero */
:root[data-lang="id"] .hero__title {
  font-size: clamp(30px, 4.4vw, 54px);
  max-width: 24ch;
}

.hero__lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  text-wrap: pretty;          /* no stranded last-line words */
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .ico { width: 16px; height: 16px; color: var(--success); }

.hero__preview {
  position: relative;
  margin-top: clamp(44px, 6vw, 72px);
}

/* ---------- 10. Product mockup ---------- */
.mock {
  max-width: 1080px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid #D2DEEE;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.mock__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 42px;
  padding-inline: 14px;
  background: #F4F7FB;
  border-bottom: 1px solid var(--border);
}
.mock__dots { display: flex; gap: 6px; }
.mock__dots i { width: 9px; height: 9px; border-radius: 50%; background: #FF7A7A; }
.mock__dots i:nth-child(2) { background: #FFCB57; }
.mock__dots i:nth-child(3) { background: #58D488; }
.mock__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 11px;
  color: var(--text-muted);
}
.mock__url .ico { width: 12px; height: 12px; }
.mock__menu { color: var(--text-muted); letter-spacing: 2px; font-size: 12px; }

.mock__body {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 500px;
}
.mock__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  background: var(--navy-deep);
}
.mock__rail-logo {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--blue-primary);
  color: #fff; font-weight: 800; font-size: 13px;
  margin-bottom: 6px;
}
.mock__rail-item {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  color: #6E8DB4;
}
.mock__rail-item .ico { width: 17px; height: 17px; }
.mock__rail-item.is-active { background: #16386220; color: #7FB6FF; box-shadow: inset 0 0 0 1px #204a7d; }
.mock__rail-gap { flex: 1; }

.mock__main { padding: 22px; background: #FBFCFF; }
.mock__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.mock__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mock__query {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 3px 0 2px;
}
.mock__meta { font-size: 11px; color: var(--text-muted); }
.mock__head-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.mock__fresh { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; color: var(--success); }
.mock__fresh i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.mock__head-actions button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font-size: 11px;
  color: var(--text-secondary);
}
.mock__head-actions button .ico { width: 12px; height: 12px; }

.mock__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.kpi {
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
}
.kpi--accent { border-color: #BCD8FF; background: var(--blue-pale); }
.kpi__label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kpi__value {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  display: inline-block;
  margin-top: 5px;
}
.kpi__delta { font-style: normal; font-size: 10px; margin-left: 6px; color: var(--success); }
.kpi__delta.up::before { content: "▲ "; font-size: 7px; vertical-align: middle; }

.mock__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 12px;
}
.panel {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}
.panel__head b { font-family: var(--font-display); }
.panel__head span { font-size: 10px; font-weight: 500; color: var(--text-muted); }

.panel__momentum { display: flex; align-items: baseline; gap: 9px; margin-top: 14px; }
.panel__delta { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--blue-primary); }
.panel__momentum small { font-size: 10px; color: var(--text-muted); }

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.chip--hot { background: #FFF1D6; color: #A96B00; }
.chip--ok { background: #E7F7EF; color: #0B8C5C; }

.spark { width: 100%; height: 132px; margin-top: 6px; display: block; }
.spark__area { fill: url(#sparkFill); }
.spark__line { fill: none; stroke: var(--blue-primary); stroke-width: 3; stroke-linecap: round; }

.panel__axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
}

.panel--early { display: flex; flex-direction: column; }
.score-pill {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-hover);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
}
.early { display: grid; grid-template-columns: 68px 1fr; gap: 11px; margin-top: 14px; }
.early__creative {
  height: 72px;
  border-radius: 9px;
  background: linear-gradient(150deg, #0B1C32, #2B5F9C);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.early__creative span { font-size: 6px; letter-spacing: 0.14em; text-align: center; }
.early__creative b { font-size: 22px; color: #A9D2FF; transform: rotate(-12deg); }
.early__body strong { display: block; font-size: 12px; }
.early__body small { display: block; font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.early__body p { font-size: 10px; margin-top: 14px; }
.early__body p b { color: var(--success); }
.early__tags { display: flex; flex-wrap: wrap; gap: 4px; margin: 11px 0; }
.early__tags span {
  padding: 3px 7px;
  border-radius: 999px;
  background: #EEF3F9;
  font-size: 9px;
  color: var(--text-secondary);
}
.early__link {
  margin-top: auto;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue-hover);
  font-size: 10px;
  font-weight: 700;
}

.mock__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mock__bottom > div {
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
}
.mock__bottom span {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mock__bottom strong { font-size: 11px; margin-top: 3px; display: inline-block; }
.mock__bottom em { font-style: normal; color: var(--success); font-size: 10px; margin-left: 3px; }

/* Floating signal cards */
.floater {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
}
.floater b { display: block; }
.floater small { display: block; font-size: 10px; color: var(--text-muted); }
.floater__icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue-primary);
}
.floater__icon .ico { width: 16px; height: 16px; }
.floater--a { left: -18px; bottom: 84px; animation: floaty 6s ease-in-out infinite; will-change: transform; }
.floater--b { right: -14px; top: 128px; animation: floaty 6s ease-in-out infinite reverse; will-change: transform; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- 11. Research loop strip ---------- */
.loop { border-block: 1px solid var(--border); background: var(--surface); }
.loop__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 30px;
}
.loop__step { text-align: center; flex: 1; }
.loop__step b {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue-hover);
}
.loop__step span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: var(--text-secondary);
}
.loop__arrow { width: 18px; height: 18px; color: #B7C8DE; flex: none; }

/* ---------- 12. Section shell / cards ---------- */
.card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D3E0F0; }
.card__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: #EDF2F9;
}
.card__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-primary);
}
.card__icon .ico { width: 22px; height: 22px; }
.card h3 { margin: 24px 0 9px; }
.card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ---------- 13. Problem ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.problem__grid .card { min-height: 236px; }

/* ---------- 14. Features (navy) ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(36px, 5vw, 52px);
}
.feat {
  padding: 28px;
  background: var(--navy-surface);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-feature);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.feat:hover { transform: translateY(-3px); border-color: #2C5386; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); }
.feat--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}
.label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7FB6FF;
}
.feat h3 { color: #fff; font-size: 1.5rem; margin: 12px 0 10px; }
.feat p { color: #A9BED9; font-size: 14px; line-height: 1.7; }
.feat__link {
  display: inline-block;
  margin-top: 16px;
  color: #7FB6FF;
  font-weight: 700;
  font-size: 13px;
}
.feat__link:hover { color: #A9CEFF; }

.feat__demo { background: var(--surface); border-radius: 14px; padding: 18px; color: var(--text-primary); }
.demo-search {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  color: var(--text-muted);
}
.demo-search .ico { width: 15px; height: 15px; }
.demo-search b { color: var(--text-primary); }
.demo-search kbd {
  margin-left: auto;
  font-size: 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 5px;
}
.demo-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.demo-kpis span { background: var(--surface-soft); border-radius: 9px; padding: 10px; }
.demo-kpis small { display: block; font-size: 9px; color: var(--text-muted); }
.demo-kpis b { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 800; margin-top: 2px; }
.demo-bars { margin-top: 12px; }
.demo-bars span {
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  margin: 7px 0;
}
.demo-bars i {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-primary) var(--w), #E6EDF6 var(--w));
}
.demo-bars em { font-style: normal; color: var(--text-secondary); text-align: right; }

.ring {
  --val: 90;
  width: 96px; height: 96px;
  margin: 22px 0 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(closest-side, var(--navy-surface) 78%, transparent 79%),
    conic-gradient(#57A5FF calc(var(--val) * 1%), #1B3A60 0);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
}
.ring small {
  position: absolute;
  bottom: 20px;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #63D6A2;
}

.growth { height: 96px; display: flex; align-items: flex-end; gap: 8px; margin: 22px 0; }
.growth i { flex: 1; border-radius: 5px 5px 2px 2px; background: #15396A; }
.growth i:nth-child(1) { height: 26%; }
.growth i:nth-child(2) { height: 40%; }
.growth i:nth-child(3) { height: 50%; }
.growth i:nth-child(4) { height: 64%; background: #205A97; }
.growth i:nth-child(5) { height: 78%; background: #337BC7; }
.growth i:nth-child(6) { height: 96%; background: #57A5FF; }

.brandrows { margin: 20px 0; }
.brandrows span {
  display: flex;
  justify-content: space-between;
  padding: 10px 2px;
  border-bottom: 1px solid var(--navy-line);
  font-size: 13px;
  color: #C9D8EC;
}
.brandrows em { font-style: normal; font-weight: 800; color: #55D19B; }

.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 22px 0; }
.thumbs i {
  height: 84px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 800;
  color: #D7EAFF;
  background: linear-gradient(150deg, #2C4E78, #5688BD);
}
.thumbs i:nth-child(2) { background: linear-gradient(150deg, #583C49, #A87189); }
.thumbs i:nth-child(3) { background: linear-gradient(150deg, #55482D, #B79B56); }

/* ---------- 15. Explainability ---------- */
.explain__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.explain__copy .kicker { margin-bottom: 16px; }
.explain__copy p { margin-top: 18px; color: var(--text-secondary); line-height: 1.75; }
.explain__list { margin-top: 26px; }
.explain__list li { display: flex; gap: 13px; margin: 16px 0; }
.explain__tick {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #E7F7EF;
  color: var(--success);
}
.explain__tick .ico { width: 14px; height: 14px; }
.explain__list b { display: block; font-family: var(--font-display); font-size: 14px; }
.explain__list small { display: block; font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

.scorecard {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.scorecard__top { display: flex; align-items: center; justify-content: space-between; }
.scorecard__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scorecard__value {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--blue-hover);
  line-height: 1.1;
}
.scorecard__value span { font-size: 15px; color: var(--text-muted); }
.scorecard hr { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.scorecard h4 { margin-bottom: 6px; }
.scoreline {
  display: grid;
  grid-template-columns: 150px 1fr 34px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  margin: 14px 0;
}
.scoreline i {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-primary) var(--w), #EDF2F8 var(--w));
}
.scoreline b { text-align: right; color: var(--blue-hover); font-weight: 700; }
.scorecard__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- 16. How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  padding: 8px;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -7px;
  width: 14px; height: 14px;
  border-top: 2px solid #C6D6EC;
  border-right: 2px solid #C6D6EC;
  transform: rotate(45deg);
}
.step__n {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
}
.step__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 10px auto 14px;
  border-radius: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  color: var(--blue-primary);
}
.step__icon .ico { width: 22px; height: 22px; }
.step h3 { font-size: 1.0625rem; }
.step p { margin-top: 7px; font-size: 12.5px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- 17. Comparison ---------- */
.compare__scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare__table th,
.compare__table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare__table thead th {
  font-family: var(--font-display);
  font-size: 13px;
  background: var(--surface-soft);
  color: var(--text-secondary);
}
.compare__table thead th:last-child { background: var(--blue-primary); color: #fff; }
.compare__table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}
.compare__table td:last-child { background: var(--blue-pale); color: var(--blue-hover); font-weight: 600; }
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__table .is-core { font-weight: 800; }
.compare__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

/* ---------- 18. Personas ---------- */
.personas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card--persona { padding: 24px; }
.card--persona .card__icon { background: var(--surface); border: 1px solid var(--border); }
.card--persona h3 { margin: 16px 0 7px; font-size: 1.125rem; }
.card--persona p { font-size: 13px; }

/* ---------- 19. FAQ ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 6vw, 84px);
}
.faq__intro .kicker { margin-bottom: 16px; }
.faq__intro p { margin-top: 18px; color: var(--text-secondary); line-height: 1.7; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; font-size: inherit; }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.faq-item__q .ico {
  flex: none;
  width: 20px; height: 20px;
  color: var(--blue-primary);
  transition: transform .25s var(--ease);
}
.faq-item__q[aria-expanded="true"] .ico { transform: rotate(180deg); }
.faq-item__a { padding: 0 4px 22px; }
.faq-item__a p { color: var(--text-secondary); font-size: 14px; line-height: 1.75; max-width: 60ch; }

/* ---------- 20. Final CTA ---------- */
.final-cta { padding-block: clamp(48px, 7vw, 80px) var(--section-y); }
.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(135deg, #0653CE 0%, #0866FF 52%, #2C93FF 100%);
  color: #fff;
  box-shadow: 0 40px 90px -40px rgba(8, 102, 255, .6);
}
.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  z-index: -1;
}
.cta-panel::before { width: 420px; height: 420px; left: -180px; top: -240px; }
.cta-panel::after { width: 520px; height: 520px; right: -220px; bottom: -320px; }
.cta-panel__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cta-panel h2 { margin: 18px 0 14px; color: #fff; font-size: clamp(32px, 4.6vw, 56px); }
.cta-panel h2 em { color: #CFE6FF; }
.cta-panel p { max-width: 560px; margin: 0 auto; color: #DCEBFF; font-size: 1rem; }

.cta-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 26px auto 12px;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
}
.cta-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  color: var(--text-primary);
  background: transparent;
  border-radius: 8px;
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form .btn { flex: none; }
.cta-form.is-loading .btn { opacity: .7; pointer-events: none; }
.cta-form.is-invalid input { box-shadow: inset 0 0 0 2px rgba(231, 76, 91, .5); }

.cta-form__msg { position: relative; font-size: 12px; color: #CFE1FA; min-height: 1.2em; }
.cta-form__msg.is-success { color: #C9F4DE; font-weight: 600; }
.cta-form__msg.is-error { color: #FFD6DB; font-weight: 600; }
.cta-form__fine { margin-top: 6px; font-size: 11px; }
.cta-form__fine a { color: #BCD6F7; border-bottom: 1px solid rgba(255, 255, 255, .3); padding-bottom: 1px; }
.cta-form__fine a:hover { color: #fff; }

/* Honeypot — off-screen, never shown to real users */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- 21. Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #A8BAD0;
  padding-block: 56px 24px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 44px;
}
.brand--footer { color: #fff; margin-bottom: 14px; }
.site-footer__brand p { max-width: 320px; font-size: 13px; line-height: 1.7; color: #8598B0; }
.site-footer__col b {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer__col a { display: block; padding: 6px 0; font-size: 13px; color: #8598B0; }
.site-footer__col a:hover { color: #fff; }
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  font-size: 11px;
  color: #6E819A;
}

/* ---------- 21a. Sub-pages (privacy / terms / contact) ---------- */
.subpage { padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 96px); }
.subpage__head { max-width: 760px; margin: 0 0 clamp(32px, 5vw, 52px); }
.subpage__head .kicker { margin-bottom: 14px; }
.subpage__head h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.subpage__head .updated {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.prose {
  max-width: 720px;
  margin-inline: 0;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 {
  margin-top: 2em;
  font-size: 1.4rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.prose h3 {
  margin-top: 1.6em;
  font-size: 1.075rem;
  color: var(--text-primary);
}
.prose a {
  color: var(--blue-primary);
  border-bottom: 1px solid rgba(8, 102, 255, .3);
}
.prose a:hover { border-bottom-color: var(--blue-primary); }
.prose ul { padding-left: 1.25em; list-style: disc; }
.prose li + li { margin-top: .4em; }
.prose strong { color: var(--text-primary); }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 5px;
}

.callout {
  max-width: 720px;
  margin: 0 0 clamp(28px, 4vw, 40px);
  padding: 16px 18px;
  border: 1px solid #FCE3B8;
  background: #FFF9EE;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #7A5A16;
}
.callout strong { color: #6A4C10; }

.backlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.backlink:hover { color: var(--blue-primary); }
.backlink .ico { width: 16px; height: 16px; transform: rotate(180deg); }

/* Contact form (own page) */
.contact-form {
  max-width: 560px;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text-primary);
  font-family: inherit;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--blue-primary); outline-offset: 1px; border-color: var(--blue-primary); }
.contact-form .field.is-invalid input,
.contact-form .field.is-invalid textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(231, 76, 91, .12); }
.contact-form .btn { justify-self: start; }
.contact-form.is-loading .btn { opacity: .7; pointer-events: none; }
.form-status { min-height: 1.2em; font-size: 13px; color: var(--text-secondary); }
.form-status.is-success { color: var(--success); font-weight: 600; }
.form-status.is-error { color: var(--danger); font-weight: 600; }
.contact-aside {
  max-width: 720px;
  margin: 0 0 clamp(28px, 4vw, 40px);
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: var(--text-secondary);
}
.contact-aside a { color: var(--blue-primary); }

/* ---------- 21b. Back-to-top button ---------- */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--blue-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease),
              visibility .25s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-primary); color: #fff; transform: translateY(-2px); }
.to-top:active { transform: translateY(0); }
.to-top .ico { width: 20px; height: 20px; }

/* ---------- 22. Reveal animation ---------- */
/* Scoped to .js so the page is fully visible without JavaScript. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .floater--a { left: 4px; }
  .floater--b { right: 4px; }
}

@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header__actions .link-muted,
  .site-header__actions > .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .section__head--split { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .features__grid { grid-template-columns: 1fr; }
  .feat--wide { grid-template-columns: 1fr; }
  .explain__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }
  .personas__grid { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .step::after { display: none; }

  .floater { display: none; }
}

@media (max-width: 640px) {
  :root { --section-y: 64px; }

  .announce__inner { font-size: 12px; }
  .announce a { display: none; }

  .hero__title { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: 340px; margin-inline: auto; }
  .hero__actions .btn { width: 100%; }

  .mock__body { grid-template-columns: 44px 1fr; }
  .mock__rail { padding: 10px 0; }
  .mock__rail-item { width: 30px; height: 30px; }
  .mock__main { padding: 14px; }
  .mock__head { flex-direction: column; }
  .mock__head-actions { display: none; }
  .mock__kpis { grid-template-columns: 1fr 1fr; }
  .mock__grid { grid-template-columns: 1fr; }
  .panel--early { display: none; }
  .mock__bottom { grid-template-columns: 1fr 1fr; }

  .loop__inner { flex-wrap: wrap; gap: 18px; }
  .loop__arrow { display: none; }
  .loop__step { flex: 1 1 40%; }

  .personas__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .scoreline { grid-template-columns: 120px 1fr 30px; font-size: 12px; }

  .cta-form { flex-direction: column; background: transparent; padding: 0; gap: 10px; }
  .cta-form input { background: #fff; }
  .cta-form .btn { width: 100%; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__legal { flex-direction: column; }
}

/* ---------- 24. Reduced motion / print ---------- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .eyebrow__pulse, .floater--a, .floater--b { animation: none; }
}

@media print {
  .announce, .site-header, .floater, .final-cta { display: none; }
  .section { padding-block: 24px; }
}
