/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --bg:      oklch(0.09 0.012 255);
  --bg2:     oklch(0.11 0.015 258);
  --surface: oklch(0.14 0.013 255);

  --text:    oklch(0.93 0.010 210);
  --muted:   oklch(0.62 0.013 218);
  --muted2:  oklch(0.46 0.011 218);

  /* Electric amber — phosphor-tube signal */
  --accent:        oklch(0.84 0.21 60);
  --accent-lo:     oklch(0.84 0.21 60 / 0.10);
  --accent-border: oklch(0.84 0.21 60 / 0.32);
  --accent-soft:   oklch(0.92 0.13 60);

  --green: oklch(0.76 0.14 152);
  --red:   oklch(0.64 0.18 25);

  --card:    oklch(1 0 0 / 0.032);
  --card2:   oklch(1 0 0 / 0.055);
  --border:  oklch(1 0 0 / 0.08);
  --border2: oklch(1 0 0 / 0.13);

  /* Sharp corners — the single biggest futuristic signal */
  --radius:  3px;
  --radius2: 4px;
  --max:     1100px;
  --pad:     24px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
#notify { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2 {
  font-family: 'Barlow Condensed', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h3, h4, h5, h6 {
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .80; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

/* ── Background ─────────────────────────────────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--bg);
}

/* HUD line grid */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.055) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(900px 700px at 50% 0%, black 25%, transparent 70%);
}

/* CRT scanlines — deliberate texture, horizontal only */
.bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    oklch(0 0 0 / 0.05) 3px,
    oklch(0 0 0 / 0.05) 4px
  );
  pointer-events: none;
}

.bg-glow { position: absolute; border-radius: 999px; pointer-events: none; }
.bg-glow-1 {
  width: 900px; height: 500px;
  left: 50%; top: -120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, oklch(0.84 0.21 60 / 0.10), transparent 65%);
  filter: blur(55px);
}
.bg-glow-2 {
  width: 480px; height: 480px;
  right: -160px; top: 80px;
  background: oklch(0.76 0.14 152 / 0.05);
  filter: blur(90px);
}
.bg-glow-3 {
  width: 600px; height: 600px;
  left: -180px; bottom: -240px;
  background: oklch(0.84 0.21 60 / 0.04);
  filter: blur(100px);
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: oklch(0.09 0.012 255 / 0.75);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 36px; height: 36px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--border);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-tag { font-size: 11px; color: var(--muted); margin-top: 3px; font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  font-size: 13px;
  padding: 6px 11px;
  border-radius: var(--radius);
  transition: color .12s ease, background .12s ease;
  letter-spacing: .02em;
}
.nav a:hover { color: var(--text); background: oklch(1 0 0 / 0.05); opacity: 1; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .08s ease, background .12s ease, border-color .12s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover { opacity: 1; border-color: var(--border2); background: var(--card2); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 7px 13px; font-size: 12px; letter-spacing: .03em; }

/* No ghost-card defect: single border, no large diffuse shadow */
.btn-primary {
  border-color: var(--accent-border);
  background: oklch(0.84 0.21 60 / 0.12);
  color: var(--accent-soft);
}
.btn-primary:hover {
  border-color: oklch(0.84 0.21 60 / 0.55);
  background: oklch(0.84 0.21 60 / 0.20);
  color: oklch(0.96 0.08 60);
}
.btn-ghost { background: transparent; border-color: var(--border); }
.btn-ghost:hover { background: var(--card); }
.btn-block { width: 100%; text-align: center; justify-content: center; }

/* ── Typography utilities ────────────────────────────────────────────────── */
.lead {
  font-size: clamp(16px, 1.7vw, 18px);
  color: oklch(0.93 0.010 210 / 0.88);
  max-width: 52ch;
  line-height: 1.7;
}
.muted   { color: var(--muted); }
.small   { font-size: 13px; color: var(--muted2); }
.soft    { color: oklch(0.93 0.010 210 / 0.85); }
.accent-text { color: var(--accent); }
.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;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.site-main { padding-bottom: 56px; }
.section { padding: 72px 0; }
.section-head { margin-bottom: 40px; }
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
/* Amber underline expands on scroll reveal */
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  opacity: 0.6;
  transition: width 0.55s 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.section-head.visible h2::after { width: 48px; }
.section-head p { margin: 12px 0 0; max-width: 52ch; color: var(--muted); display: block; }

.section-soft .container {
  padding: 28px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--card);
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.card:hover {
  background: var(--card2);
  border-color: var(--border2);
  transform: translateY(-1px);
}
.card-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: oklch(0.84 0.21 60 / 0.09);
  border: 1px solid oklch(0.84 0.21 60 / 0.22);
  margin-bottom: 14px;
}
.card-icon svg { display: block; stroke: oklch(0.84 0.21 60 / 0.85); }
.card-link { display: block; }
.divider { height: 1px; background: var(--border); margin: 14px 0; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

/* ── Pills / Chips / Badges — rectangular in HUD aesthetic ──────────────── */
.pill, .chip, .badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  color: oklch(0.93 0.010 210 / 0.85);
  font-size: 12px;
  letter-spacing: .02em;
}
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pill-trust {
  color: oklch(0.76 0.14 152 / 0.90);
  background: oklch(0.76 0.14 152 / 0.07);
  border-color: oklch(0.76 0.14 152 / 0.22);
  font-size: 12.5px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}
.pill-trust::before {
  content: '✓';
  margin-right: 5px;
  font-size: 11px;
  opacity: .85;
}
.badge {
  font-size: 11px;
  background: oklch(0.76 0.14 152 / 0.06);
  border-color: oklch(0.76 0.14 152 / 0.18);
  color: oklch(0.76 0.14 152 / 0.85);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}

/* ── Status ──────────────────────────────────────────────────────────────── */
.status {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.status-investigating {
  border-color: oklch(0.84 0.21 60 / 0.30);
  background: oklch(0.84 0.21 60 / 0.09);
  color: var(--accent-soft);
}
.status-approved {
  border-color: oklch(0.76 0.14 152 / 0.24);
  background: oklch(0.76 0.14 152 / 0.08);
  color: oklch(0.76 0.14 152 / 0.95);
}

/* ── Kicker — hero only, deliberate brand element ────────────────────────── */
.kicker {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .75;
  margin-bottom: 4px;
  display: block;
}
.title {
  font-weight: 700;
  margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Quick strip ─────────────────────────────────────────────────────────── */
.section-links { padding: 24px 0; }
.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.quick-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  color: var(--text);
  transition: background .12s ease;
}
.quick-strip-item:last-child { border-right: none; }
.quick-strip-item:hover { background: var(--card); opacity: 1; }
.quick-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.quick-strip-desc { font-size: 13px; color: var(--muted); flex: 1; }
.quick-strip-arrow {
  color: var(--accent);
  opacity: 0.45;
  font-size: 16px;
  font-family: 'JetBrains Mono', monospace;
  transition: transform .15s ease, opacity .15s ease;
  flex-shrink: 0;
}
.quick-strip-item:hover .quick-strip-arrow { transform: translateX(3px); opacity: 0.85; }

/* ── Links ───────────────────────────────────────────────────────────────── */
.link {
  color: oklch(0.93 0.010 210 / 0.90);
  text-decoration: underline;
  text-decoration-color: oklch(0.84 0.21 60 / 0.28);
  text-underline-offset: 4px;
  transition: text-decoration-color .14s ease;
}
.link:hover { text-decoration-color: oklch(0.84 0.21 60 / 0.70); opacity: 1; }
.link-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero { padding: 52px 0 8px 0; }
.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0 0 8px 0;
}
.page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.page-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Prose ───────────────────────────────────────────────────────────────── */
.prose { max-width: 82ch; }
.prose h2 { margin: 28px 0 10px 0; font-size: 26px; font-weight: 700; }
.prose h3 { margin: 20px 0 8px 0; font-size: 16px; font-weight: 600; }
.prose p { color: oklch(0.93 0.010 210 / 0.85); }
.prose li { margin: 8px 0; color: var(--muted); }
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: oklch(0.84 0.21 60 / 0.28);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: oklch(0.84 0.21 60 / 0.65); opacity: 1; }
.prose blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 2px solid oklch(0.84 0.21 60 / 0.40);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── CTA box ─────────────────────────────────────────────────────────────── */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: oklch(0.84 0.21 60 / 0.05);
}
.cta-box h2 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; margin: 0 0 6px 0; }

/* ── Notify form ─────────────────────────────────────────────────────────── */
.notify-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.notify-form input {
  width: min(340px, 72vw);
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: oklch(0.09 0.012 255 / 0.55);
  color: var(--text);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  outline: none;
}
.notify-form input::placeholder { color: oklch(0.62 0.013 218 / 0.60); }
.notify-form input:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px oklch(0.84 0.21 60 / 0.10);
}
.notify-form .form-note { width: 100%; margin-top: 8px; font-size: 13px; }
.notify-form .form-note.ok  { color: oklch(0.76 0.14 152 / 0.95); }
.notify-form .form-note.err { color: oklch(0.64 0.18 25 / 0.95); }
.notify-form .form-note.muted { color: var(--muted2); }
.notify-form.is-busy input,
.notify-form.is-busy button { opacity: .80; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: oklch(0.09 0.012 255 / 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand { display: block; }
.footer-right { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-right .link {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .12s ease, border-color .12s ease;
}
.footer-right .link:hover {
  color: var(--text);
  border-bottom-color: oklch(0.84 0.21 60 / 0.40);
  opacity: 1;
}

/* ── Scroll progress ─────────────────────────────────────────────────────── */
.scroll-progress {
  position: absolute;
  bottom: -1px; left: 0;
  height: 1px;
  width: var(--scroll-pct, 0%);
  background: var(--accent);
  transition: width .08s linear;
  z-index: 1;
  pointer-events: none;
}

/* ── Spotlight ───────────────────────────────────────────────────────────── */
.spotlight {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  background: radial-gradient(
    480px 480px at var(--mx, 50%) var(--my, 30%),
    oklch(1 0 0 / 0.035),
    oklch(1 0 0 / 0.010) 50%,
    transparent 70%
  );
}
body:hover .spotlight { opacity: 1; }

/* ── Plan cards ──────────────────────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 28px;
}
.plan-card { display: flex; flex-direction: column; gap: 1rem; position: relative; }
.plan-card--popular {
  border-color: oklch(0.84 0.21 60 / 0.32);
  box-shadow: 0 0 0 1px oklch(0.84 0.21 60 / 0.08);
}
.plan-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: oklch(0.84 0.21 60 / 0.10);
  border: 1px solid oklch(0.84 0.21 60 / 0.24);
  border-radius: var(--radius);
  padding: .2em .6em;
  width: fit-content;
  font-family: 'JetBrains Mono', monospace;
}
.plan-name  { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.plan-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; line-height: 1; letter-spacing: 0.01em; }
.plan-desc  { font-size: .9rem; }
.plan-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .45rem;
  font-size: .875rem;
  color: var(--muted);
  flex: 1;
}
.plan-features li::before { content: '›  '; color: oklch(0.76 0.14 152 / 0.80); font-weight: 700; }

/* ── Misc legacy layout blocks ────────────────────────────────────────────── */
.grid3         { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 18px; }
.example-grid  { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: start; }
.example-copy h2 { font-size: clamp(22px, 2.3vw, 32px); letter-spacing: -0.01em; margin: 0 0 10px 0; }
.why h2        { margin: 0 0 12px 0; font-size: clamp(22px, 2.3vw, 32px); }
.why           { margin-bottom: 32px; }
.bullets       { margin: 0; padding-left: 18px; }
.bullets li    { margin: 8px 0; color: var(--muted); }
.p-compact     { margin: 0; }

/* timeline (legacy) */
.timeline-mini { display: flex; flex-direction: column; gap: 12px; }
.trow          { position: relative; display: flex; gap: 12px; align-items: flex-start; }
.trow:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 4px; top: 15px; bottom: -12px;
  width: 1px;
  background: linear-gradient(to bottom, oklch(0.76 0.14 152 / 0.28), oklch(0.76 0.14 152 / 0.06));
}
.dot {
  width: 9px; height: 9px;
  margin-top: 6px; flex-shrink: 0; position: relative; z-index: 1;
  border-radius: 1px;
  background: oklch(0.76 0.14 152 / 0.80);
  box-shadow: 0 0 0 3px oklch(0.76 0.14 152 / 0.12);
  animation: dotPulse 2.5s ease-in-out infinite;
}
.tmain        { font-weight: 600; }
.mini-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 88px 0 0;
  position: relative;
  overflow: hidden;
}

/* Single amber scan line on page load */
.hero-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  opacity: 0;
  top: 0;
  pointer-events: none;
  z-index: 2;
  animation: scanSweep 1.6s 0.4s cubic-bezier(0.4, 0, 0.4, 1) forwards;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  animation: fadeUp .45s ease both;
}

/* Terminal-style hero eyebrow — sharp rectangle, not pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 6px 14px;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 1px;
  background: var(--accent);
  flex-shrink: 0;
  animation: eyeDotPulse 2s ease-in-out infinite;
}

/* Corner bracket decoration on hero headline */
.hero-headline-frame {
  position: relative;
  padding: 18px 28px;
  margin-bottom: 0;
}
.hero-headline-frame::before,
.hero-headline-frame::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-color: oklch(0.84 0.21 60 / 0.50);
  border-style: solid;
}
.hero-headline-frame::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.hero-headline-frame::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(54px, 7.5vw, 90px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}

/* Blinking cursor */
.cursor {
  display: inline-block;
  width: 4px;
  height: 0.82em;
  background: var(--accent);
  margin-left: 6px;
  vertical-align: middle;
  border-radius: 1px;
  animation: blink 1.1s step-end infinite;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: oklch(0.93 0.010 210 / 0.68);
  max-width: 50ch;
  line-height: 1.72;
  margin: 24px 0 32px;
}

.cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Product mock window ─────────────────────────────────────────────────── */
.hero-mock {
  margin: 56px auto 0;
  max-width: 920px;
  border-radius: 4px;
  border: 1px solid var(--border2);
  background: oklch(0.07 0.015 258);
  box-shadow:
    0 0 0 1px oklch(0.84 0.21 60 / 0.06),
    0 32px 80px oklch(0 0 0 / 0.72);
  overflow: hidden;
  animation: fadeUp .55s .18s ease both;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: oklch(0.06 0.012 258);
  border-bottom: 1px solid var(--border);
}
.mock-traffic { display: flex; gap: 6px; align-items: center; }
.mock-dot { width: 11px; height: 11px; border-radius: 2px; flex-shrink: 0; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }
.mock-window-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: oklch(0.93 0.010 210 / 0.35);
  letter-spacing: .04em;
}
.mock-header-spacer { width: 54px; }

.mock-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 290px;
}

.mock-sidebar {
  background: oklch(0.08 0.013 256);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .03em;
  color: oklch(0.93 0.010 210 / 0.35);
  cursor: default;
  border: 1px solid transparent;
}
.mock-nav-item svg { opacity: .4; flex-shrink: 0; }
.mock-nav-item.active {
  background: oklch(0.84 0.21 60 / 0.08);
  border-color: oklch(0.84 0.21 60 / 0.20);
  color: var(--accent-soft);
}
.mock-nav-item.active svg { opacity: 1; stroke: var(--accent-soft); }

.mock-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mock-incident-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.mock-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted2);
}
.mock-incident-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 3px;
  color: var(--text);
}
.mock-audiences { display: flex; gap: 6px; }
.chip-active {
  border-color: oklch(0.84 0.21 60 / 0.32);
  background: oklch(0.84 0.21 60 / 0.10);
  color: var(--accent-soft);
}
.mock-divider { height: 1px; background: var(--border); margin: 2px 0; }

.mock-timeline { display: flex; flex-direction: column; gap: 10px; }
.mock-event {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
}
.mock-event:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 5px; top: 14px; bottom: -10px;
  width: 1px;
  background: linear-gradient(to bottom, oklch(0.76 0.14 152 / 0.24), oklch(0.76 0.14 152 / 0.04));
}
.event-dot {
  width: 11px; height: 11px;
  border-radius: 2px;
  background: oklch(0.76 0.14 152 / 0.45);
  box-shadow: 0 0 0 3px oklch(0.76 0.14 152 / 0.07);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.event-dot.active {
  background: oklch(0.76 0.14 152 / 0.90);
  box-shadow: 0 0 0 4px oklch(0.76 0.14 152 / 0.16);
  animation: dotPulse 2.5s ease-in-out infinite;
}
.event-body { flex: 1; min-width: 0; }
.event-label {
  font-size: 13px;
  font-weight: 500;
  color: oklch(0.93 0.010 210 / 0.88);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.event-tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius);
  background: oklch(0.84 0.21 60 / 0.10);
  border: 1px solid oklch(0.84 0.21 60 / 0.24);
  color: var(--accent-soft);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.event-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted2);
  margin-top: 3px;
}
.mock-footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }

/* ── Statement band ──────────────────────────────────────────────────────── */
.section-statement {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
/* Amber corner accent on statement */
.section-statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--accent);
  opacity: 0.5;
}
.statement {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--muted);
  line-height: 1.48;
  max-width: 76ch;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.statement em {
  font-style: normal;
  color: var(--text);
}

/* ── Feature list ────────────────────────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-bottom: 1px solid oklch(1 0 0 / 0.07);
  border-right: 1px solid oklch(1 0 0 / 0.07);
  transition: background .12s ease;
}
.feature-row:hover { background: oklch(1 0 0 / 0.020); }
.feature-row:nth-child(2n) { border-right: none; }
.feature-row:nth-last-child(-n+2) { border-bottom: none; }

.feature-icon-wrap {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: oklch(0.84 0.21 60 / 0.08);
  border: 1px solid oklch(0.84 0.21 60 / 0.20);
  margin-top: 2px;
}
.feature-icon-wrap svg { stroke: oklch(0.84 0.21 60 / 0.85); display: block; }
.feature-text h3 {
  margin: 0 0 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.feature-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.62;
}
.feature-text code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: oklch(0.76 0.14 152 / 0.80);
  background: oklch(0.76 0.14 152 / 0.06);
  border: 1px solid oklch(0.76 0.14 152 / 0.14);
  border-radius: var(--radius);
  padding: 1px 5px;
}

/* ── How it works — Steps ────────────────────────────────────────────────── */
.section-steps {
  background: oklch(1 0 0 / 0.012);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 32px;
}
.step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent);
  opacity: .70;
  margin-bottom: 12px;
  display: block;
}
.step h3 {
  font-family: 'Manrope', sans-serif;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.62;
  flex: 1;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: oklch(1 0 0 / 0.15);
}

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.will-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.50s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.50s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes scanSweep {
  from { top: 0%;   opacity: 0; }
  5%   {            opacity: 0.6; }
  95%  {            opacity: 0.5; }
  to   { top: 100%; opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px oklch(0.76 0.14 152 / 0.10); }
  50%       { box-shadow: 0 0 0 6px oklch(0.76 0.14 152 / 0.20); }
}
@keyframes eyeDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(0.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step-arrow { padding: 8px 0; transform: rotate(90deg); }
  .feature-list { grid-template-columns: 1fr; }
  .feature-row:nth-child(2n)        { border-right: 1px solid oklch(1 0 0 / 0.07); }
  .feature-row:nth-last-child(-n+2) { border-bottom: 1px solid oklch(1 0 0 / 0.07); }
  .feature-row:last-child           { border-bottom: none; }
  .quick-strip { grid-template-columns: 1fr; }
  .quick-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .quick-strip-item:last-child { border-bottom: none; }
}

@media (max-width: 980px) {
  .hero-grid      { grid-template-columns: 1fr; }
  .example-grid   { grid-template-columns: 1fr; }
  .grid3          { grid-template-columns: 1fr; }
  .cta-box        { flex-direction: column; align-items: flex-start; }
  .page-hero-inner{ flex-direction: column; align-items: flex-start; }
  .plan-grid      { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .mock-body      { grid-template-columns: 130px 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 16px; }
  .brand-tag { display: none; }
  .nav a:not(.btn) { font-size: 12px; padding: 6px 8px; }
  .hero { padding: 56px 0 0; }
  .hero-headline-frame { padding: 14px 20px; }
  .mock-sidebar { display: none; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-window-title { font-size: 10.5px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero    { padding: 40px 0 0; }
  .cta-box { padding: 16px; }
  .notify-form input { width: 100%; min-width: 0; }
  .pill, .chip  { font-size: 11.5px; padding: 4px 8px; }
  .grid3        { grid-template-columns: 1fr; }
  .feature-row  { padding: 16px; gap: 12px; }
  .hero-mock    { border-radius: var(--radius); }
  .statement    { text-align: left; }
  .hero-headline-frame::before,
  .hero-headline-frame::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight         { display: none; }
  .event-dot,
  .eyebrow-dot       { animation: none; }
  .hero-center,
  .hero-mock         { animation: none; }
  .scroll-progress   { transition: none; }
  .dot               { animation: none; }
  .cursor            { animation: none; opacity: 1; }
  .hero-scan         { display: none; }
  .reveal.will-reveal { opacity: 1; transform: none; }
  .section-head h2::after { transition: none; }
}
