/* ===================================================================
   StuntConnect — design tokens
   =================================================================== */
:root {
  --bg: #08080a;
  --bg-alt: #0b0b0e;
  --card: #0d0d10;
  --card-alt: #0e0e12;
  --border: #1f1f24;
  --border-soft: #15151a;
  --border-softer: #1a1a1f;
  --border-faint: #26262c;

  --text: #e8e7e3;
  --white: #ffffff;
  --muted: #9a9a9f;
  --muted-2: #8e8e94;
  --muted-3: #86868c;
  --muted-4: #84848a;
  --faint: #7a7a80;
  --faintest: #54545a;

  --blue: #1a56db;
  --blue-soft: #5d80d8;
  --blue-tint: #9cc1ff;
  --blue-wash: rgba(26, 86, 219, 0.1);
  --blue-wash-strong: rgba(26, 86, 219, 0.14);
  --blue-line: rgba(26, 86, 219, 0.35);

  --green: #15803d;
  --green-bright: #3fbf78;
  --green-text: #5fbf86;
  --green-wash: rgba(21, 128, 61, 0.12);

  --amber: #d99a3c;
  --amber-wash: rgba(217, 154, 60, 0.14);
  --amber-line: rgba(217, 154, 60, 0.38);

  --red: #dc2626;
  --orange: #ea580c;
  --yellow: #ca8a04;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --wrap: 1200px;
  --wrap-narrow: 1100px;
  --wrap-prose: 820px;
}

/* ===================================================================
   Base
   =================================================================== */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a30; }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--blue-soft);
  text-transform: uppercase;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 40px; }

.section { padding: 96px 0; border-top: 0.5px solid var(--border-soft); }
.section.alt { background: var(--bg-alt); }

@media (prefers-reduced-motion: no-preference) {
  @keyframes scPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }
  @keyframes scFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .pulse-dot { animation: scPulse 2.4s ease-in-out infinite; }
  .float { animation: scFloat 6s ease-in-out infinite; }
}

.dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: 0 0 auto;
}

/* pill / badge chips */
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--blue-wash); border: 0.5px solid var(--blue-line);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; color: var(--blue-tint); text-transform: uppercase;
}

.v2-badge {
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.8px; color: var(--amber);
  background: var(--amber-wash); padding: 3px 8px; border-radius: 4px;
}

/* ===================================================================
   Nav
   =================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border-softer);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 17px 40px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { display: block; flex: 0 0 auto; }
.brand-name { font-size: 17px; letter-spacing: -0.2px; }
.brand-name .light { font-weight: 300; }
.brand-name .bold { font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.navlink { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.18s; }
.navlink:hover { color: var(--text); }

@media (max-width: 900px) {
  .nav-links a:not(.cta) { display: none; }
}

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; border-radius: 11px; padding: 15px 26px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
}
.btn.small { font-size: 13.5px; padding: 10px 18px; border-radius: 9px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26, 86, 219, 0.4); }
.btn-ghost { border: 0.5px solid #2c2c33; color: #cdcdce; }
.btn-ghost:hover { border-color: #4a4a55; color: #fff; }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative;
  background-image: radial-gradient(1100px 620px at 78% -8%, rgba(26, 86, 219, 0.16), transparent 58%);
}
.hero .wrap {
  padding: 96px 40px 80px;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center;
}
.hero h1 {
  font-size: 66px; line-height: 1.02; font-weight: 300; letter-spacing: -1.8px;
  margin: 26px 0; text-wrap: pretty;
}
.hero h1 .strong { color: #fff; font-weight: 500; }
.hero p.lead { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 520px; margin-bottom: 38px; text-wrap: pretty; }
.hero .actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .stats { display: flex; align-items: center; gap: 22px; margin-top: 42px; flex-wrap: wrap; }
.hero .stats .num { font-size: 24px; font-weight: 600; color: #fff; }
.hero .stats .num span { font-size: 13px; color: var(--faint); font-weight: 400; }
.hero .stats .label { font-size: 12.5px; color: var(--faint); }
.hero .stats .divider { width: 0.5px; height: 34px; background: var(--border-faint); }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; }
  .hero h1 { font-size: 44px; }
  .phone-wrap { justify-content: flex-start !important; }
}

/* ===================================================================
   Phone mockups (hero + safety) — pure CSS, no external deps
   =================================================================== */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  position: relative; width: 272px; height: 566px;
}
.phone.report { width: 280px; height: 580px; }
.phone-frame {
  position: absolute; inset: 0; border-radius: 42px; background: #16161b;
  box-shadow: 0 0 0 1.5px #2a2a30, 0 50px 100px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.phone.report .phone-frame { border-radius: 44px; box-shadow: 0 0 0 1.5px #2a2a30, 0 46px 90px rgba(0, 0, 0, 0.55); }
.phone-screen {
  position: absolute; top: 11px; left: 11px; right: 11px; bottom: 11px;
  border-radius: 32px; overflow: hidden; background: #f7f6f3;
}
.phone.report .phone-screen { border-radius: 33px; background: #fff; display: flex; flex-direction: column; }
.notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 20px; border-radius: 12px; background: #000; z-index: 4;
}
.phone.report .notch { width: 72px; height: 18px; z-index: 5; }
.status-bar {
  height: 34px; display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 20px 5px; background: #fff; font-size: 9px; font-weight: 600; color: #111;
}
.phone.report .status-bar { height: 30px; flex: 0 0 auto; padding: 0 18px 3px; }
.status-bar .dots { font-size: 8px; letter-spacing: 1px; font-weight: 400; }

.app-header { background: #fff; border-bottom: 0.5px solid #e2e1dc; padding: 9px 15px; }
.app-header-row { display: flex; align-items: center; gap: 8px; }
.app-mark { width: 15px; height: 15px; flex: 0 0 auto; }
.app-title { font-size: 12px; }
.app-title .light { font-weight: 300; color: #111; }
.app-title .bold { font-weight: 700; color: #111; }
.app-sub { font-size: 9.5px; color: #888; margin-top: 3px; }

.listing-row {
  display: flex; gap: 10px; padding: 9px 14px; align-items: center;
  border-bottom: 0.5px solid #ebeae5; background: #fff;
}
.avatar {
  width: 36px; height: 45px; border-radius: 6px; flex: 0 0 auto;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.listing-name { font-size: 11px; font-weight: 600; color: #111; }
.listing-loc { font-size: 8.5px; color: #888; margin-top: 1px; }
.listing-badges { margin-top: 4px; display: flex; gap: 3px; }
.badge-mini { font-size: 7px; font-weight: 700; color: #fff; padding: 2px 5px; border-radius: 3px; }
.badge-bsr { background: #1a3a6e; }
.badge-take3 { background: #3a2a1a; }
.badge-id { background: #15803d; }
.check { color: var(--blue); font-size: 14px; }
.listing-foot {
  padding: 10px 15px; display: flex; gap: 7px; align-items: center;
  background: var(--green-wash);
}
.listing-foot .status-dot { color: var(--green); font-size: 12px; }
.listing-foot span:last-child { font-size: 9px; color: var(--green); font-weight: 600; }

/* report phone specifics */
.report-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px 11px; border-bottom: 0.5px solid #eeede8;
}
.report-header-left { display: flex; align-items: center; gap: 8px; }
.report-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; flex: 0 0 auto;
}
.report-title { font-size: 13px; font-weight: 600; color: #14140f; }
.anon-badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700;
  letter-spacing: 0.6px; color: var(--green); background: rgba(21, 128, 61, 0.1);
  padding: 4px 9px; border-radius: 999px;
}
.anon-badge .status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.report-body { flex: 1; padding: 16px 18px 0; }
.report-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.report-progress span { font-size: 12px; font-weight: 600; color: #5c5c62; }
.progress-track { width: 120px; height: 4px; background: #ececea; border-radius: 2px; overflow: hidden; }
.progress-fill { width: 40%; height: 100%; background: var(--blue); border-radius: 2px; }
.report-question { font-size: 18px; font-weight: 600; color: #14140f; letter-spacing: -0.3px; margin-bottom: 14px; }
.report-options { display: flex; flex-direction: column; gap: 8px; }
.report-option {
  border: 0.5px solid #e8e7e2; border-radius: 12px; padding: 12px 13px;
  display: flex; align-items: center; gap: 11px;
}
.report-option.selected { border: 1.5px solid var(--green); box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.08); }
.severity-dot { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto; }
.report-option-title { font-size: 13px; font-weight: 600; color: #14140f; }
.report-option-sub { font-size: 10.5px; color: #8a8a8f; }
.report-note {
  display: flex; gap: 8px; align-items: flex-start; margin-top: 14px;
  background: rgba(21, 128, 61, 0.06); border-radius: 11px; padding: 11px 12px;
}
.report-note span:first-child { color: var(--green); font-size: 11px; margin-top: 1px; }
.report-note span:last-child { font-size: 11px; line-height: 1.5; color: #3f7a56; }
.report-footer { padding: 14px 18px 20px; flex: 0 0 auto; }
.report-cta { background: var(--blue); color: #fff; font-size: 14.5px; font-weight: 600; padding: 14px; border-radius: 13px; text-align: center; }

/* ===================================================================
   Feature cards
   =================================================================== */
.feat {
  border: 0.5px solid var(--border); border-radius: 16px; background: var(--card);
  padding: 30px 28px; transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.feat:hover { transform: translateY(-3px); border-color: #2e2e36; background: #101015; }
.feat-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--blue-wash-strong);
  border: 0.5px solid rgba(26, 86, 219, 0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--blue-soft); font-size: 20px;
}
.feat h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 9px; }
.feat p { font-size: 14px; line-height: 1.6; color: var(--muted-2); }

.feat-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .feat-grid-3 { grid-template-columns: 1fr; } }

.section-head { max-width: var(--wrap-prose); margin-bottom: 56px; }
.section-head h2 {
  font-size: 40px; line-height: 1.14; font-weight: 300; letter-spacing: -0.9px; text-wrap: pretty;
}
.section-head h2 .strong { color: #fff; font-weight: 500; }
@media (max-width: 700px) { .section-head h2 { font-size: 30px; } }

/* ===================================================================
   Founder
   =================================================================== */
.founder-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-side { position: sticky; top: 104px; }
@media (max-width: 900px) { .founder-side { position: static; } }
.founder-photo {
  width: 340px; height: 420px; max-width: 100%; border: 0.5px solid var(--border-faint);
  border-radius: 18px; object-fit: cover; display: block;
}
.founder-name { font-size: 21px; font-weight: 600; color: #fff; margin-top: 22px; }
.founder-role { font-size: 13.5px; color: var(--muted-2); margin-top: 4px; line-height: 1.5; }
.founder-copy { font-size: 21px; line-height: 1.62; color: #cdcdce; font-weight: 300; letter-spacing: -0.2px; text-wrap: pretty; }
.founder-copy p { margin-bottom: 24px; }
.founder-copy p:last-child { margin-bottom: 0; }
.founder-copy .strong { color: #fff; }
.founder-sig { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.founder-sig .sig { font-family: var(--font-mono); font-size: 26px; font-weight: 500; color: #fff; font-style: italic; letter-spacing: 0.5px; }
.founder-sig .divider { width: 0.5px; height: 26px; background: #2c2c33; }
.founder-sig .role { font-size: 13px; color: var(--faint); }

/* ===================================================================
   Industry credentials
   =================================================================== */
.industry-center { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 40px; text-align: center; }
.industry-center h2 { font-size: 36px; line-height: 1.16; font-weight: 300; letter-spacing: -0.8px; max-width: 760px; margin: 0 auto 18px; text-wrap: pretty; color: #fff; }
.industry-center h2 .strong { font-weight: 500; }
.industry-center > p { font-size: 16px; line-height: 1.6; color: var(--muted-2); max-width: 680px; margin: 0 auto 48px; text-wrap: pretty; }
.industry-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.6px; color: var(--faintest); text-transform: uppercase; margin-bottom: 24px; }
.cred-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 840px; margin: 0 auto; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 9px; border: 0.5px solid var(--border-faint);
  background: var(--card-alt); border-radius: 10px; padding: 13px 20px; font-size: 14.5px; font-weight: 600; color: #dcdcde;
}
.cred-chip .tick { color: var(--green); }
.cred-chip.more { color: var(--muted); }

/* ===================================================================
   How it works — numbered steps
   =================================================================== */
.steps-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.steps-head h2 { font-size: 42px; line-height: 1.08; font-weight: 300; letter-spacing: -1px; color: #fff; }
.steps-head h2 .strong { font-weight: 500; }
.v2-note {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 6px;
  background: rgba(217, 154, 60, 0.08); border: 0.5px solid var(--amber-line);
}
.v2-note .tag { font-size: 9px; font-weight: 700; color: var(--amber); letter-spacing: 1px; }
.v2-note span:last-child { font-size: 12.5px; color: #b6b6bb; }

.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  border: 0.5px solid var(--border); border-radius: 14px; background: var(--card); padding: 24px 22px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.step:hover { transform: translateY(-3px); border-color: #2e2e36; background: #101015; }
.step-num-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.step-num {
  font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: transparent;
  -webkit-text-stroke: 1px #2e3f6e;
}
.step h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step p { font-size: 13px; line-height: 1.55; color: var(--muted-3); }

/* ===================================================================
   Features section
   =================================================================== */
.spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  border: 0.5px solid var(--border); border-radius: 20px; background: var(--card);
  padding: 48px; margin-bottom: 18px;
}
@media (max-width: 900px) { .spotlight { grid-template-columns: 1fr; padding: 32px; } }
.spotlight-tag-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.tag-v2 {
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #e6b870;
  background: var(--amber-wash); border: 0.5px solid var(--amber-line); padding: 4px 10px; border-radius: 5px;
}
.tag-mono { font-family: var(--font-mono); font-size: 11px; color: var(--blue-soft); }
.spotlight h3 { font-size: 30px; font-weight: 500; color: #fff; letter-spacing: -0.6px; line-height: 1.12; margin-bottom: 16px; text-wrap: pretty; }
.spotlight p { font-size: 15.5px; line-height: 1.62; color: var(--muted); margin-bottom: 26px; text-wrap: pretty; }
.spotlight-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.spotlight-stats .num { font-size: 30px; font-weight: 600; color: #fff; }
.spotlight-stats .label { font-size: 12px; color: var(--faint); }

.match-panel { background: #111116; border-radius: 16px; padding: 24px; }
.match-avatars { display: flex; gap: 18px; justify-content: center; margin-bottom: 20px; }
.match-avatar-frame { text-align: center; }
.match-avatar-frame .avatar-lg {
  width: 74px; height: 90px; border-radius: 9px; object-fit: cover;
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
}
.match-avatar-frame .avatar-lg.matched { border: 2px solid var(--blue); }
.match-avatar-frame .cap { font-size: 9px; color: #cdcdce; margin-top: 6px; font-weight: 600; }
.match-bars { display: flex; flex-direction: column; gap: 11px; }
.match-bar-row { display: flex; justify-content: space-between; margin-bottom: 4px; font-size: 11px; }
.match-bar-row .label { color: #b6b6bb; }
.match-bar-row .val { font-weight: 700; color: #fff; }
.match-bar-track { height: 4px; background: #22222a; border-radius: 2px; }
.match-bar-fill { height: 100%; background: var(--blue); border-radius: 2px; }

.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 40px; }
@media (max-width: 800px) { .duo-grid { grid-template-columns: 1fr; } }
.duo-card { border: 0.5px solid var(--border); border-radius: 18px; background: var(--card); padding: 34px; }
.duo-card .glyph { font-size: 22px; margin-bottom: 16px; }
.duo-card h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.duo-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin-bottom: 16px; }
.duo-confirm { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--green-text); font-weight: 600; }
.status-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.status-pill { font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 9px; }
.status-pill.on-set { color: var(--green); background: #dcfce7; }
.status-pill.late { color: #b45309; background: #fef3c7; }
.status-pill.wrapped { color: #555; background: #eceae5; }

.feat-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .feat-grid-3col { grid-template-columns: 1fr; } }
.feat-card {
  border: 0.5px solid var(--border); border-radius: 14px; background: var(--card); padding: 26px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.feat-card:hover { transform: translateY(-3px); border-color: #2e2e36; background: #101015; }
.feat-card .index { font-family: var(--font-mono); font-size: 11px; color: var(--blue-soft); margin-bottom: 12px; }
.feat-card .index.amber { color: var(--amber); }
.feat-card .index-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.feat-card h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 7px; }
.feat-card p { font-size: 13px; line-height: 1.55; color: var(--muted-4); }
.feat-card.offline { background: linear-gradient(135deg, #0f1320, var(--card)); display: flex; flex-direction: column; justify-content: center; }
.feat-card.offline p { color: var(--muted); }

.numbers-card { margin-top: 56px; border: 0.5px solid var(--border); border-radius: 18px; background: var(--card); overflow: hidden; }
.numbers-head { padding: 22px 28px; border-bottom: 0.5px solid var(--border-softer); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.6px; color: var(--faintest); text-transform: uppercase; }
.numbers-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.numbers-cell { padding: 26px; border-right: 0.5px solid var(--border-softer); }
.numbers-cell:last-child { border-right: none; }
.numbers-cell .label { font-size: 11px; color: var(--faint); margin-bottom: 10px; }
.numbers-cell .old { font-size: 13px; color: var(--muted-3); text-decoration: line-through; }
.numbers-cell .new { font-size: 17px; font-weight: 600; color: var(--green-text); margin-top: 3px; }

/* ===================================================================
   Safety section
   =================================================================== */
.safety-eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.anon-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 999px;
  background: rgba(21, 128, 61, 0.1); border: 0.5px solid rgba(21, 128, 61, 0.3);
}
.anon-pill .status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }
.anon-pill span:last-child { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.4px; color: #7fd6a2; text-transform: uppercase; }

.safety-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; margin-bottom: 56px; }
@media (max-width: 900px) { .safety-grid { grid-template-columns: 1fr; } }
.safety-grid h2 { font-size: 42px; line-height: 1.08; font-weight: 300; letter-spacing: -1px; margin-bottom: 22px; text-wrap: pretty; color: #fff; }
.safety-grid h2 .strong { font-weight: 500; }
.safety-grid > div > p { font-size: 16.5px; line-height: 1.62; color: var(--muted); margin-bottom: 30px; text-wrap: pretty; }
.safety-checks { display: flex; flex-direction: column; gap: 12px; }
.safety-check { display: inline-flex; align-items: center; gap: 11px; }
.safety-check .tick {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(21, 128, 61, 0.14); color: var(--green-text);
  display: flex; align-items: center; justify-content: center; font-size: 12px; flex: 0 0 auto;
}
.safety-check span:last-child { font-size: 14.5px; color: #cdcdce; }

.severity-panel { border: 0.5px solid var(--border-softer); border-radius: 18px; background: var(--card); overflow: hidden; margin-top: 40px; }
.severity-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 800px) { .severity-grid { grid-template-columns: 1fr; } }
.severity-col { padding: 26px 30px; border-right: 0.5px solid var(--border-softer); }
.severity-col:last-child { border-right: none; }
.severity-col-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.4px; color: var(--faintest); text-transform: uppercase; margin-bottom: 16px; }
.bar-row { display: flex; justify-content: space-between; margin-bottom: 5px; }
.bar-row span:first-child { font-size: 12.5px; color: #cdcdce; }
.bar-row span:last-child { font-size: 12.5px; font-weight: 600; color: #cdcdce; }
.bar-track { height: 8px; background: #17171d; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: #3a5a9e; border-radius: 4px; }
.severity-bar { display: flex; height: 12px; border-radius: 6px; overflow: hidden; margin-bottom: 16px; }
.severity-legend { display: flex; flex-direction: column; gap: 10px; }
.severity-legend-row { display: flex; align-items: center; gap: 9px; }
.severity-legend-row .status-dot { width: 9px; height: 9px; border-radius: 50%; }
.severity-legend-row span:nth-child(2) { font-size: 12px; color: #b6b6bb; flex: 1; }
.severity-legend-row span:last-child { font-size: 12px; font-weight: 700; color: #fff; }
.region-row { margin-bottom: 4px; }
.region-track { height: 6px; background: #17171d; border-radius: 3px; overflow: hidden; }
.severity-footer {
  padding: 16px 30px; border-top: 0.5px solid var(--border-softer); display: flex; gap: 9px; align-items: center; background: var(--bg-alt);
}
.severity-footer .tick { color: var(--green-text); font-size: 12px; }
.severity-footer span:last-child { font-size: 11.5px; color: #6a6a70; }

/* ===================================================================
   Pricing
   =================================================================== */
.pricing-card { border: 0.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(180deg, #101014, var(--bg-alt)); }
.pricing-head {
  padding: 56px 48px 42px; text-align: center;
  background-image: radial-gradient(720px 320px at 50% -25%, rgba(26, 86, 219, 0.14), transparent 62%);
  border-bottom: 0.5px solid var(--border);
}
.pricing-head h2 { font-size: 44px; font-weight: 300; color: #fff; letter-spacing: -1px; line-height: 1.06; margin-bottom: 14px; }
.pricing-head h2 .strong { font-weight: 500; }
.pricing-head p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 560px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-col { padding: 36px 32px; text-align: center; border-right: 0.5px solid var(--border); }
.pricing-col:last-child { border-right: none; }
.pricing-col.highlight { background: rgba(26, 86, 219, 0.05); }
.pricing-col .tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--blue-soft); letter-spacing: 1.5px; margin-bottom: 14px; }
.pricing-col .price { font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.pricing-col .price span { font-size: 14px; color: var(--muted-3); font-weight: 400; }
.pricing-col .desc { font-size: 13px; color: var(--muted-3); line-height: 1.55; }

/* ===================================================================
   Waitlist / final CTA
   =================================================================== */
.waitlist-inner { max-width: 760px; margin: 0 auto; padding: 104px 40px; text-align: center; }
.waitlist-mark { width: 44px; height: 44px; margin: 0 auto 30px; }
.waitlist-inner h2 { font-size: 48px; font-weight: 300; color: #fff; letter-spacing: -1.2px; line-height: 1.05; margin-bottom: 18px; text-wrap: pretty; }
.waitlist-inner h2 .strong { font-weight: 500; }
.waitlist-inner > p { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 520px; margin: 0 auto 36px; text-wrap: pretty; }
.waitlist-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.waitlist-note { font-size: 12.5px; color: #5a5a60; margin-top: 16px; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { border-top: 0.5px solid var(--border-soft); }
.footer .wrap { padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.footer-brand .mark { width: 20px; height: 20px; }
.footer-brand .tag { font-size: 13px; color: #5a5a60; margin-left: 10px; }
.footer-links { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--faint); flex-wrap: wrap; }
.footer-links .mono { font-family: var(--font-mono); font-size: 11px; color: var(--faintest); }
.ig-link { display: inline-flex; align-items: center; gap: 7px; }

/* ===================================================================
   Policy page
   =================================================================== */
.policy-hero { padding: 72px 0 24px; border-top: none; }
.policy-hero h1 { font-size: 44px; font-weight: 300; letter-spacing: -1px; color: #fff; margin-bottom: 12px; }
.policy-updated { font-size: 13px; color: var(--faint); }
.policy-content { max-width: 760px; }
.policy-content h2 {
  font-size: 22px; font-weight: 600; color: #fff; letter-spacing: -0.3px;
  margin: 48px 0 16px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.policy-content ul { margin: 0 0 16px 20px; }
.policy-content li { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin-bottom: 8px; }
.policy-content a { color: var(--blue-tint); text-decoration: underline; text-underline-offset: 2px; }
.policy-content strong { color: var(--text); font-weight: 600; }
