/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --bg:  #050810;
  --bg2: #070c16;
  --text: #e8edf8;
  --muted: #7c8a9c;
  --muted2: #56626f;

  /* Cyan as primary interactive accent; green kept semantic (status only) */
  --accent: #00d4ff;
  --accent-dim: rgba(0,212,255,.10);

  --card:  rgba(255,255,255,.040);
  --card2: rgba(255,255,255,.060);
  --border: rgba(255,255,255,.08);

  --shadow: 0 24px 64px rgba(0,0,0,.60);
  --radius: 18px;
  --radius2: 24px;

  --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: 'DM Sans', 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, h3 {
  font-family: 'Syne', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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: linear-gradient(180deg, var(--bg), var(--bg2));
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image: radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(800px 600px at 50% 10%, black 35%, transparent 68%);
}

.bg-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.bg-glow-1 {
  width: 800px; height: 420px;
  left: 50%; top: -80px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,212,255,.13), transparent 68%);
  filter: blur(60px);
}
.bg-glow-2 {
  width: 480px; height: 480px;
  right: -160px; top: 80px;
  background: rgba(134,240,193,.09);
  filter: blur(90px);
}
.bg-glow-3 {
  width: 600px; height: 600px;
  left: -180px; bottom: -240px;
  background: rgba(0,212,255,.055);
  filter: blur(100px);
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(5,8,16,.65);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.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: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.brand-tag { font-size: 12px; color: var(--muted); margin-top: 3px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 7px 11px;
  border-radius: 10px;
  transition: color .12s ease, background .12s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.05); opacity: 1; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: transform .08s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover { opacity: 1; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.07); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 8px 13px; border-radius: 10px; font-size: 13px; }
.btn-primary {
  border-color: rgba(0,212,255,.38);
  background: linear-gradient(135deg, rgba(0,212,255,.18), rgba(0,212,255,.08));
  box-shadow: 0 0 0 1px rgba(0,212,255,.08) inset, 0 4px 18px rgba(0,212,255,.10);
  color: #c8f4ff;
}
.btn-primary:hover {
  border-color: rgba(0,212,255,.55);
  background: linear-gradient(135deg, rgba(0,212,255,.26), rgba(0,212,255,.14));
  box-shadow: 0 0 0 1px rgba(0,212,255,.14) inset, 0 6px 24px rgba(0,212,255,.18);
  color: #e0f8ff;
}
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.10); }
.btn-ghost:hover { background: rgba(255,255,255,.05); }
.btn-block { width: 100%; text-align: center; justify-content: center; }

/* ── Typography utilities ────────────────────────────────────────────────── */
.lead {
  font-size: clamp(16px, 1.7vw, 18px);
  color: rgba(232,237,248,.88);
  max-width: 52ch;
  line-height: 1.7;
}
.muted   { color: var(--muted); }
.small   { font-size: 13px; color: var(--muted2); }
.soft    { color: rgba(232,237,248,.85); }
.accent-text {
  background: linear-gradient(135deg, #00d4ff 0%, rgba(134,240,193,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.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: 64px 0; }
.section-head { margin-bottom: 32px; }
.section-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
}
.section-head p { margin: 0; max-width: 52ch; }

.section-soft .container {
  padding: 28px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.card:hover {
  background: var(--card2);
  border-color: rgba(255,255,255,.13);
  transform: translateY(-1px);
}
.card-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(134,240,193,.07));
  border: 1px solid rgba(0,212,255,.18);
  margin-bottom: 14px;
}
.card-icon svg { display: block; stroke: rgba(0,212,255,.85); }
.card-link { display: block; }
.divider { height: 1px; background: rgba(255,255,255,.07); margin: 14px 0; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

/* ── Pills / Chips / Badges ──────────────────────────────────────────────── */
.pill, .chip, .badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.030);
  color: rgba(232,237,248,.85);
  font-size: 12.5px;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-trust {
  color: rgba(134,240,193,.90);
  background: rgba(134,240,193,.07);
  border-color: rgba(134,240,193,.22);
  font-size: 13px;
}
.pill-trust::before {
  content: '✓';
  margin-right: 5px;
  font-size: 11px;
  opacity: .85;
}
.badge {
  font-size: 11.5px;
  background: rgba(134,240,193,.06);
  border-color: rgba(134,240,193,.18);
  color: rgba(134,240,193,.85);
}

/* ── Status ──────────────────────────────────────────────────────────────── */
.status {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  white-space: nowrap;
}
.status-investigating {
  border-color: rgba(0,212,255,.24);
  background: rgba(0,212,255,.08);
  color: rgba(0,212,255,.95);
}
.status-approved {
  border-color: rgba(134,240,193,.24);
  background: rgba(134,240,193,.08);
  color: rgba(134,240,193,.95);
}

/* ── Kicker ──────────────────────────────────────────────────────────────── */
.kicker {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .80;
  margin-bottom: 4px;
  display: block;
}
.title { font-weight: 600; margin-top: 4px; font-family: 'Syne', sans-serif; }

/* ── Quick links ─────────────────────────────────────────────────────────── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quick-links .card-link { position: relative; padding-right: 28px; }
.quick-links .card-link::after {
  content: '→';
  position: absolute;
  right: 14px; bottom: 14px;
  color: rgba(0,212,255,.45);
  font-size: 14px;
  transition: transform .15s ease, color .15s ease;
}
.quick-links .card-link:hover::after {
  transform: translateX(3px);
  color: rgba(0,212,255,.75);
}

/* ── Links ───────────────────────────────────────────────────────────────── */
.link {
  color: rgba(232,237,248,.90);
  text-decoration: underline;
  text-decoration-color: rgba(0,212,255,.28);
  text-underline-offset: 4px;
  transition: text-decoration-color .14s ease;
}
.link:hover { text-decoration-color: rgba(0,212,255,.60); 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, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  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: 22px; }
.prose h3 { margin: 20px 0 8px 0; font-size: 16px; font-weight: 600; }
.prose p { color: rgba(232,237,248,.85); }
.prose li { margin: 8px 0; color: var(--muted); }
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0,212,255,.28);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: rgba(0,212,255,.60); opacity: 1; }
.prose blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(0,212,255,.28);
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}

/* ── CTA box ─────────────────────────────────────────────────────────────── */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(135deg, rgba(0,212,255,.07), rgba(134,240,193,.05));
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.cta-box h2 { font-size: clamp(20px, 2.2vw, 26px); 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: 12px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(5,8,16,.55);
  color: var(--text);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}
.notify-form input::placeholder { color: rgba(124,138,156,.70); }
.notify-form input:focus {
  border-color: rgba(0,212,255,.38);
  box-shadow: 0 0 0 4px rgba(0,212,255,.08);
}
.notify-form .form-note { width: 100%; margin-top: 8px; font-size: 13px; }
.notify-form .form-note.ok  { color: rgba(134,240,193,.95); }
.notify-form .form-note.err { color: rgba(255,155,155,.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 rgba(255,255,255,.055);
  padding: 28px 0;
  background: rgba(5,8,16,.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: 14px;
  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: rgba(0,212,255,.35);
  opacity: 1;
}

/* ── Scroll progress ─────────────────────────────────────────────────────── */
.scroll-progress {
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  width: var(--scroll-pct, 0%);
  background: linear-gradient(90deg, rgba(0,212,255,.80), rgba(134,240,193,.65));
  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%),
    rgba(255,255,255,.050),
    rgba(255,255,255,.012) 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: rgba(0,212,255,.30);
  box-shadow: 0 0 0 1px rgba(0,212,255,.12), 0 8px 40px rgba(0,0,0,.40);
}
.plan-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(0,212,255,.90);
  background: rgba(0,212,255,.10);
  border: 1px solid rgba(0,212,255,.22);
  border-radius: 4px;
  padding: .2em .6em;
  width: fit-content;
}
.plan-name  { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.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: rgba(134,240,193,.8); font-weight: 600; }

/* ── Misc legacy layout blocks (used in inner pages) ────────────────────── */
.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, 30px); letter-spacing: -0.01em; margin: 0 0 10px 0; }
.why h2        { margin: 0 0 12px 0; font-size: clamp(22px, 2.3vw, 30px); }
.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, rgba(134,240,193,.28), rgba(134,240,193,.06));
}
.dot {
  width: 9px; height: 9px;
  margin-top: 6px; flex-shrink: 0; position: relative; z-index: 1;
  border-radius: 99px;
  background: rgba(134,240,193,.80);
  box-shadow: 0 0 0 4px rgba(134,240,193,.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: 80px 0 0; }

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.028);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

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

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin: 0 0 22px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(232,237,248,.72);
  max-width: 50ch;
  line-height: 1.72;
  margin: 0 0 28px;
}

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

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

/* ── Product mock window ─────────────────────────────────────────────────── */
.hero-mock {
  margin: 52px auto 0;
  max-width: 920px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: #090e1b;
  box-shadow:
    0 0 0 1px rgba(0,212,255,.06),
    0 40px 90px rgba(0,0,0,.72),
    0 0 130px rgba(0,212,255,.04);
  overflow: hidden;
  animation: fadeUp .55s .18s ease both;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: #060910;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mock-traffic { display: flex; gap: 6px; align-items: center; }
.mock-dot { width: 11px; height: 11px; border-radius: 999px; 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: rgba(232,237,248,.38);
  letter-spacing: .02em;
}
.mock-header-spacer { width: 54px; }

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

.mock-sidebar {
  background: #07090f;
  border-right: 1px solid rgba(255,255,255,.055);
  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: 8px;
  font-size: 12.5px;
  color: rgba(232,237,248,.38);
  cursor: default;
  border: 1px solid transparent;
}
.mock-nav-item svg { opacity: .45; flex-shrink: 0; }
.mock-nav-item.active {
  background: rgba(0,212,255,.08);
  border-color: rgba(0,212,255,.14);
  color: rgba(0,212,255,.90);
}
.mock-nav-item.active svg { opacity: 1; stroke: rgba(0,212,255,.85); }

.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: .12em;
  text-transform: uppercase;
  color: var(--muted2);
}
.mock-incident-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-top: 3px;
  color: var(--text);
}
.mock-audiences { display: flex; gap: 6px; }
.chip-active {
  border-color: rgba(0,212,255,.30);
  background: rgba(0,212,255,.10);
  color: rgba(0,212,255,.90);
}
.mock-divider { height: 1px; background: rgba(255,255,255,.06); 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: 16px; bottom: -10px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(134,240,193,.24), rgba(134,240,193,.04));
}
.event-dot {
  width: 11px; height: 11px;
  border-radius: 999px;
  background: rgba(134,240,193,.45);
  box-shadow: 0 0 0 3px rgba(134,240,193,.07);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.event-dot.active {
  background: rgba(134,240,193,.90);
  box-shadow: 0 0 0 4px rgba(134,240,193,.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: rgba(232,237,248,.88);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.event-tag {
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0,212,255,.10);
  border: 1px solid rgba(0,212,255,.22);
  color: rgba(0,212,255,.85);
  font-weight: 500;
}
.event-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted2);
  margin-top: 2px;
}
.mock-footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }

/* ── Statement band ──────────────────────────────────────────────────────── */
.section-statement {
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(255,255,255,.018);
}
.statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: rgba(232,237,248,.65);
  line-height: 1.58;
  max-width: 76ch;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.01em;
}
.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 rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .14s ease;
}
.feature-row:hover { background: rgba(255,255,255,.022); }
/* right column — no right border */
.feature-row:nth-child(2n) { border-right: none; }
/* last two rows — no bottom border */
.feature-row:nth-last-child(-n+2) { border-bottom: none; }

.feature-icon-wrap {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,255,.10), rgba(134,240,193,.06));
  border: 1px solid rgba(0,212,255,.16);
  margin-top: 2px;
}
.feature-icon-wrap svg { stroke: rgba(0,212,255,.85); display: block; }
.feature-text h3 {
  margin: 0 0 6px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  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: 12px;
  color: rgba(134,240,193,.80);
  background: rgba(134,240,193,.06);
  border: 1px solid rgba(134,240,193,.14);
  border-radius: 4px;
  padding: 1px 5px;
}

/* ── How it works — Steps ────────────────────────────────────────────────── */
.section-steps {
  background: rgba(255,255,255,.015);
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 32px;
}
.step {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.07);
  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: .15em;
  color: var(--accent);
  opacity: .75;
  margin-bottom: 12px;
  display: block;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  margin: 0 0 8px;
  font-size: 16px;
  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 18px;
  color: rgba(255,255,255,.18);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(134,240,193,.12); }
  50%       { box-shadow: 0 0 0 7px rgba(134,240,193,.22); }
}
@keyframes eyeDotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  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 rgba(255,255,255,.06); }
  .feature-row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .feature-row: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; }
  .quick-links    { 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: 13px; padding: 6px 8px; }
  .hero { padding: 52px 0 0; }
  .mock-sidebar { display: none; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-window-title { font-size: 10.5px; }
}

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

@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; }
}
