/* =====================================================================
   Foundd Nederland · v3
   Mobile-first. Section-level themes (.section-dark / .section-warm /
   .section-cool). Each section commits to a palette via local CSS
   variables. Body is theme-agnostic.
   ===================================================================== */

/* ---------- THEME-AGNOSTIC TOKENS ---------- */

:root {
  --teal:         #0B7A96;
  --teal-glow:    #1FB8E0;
  --warm-white:   #F4F1ED;
  --cool-white:   #F8FAFB;
  --ink:          #0A1419;
  --ink-soft:     #14202A;
  --silver:       #C4CCD1;
  --silver-soft:  #8B98A0;

  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:    'General Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius:       14px;
  --max:          1280px;
}

/* ---------- SECTION THEMES ---------- */

.section-dark {
  --bg:              var(--ink);
  --bg-alt:          var(--ink-soft);
  --text:            var(--silver);
  --text-strong:     var(--cool-white);
  --text-soft:       var(--silver-soft);
  --line:            rgba(196, 204, 209, 0.10);

  --foun-color:      var(--cool-white);
  --dd-color:        var(--teal-glow);
  --dd-shadow:       0 0 12px rgba(31, 184, 224, 0.4);

  --accent:          var(--teal-glow);
  --accent-shadow:   0 0 30px rgba(31, 184, 224, 0.45);
  --accent-soft:     rgba(31, 184, 224, 0.4);

  --grid-color:      rgba(31, 184, 224, 0.05);
  --noise-blend:     overlay;
  --noise-opacity:   0.04;

  --reticle-line-1:  rgba(31, 184, 224, 0.10);
  --reticle-line-2:  rgba(31, 184, 224, 0.18);
  --reticle-line-3:  rgba(31, 184, 224, 0.32);
  --reticle-cross:   rgba(31, 184, 224, 0.12);
  --reticle-corner:  rgba(31, 184, 224, 0.45);

  background: var(--bg);
  color: var(--text);
}

.section-warm {
  --bg:              var(--warm-white);
  --bg-alt:          #ECE7DF;
  --text:            rgba(10, 20, 25, 0.72);
  --text-strong:     var(--ink);
  --text-soft:       rgba(10, 20, 25, 0.5);
  --line:            rgba(10, 20, 25, 0.08);

  --foun-color:      var(--ink);
  --dd-color:        var(--teal);
  --dd-shadow:       none;

  --accent:          var(--teal);
  --accent-soft:     rgba(11, 122, 150, 0.25);

  --card-bg:         var(--cool-white);
  --card-border:     rgba(10, 20, 25, 0.06);
  --card-shadow:     0 1px 0 rgba(10, 20, 25, 0.02), 0 8px 24px rgba(10, 20, 25, 0.04);

  background: var(--bg);
  color: var(--text);
}

.section-cool {
  --bg:              var(--cool-white);
  --bg-alt:          var(--warm-white);
  --text:            rgba(10, 20, 25, 0.7);
  --text-strong:     var(--ink);
  --text-soft:       rgba(10, 20, 25, 0.5);
  --line:            rgba(10, 20, 25, 0.08);

  --foun-color:      var(--ink);
  --dd-color:        var(--teal);
  --dd-shadow:       none;

  --accent:          var(--teal);
  --accent-soft:     rgba(11, 122, 150, 0.25);

  background: var(--bg);
  color: var(--text);
}

/* =====================================================================
   BASE
   ===================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: 76px;       /* reserve space for the fixed topbar */
  padding-bottom: 6.5rem;
  background: var(--ink);
}

/* =====================================================================
   TOP BAR
   ===================================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smart-hide: when JS adds .topbar-hidden the bar slides up out of
   view. Without JS the topbar simply stays visible (no class added,
   no transform applied). */
.topbar-hidden {
  transform: translateY(-100%);
}

.topbar > * { max-width: var(--max); }

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
  line-height: 0.95;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.brand-foun { color: var(--foun-color); }

.brand-dd {
  color: var(--dd-color);
  text-shadow: var(--dd-shadow);
}

.brand-territory {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding-left: 0.85rem;
  white-space: nowrap;
}

.brand-territory::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  color: var(--text-soft);
  opacity: 0.55;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
}

.topnav { display: none; }

.menu-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--text-strong);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-strong);
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: 1.5rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, black 20%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-bg-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--noise-opacity);
  mix-blend-mode: var(--noise-blend);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-scan-line {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 184, 224, 0) 15%,
    var(--accent) 50%,
    rgba(31, 184, 224, 0) 85%,
    transparent 100%
  );
  box-shadow: 0 0 8px var(--accent-soft), 0 0 24px rgba(31, 184, 224, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: sweep 7s ease-in-out infinite;
}

@keyframes sweep {
  0%   { top: 8%;  opacity: 0; }
  10%  { opacity: 0.6; }
  85%  { opacity: 0.6; }
  100% { top: 92%; opacity: 0; }
}

/* eyebrow shared */

.hero-eyebrow,
.approach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2.25rem;
}

.hero-eyebrow { margin-top: 1.25rem; }

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 18px var(--accent-soft);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.section-warm .eyebrow-dot,
.section-cool .eyebrow-dot {
  box-shadow: 0 0 0 4px rgba(11, 122, 150, 0.10);
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--text);
  font-weight: 500;
}

.eyebrow-dd {
  color: var(--dd-color);
  text-shadow: var(--dd-shadow);
}

/* H1 */

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 11.5vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin-bottom: 1.75rem;
}

.title-line { display: block; margin-bottom: 0.05em; }

.title-cycle {
  display: block;
  /* The clip box shows exactly one word body. Each word in the
     stack occupies a 1.25em slot (1em body + 0.25em descender
     room) so descenders on letters like y, g, p, q, j fit
     entirely within the slot. The keyframe shifts the track by
     -1.25em per word to snap the next slot into place. */
  height: 1.2em;
  overflow: hidden;
  position: relative;
  color: var(--accent);
  text-shadow: var(--accent-shadow);
}

.title-cycle-track {
  display: block;
  animation: cycle 12s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

.title-cycle .word {
  display: block;
  /* Slot height includes 0.25em room below the baseline for
     descenders. Words are top-aligned within the slot, so their
     descenders extend into the bottom 0.25em of the slot rather
     than into the next word's space above. */
  height: 1.25em;
  line-height: 1;
}

@keyframes cycle {
  0%,   20%  { transform: translateY(0); }
  25%,  45%  { transform: translateY(-1.25em); }
  50%,  70%  { transform: translateY(-2.5em); }
  75%,  95%  { transform: translateY(-3.75em); }
  100%       { transform: translateY(-5em); }
}

/* subhead */

.hero-subhead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 2.25rem;
  max-width: 30rem;
}

/* primary CTA */

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--teal) 0%, #0996B5 100%);
  color: var(--cool-white);
  text-decoration: none;
  padding: 1.125rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  align-self: flex-start;
  box-shadow:
    0 8px 24px rgba(11, 122, 150, 0.35),
    0 0 0 1px rgba(31, 184, 224, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(11, 122, 150, 0.5),
    0 0 0 1px rgba(31, 184, 224, 0.35),
    0 0 60px rgba(31, 184, 224, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.hero-cta:hover .cta-arrow { transform: translateX(3px); }

/* trust strip */

.hero-trust {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
}

.trust-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-strong);
  line-height: 1;
  letter-spacing: -0.01em;
}

.trust-unit {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-left: 1px;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-transform: uppercase;
  line-height: 1.4;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.trust-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

/* hero visual reticle (desktop only) */

.hero-visual { display: none; }

/* =====================================================================
   FOUNDD-AANPAK SECTION
   ===================================================================== */

.approach {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.approach-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.approach-intro {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.approach-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.625rem, 6vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 1.25rem;
  max-width: 36rem;
  position: relative;
}

/* subtle quote accent — left rule line */
.approach-quote::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.4em;
  bottom: 0.4em;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  opacity: 0.7;
}

.dd-accent {
  color: var(--dd-color);
  /* inherits weight from parent so it sits naturally in any context */
}

.wordmark-ai {
  white-space: nowrap;
  color: var(--text-strong);
  font-weight: 500;
}

.wordmark-ai-suffix {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.92em;
  letter-spacing: 0.06em;
  color: var(--text-strong);
}

.approach-bridge {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 32rem;
}

/* steps — mobile carousel, desktop grid */

.steps {
  display: flex;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.5rem;
  gap: 1rem;
  padding: 0.5rem 1.5rem 2rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.steps::-webkit-scrollbar { display: none; }

.step {
  flex: 0 0 82%;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(10, 20, 25, 0.02), 0 16px 36px rgba(10, 20, 25, 0.07);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.step-glyph {
  width: 44px;
  height: 44px;
  color: var(--accent);
  opacity: 0.85;
}

.step-glyph-scan .glyph-scan-line {
  animation: glyph-scan 3.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes glyph-scan {
  0%, 100% { transform: translateY(-12px); opacity: 0.3; }
  50%      { transform: translateY(12px);  opacity: 1; }
}

.step-glyph-report .report-dot {
  opacity: 0.22;
  transform-box: fill-box;
  transform-origin: center;
  animation: report-dot-select 3s ease-in-out infinite;
}

.step-glyph-report .report-dot-1 { animation-delay: 0s; }
.step-glyph-report .report-dot-2 { animation-delay: 0.5s; }
.step-glyph-report .report-dot-3 { animation-delay: 1.0s; }

@keyframes report-dot-select {
  0%, 100%  { opacity: 0.22; transform: scale(1); }
  10%       { opacity: 1;    transform: scale(1.25); }
  18%, 60%  { opacity: 1;    transform: scale(1); }
  72%       { opacity: 0.22; transform: scale(1); }
}

.step-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

/* swipe hint, mobile only */

.steps-hint {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hint-arrow-track {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 14px;
  overflow: hidden;
}

.hint-arrow-track svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  color: var(--accent);
  animation: hint-drive 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes hint-drive {
  0%   { transform: translateX(-2px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(20px); opacity: 0; }
}

/* =====================================================================
   STICKY MOBILE CTA
   ===================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal) 0%, #0996B5 100%);
  color: var(--cool-white);
  padding: 1.125rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(31, 184, 224, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.3s ease;
}

.sticky-cta-hidden {
  transform: translateY(calc(100% + 1.5rem));
  opacity: 0;
  pointer-events: none;
}

.sticky-cta svg { width: 18px; height: 18px; }

/* =====================================================================
   CLOSING CTA SECTION
   ===================================================================== */

.cta-close {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  text-align: center;
}

.cta-close-inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-close-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.cta-close-eyebrow .eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--text);
  font-weight: 500;
}

.cta-close-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 12vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin-bottom: 1.75rem;
  text-align: center;
}

.cta-close-accent {
  color: var(--accent);
  text-shadow: var(--accent-shadow);
}

.cta-close-period {
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent), 0 0 36px var(--accent-soft);
  display: inline-block;
  animation: cta-period-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-period-pulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* the scan-line rule under the title */

.cta-close-rule {
  position: relative;
  width: 80%;
  max-width: 22rem;
  height: 1px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.cta-close-rule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 184, 224, 0.4) 50%,
    transparent 100%
  );
}

.cta-close-rule::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 184, 224, 0) 30%,
    var(--accent) 50%,
    rgba(31, 184, 224, 0) 70%,
    transparent 100%
  );
  box-shadow: 0 0 8px var(--accent-soft);
  animation: cta-rule-sweep 5s ease-in-out infinite;
}

@keyframes cta-rule-sweep {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  20%      { opacity: 1; }
  80%      { opacity: 1; }
  100%     { transform: translateX(100%); opacity: 0; }
}

.cta-close-subhead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.cta-close-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-close-actions .hero-cta { align-self: center; }

.cta-close-secondary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 204, 209, 0.3);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta-close-secondary:hover {
  color: var(--text-strong);
  border-bottom-color: var(--accent);
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.site-footer {
  position: relative;
  padding: 3.5rem 1.5rem 1.75rem;
  border-top: 1px solid var(--line);
  background: #060D11;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  margin-bottom: 2.5rem;
}

.footer-brand {
  /* inherits inline composition from .brand */
}

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-list a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-strong);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.18s ease;
}

.footer-list a:hover { color: var(--accent); }

/* territories ----------------------------------------------- */

.footer-territories {
  margin-bottom: 2.5rem;
}

.footer-territories-label,
.footer-territories-soon-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-soft);
  display: block;
  text-transform: uppercase;
}

.footer-territories-label {
  margin-bottom: 1rem;
}

.footer-territories-soon-label {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: rgba(196, 204, 209, 0.4);
}

.footer-territories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.footer-territories-list a,
.footer-territories-list .territory-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.footer-territories-list a:hover {
  color: var(--text-strong);
  border-color: var(--accent-soft);
  background: rgba(31, 184, 224, 0.04);
}

.footer-territories-list .territory-current {
  color: var(--text-strong);
  border-color: rgba(31, 184, 224, 0.3);
  background: rgba(31, 184, 224, 0.06);
}

.territory-flag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.territory-current .territory-flag { color: var(--accent); }

/* coming-soon row: visually de-emphasised */

.footer-territories-soon .territory-pill {
  border-style: dashed;
  border-color: rgba(196, 204, 209, 0.15);
  color: rgba(196, 204, 209, 0.55);
  cursor: default;
}

.footer-territories-soon .territory-pill .territory-flag {
  color: rgba(196, 204, 209, 0.4);
}

/* legal line ------------------------------------------------ */

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.footer-legal a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-legal a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-soft);
}

/* =====================================================================
   REPORT SHOWCASE SECTION
   ===================================================================== */

.report-showcase {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.report-showcase-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.report-showcase-intro {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
  max-width: 36rem;
}

.report-showcase-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 2.75rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin-bottom: 1.25rem;
}

.report-showcase-subhead {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 30rem;
}

.report-showcase-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding: 0 1.5rem;
}

/* Phone mockup -------------------------------------------------------- */

.report-mockup {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}

.report-mockup-glow {
  position: absolute;
  inset: -40px -40px -20px -40px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(31, 184, 224, 0.20) 0%,
    rgba(31, 184, 224, 0.06) 40%,
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

.report-mockup-frame {
  position: relative;
  z-index: 2;
  background: #14202A;
  border: 1px solid rgba(31, 184, 224, 0.12);
  border-radius: 36px;
  padding: 7px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.report-mockup-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0A1419;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

/* Phone screen content */

.report-screen {
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
}

.report-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  color: #0A1419;
  height: 30px;
  flex-shrink: 0;
}

.report-statusbar-icons {
  display: inline-flex;
  align-items: center;
}

.report-statusbar-icons svg {
  width: 16px;
  height: 8px;
  color: #0A1419;
}

.report-screen-inner {
  flex: 1;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.report-brand-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.report-brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.025em;
  color: #0A1419;
}

.report-brand-mark .dd-accent {
  color: var(--teal);
}

.report-brand-meta {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(10, 20, 25, 0.5);
  text-transform: uppercase;
}

.report-document-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A1419;
  margin: 0;
}

/* Score block ------------------------------------------- */

.report-score {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(11, 122, 150, 0.06) 0%, rgba(11, 122, 150, 0.02) 100%);
  border: 1px solid rgba(11, 122, 150, 0.14);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.report-score-ring {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.report-score-ring svg {
  width: 100%;
  height: 100%;
}

.report-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}

.report-score-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.report-score-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 20, 25, 0.55);
}

.report-score-desc {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(10, 20, 25, 0.78);
}

/* findings ---------------------------------------------- */

.report-section-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.report-section-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 20, 25, 0.45);
  margin: 0 0 0.2rem;
}

.report-finding {
  background: #FFFFFF;
  border: 1px solid rgba(10, 20, 25, 0.08);
  border-left-width: 3px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.report-finding.fnd-critical { border-left-color: #D8423E; }
.report-finding.fnd-warning  { border-left-color: #E0A628; }
.report-finding.fnd-info     { border-left-color: var(--teal); }

.finding-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.5rem;
  padding: 0.5rem 0.65rem 0.55rem;
}

.finding-tags {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.finding-sev {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fnd-critical .finding-sev { color: #D8423E; }
.fnd-warning  .finding-sev { color: #B0801E; }
.fnd-info     .finding-sev { color: var(--teal); }

.finding-diff {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(10, 20, 25, 0.45);
}

.finding-title {
  grid-column: 1;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: #0A1419;
  line-height: 1.25;
}

.finding-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: rgba(10, 20, 25, 0.4);
}

.finding-arrow svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

/* Expandable finding (the auto-animating one) -------------- */

.report-finding-expand .finding-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  animation: finding-detail-cycle 12s ease-in-out infinite;
}

.report-finding-expand .finding-arrow svg {
  animation: finding-arrow-cycle 12s ease-in-out infinite;
}

@keyframes finding-detail-cycle {
  0%, 25%   { max-height: 0;     opacity: 0; }
  32%, 78%  { max-height: 240px; opacity: 1; }
  85%, 100% { max-height: 0;     opacity: 0; }
}

@keyframes finding-arrow-cycle {
  0%, 25%   { transform: rotate(0deg); }
  32%, 78%  { transform: rotate(90deg); }
  85%, 100% { transform: rotate(0deg); }
}

.finding-detail-inner {
  padding: 0 0.65rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px dashed rgba(10, 20, 25, 0.08);
  margin-top: -0.05rem;
  padding-top: 0.55rem;
}

.finding-desc {
  font-family: var(--font-body);
  font-size: 0.65rem;
  line-height: 1.45;
  color: rgba(10, 20, 25, 0.78);
  margin: 0;
}

.finding-fix {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.finding-fix-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 20, 25, 0.55);
}

.finding-code {
  background: #F2F5F6;
  border-radius: 4px;
  padding: 0.45rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  line-height: 1.5;
  color: #0A1419;
  overflow: hidden;
  margin: 0;
  white-space: pre;
}

.finding-code code {
  font-family: inherit;
  white-space: pre;
}

.finding-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 122, 150, 0.08);
  border: 1px solid rgba(11, 122, 150, 0.18);
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
}

.finding-action-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--teal);
}

.finding-action-price {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

/* Bottom action bar (already in earlier styles, restated) */

/* Bottom order bar — mirrors the real report's sticky cart */

.report-order-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--teal);
  color: #FFFFFF;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  gap: 0.5rem;
}

.order-bar-summary {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.order-bar-count {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}

.order-bar-total {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.order-bar-cta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
}

/* scan beam over the phone screen, brand continuity with hero */

.report-mockup-scan {
  position: absolute;
  z-index: 4;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border-radius: 30px;
  overflow: hidden;
  pointer-events: none;
}

.report-mockup-scan::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 184, 224, 0) 15%,
    rgba(31, 184, 224, 1) 50%,
    rgba(31, 184, 224, 0) 85%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(31, 184, 224, 0.8), 0 0 24px rgba(31, 184, 224, 0.3);
  opacity: 0;
  animation: report-scan 6s ease-in-out infinite;
}

@keyframes report-scan {
  0%   { top: 5%;  opacity: 0; }
  12%  { opacity: 0.85; }
  88%  { opacity: 0.85; }
  100% { top: 95%; opacity: 0; }
}

/* Feature list ------------------------------------------------------- */

.report-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: 36rem;
}

.report-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0.25rem;
  min-width: 1.75rem;
}

.feature-body {
  flex: 1;
}

.feature-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}



.scans {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.scans-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.scans-intro {
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
}

.scans-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.875rem, 6.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.scans-bridge {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 32rem;
}

/* mobile carousel */

.scan-grid {
  display: flex;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.5rem;
  gap: 1rem;
  padding: 0.5rem 1.5rem 2rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.scan-grid::-webkit-scrollbar { display: none; }

.scan-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid rgba(10, 20, 25, 0.06);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 1px 0 rgba(10, 20, 25, 0.02), 0 8px 20px rgba(10, 20, 25, 0.03);
}

.scan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(10, 20, 25, 0.02), 0 16px 32px rgba(10, 20, 25, 0.06);
  border-color: rgba(11, 122, 150, 0.22);
}

.scan-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  text-decoration: none;
  color: inherit;
  padding: 1.75rem 1.5rem;
}

/* AdScan popular banner */

.scan-card-popular {
  border-color: rgba(11, 122, 150, 0.22);
}

.scan-card-popular:hover {
  border-color: rgba(11, 122, 150, 0.4);
}

.scan-popular-banner {
  display: block;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  text-align: center;
  line-height: 1;
}

/* featured card */

.scan-card-featured {
  background: linear-gradient(180deg, #F0F7FA 0%, #FFFFFF 70%);
  border-color: rgba(11, 122, 150, 0.22);
  box-shadow: 0 1px 0 rgba(10, 20, 25, 0.02), 0 12px 32px rgba(11, 122, 150, 0.08);
}

.scan-card-featured:hover {
  border-color: rgba(11, 122, 150, 0.35);
  box-shadow: 0 1px 0 rgba(10, 20, 25, 0.02), 0 18px 40px rgba(11, 122, 150, 0.14);
}

/* card content */

.scan-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.scan-cat {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 0.6rem;
}

.scan-card-featured .scan-cat {
  color: var(--accent);
  font-weight: 600;
}

.scan-glyph {
  width: 44px;
  height: 44px;
  color: var(--accent);
  opacity: 0.9;
  flex-shrink: 0;
}

.scan-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 0.35rem;
  line-height: 1.05;
}

.scan-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.scan-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.75rem;
  flex: 1;
}

.scan-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-strong);
  letter-spacing: -0.005em;
}

.scan-cta svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.scan-card:hover .scan-cta svg { transform: translateX(3px); }

/* AIScan glyph: typing-dot animation */

.scan-glyph-ai .ai-dot {
  opacity: 0.25;
  transform-box: fill-box;
  transform-origin: center;
  animation: ai-dot-pulse 1.6s ease-in-out infinite;
}

.scan-glyph-ai .ai-dot-1 { animation-delay: 0s; }
.scan-glyph-ai .ai-dot-2 { animation-delay: 0.2s; }
.scan-glyph-ai .ai-dot-3 { animation-delay: 0.4s; }

@keyframes ai-dot-pulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  30%      { opacity: 1;    transform: scale(1.35); }
  60%      { opacity: 1;    transform: scale(1); }
}

/* swipe hint reused */

.scan-grid-hint {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* tablet: 2-col, featured spans full width at top */

@media (min-width: 720px) and (max-width: 1023px) {
  .scan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    overflow: visible;
    padding: 0 1.5rem;
    scroll-snap-type: none;
  }

  .scan-card { flex: none; }

  .scan-card-featured { grid-column: 1 / -1; }

  .scan-grid-hint { display: none; }
}



@media (min-width: 1024px) {

  body { padding-bottom: 0; }

  .topbar { padding: 1.75rem 3rem; }

  .menu-btn { display: none; }

  .topnav {
    display: flex;
    gap: 2.25rem;
  }

  .topnav a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: color 0.18s ease;
  }

  .topnav a:hover { color: var(--text-strong); }

  .brand-mark { font-size: 1.55rem; }
  .brand-territory { font-size: 0.75rem; }

  /* hero desktop */

  .hero {
    min-height: calc(100svh - 96px);
    padding: 4rem 3rem 6rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 5rem;
    align-items: center;
    min-height: calc(100svh - 200px);
  }

  .hero-inner { max-width: 720px; }

  .hero-eyebrow {
    margin-top: 0;
    margin-bottom: 2.5rem;
  }

  .hero-title {
    font-size: clamp(4.25rem, 6.5vw, 5.75rem);
    margin-bottom: 2rem;
  }

  .hero-subhead {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 36rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta {
    padding: 1.25rem 2.25rem;
    font-size: 1.125rem;
  }

  .hero-trust {
    margin-top: 4rem;
    padding-top: 2.5rem;
    gap: 2.5rem;
  }

  .trust-item { flex: 0; }
  .trust-value { font-size: 1.875rem; }

  .sticky-cta { display: none; }

  .hero-visual {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
  }

  .hero-visual svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .reticle-r1 { stroke: var(--reticle-line-2); }
  .reticle-corners path { stroke: var(--reticle-corner); stroke-width: 1.5; }

  .reticle-label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    fill: var(--text-soft);
    text-transform: uppercase;
  }

  /* Website preview --------------------------------------- */

  .reticle-preview {
    color: rgba(196, 204, 209, 0.55);
  }

  .preview-chrome,
  .preview-page,
  .preview-url {
    stroke: rgba(196, 204, 209, 0.18);
  }

  .preview-dot {
    fill: rgba(196, 204, 209, 0.22);
  }

  .preview-url-text {
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0.04em;
    fill: rgba(196, 204, 209, 0.55);
  }

  .preview-url-dd {
    fill: var(--accent);
  }

  .preview-block-fill {
    fill: rgba(31, 184, 224, 0.45);
  }

  .preview-block-outline {
    stroke: rgba(196, 204, 209, 0.16);
  }

  .preview-cta {
    fill: rgba(31, 184, 224, 0.30);
  }

  .preview-block line {
    stroke: rgba(196, 204, 209, 0.18);
  }

  /* Scan beam (sweeps vertically across the preview) ------ */

  .reticle-scan-beam {
    filter: url(#hero-glow);
    animation: reticle-beam-sweep 18s cubic-bezier(0.55, 0.05, 0.45, 0.95) infinite;
  }

  @keyframes reticle-beam-sweep {
    0%       { transform: translateY(60px);  opacity: 0; }
    8%       { opacity: 1; }
    25%      { transform: translateY(115px); }
    50%      { transform: translateY(195px); }
    75%      { transform: translateY(265px); }
    92%      { opacity: 1; }
    100%     { transform: translateY(345px); opacity: 0; }
  }

  /* Cycling telemetry label (synced with beam stages) ----- */

  .reticle-label-cycle .cycle-text {
    opacity: 0;
    animation: reticle-label-cycle 18s linear infinite;
  }

  .cycle-text.cycle-1 { animation-delay: 0s; }
  .cycle-text.cycle-2 { animation-delay: -13.5s; }
  .cycle-text.cycle-3 { animation-delay: -9s; }
  .cycle-text.cycle-4 { animation-delay: -4.5s; }

  @keyframes reticle-label-cycle {
    0%, 22%   { opacity: 1; }
    25%, 100% { opacity: 0; }
  }

  /* approach desktop */

  .approach { padding: 6rem 0 7rem; }

  .approach-intro {
    padding: 0 3rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
  }

  .approach-intro .approach-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .approach-quote {
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin-bottom: 0;
  }

  .approach-bridge {
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow: visible;
    padding: 0 3rem;
    scroll-snap-type: none;
  }

  .step {
    flex: none;
    padding: 2rem;
  }

  .step-glyph {
    width: 48px;
    height: 48px;
  }

  .step-name {
    font-size: 1.625rem;
  }

  .step-desc {
    font-size: 0.9375rem;
  }

  .steps-hint { display: none; }

  /* report showcase desktop */

  .report-showcase { padding: 6rem 0 7rem; }

  .report-showcase-intro {
    padding: 0 3rem;
    margin-bottom: 4rem;
    max-width: 56rem;
  }

  .report-showcase-intro .approach-eyebrow {
    margin-bottom: 1.5rem;
  }

  .report-showcase-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    margin-bottom: 1.5rem;
  }

  .report-showcase-subhead {
    font-size: 1.125rem;
    max-width: 40rem;
  }

  .report-showcase-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding: 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .report-mockup {
    width: 320px;
  }

  .report-features {
    flex: 1;
    max-width: 28rem;
    gap: 2.5rem;
  }

  .feature-num {
    font-size: 0.95rem;
    min-width: 2rem;
  }

  .feature-name {
    font-size: 1.25rem;
  }

  .feature-desc {
    font-size: 1rem;
  }

  /* scans desktop: 4-col bento with featured 2x2 */

  .scans { padding: 6rem 0 7rem; }

  .scans-intro {
    padding: 0 3rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
  }

  .scans-intro .approach-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .scans-title {
    font-size: clamp(2.25rem, 3.6vw, 3rem);
    margin-bottom: 0;
  }

  .scans-bridge {
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
  }

  .scan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "ai ai ad seo"
      "ai ai site shop";
    gap: 1.5rem;
    overflow: visible;
    padding: 0 3rem;
    scroll-snap-type: none;
  }

  .scan-card { flex: none; }

  .scan-card-featured { grid-area: ai; }

  .scan-card-link { padding: 2rem; }

  .scan-card-featured .scan-card-link { padding: 2.75rem; }

  .scan-card-featured .scan-glyph {
    width: 76px;
    height: 76px;
  }

  .scan-card-featured .scan-name {
    font-size: 2.5rem;
  }

  .scan-card-featured .scan-tagline {
    font-size: 1.25rem;
  }

  .scan-card-featured .scan-desc {
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 32rem;
  }

  .scan-card-featured .scan-cta {
    font-size: 1rem;
  }

  .scan-grid-hint { display: none; }

  /* closing CTA desktop */

  .cta-close { padding: 7rem 3rem 6rem; }

  .cta-close-eyebrow { margin-bottom: 2.5rem; }

  .cta-close-title {
    font-size: clamp(4rem, 7vw, 5.5rem);
    margin-bottom: 2.5rem;
  }

  .cta-close-rule {
    width: 60%;
    max-width: 28rem;
    margin-bottom: 2.5rem;
  }

  .cta-close-subhead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }

  .cta-close-actions {
    flex-direction: row;
    gap: 2rem;
  }

  /* footer desktop */

  .site-footer { padding: 5rem 3rem 2rem; }

  .footer-top {
    margin-bottom: 4rem;
  }

  .footer-cols {
    flex-direction: row;
    justify-content: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  .footer-col { flex: 0 0 auto; min-width: 12rem; }

  .footer-col-contact { margin-left: auto; min-width: auto; }

  .footer-territories {
    margin-bottom: 3rem;
  }

  .footer-bottom {
    padding-top: 2rem;
  }
}

/* tablet sweet spot — 2x2 grid */
@media (min-width: 720px) and (max-width: 1023px) {
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    overflow: visible;
    padding: 0 1.5rem;
    scroll-snap-type: none;
  }
  .step { flex: none; }
  .steps-hint { display: none; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  .title-cycle-track,
  .hero-scan-line,
  .reticle-scan-beam,
  .reticle-label-cycle .cycle-text,
  .eyebrow-dot,
  .glyph-scan-line,
  .report-dot,
  .ai-dot,
  .report-mockup-scan::after,
  .report-finding-expand .finding-detail,
  .report-finding-expand .finding-arrow svg,
  .cta-close-period,
  .cta-close-rule::after,
  .hint-arrow-track svg {
    animation: none;
  }
  .title-cycle-track { transform: translateY(0); }
  .report-dot,
  .ai-dot { opacity: 1; }
  /* Reduced motion: pin beam at the middle, show ANALYSING DOM */
  .reticle-scan-beam { transform: translateY(195px); opacity: 0.8; }
  .reticle-label-cycle .cycle-text { opacity: 0; }
  .reticle-label-cycle .cycle-1 { opacity: 1; }
  .report-finding-expand .finding-detail {
    max-height: 240px;
    opacity: 1;
  }
  .report-finding-expand .finding-arrow svg {
    transform: rotate(90deg);
  }
}

/* =====================================================================
   ADSCAN PAGE
   ===================================================================== */

/* Topbar nav: highlight current page */

.topnav-current {
  color: var(--accent) !important;
  position: relative;
}

.topnav-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-soft);
}

/* Hero (AdScan variant) ----------------------------------------------- */

.hero-adscan {
  padding-bottom: 5rem;
}

.hero-title-adscan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 1.75rem;
}

.title-accent {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(31, 184, 224, 0.35);
}

/* Form card (sits on right of hero on desktop, below copy on mobile) */

.hero-form-wrap {
  margin-top: 2.5rem;
  scroll-margin-top: 2rem;
}

.hero-form-card {
  background: rgba(20, 32, 42, 0.7);
  border: 1px solid rgba(31, 184, 224, 0.18);
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.5rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-form-header {
  margin-bottom: 1.5rem;
}

.form-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  line-height: 1.15;
  margin: 0;
}

/* Form fields */

.foundd-form { display: flex; flex-direction: column; gap: 1.125rem; }

.ff-group { display: flex; flex-direction: column; gap: 0.5rem; }

.ff-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  cursor: pointer;
}

.ff-label strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-strong);
  letter-spacing: -0.005em;
}

.ff-label span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.35;
}

.foundd-form input[type="text"],
.foundd-form input[type="email"],
.foundd-form input[type="url"],
.foundd-form textarea {
  background: rgba(10, 20, 25, 0.6);
  border: 1px solid rgba(196, 204, 209, 0.14);
  border-radius: 10px;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 0.875rem;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.foundd-form input::placeholder,
.foundd-form textarea::placeholder {
  color: rgba(196, 204, 209, 0.35);
}

.foundd-form input:focus,
.foundd-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(10, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(31, 184, 224, 0.15);
}

.foundd-form textarea {
  resize: vertical;
  min-height: 4.5rem;
  line-height: 1.4;
}

.ff-error {
  background: rgba(216, 66, 62, 0.1);
  border: 1px solid rgba(216, 66, 62, 0.3);
  color: #F09595;
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.ff-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--teal) 0%, #0996B5 100%);
  color: var(--cool-white);
  border: none;
  cursor: pointer;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  box-shadow:
    0 8px 24px rgba(11, 122, 150, 0.35),
    0 0 0 1px rgba(31, 184, 224, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  margin-top: 0.5rem;
}

.ff-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(11, 122, 150, 0.5),
    0 0 0 1px rgba(31, 184, 224, 0.35),
    0 0 60px rgba(31, 184, 224, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ff-submit:disabled { opacity: 0.6; cursor: wait; }

.ff-submit svg { width: 18px; height: 18px; transition: transform 0.2s ease; }

.ff-submit:hover:not(:disabled) svg { transform: translateX(3px); }

.ff-legal {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0.5rem 0 0;
}

.ff-legal a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(196, 204, 209, 0.3);
  text-underline-offset: 2px;
}

.ff-legal a:hover { color: var(--accent); text-decoration-color: var(--accent-soft); }

/* Thank-you state */

.foundd-form-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0 0.5rem;
  gap: 1rem;
  animation: thanks-fade 0.5s ease;
}

/* The bare HTML [hidden] attribute is overridden by the .foundd-form-thanks
   display: flex above. Restore the spec-compliant hidden behaviour so the
   panel stays invisible until JS reveals it on form submit success. */
.foundd-form-thanks[hidden] { display: none; }

@keyframes thanks-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.thanks-tick {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(31, 184, 224, 0.12);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 24px rgba(31, 184, 224, 0.25);
}

.thanks-tick svg { width: 28px; height: 28px; }

.thanks-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 0;
}

.thanks-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  max-width: 26rem;
}

/* Wat we checken section ---------------------------------------------- */

.checks {
  padding: 4rem 0 5rem;
}

.checks-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.checks-intro {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
  max-width: 36rem;
}

.checks-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 1.25rem;
}

.checks-bridge {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.check-grid {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.check-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.check-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0;
}

.check-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

/* Tier list (right column on desktop, beside the phone mockup) -------- */

.report-tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 36rem;
}

.report-tier {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tier-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0.25rem;
  min-width: 1.75rem;
}

.tier-body { flex: 1; }

.tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.tier-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.tier-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* Finding-compare side-by-side block (Finding A) ---------------------- */

.finding-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0.25rem 0;
}

.finding-compare-col {
  background: #F4F6F7;
  border-radius: 4px;
  padding: 0.5rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.compare-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 20, 25, 0.5);
}

.compare-value {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: #0A1419;
  line-height: 1.25;
}

/* AI chat mockup (Finding A on AIScan) -------------------------------- */

.ai-chat {
  background: #F4F6F7;
  border-radius: 6px;
  padding: 0.55rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.25rem 0;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(10, 20, 25, 0.06);
}

.ai-chat-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(10, 20, 25, 0.4);
}

.ai-chat-icon svg {
  width: 100%;
  height: 100%;
}

.ai-chat-title {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 20, 25, 0.5);
}

.ai-chat-bubble {
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.35;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  max-width: 92%;
}

.ai-chat-user {
  background: rgba(11, 122, 150, 0.08);
  color: #0A1419;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.ai-chat-ai {
  background: #FFFFFF;
  color: #0A1419;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid rgba(10, 20, 25, 0.06);
}

.ai-chat-ai strong {
  color: #0A1419;
  font-weight: 600;
}

/* AI question audit (Finding B on AIScan) ----------------------------- */

.ai-questions {
  list-style: none;
  margin: 0.25rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ai-question {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.55rem;
  background: #F4F6F7;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.3;
  color: #0A1419;
}

.ai-question-mark {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ai-question-mark svg {
  width: 9px;
  height: 9px;
}

.ai-question-no .ai-question-mark {
  background: rgba(216, 66, 62, 0.12);
  color: #D8423E;
}

.ai-question-yes .ai-question-mark {
  background: rgba(11, 122, 150, 0.12);
  color: var(--teal);
}

/* Alternating reveal: A and B take turns expanding (16s cycle) -------- */

.report-finding-expand .finding-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.report-finding-expand .finding-arrow svg {
  transition: transform 0.4s ease;
}

/* Findings rendered always-open (for the auto-scroll variant) -------- */

.report-finding-open .finding-detail-open {
  max-height: none;
  opacity: 1;
  overflow: visible;
}

.finding-arrow-open svg {
  transform: rotate(90deg);
}

/* Auto-scroll: report content scrolls down, then back up. Continuous,
   no pause at top. Down phase is faster paced; up phase is slightly
   quicker still so the eye gets a sense of "rewind". */

.report-scroll-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 92%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 92%, transparent 100%);
}

.report-scroll-track {
  display: flex;
  flex-direction: column;
  animation: report-scroll 22s ease-in-out infinite;
}

.report-scroll-track .report-page {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0.875rem 1rem 1.5rem;
}

@keyframes report-scroll {
  0%   { transform: translateY(0); }
  55%  { transform: translateY(-58%); }
  100% { transform: translateY(0); }
}

.report-order-bar-sticky {
  margin: 0 0.75rem 0.75rem;
  position: relative;
  z-index: 2;
}

/* FAQ section --------------------------------------------------------- */

.faq {
  padding: 4rem 0 5rem;
}

.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-intro {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.faq-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.875rem, 6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 0;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 56rem;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item details {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  line-height: 1.35;
  transition: color 0.18s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent); }

.faq-q-text { flex: 1; }

.faq-q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform 0.3s ease, border-color 0.18s ease, color 0.18s ease;
}

.faq-q-icon svg { width: 12px; height: 12px; }

.faq-item details[open] .faq-q-icon {
  transform: rotate(180deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-a {
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
}

.faq-a p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.faq-a strong {
  color: var(--text-strong);
  font-weight: 600;
}

.faq-a a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(11, 122, 150, 0.35);
  text-underline-offset: 2px;
}

.faq-a a:hover { text-decoration-color: var(--accent); }

/* =====================================================================
   ADSCAN DESKTOP (>=1024px)
   ===================================================================== */

@media (min-width: 1024px) {

  .hero-adscan { padding: 4rem 3rem 6rem; }

  .hero-adscan .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
    min-height: auto;
  }

  .hero-title-adscan {
    font-size: clamp(2.75rem, 4.5vw, 3.75rem);
    margin-bottom: 2rem;
  }

  .hero-form-wrap {
    margin-top: 0;
    width: 100%;
    max-width: 480px;
    justify-self: end;
  }

  .hero-form-card {
    padding: 2rem 2rem 2rem;
  }

  .form-title { font-size: 1.625rem; }

  .checks {
    padding: 6rem 0 7rem;
  }

  .checks-intro {
    padding: 0 3rem;
    margin-bottom: 4rem;
    max-width: 56rem;
  }

  .checks-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    margin-bottom: 1.5rem;
  }

  .checks-bridge {
    font-size: 1.125rem;
    max-width: 40rem;
  }

  .check-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 3rem;
  }

  .check-item { padding: 2rem 1.75rem; }

  .check-name { font-size: 1.375rem; }

  /* Tier list desktop sits right of mockup */

  .report-showcase-adscan .report-showcase-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding: 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .report-tiers {
    flex: 1;
    max-width: 28rem;
    gap: 2rem;
  }

  .tier-name { font-size: 1.25rem; }

  .tier-meta { font-size: 0.7rem; }

  .tier-desc { font-size: 0.9375rem; }

  /* FAQ desktop */

  .faq { padding: 6rem 0 7rem; }

  .faq-inner { padding: 0 3rem; }

  .faq-intro { margin-bottom: 3rem; }

  .faq-item summary {
    padding: 1.5rem 0;
    font-size: 1.25rem;
  }

  .faq-q-icon { width: 28px; height: 28px; }
  .faq-q-icon svg { width: 14px; height: 14px; }

  .faq-a { padding: 0 0 2rem; }

  .faq-a p { font-size: 1.0625rem; }
}

/* tablet sweet spot for check grid */
@media (min-width: 720px) and (max-width: 1023px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reduced motion: pin the report scroll at top */
@media (prefers-reduced-motion: reduce) {
  .report-scroll-track {
    animation: none;
    transform: translateY(0);
  }
}

/* Skip link for keyboard accessibility — visible only when focused
   (added to support the build's <a class="skip-link"> element which
   the prototype CSS did not need to handle). */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink, #0A1419);
  color: var(--cool-white, #F8FAFB);
  padding: 0.5rem 1rem;
  z-index: 1000;
  text-decoration: none;
  font-family: var(--font-body, system-ui);
  font-size: 0.875rem;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Cookie consent bar — hidden by default; shown via JS when consent
   has not yet been recorded. Uses [hidden] for the default state.
   Added to support the build's cookie-bar component. */
.cookie-bar[hidden] {
  display: none;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ink, #0A1419);
  color: var(--cool-white, #F8FAFB);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  font-family: var(--font-body, system-ui);
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-bar__text {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-bar__text a {
  color: var(--teal-glow, #1FB8E0);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-bar .btn {
  font-family: var(--font-display, system-ui);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: var(--teal-glow, #1FB8E0);
  color: var(--ink, #0A1419);
  transition: opacity 0.15s ease;
}

.cookie-bar .btn:hover {
  opacity: 0.85;
}

.cookie-bar .btn--outline {
  background: transparent;
  color: var(--cool-white, #F8FAFB);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-bar .btn--small {
  font-size: 0.8125rem;
  padding: 0.4rem 0.9rem;
}

@media (min-width: 720px) {
  .cookie-bar__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
  .cookie-bar__actions {
    flex-shrink: 0;
  }
}


/* =====================================================================
   LEGAL PAGES (privacy, terms)
   ----------------------------------------------------------------------
   The privacy and terms pages were written before the redesign and use
   a different CSS vocabulary (.section, .container, .section__body)
   that the redesign CSS doesn't otherwise define. This block provides
   the styling those pages need without disturbing the rest of the site.
   ===================================================================== */

.section {
  background: var(--cool-white);
  color: rgba(10, 20, 25, 0.78);
  padding: clamp(64px, 8vw, 96px) 1.5rem;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.container--narrow {
  max-width: 720px;
}

.section h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.section h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.section__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(10, 20, 25, 0.78);
}

.section__body strong {
  color: var(--ink);
  font-weight: 600;
}

.section a,
.section__body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.section a:hover,
.section__body a:hover {
  text-decoration-thickness: 2px;
}

.section table {
  border-collapse: collapse;
  margin: 16px 0;
}

/* The legal templates use var(--caption) for muted captions and
   table labels; the redesign palette doesn't define this, so alias
   it to a soft-ink colour. */
.section { --caption: rgba(10, 20, 25, 0.55); }


/* =====================================================================
   MOBILE OVERLAY MENU
   ----------------------------------------------------------------------
   Full-screen overlay opened by tapping the burger (#navBurger).
   Hidden by default via the [hidden] attribute that the markup ships
   with; client.js toggles the attribute on burger click. The overlay
   takes the full viewport, dark backdrop, links stacked vertically.

   On desktop (>=980px) the burger and overlay are both display: none
   (handled by the existing .menu-btn rule in the desktop media query
   for the burger; the overlay also gets display: none below).
   ===================================================================== */

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;             /* above topbar (which is z-index: 100) */
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
  overflow-y: auto;
  animation: nav-mobile-fade 0.2s ease-out;
}

.nav-mobile[hidden] {
  display: none;
}

@keyframes nav-mobile-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Close button at top-right of the overlay. Sized and styled to
   match the burger (44x44 with the same border treatment) so the
   open and close affordances feel like a matched pair. The burger
   itself is hidden behind the overlay (it sits inside the topbar's
   stacking context which is below the overlay's z-index), so we
   need an explicit close inside the overlay. */
.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-strong);
  padding: 0;
  transition: background 0.15s ease;
}

.nav-mobile-close:hover,
.nav-mobile-close:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.nav-mobile-close svg {
  width: 20px;
  height: 20px;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.nav-mobile-link {
  display: block;
  padding: 1rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  color: var(--text-strong);
  outline: none;
}

.nav-mobile-link.nav-mobile-current {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(31, 184, 224, 0.25);
}

/* Desktop: hide the overlay element entirely (the burger is already
   hidden by the existing rule in the desktop media query). */
@media (min-width: 980px) {
  .nav-mobile {
    display: none !important;
  }
}
