/* Capital Firewall v3 — Pixel-accurate spec reconstruction
   Ref: Bloomberg × Palantir × Linear aesthetic
   Primary accent: #F5820A (yellow), not amber
   Border radius: 12-20px organic
   ------------------------------------------------------------------ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:          #0A0A0E;
  --bg-panel:    #111318;
  --bg-card:     #15181F;
  --bg-deep:     #0D0D11;

  --border:      #252B35;
  --border-hi:   #32394A;

  --text:        #E8E6E2;
  --text-2:      #8A9099;
  --text-3:      #474E5C;

  --yellow:      #F5820A;
  --yellow-dim:  rgba(245,130,10,.10);
  --yellow-glow: rgba(245,130,10,.20);
  --amber:       #F5A000;
  --red:         #E5484D;
  --green:       #22C55E;

  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
  --fast: 130ms;
  --mid:  260ms;

  --r:    12px;
  --r-lg: 16px;
  --r-sm:  8px;
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(255,255,255,.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.008) 1px, transparent 1px);
  background-size: 52px 52px;
}

a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; }
ul { list-style:none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width:1180px; margin:0 auto; padding:0 32px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow-sm {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow-label { color: var(--yellow); }

h1,h2,h3 { line-height:1.08; letter-spacing:-.018em; font-weight:700; }
h1 { font-size: clamp(32px,5vw,58px); }
h2 { font-size: clamp(24px,3.6vw,40px); }
h3 { font-size: 16px; font-weight:600; }

.hero-accent { font-style:normal; color: var(--yellow); }

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Window dots */
.wdot { width:11px; height:11px; border-radius:50%; display:inline-block; }
.wdot-red    { background:#FF5F57; }
.wdot-amber  { background:#FEBC2E; }
.wdot-green  { background:#28C840; }

/* Reveal */
.reveal { opacity:0; transform:translateY(14px); transition:opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  font-family: var(--mono); font-size:13px; font-weight:700;
  background: var(--yellow); color: #0A0A0E;
  border: 1.5px solid var(--yellow);
  border-radius: var(--r);
  padding: 11px 22px;
  display: inline-flex; align-items:center;
  transition: all var(--fast) var(--ease);
}
.btn-primary:hover {
  background: #F79420;
  box-shadow: 0 0 0 1px #F79420, 0 6px 28px rgba(245,130,10,.28);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: var(--mono); font-size:13px;
  color: var(--text-2); border: 1px solid var(--border-hi);
  border-radius: var(--r); padding: 11px 22px;
  display: inline-flex; align-items:center;
  transition: all var(--fast) var(--ease);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-waitlist {
  font-family: var(--mono); font-size:12px; font-weight:600;
  background: var(--yellow); color: #0A0A0E;
  border: none; border-radius: var(--r);
  padding: 9px 18px;
  display: inline-flex; align-items:center;
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}
.btn-waitlist:hover {
  background: #F79420;
  box-shadow: 0 4px 20px rgba(245,130,10,.25);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top:0; z-index:100;
  background: rgba(10,10,14,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width:1180px; margin:0 auto; padding:0 32px;
  height: 56px;
  display: flex; align-items:center; justify-content:space-between; gap:20px;
}

.logo {
  display:flex; align-items:center; gap:10px;
  font-family: var(--mono); font-size:13px; font-weight:600;
  letter-spacing:.05em; white-space:nowrap;
}

.nav-links {
  display:flex; align-items:center; gap:26px;
}
.nav-link {
  font-size:13px; color:var(--text-2);
  transition:color var(--fast) var(--ease);
}
.nav-link:hover { color:var(--text); }

.nav-actions { display:flex; align-items:center; gap:16px; }

.lang-switch { display:flex; align-items:center; gap:4px; }
.lang-sep { font-family:var(--mono); font-size:11px; color:var(--border-hi); user-select:none; }
.lang-btn {
  background:none; border:none;
  font-family:var(--mono); font-size:11px; letter-spacing:.10em;
  color:var(--text-3); padding:4px 6px; border-radius:6px;
  transition:color var(--fast) var(--ease);
}
.lang-btn:hover { color:var(--text); }
.lang-btn.active { color:var(--yellow); }
.lang-btn:focus-visible { outline:2px solid var(--yellow); outline-offset:2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 56px 0 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-inner {
  max-width:1180px; margin:0 auto; padding:0 32px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 52px;
  align-items: flex-start;
}

.hero-copy { padding-bottom: 64px; padding-top: 16px; }

.hero-copy h1 { max-width: 13ch; margin-bottom: 20px; }

.hero-sub {
  font-size: 17px; color: var(--text-2);
  line-height: 1.6; max-width: 40ch;
  margin-bottom: 30px;
}

.hero-btns { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:28px; }

.hero-trust { display:flex; align-items:center; gap:12px; }
.trust-faces { display:flex; }
.trust-face {
  width:28px; height:28px; border-radius:50%;
  background: var(--bg-card);
  border: 2px solid var(--bg);
  font-family:var(--mono); font-size:10px; color:var(--text-3);
  display:flex; align-items:center; justify-content:center;
  margin-right:-7px;
}
.trust-label { font-size:12px; color:var(--text-3); padding-left:12px; }

/* Map panel */
.hero-map-wrap {
  display:flex;
  align-items:flex-end;
}

.map-window {
  width:100%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-bottom:none;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow:hidden;
  box-shadow: 0 -2px 48px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.03);
}

.map-titlebar {
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 14px; gap:12px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  flex-wrap:wrap;
}

.map-titlebar-left { display:flex; align-items:center; gap:7px; }
.map-title-text {
  font-family:var(--mono); font-size:10px;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-3); margin-left:6px;
}

.map-titlebar-right { display:flex; }
.decision-picker { display:flex; flex-wrap:wrap; gap:5px; }

.dchip {
  font-family:var(--mono); font-size:11px; padding:5px 11px;
  border: 1px solid var(--border-hi); border-radius:var(--r-sm);
  color:var(--text-2); background:transparent;
  transition:all var(--fast) var(--ease);
}
.dchip:hover { border-color:rgba(245,130,10,.4); color:var(--text); }
.dchip.active {
  border-color:var(--yellow); color:var(--yellow);
  background: var(--yellow-dim);
}
.dchip:focus-visible { outline:2px solid var(--yellow); outline-offset:2px; }

.map-canvas {
  height: 320px;
  background: #090A0D;
  position:relative;
}
.map-canvas svg { width:100%; height:100%; display:block; }

.map-legend {
  display:flex; flex-wrap:wrap; gap:16px; align-items:center;
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  font-family:var(--mono); font-size:10px; color:var(--text-3);
}
.leg-item { display:flex; align-items:center; gap:6px; }
.leg-dot { width:7px; height:7px; border-radius:2px; flex-shrink:0; }
.leg-note { margin-left:auto; }

/* SVG text styles */
.map-root-lbl {
  font-family:'IBM Plex Mono',monospace; font-size:10px;
  fill: var(--text-2); letter-spacing:.06em;
}
.map-node-name {
  font-family:'IBM Plex Mono',monospace; font-size:9.5px;
  fill: #E8E6E2; font-weight:500;
}
.map-node-impact {
  font-family:'IBM Plex Mono',monospace; font-size:8px;
  letter-spacing:.06em;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width:1180px; margin:0 auto; padding:0 32px;
  display:flex; align-items:stretch;
  min-height:96px;
}

.stat-cell {
  flex:1; display:flex; align-items:center; gap:14px;
  padding: 20px 28px;
}
.stat-cell:first-child { padding-left:0; }
.stat-cell:last-child  { padding-right:0; }

.stat-icon {
  color: var(--yellow);
  width:32px; height:32px;
  border: 1px solid var(--border);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  background: var(--yellow-dim);
}

.stat-body { display:flex; flex-direction:column; gap:3px; }

.stat-num {
  font-family:var(--mono); font-size:clamp(18px,2.2vw,24px);
  font-weight:600; color:var(--text); letter-spacing:-.01em;
  line-height:1;
}
.stat-lbl { font-size:12px; font-weight:500; color:var(--text-2); }
.stat-sub { font-family:var(--mono); font-size:9.5px; color:var(--text-3); }

.stat-div {
  width:1px; background:var(--border);
  flex-shrink:0; margin:18px 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { border-bottom: 1px solid var(--border); }

/* ============================================================
   TWIN SECTION: PROBLEM + HOW IT WORKS
   ============================================================ */
.twin-section { padding:0; }

.twin-grid {
  max-width:1180px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
}

.twin-panel { padding: 72px 40px 72px; }
.twin-left  { border-right: 1px solid var(--border); }

.twin-h2 { margin-bottom:14px; font-size:clamp(22px,2.8vw,34px); }

.twin-lead {
  font-size:14.5px; color:var(--text-2);
  line-height:1.65; max-width:44ch;
  margin-bottom:32px;
}

/* Problem cards */
.prob-cards { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:28px; }

.prob-card {
  display:flex; align-items:center; gap:9px;
  background:var(--bg-card);
  border: 1px solid var(--border);
  border-radius:var(--r-sm);
  padding: 9px 14px;
  flex:1; min-width:140px;
  transition:border-color var(--fast) var(--ease);
}
.prob-card:hover { border-color:var(--border-hi); }

.prob-card-icon {
  width:28px; height:28px;
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.prob-icon-red   { background:rgba(229,72,77,.10); color:#E5484D; border:1px solid rgba(229,72,77,.20); }
.prob-icon-amber { background:rgba(245,160,0,.10); color:#F5A000; border:1px solid rgba(245,160,0,.20); }

.prob-card-lbl { font-size:12px; font-weight:500; color:var(--text-2); }

/* Wave */
.prob-wave { margin-top:4px; height:70px; }
.prob-wave svg { width:100%; height:100%; }

/* How steps */
.how-steps {
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px; margin-bottom:24px;
}

.how-step {
  display:flex; align-items:flex-start; gap:12px;
  background:var(--bg-card);
  border: 1px solid var(--border);
  border-radius:var(--r);
  padding:14px 16px;
  transition:border-color var(--fast) var(--ease);
}
.how-step:hover { border-color:var(--border-hi); }

.how-step-icon {
  width:34px; height:34px;
  border-radius:var(--r-sm);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; color:var(--text-3);
  transition:all var(--fast) var(--ease);
}
.how-step-active { background:var(--yellow-dim); border-color:var(--yellow); color:var(--yellow); }
.how-step-verdict { background:rgba(34,197,94,.08); border-color:rgba(34,197,94,.3); color:#22C55E; }

.how-step-body { display:flex; flex-direction:column; gap:3px; padding-top:1px; }
.how-step-name { font-size:13px; font-weight:600; color:var(--text); }
.how-step-sub  { font-family:var(--mono); font-size:9.5px; color:var(--text-3); letter-spacing:.06em; }

.how-footnote {
  font-size:12.5px; color:var(--text-3);
  line-height:1.6; border-top:1px solid var(--border);
  padding-top:18px; margin-top:8px;
}

/* ============================================================
   LIVE PREVIEW
   ============================================================ */
.preview-section { background:var(--bg-deep); }

.preview-outer {
  max-width:1180px; margin:0 auto; padding:72px 32px;
  display:grid; grid-template-columns:280px 1fr;
  gap:40px; align-items:start;
}

/* Left description */
.preview-desc { padding-top:6px; }

.preview-h2 { font-size:clamp(20px,2.4vw,30px); margin-bottom:12px; }

.preview-sub { font-size:14px; color:var(--text-2); line-height:1.6; max-width:32ch; margin-bottom:24px; }

.preview-checklist { display:flex; flex-direction:column; gap:7px; margin-bottom:28px; }

.preview-checklist li {
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--text-2);
}
.chk { font-family:var(--mono); font-size:12px; width:16px; text-align:center; }
.check-done .chk { color:var(--green); }
.check-pend .chk { color:var(--text-3); }
.check-pend { color:var(--text-3); }

/* Interface mockup */
.preview-interface {
  background:var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow:hidden;
}

.if-chrome {
  display:flex; align-items:center; gap:12px;
  padding: 10px 16px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  flex-wrap:wrap;
}

.if-chrome-left { display:flex; align-items:center; gap:7px; }

.if-project-name {
  font-family:var(--mono); font-size:11px;
  color:var(--text-3); letter-spacing:.04em;
}

.if-tabs { display:flex; margin-left:auto; }
.if-tab {
  font-family:var(--mono); font-size:10.5px;
  padding:4px 11px; color:var(--text-3);
  border-right: 1px solid var(--border);
  cursor:pointer;
  transition:color var(--fast) var(--ease);
}
.if-tab:first-child { border-left: 1px solid var(--border); }
.if-tab:hover { color:var(--text-2); }
.if-tab-active { color:var(--yellow); background:var(--yellow-dim); }

.if-badge {
  font-family:var(--mono); font-size:9px; letter-spacing:.12em;
  color:var(--text-3); border:1px solid var(--border);
  padding:3px 8px; border-radius:4px;
}

/* Body split */
.if-body {
  display:grid;
  grid-template-columns: 160px 1fr 200px;
  min-height:280px;
}

/* Verdict column */
.if-verdict-col {
  padding: 20px 18px;
  border-right: 1px solid var(--border);
  display:flex; flex-direction:column; gap:10px;
}

.if-col-label {
  font-family:var(--mono); font-size:8.5px;
  letter-spacing:.16em; color:var(--text-3);
  text-transform:uppercase; display:block;
}
.if-col-filter { color:var(--text-3); font-size:8px; }

.if-verdict-word {
  font-family:var(--mono); font-size:30px; font-weight:700;
  color:#E5484D;
  text-shadow: 0 0 24px rgba(229,72,77,.35);
  line-height:1;
}

.if-verdict-reason { font-size:11px; color:var(--text-2); line-height:1.5; }

/* Consequences column */
.if-consequences-col {
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  display:flex; flex-direction:column; gap:14px;
}

.if-cons-rows { display:flex; flex-direction:column; gap:8px; }

.if-con-row {
  display:grid;
  grid-template-columns: 100px 1fr 42px 44px;
  align-items:center; gap:8px;
}

.if-con-name { font-size:11px; color:var(--text-2); font-weight:500; }

.if-con-track {
  height:3px; background:var(--border);
  border-radius:2px; overflow:hidden;
}
.if-con-fill { height:100%; border-radius:2px; }
.if-fill-red { background:#E5484D; box-shadow:0 0 6px rgba(229,72,77,.5); }
.if-fill-amb { background:#F5A000; box-shadow:0 0 6px rgba(245,160,0,.4); }

.if-con-val { font-family:var(--mono); font-size:9px; color:var(--text-3); text-align:right; }

.if-badge-red {
  font-family:var(--mono); font-size:8.5px; letter-spacing:.06em;
  color:#E5484D; text-align:right;
}
.if-badge-amb {
  font-family:var(--mono); font-size:8.5px; letter-spacing:.06em;
  color:#F5A000; text-align:right;
}

/* Evidence table */
.if-evidence { margin-top:auto; border-top:1px solid var(--border); padding-top:12px; }

.if-ev-header {
  display:grid; grid-template-columns:1fr 1.2fr .8fr .8fr .6fr;
  gap:6px; margin-bottom:5px;
  font-family:var(--mono); font-size:8px;
  letter-spacing:.10em; color:var(--text-3);
  text-transform:uppercase;
}

.if-ev-row {
  display:grid; grid-template-columns:1fr 1.2fr .8fr .8fr .6fr;
  gap:6px; padding:5px 0;
  border-top:1px solid var(--border);
  font-family:var(--mono); font-size:9.5px; color:var(--text-3);
}
.ev-red { color:#E5484D; }

/* Threshold + Stress column */
.if-threshold-col {
  padding: 16px 16px;
  display:flex; flex-direction:column; gap:16px;
}

.if-threshold-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  display:flex; flex-direction:column; gap:6px;
}

.if-thresh-desc { font-size:10px; color:var(--text-2); }

.if-thresh-val {
  font-family:var(--mono); font-size:20px; font-weight:700;
  color:var(--text); line-height:1.1;
}

.if-thresh-flip { font-family:var(--mono); font-size:9px; color:var(--text-3); }

.if-stress-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  flex:1;
  display:flex; flex-direction:column; gap:10px;
}

.if-stress-body { display:flex; gap:10px; align-items:center; }

.stress-donut-wrap { display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; }

.stress-donut { width:72px; height:72px; }

.stress-legend-v { display:flex; flex-direction:column; gap:4px; }

.sl-item { display:flex; align-items:center; gap:5px; font-family:var(--mono); font-size:8.5px; color:var(--text-3); }
.sl-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }

.if-stress-count { font-family:var(--mono); font-size:9px; color:var(--text-3); }

/* ============================================================
   CAPABILITIES
   ============================================================ */
.caps-section { padding: 72px 0; }

.caps-row {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow:hidden;
  margin-top:28px;
}

.cap-card {
  background: var(--bg-panel);
  padding: 26px 20px 22px;
  display:flex; flex-direction:column; gap:10px;
  transition: background var(--mid) var(--ease);
}
.cap-card:hover { background: var(--bg-card); }
.cap-card:hover .cap-icon-wrap { color:var(--yellow); border-color:rgba(245,130,10,.3); }

.cap-icon-wrap {
  color:var(--text-3);
  width:32px; height:32px;
  border: 1px solid var(--border);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  transition:all var(--fast) var(--ease);
}

.cap-name { font-size:13px; font-weight:600; color:var(--text); line-height:1.3; }

.cap-desc { font-size:11.5px; color:var(--text-3); line-height:1.55; flex:1; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-section {
  padding: 56px 0;
  background: var(--bg-deep);
}

.founder-card {
  display:flex; gap:24px; align-items:flex-start;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  max-width:760px;
}

.founder-portrait { flex-shrink:0; }

.founder-photo {
  width:100px; height:100px;
  border-radius: var(--r);
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border-hi);
  display: block;
  filter: brightness(0.95) contrast(1.05);
}

.founder-initials {
  width:100px; height:100px;
  border-radius: var(--r);
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:22px; font-weight:700;
  color:var(--yellow); letter-spacing:.04em;
}

.founder-info { display:flex; flex-direction:column; gap:6px; }

.founder-name { font-size:18px; font-weight:700; color:var(--text); margin-bottom:2px; }

.founder-role {
  font-family:var(--mono); font-size:11px;
  color:var(--yellow); letter-spacing:.06em; margin-bottom:8px;
}

.founder-bio { font-size:13.5px; color:var(--text-2); line-height:1.65; max-width:52ch; }

.founder-link {
  font-family:var(--mono); font-size:11px; color:var(--yellow);
  margin-top:8px;
  transition:opacity var(--fast) var(--ease);
}
.founder-link:hover { opacity:.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 72px 0; }

.pricing-h2 { text-align:center; margin-bottom:40px; }

.pricing-row {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow:hidden;
  max-width:820px; margin:0 auto;
}

.pricing-card {
  background: var(--bg-panel);
  padding: 28px 28px 28px;
  display:flex; flex-direction:column; gap:0;
}

.pricing-card-featured {
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position:relative;
}
.pricing-card-featured::before {
  content:'';
  position:absolute; inset:0;
  border: 1px solid rgba(245,130,10,.18);
  border-radius: 0;
  pointer-events:none;
  z-index:0;
}

.pricing-tag {
  font-family:var(--mono); font-size:9px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--text-3);
  margin-bottom:16px; height:14px;
}
.pricing-tag-featured { color:var(--yellow); }

.pricing-tier-name {
  font-size:13px; font-weight:600; color:var(--text-2);
  margin-bottom:12px;
}

.pricing-price {
  font-family:var(--mono); font-size:clamp(28px,3.2vw,36px);
  font-weight:700; color:var(--text);
  display:flex; align-items:baseline; gap:3px; line-height:1;
  margin-bottom:12px;
}
.pricing-custom { font-size:26px; }
.price-currency { font-size:.45em; color:var(--text-2); }
.price-period   { font-size:.34em; color:var(--text-3); font-weight:400; }

.pricing-desc { font-size:12px; color:var(--text-3); line-height:1.5; margin-bottom:24px; flex:1; }

.pricing-cta { width:100%; justify-content:center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 72px 0; }

.faq { margin-top:28px; border-top:1px solid var(--border); }

.faq details { border-bottom:1px solid var(--border); }

.faq summary {
  list-style:none; cursor:pointer;
  padding: 22px 0;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
}
.faq summary::-webkit-details-marker { display:none; }

.fq { font-size:15px; font-weight:500; color:var(--text); }

.fq-toggle {
  font-family:var(--mono); font-size:18px; color:var(--text-3);
  transition:transform var(--fast) var(--ease), color var(--fast) var(--ease);
  flex-shrink:0;
}
.faq details[open] summary .fq-toggle { transform:rotate(45deg); color:var(--yellow); }
.faq details[open] summary .fq { color:var(--yellow); }

.fa {
  padding: 0 0 22px 0;
  font-size:14px; color:var(--text-2); line-height:1.7; max-width:66ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  padding: 88px 0;
  background: var(--bg-panel);
  text-align:center;
}

.final-cta-inner {
  max-width:580px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center; gap:18px;
}

.final-cta-h2 {
  font-size:clamp(26px,3.8vw,44px);
  max-width:20ch; line-height:1.1;
}

.final-cta-sub { font-size:15px; color:var(--text-2); text-align:center; max-width:40ch; }

.final-form {
  display:flex; gap:10px; width:100%;
  flex-wrap:wrap; justify-content:center;
}

.final-form input {
  flex:1; min-width:220px;
  font-family:var(--mono); font-size:13px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 11px 16px; color:var(--text);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.final-form input::placeholder { color:var(--text-3); }
.final-form input:focus {
  outline:none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}

/* ── Qualification block (step 2) ── */
.qualify-block {
  width: 100%; max-width: 480px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}

.qualify-ok {
  font-family: var(--mono); font-size: 13px; color: var(--green);
  padding: 12px 16px;
  border: 1px solid rgba(34,197,94,.22); border-radius: var(--r);
  background: rgba(34,197,94,.05);
  width: 100%;
}

.qualify-separator {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.qualify-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: .06em;
}

.qualify-field { width: 100%; display: flex; flex-direction: column; gap: 6px; }

.qualify-field-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em; color: var(--text-3);
}

.qualify-select {
  width: 100%;
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 10px 13px; color: var(--text);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  appearance: none;
}
.qualify-select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}

.qualify-textarea {
  width: 100%; resize: vertical;
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 10px 13px; color: var(--text);
  line-height: 1.6;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.qualify-textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}
.qualify-textarea::placeholder { color: var(--text-3); }

.qualify-chars {
  font-family: var(--mono); font-size: 9.5px;
  color: var(--text-3); align-self: flex-end;
  margin-top: -4px;
}

.qualify-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.qualify-skip {
  font-family: var(--mono); font-size: 12px;
}

.final-ok {
  display:none;
  font-family:var(--mono); font-size:12.5px; color:var(--green);
  padding:13px 20px;
  border:1px solid rgba(34,197,94,.22); border-radius:var(--r);
  background:rgba(34,197,94,.05);
  width:100%; max-width:440px; text-align:center;
}

.final-err {
  display:none;
  font-family:var(--mono); font-size:12px; color:var(--red);
  padding:12px 16px;
  border:1px solid rgba(229,72,77,.25); border-radius:var(--r);
  background:rgba(229,72,77,.05);
  width:100%; max-width:440px; text-align:center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top:1px solid var(--border); padding:44px 0; }

.footer-top {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:20px; margin-bottom:24px;
}

.footer-nav { display:flex; gap:22px; }
.footer-link {
  font-size:13px; color:var(--text-3);
  transition:color var(--fast) var(--ease);
}
.footer-link:hover { color:var(--text-2); }

.footer-status {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:10.5px;
  letter-spacing:.10em; text-transform:uppercase;
  color:var(--text-3);
}

.status-led {
  width:6px; height:6px; border-radius:50%;
  background:var(--green); box-shadow:0 0 6px var(--green);
  animation:led-pulse 2.4s ease-in-out infinite;
}

@keyframes led-pulse { 0%,100%{opacity:1}50%{opacity:.3} }

.footer-bottom {
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-family:var(--mono); font-size:11px; color:var(--text-3);
  padding-top:18px; border-top:1px solid var(--border);
}

.footer-disclaimer {
  font-family:var(--mono); font-size:10px; color:var(--text-3);
  margin-top:20px; line-height:1.7; max-width:70ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:36px; }
  .hero-copy { padding-bottom:0; }
  .map-window { border-radius:var(--r-lg); border-bottom:1px solid var(--border); }

  .stats-inner { flex-wrap:wrap; min-height:unset; }
  .stat-cell { flex:1 1 200px; padding:18px 20px; }
  .stat-cell:first-child,.stat-cell:last-child { padding:18px 20px; }
  .stat-div { display:none; }

  .twin-grid { grid-template-columns:1fr; }
  .twin-left { border-right:none; border-bottom:1px solid var(--border); }
  .twin-panel { padding:48px 32px; }

  .preview-outer { grid-template-columns:1fr; }
  .preview-desc { max-width:580px; }

  .if-body { grid-template-columns:1fr 1fr; }
  .if-threshold-col { display:none; }

  .caps-row { grid-template-columns:repeat(3,1fr); }

  .nav-links { display:none; }
}

@media (max-width:680px) {
  .wrap,.nav-inner,.stats-inner,.preview-outer,
  .hero-inner,.twin-panel,.pricing-h2,.pricing-row { padding-left:18px; padding-right:18px; }

  .section,.caps-section,.founder-section,.pricing-section,
  .faq-section,.final-cta-section { padding-top:52px; padding-bottom:52px; }

  .caps-row { grid-template-columns:1fr 1fr; }

  .pricing-row { grid-template-columns:1fr; }

  .if-body { grid-template-columns:1fr; }
  .if-verdict-col { border-right:none; border-bottom:1px solid var(--border); }

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

  .founder-card { flex-direction:column; gap:18px; padding:22px 20px; }

  .final-form { flex-direction:column; }
  .final-form .btn-waitlist { width:100%; justify-content:center; }

  .footer-top { flex-direction:column; }
  .footer-nav { flex-wrap:wrap; gap:14px; }

  .hero-copy h1 { font-size:clamp(30px,9vw,44px); }
}

/* ============================================================
   DEMO SECTION
   ============================================================ */
/* Demo section — primary feature, position 02 directly below hero */
.demo-section {
  padding: 72px 0 88px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

/* Intro header for demo section (replaces section-header) */
.demo-section-intro {
  margin-bottom: 36px;
}
.demo-section-intro .eyebrow-sm { margin-bottom: 12px; }
.demo-section-h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 14px;
}
.demo-section-intro .lead {
  max-width: 58ch;
  font-size: 16px;
}

/* Input form */
/* Scenario textarea — primary input */
.demo-scenario-input {
  font-family: var(--sans); font-size: 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: 14px 16px; color: var(--text); width: 100%;
  line-height: 1.65; resize: vertical; min-height: 120px;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.demo-scenario-input::placeholder { color: var(--text-3); }
.demo-scenario-input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 2px var(--yellow-dim); }

.demo-scenario-footer { display: flex; justify-content: space-between; align-items: center; }
.demo-chars { font-family: var(--mono); font-size: 10px; color: var(--text-3); }
.demo-field-required {
  font-family: var(--mono); font-size: 9px;
  color: var(--yellow); letter-spacing: .08em;
  margin-left: 8px;
}
.demo-meta-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); letter-spacing: .08em;
  padding-top: 4px; border-top: 1px solid var(--border);
}
.demo-engine-note {
  font-family: var(--mono); font-size: 10px; color: var(--text-3);
}

/* Loading state */
.demo-loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 160px;
  background: var(--bg-panel);
  border: 1px solid var(--border); border-radius: var(--r-lg);
}
.demo-loading-inner { display: flex; align-items: center; gap: 16px; }
.demo-spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border-hi);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: demo-spin .7s linear infinite;
}
@keyframes demo-spin { to { transform: rotate(360deg); } }
.demo-loading-msg {
  font-family: var(--mono); font-size: 12px;
  color: var(--text-2); letter-spacing: .06em;
}

/* Verdict rationale line */
.demo-verdict-rationale {
  font-size: 13px; color: var(--text-2);
  margin-top: 8px; line-height: 1.6;
  font-style: italic;
}

/* Truncated badge */
.demo-block-label-row { display: flex; align-items: center; justify-content: space-between; }
.demo-truncated-badge {
  font-family: var(--mono); font-size: 9px;
  color: var(--text-3); letter-spacing: .06em;
  display: none;
}

/* Loading spinner (used by demo-loading-inner) */
.demo-loading-spinner {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--border-hi);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: demo-spin .7s linear infinite;
}
.demo-loading-hint {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); margin-top: 4px;
}

/* Chain overflow badge */
.demo-chain-more {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: .06em;
  padding: 8px 12px; margin-top: 4px;
  border-left: 2px solid var(--border-hi);
}
.demo-more-note {
  color: var(--text-3); font-style: italic;
  font-size: 12px;
}

/* Memo preview card (shown before email gate) */
.demo-memo-preview {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 20px 0 0;
}
.demo-memo-preview-ey {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; color: var(--text-3);
  margin-bottom: 12px;
}
.demo-memo-preview-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px; padding: 0;
}
.demo-memo-preview-list li {
  font-size: 12px; color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
}
.dmp-icon {
  color: var(--yellow); font-family: var(--mono);
  font-size: 11px; flex-shrink: 0;
}
.demo-memo-preview-note {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); margin-top: 14px;
  border-top: 1px solid var(--border); padding-top: 10px;
}
@media (max-width: 640px) {
  .demo-memo-preview-list { grid-template-columns: 1fr; }
}

/* Bridge list */
.demo-bridge-list {
  list-style: none; margin-top: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.demo-bridge-list li {
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
  padding-left: 14px; position: relative;
}
.demo-bridge-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-size: 10px;
}

.demo-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}

.demo-fields-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.demo-field { display: flex; flex-direction: column; gap: 7px; }
.demo-field-full { width: 100%; }

.demo-field-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; color: var(--text-3);
  text-transform: uppercase;
}
.demo-field-opt { color: var(--text-3); text-transform: none; letter-spacing: 0; }

.demo-select {
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: 9px 13px; color: var(--text);
  appearance: none;
  width: 100%;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.demo-select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow-dim);
}

.demo-text-input {
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: 9px 13px; color: var(--text); width: 100%;
  resize: vertical; line-height: 1.6;
  transition: border-color var(--fast) var(--ease);
}
.demo-text-input::placeholder { color: var(--text-3); }
.demo-text-input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 2px var(--yellow-dim); }

.demo-form-footer { display: flex; align-items: center; gap: 16px; }
.demo-val-err { font-family: var(--mono); font-size: 11px; color: var(--red); }

/* Output panel */
.demo-output { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }

/* Verdict banner */
.demo-verdict-banner {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-bottom: none;
}
.v-blocked  { background: rgba(229,72,77,.06); border-color: rgba(229,72,77,.3); }
.v-cond     { background: rgba(245,130,10,.05); border-color: rgba(245,130,10,.3); }
.v-review   { background: rgba(34,197,94,.04); border-color: rgba(34,197,94,.2); }

.demo-verdict-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }

.demo-verdict-ey {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .18em; color: var(--text-3); text-transform: uppercase;
}

.demo-score-pill {
  font-family: var(--mono); font-size: 10px;
  padding: 2px 10px; border-radius: 3px;
}
.sp-blocked { background: rgba(229,72,77,.12); color: var(--red); border: 1px solid rgba(229,72,77,.3); }
.sp-cond    { background: rgba(245,130,10,.12); color: var(--yellow); border: 1px solid rgba(245,130,10,.3); }
.sp-review  { background: rgba(34,197,94,.10); color: var(--green); border: 1px solid rgba(34,197,94,.25); }

.demo-verdict-word {
  font-family: var(--mono); font-size: clamp(22px,3.5vw,32px);
  font-weight: 700; letter-spacing: .04em; line-height: 1;
}
.v-blocked .demo-verdict-word { color: var(--red); text-shadow: 0 0 28px rgba(229,72,77,.3); }
.v-cond    .demo-verdict-word { color: var(--yellow); text-shadow: 0 0 24px rgba(245,130,10,.25); }
.v-review  .demo-verdict-word { color: var(--green); text-shadow: 0 0 24px rgba(34,197,94,.2); }

/* Content blocks */
.demo-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: none;
  padding: 22px 28px;
}

.demo-block-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}

.demo-why { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }

.demo-chains { display: flex; flex-direction: column; gap: 10px; }

.demo-chain {
  font-family: var(--mono); font-size: 12px;
  color: var(--text-2); line-height: 1.5;
  padding: 10px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  border-left: 2px solid var(--text-3);
}
.chain-blocked { border-left-color: var(--red); }
.chain-cond    { border-left-color: var(--yellow); }
.chain-review  { border-left-color: var(--green); }

.chain-arrow { color: var(--text-3); }

.demo-list { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.demo-list li { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* Audit note */
.demo-audit {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 14px 28px;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-3); line-height: 1.6;
  border-top: 1px solid var(--border);
}

/* Lead capture bridge */
.demo-bridge {
  margin-top: 24px;
  background: var(--bg-panel);
  border: 1px solid rgba(245,130,10,.18);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.demo-bridge-ey {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .18em; color: var(--yellow);
  text-transform: uppercase; margin-bottom: 10px;
}
.demo-bridge-h { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.demo-bridge-sub { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.demo-bridge-form-wrap { display: flex; flex-direction: column; gap: 8px; }

.demo-bridge-form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.demo-bridge-form input {
  flex: 1; min-width: 180px;
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border-hi);
  border-radius: var(--r); padding: 10px 14px; color: var(--text);
  transition: border-color var(--fast) var(--ease);
}
.demo-bridge-form input::placeholder { color: var(--text-3); }
.demo-bridge-form input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 2px var(--yellow-dim); }

.demo-bridge-note { font-family: var(--mono); font-size: 10px; color: var(--text-3); }

.demo-bridge-ok {
  font-family: var(--mono); font-size: 12px; color: var(--green);
  padding: 11px 14px;
  border: 1px solid rgba(34,197,94,.2); border-radius: var(--r);
  background: rgba(34,197,94,.05);
}
.demo-bridge-err {
  font-family: var(--mono); font-size: 11px; color: var(--red);
  padding: 10px 14px;
  border: 1px solid rgba(229,72,77,.2); border-radius: var(--r);
  background: rgba(229,72,77,.05);
}

/* Responsive */
@media (max-width: 900px) {
  .demo-fields-grid { grid-template-columns: 1fr 1fr; }
  .demo-bridge { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .demo-fields-grid { grid-template-columns: 1fr; }
  .demo-bridge-form { flex-direction: column; }
}

/* ============================================================
   HERO — updated copy styles
   ============================================================ */
.hero-eyebrow {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 18px;
}
.hero-accent-line {
  font-size: 15px; color: var(--text-2);
  line-height: 1.5; margin-bottom: 18px;
  font-style: italic;
}
.hero-microcopy {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-3); margin-top: 16px;
  letter-spacing: .04em;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section { padding: 88px 0; border-bottom: 1px solid var(--border); }

.pain-headline { font-size: clamp(22px,3vw,36px); max-width: 22ch; margin-bottom: 18px; }
.pain-lead { font-size: 16px; color: var(--text-2); max-width: 60ch; line-height: 1.7; margin-bottom: 44px; }

.pain-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.pain-card {
  background: var(--bg-panel); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--mid) var(--ease);
}
.pain-card:hover { background: var(--bg-card); }
.pain-card-icon {
  width: 36px; height: 36px; color: var(--yellow);
  border: 1px solid rgba(245,130,10,.25); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,130,10,.06);
}
.pain-card h3 { font-size: 15px; font-weight: 700; color: var(--text); }
.pain-card p  { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS — 4-step flow
   ============================================================ */
.how-section { padding: 88px 0; border-bottom: 1px solid var(--border); }

.how-flow {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 44px; margin-bottom: 24px;
}
.how-step {
  background: var(--bg-panel); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background var(--mid) var(--ease);
}
.how-step:hover { background: var(--bg-card); }
.how-step-num {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--yellow); letter-spacing: .08em;
}
.how-step-body h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.how-step-body p  { font-size: 12.5px; color: var(--text-2); line-height: 1.6; }

.how-language {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 12px;
}
.hl-pro { color: var(--green); }
.hl-con { color: var(--text-3); }
.how-language strong { color: var(--text); }

/* ============================================================
   ANALYSIS PREVIEW (static example)
   ============================================================ */
.preview-ex-section { padding: 88px 0; background: var(--bg-deep); border-bottom: 1px solid var(--border); }

.preview-ex-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 16px;
  margin-top: 36px;
}
.preview-ex-panel {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.pev-eyebrow {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .18em; color: var(--text-3); text-transform: uppercase;
}
.pev-verdict {
  font-family: var(--mono); font-size: 16px; font-weight: 700;
  color: var(--yellow); letter-spacing: .04em;
}
.pev-rationale { font-size: 12px; color: var(--text-2); line-height: 1.6; }

.preview-ex-blocks { display: flex; flex-direction: column; gap: 12px; }
.preview-ex-block {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 18px;
  border-left: 3px solid var(--border);
  flex: 1;
}
.peb-risk  { border-left-color: var(--red); }
.peb-cond  { border-left-color: var(--yellow); }
.peb-miss  { border-left-color: var(--text-3); }
.peb-label {
  font-family: var(--mono); font-size: 8px;
  letter-spacing: .16em; color: var(--text-3); margin-bottom: 8px; text-transform: uppercase;
}
.preview-ex-block p { font-size: 12.5px; color: var(--text-2); line-height: 1.6; }

.preview-ex-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 20px; padding: 14px 18px;
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 11.5px; color: var(--text-3); line-height: 1.6;
}
.pen-tag {
  font-family: var(--mono); font-size: 8.5px; font-weight: 700;
  letter-spacing: .14em; color: var(--text-3);
  background: var(--bg-deep); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}

/* ============================================================
   USE CASES GRID
   ============================================================ */
.usecases-section { padding: 88px 0; border-bottom: 1px solid var(--border); }

.usecase-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 36px;
}
.usecase-card {
  background: var(--bg-panel); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background var(--mid) var(--ease);
}
.usecase-card:hover { background: var(--bg-card); }
.uc-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.uc-risk  { font-size: 11px; color: var(--text-3); line-height: 1.5; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-section { padding: 88px 0; background: var(--bg-deep); border-bottom: 1px solid var(--border); }

.comparison-table {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 36px;
}
.comparison-col { background: var(--bg-panel); padding: 0; }
.comparison-col-cf { background: var(--bg-card); }

.comparison-header {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
}
.comparison-col-other .comparison-header { color: var(--text-3); }
.comparison-col-cf    .comparison-header { color: var(--yellow); }

.comparison-list { list-style: none; padding: 8px 0 16px; }
.comparison-list li {
  font-size: 13px; padding: 10px 24px 10px 44px;
  border-bottom: 1px solid var(--border); position: relative;
  line-height: 1.5;
}
.comparison-list li:last-child { border-bottom: none; }
.cl-con { color: var(--text-3); }
.cl-con::before { content: '✗'; position: absolute; left: 22px; color: var(--red); font-size: 11px; }
.cl-pro { color: var(--text-2); }
.cl-pro::before { content: '✓'; position: absolute; left: 22px; color: var(--green); font-size: 11px; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { padding: 88px 0; border-bottom: 1px solid var(--border); }

.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.trust-text { display: flex; flex-direction: column; gap: 16px; }
.trust-text h2 { font-size: clamp(24px,3vw,36px); }
.trust-text p  { font-size: 15px; color: var(--text-2); line-height: 1.7; }

.trust-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.trust-card {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.tc-label { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; color: var(--text-3); text-transform: uppercase; }
.tc-value { font-size: 13px; font-weight: 600; color: var(--text); }

/* ============================================================
   MEMO SECTION
   ============================================================ */
.memo-section { padding: 88px 0; background: var(--bg-deep); border-bottom: 1px solid var(--border); }

.memo-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-top: 44px;
}
.memo-contents {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.memo-contents-label {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em;
  color: var(--text-3); text-transform: uppercase;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}
.memo-items { padding: 8px 0; }
.memo-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-2);
}
.memo-item:last-child { border-bottom: none; }
.mi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
}

.memo-cta-block { display: flex; flex-direction: column; gap: 16px; }
.memo-cta-text { font-size: 16px; color: var(--text-2); line-height: 1.7; }
.memo-cta-note { font-family: var(--mono); font-size: 10.5px; color: var(--text-3); }

/* ============================================================
   PRICING — updated (no dollar amounts)
   ============================================================ */
.pricing-status-badge {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
  display: inline-block;
}
.pricing-status-featured { color: var(--yellow); }
.pricing-tier {
  font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.pricing-footnote {
  font-family: var(--mono); font-size: 10.5px; color: var(--text-3);
  text-align: center; margin-top: 24px;
}

/* ============================================================
   FOUNDER — updated with larger headline
   ============================================================ */
.founder-name-large {
  font-size: clamp(18px,2.4vw,26px); font-weight: 700;
  color: var(--text); margin-bottom: 14px; line-height: 1.2;
  max-width: 20ch;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .how-flow     { grid-template-columns: repeat(2,1fr); }
  .usecase-grid { grid-template-columns: repeat(3,1fr); }
  .preview-ex-layout { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: 1fr; gap: 40px; }
  .memo-layout  { grid-template-columns: 1fr; gap: 32px; }
  .comparison-table { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .pain-cards  { grid-template-columns: 1fr; }
  .how-flow    { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: repeat(2,1fr); }
  .trust-cards { grid-template-columns: 1fr; }
  .preview-ex-blocks { flex-direction: column; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion:reduce) {
  *,.reveal,.status-led {
    animation:none !important;
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
  }
  html { scroll-behavior:auto; }
}
