/* landing.css — The Parleo Scan landing page
   Pixel recreation of design/Parleo Scan Landing.dc.html (nine sections, fixed order). */

body { font-size: 16px; line-height: 1.55; }

.shell {
  /* content-box to match the design reference: 1280px of content plus 64px
     side padding (the design's inline styles render without a border-box reset) */
  box-sizing: content-box;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

/* ── header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(242,240,239,0.94) 0%, rgba(242,240,239,0.78) 78%, rgba(242,240,239,0) 100%);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}
.header-row { height: 72px; display: flex; align-items: center; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logomark { display: inline-flex; align-items: flex-end; gap: 3px; }
.logomark i { display: block; width: 7px; height: 16px; background: var(--blue); border-radius: 2.5px; }
.logomark i + i { height: 11px; opacity: 0.55; }
.logomark.sm i { width: 6px; height: 12px; border-radius: 2px; }
.logomark.sm i + i { height: 8px; }
.wordmark { font-weight: 700; font-size: 14px; letter-spacing: 0.22em; color: var(--ink); }
.brand-divider { width: 1px; height: 18px; background: var(--border-alt); margin: 0 10px; }
.toolname { font-size: 14.5px; font-weight: 500; color: var(--text); letter-spacing: -0.005em; }
.nav-ctas { margin-left: auto; display: inline-flex; align-items: center; gap: 10px; }
.nav-ghost {
  display: inline-flex; align-items: center; height: 38px; padding: 0 14px;
  font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none;
  border-radius: 999px; transition: background 0.14s ease;
}
.nav-ghost:hover { background: rgba(30,30,46,0.045); color: var(--text); }
.nav-pill {
  display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px;
  font-size: 13.5px; font-weight: 500; color: var(--blue); background: var(--blue-tint);
  border-radius: 999px; text-decoration: none; transition: background 0.14s ease;
}
.nav-pill:hover { background: #DEEAFF; color: var(--blue); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* ── hero ───────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 76px 0 108px; }
.hero-bg-radial {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(940px 560px at 84% -12%, rgba(215,197,174,0.55), rgba(242,240,239,0) 62%),
    radial-gradient(680px 460px at -6% 46%, rgba(226,216,200,0.42), rgba(242,240,239,0) 60%);
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(30,30,46,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,30,46,0.032) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(1200px 640px at 50% 40%, black 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(1200px 640px at 50% 40%, black 55%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}
.hero-eyebrow { margin-bottom: 32px; }
.hero h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(50px, 4vw + 22px, 88px);
  letter-spacing: -0.028em;
  line-height: 0.98;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .serif { font-size: inherit; color: inherit; }
.hero-sub {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  max-width: 52ch;
  font-weight: 400;
  text-wrap: pretty;
}

/* scan form (hero + closing band) */
.scan-form { margin-top: 38px; display: flex; gap: 10px; width: 100%; flex-wrap: wrap; }
.scan-form input {
  flex: 1 1 200px; min-width: 0; height: 56px;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 999px;
  padding: 0 22px; font-family: var(--font-ui); font-size: 16px; color: var(--ink);
  outline: none; box-shadow: 0 1px 2px rgba(30,30,46,0.03);
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}
.scan-form input:focus { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.btn-ink, .btn-blue {
  height: 56px; padding: 0 28px; border: 0; border-radius: 999px;
  font-family: var(--font-ui); font-size: 15.5px; font-weight: 500; letter-spacing: -0.005em;
  cursor: pointer; white-space: nowrap;
  transition: background 0.14s ease, transform 0.14s var(--ease);
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}
.btn-ink { background: var(--ink); color: #FFFFFF; }
.btn-ink:hover { background: var(--ink-hover); color: #FFFFFF; }
.btn-ink:active { transform: scale(0.98); }
.btn-blue { background: var(--blue); color: #FFFFFF; }
.btn-blue:hover { background: var(--blue-hover); color: #FFFFFF; }
.btn-blue:active { transform: scale(0.98); }
.scan-error { display: none; margin-top: 10px; font-size: 13.5px; color: var(--red); }

/* trust chips */
.trust-chips { margin-top: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px 7px 10px; box-shadow: 0 1px 2px rgba(30,30,46,0.03);
}
.chip-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; background: var(--blue-tint); border-radius: 5px; color: var(--blue);
}

/* privacy card */
.privacy-card {
  margin-top: 14px; display: inline-flex; align-items: flex-start; gap: 11px;
  padding: 12px 16px; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 12px; max-width: 52ch; box-shadow: 0 1px 2px rgba(30,30,46,0.03);
}
.privacy-card svg { margin-top: 2px; flex: none; color: var(--muted); }
.privacy-card p { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* sample report CTA card */
.sample-cta {
  display: flex; align-items: center; gap: 16px; margin-top: 28px;
  padding: 14px 18px 14px 14px; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 16px; text-decoration: none; color: inherit;
  box-shadow: 0 2px 4px rgba(30,30,46,0.04), 0 12px 28px -18px rgba(30,30,46,0.14);
  transition: transform 0.18s var(--ease), border-color 0.18s ease, box-shadow 0.18s ease;
}
.sample-cta:hover {
  transform: translateY(-1px); border-color: var(--reg); color: inherit;
  box-shadow: 0 2px 4px rgba(30,30,46,0.05), 0 18px 36px -18px rgba(30,30,46,0.20);
}
.sc-badge {
  flex: none; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--ink); border-radius: 12px; color: var(--d-bright);
}
.sc-num { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; line-height: 0.9; color: var(--d-bright); }
.sc-den { font-family: var(--font-mono); font-size: 9px; color: var(--d-dim); margin-top: 2px; }
.sc-mid { flex: 1; min-width: 0; }
.sc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--blue);
}
.sc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.sc-title { display: block; margin-top: 5px; font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.008em; }
.sc-cap { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted); }
.sc-arrow {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px; background: var(--ink); color: var(--d-bright);
  transition: transform 0.18s var(--ease);
}

/* agents strip */
.agents-strip { margin-top: 26px; }
.agents-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.ae-line { width: 20px; height: 1px; background: var(--reg-2); }
.agent-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.agent-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px 6px 8px;
}
.agent-ico { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: var(--ink); }

/* hero right: enhanced score card */
.hero-right { min-width: 0; position: relative; }
.score-card {
  position: relative; display: block; text-decoration: none; color: inherit; cursor: pointer;
  background: linear-gradient(180deg, #FBFCFF 0%, #FFFFFF 60%);
  border: 1px solid var(--blue-border); border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(30,30,46,0.04), 0 24px 40px -20px rgba(1,102,255,0.14), 0 56px 100px -48px rgba(30,30,46,0.28);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s ease;
}
.score-card:hover {
  transform: translateY(-4px); border-color: #B6CDFF; color: inherit;
  box-shadow: 0 1px 2px rgba(30,30,46,0.04), 0 34px 56px -20px rgba(1,102,255,0.20), 0 72px 128px -48px rgba(30,30,46,0.32);
}
.sc-chrome {
  display: flex; align-items: center; gap: 12px; height: 44px; padding: 0 16px;
  border-bottom: 1px solid var(--border-soft); background: var(--surface-alt-2);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots i { width: 9px; height: 9px; border-radius: 50%; background: #DFDAD4; }
.chrome-addr {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
  background: var(--canvas-2); border-radius: 999px; padding: 5px 14px; letter-spacing: 0.01em;
}
.chrome-tag {
  margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--amber); border: 1px solid rgba(161,106,0,0.38); border-radius: 3px; padding: 3px 8px;
  background: #FFFFFF; white-space: nowrap;
}
.sc-band { background: var(--ink); padding: 22px 26px 20px; position: relative; }
.band-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.band-k { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--d-faint); text-transform: uppercase; }
.band-domain { font-family: var(--font-mono); font-size: 12.5px; color: var(--d-bright); }
.band-score { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; }
.band-n { font-weight: 700; font-size: 64px; letter-spacing: -0.04em; line-height: 0.94; color: var(--d-bright); }
.band-den { font-family: var(--font-mono); font-size: 14px; color: var(--d-dim); }
.band-gauge { position: relative; height: 22px; margin-top: 18px; }
.band-gauge .g-base { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #3B3A4E 0 2px, transparent 2px 7px); }
.band-gauge .g-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 57%; background: repeating-linear-gradient(90deg, #3D87FF 0 2px, transparent 2px 7px); }
.band-gauge .g-marker { position: absolute; left: 57%; top: -5px; bottom: -5px; width: 2px; background: var(--canvas); }
.band-scale { position: relative; height: 14px; margin-top: 8px; font-family: var(--font-mono); font-size: 10px; color: var(--d-dim); }
.band-scale span { position: absolute; }
.sc-fams { padding: 22px 26px 4px; }
.fam-2 { margin-top: 18px; }
.fam-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.fam-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.fam-name.is-blue { color: var(--blue); }
.fam-score { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.fam-score.is-blue { color: var(--blue); }
.fam-score.is-big { font-size: 13px; font-weight: 700; }
.fam-track { margin-top: 7px; height: 9px; background: #ECE9E5; border-radius: 0 4.5px 4.5px 0; overflow: hidden; }
.fam-fill { height: 100%; border-radius: 0 4.5px 4.5px 0; }
.fam-ink { background: var(--ink); }
.fam-blue { background: var(--blue); }
.fam-q { margin-top: 6px; font-size: 12.5px; color: var(--muted); }
.sc-stat {
  margin-top: 20px; padding: 14px 26px; background: var(--panel-bg-warm);
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.sc-chips { padding: 16px 26px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.find-chip { border: 1px solid var(--border-soft); border-radius: 10px; padding: 11px 13px; }
.fc-head { display: flex; align-items: center; gap: 7px; }
.fc-k { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; }
.fc-k.is-good { color: var(--green); }
.fc-k.is-poor { color: var(--red); }
.fc-body { margin-top: 6px; font-size: 12.5px; line-height: 1.5; color: var(--text-alt); }

/* scan theater (live SSE progress, replaces the score card during a scan) */
.scan-theater {
  background: var(--ink); border: 1px solid var(--ink); border-radius: 20px;
  padding: 22px 26px 24px;
  box-shadow: 0 1px 2px rgba(30,30,46,0.04), 0 24px 40px -20px rgba(1,102,255,0.14), 0 56px 100px -48px rgba(30,30,46,0.28);
}
.th-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--d-hairline); }
.th-title { font-size: 14px; font-weight: 600; color: var(--d-bright); letter-spacing: -0.005em; }
.th-meta { display: inline-flex; align-items: center; gap: 14px; }
.th-elapsed { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--d-muted); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.th-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--d-faint); }
.th-live.is-done { color: var(--blue); }
.th-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: th-pulse 1.2s ease infinite; }
@keyframes th-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.th-console { margin-top: 14px; min-height: 300px; max-height: 420px; overflow-y: auto; }
.th-line { display: flex; gap: 10px; padding: 5px 0; font-family: var(--font-mono); font-size: 12px; line-height: 1.55; color: var(--d-muted); animation: th-in 0.24s ease both; }
.th-line .tick { color: var(--blue); flex: none; }
.th-line.is-sub { padding: 2px 0 2px 22px; color: var(--d-faint); }
.th-line.is-sub .tick { color: var(--d-faint); }
.th-line.is-err { color: var(--red-dark); }
.th-line.is-err .tick { color: var(--red-dark); }
.th-line.is-work { color: var(--d-faint); }
.th-line.is-work .tick { color: var(--blue); animation: th-pulse 1s ease infinite; }
@keyframes th-in { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .th-line { animation: none; } .th-dot, .th-line.is-work .tick { animation: none; } }
.th-cursor { display: inline-block; width: 7px; height: 12px; background: var(--blue); vertical-align: -2px; margin-left: 4px; animation: th-pulse 0.9s steps(1) infinite; }

/* ── shared section chrome ──────────────────────────── */
.sect { padding: 104px 0; }
#method { border-top: 1px solid var(--border); }
.sect-band2 { background: var(--canvas-2); }
.sect-eyebrow { margin-bottom: 22px; }
.sect-eyebrow.on-dark { color: var(--d-faint); }
.sect-eyebrow.on-dark::before { background: rgba(242,240,239,0.28); }
.sect-h2 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 2vw + 18px, 54px);
  letter-spacing: -0.024em;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}
.sect-h2.on-dark { color: var(--d-bright); }

/* ── methodology ────────────────────────────────────── */
.method-grid { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.method-grid p { margin: 0; font-size: 16px; line-height: 1.62; color: var(--text); text-wrap: pretty; }
.framework-card {
  margin-top: 56px; background: #FFFFFF; border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 34px 30px; box-shadow: 0 1px 2px rgba(30,30,46,0.03);
}
.fw-head { display: grid; grid-template-columns: 35fr 65fr; gap: 2px; margin-bottom: 14px; }
.fw-fam { display: flex; align-items: baseline; gap: 10px; }
.fw-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.fw-name.is-blue { color: var(--blue); }
.fw-pts { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--muted); }
.fw-pts.is-blue { color: var(--blue); }
.fw-bar { display: flex; gap: 2px; height: 52px; }
.fw-bar > div { border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.fw-bar span { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.92); }
.fw-legend { display: grid; grid-template-columns: 35fr 65fr; gap: 36px; margin-top: 22px; }
.fw-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.fw-row.no-line { border-bottom: none; }
.fw-sq { flex: none; width: 10px; height: 10px; border-radius: 2.5px; }
.fw-lbl { flex: 1; font-size: 13.5px; color: var(--text); }
.fw-val { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink); }
.fw-caption { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--border-soft); font-size: 14.5px; color: var(--text); text-wrap: pretty; }
.scorecap-card {
  margin-top: 14px; background: #FFFFFF; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  box-shadow: 0 1px 2px rgba(30,30,46,0.03);
}
.cap-tag {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--red); border: 1px solid rgba(194,69,45,0.35); border-radius: 3px; padding: 3px 8px; white-space: nowrap;
}
.cap-text { font-size: 14px; color: var(--text); text-wrap: pretty; }

/* ── what you get ───────────────────────────────────── */
.deliver-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 14px; }
.deliver-card {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(30,30,46,0.03);
}
.dc-preview {
  height: 178px; background: var(--surface-alt); border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
}
.dc-preview-pad { height: 206px; padding: 14px; } /* 178px content + 14px padding, per the reference's content-box render */
.mini-score { width: 210px; }
.ms-num { text-align: center; }
.ms-n { font-weight: 700; font-size: 32px; letter-spacing: -0.03em; color: var(--ink); }
.ms-den { font-family: var(--font-mono); font-size: 13px; color: var(--faint-2); margin-left: 3px; }
.ms-gauge { position: relative; height: 14px; margin-top: 12px; }
.ms-gauge .g-base { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #D8D4D0 0 2px, transparent 2px 7px); }
.ms-gauge .g-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 57%; background: repeating-linear-gradient(90deg, #0166FF 0 2px, transparent 2px 7px); }
.ms-gauge .g-marker { position: absolute; left: 57%; top: -3px; bottom: -3px; width: 2px; background: var(--ink); }
.ms-scale { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--font-mono); font-size: 10px; color: var(--faint-2); }
.dc-body { padding: 22px 24px 26px; }
.dc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--blue);
}
.dc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px; background: var(--blue-tint); color: var(--blue);
}
.dc-body p { margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: var(--text); text-wrap: pretty; }
.fix-stack { width: 100%; max-width: 224px; display: flex; flex-direction: column; gap: 7px; }
.fix-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #FFFFFF; border: 1px solid var(--border-soft); border-radius: 6px; padding: 9px 11px;
}
.fix-chip span:first-child { font-size: 11.5px; color: var(--text); }
.fx-imp { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--ink); }

/* ── field evidence ─────────────────────────────────── */
.evidence-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.ev-card {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 20px;
  padding: 26px 26px 24px; box-shadow: 0 1px 2px rgba(30,30,46,0.03);
}
.ev-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ev-brand { display: inline-flex; align-items: center; gap: 10px; }
.ev-sub { font-size: 12.5px; color: var(--muted); }
.ev-vs { gap: 9px; font-weight: 800; font-size: 14.5px; letter-spacing: 0.06em; color: var(--ink); }
.ev-vs .vs { font-weight: 500; color: var(--faint); letter-spacing: 0.02em; text-transform: lowercase; }
.ev-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  color: var(--text-alt); border: 1px solid var(--border-alt); border-radius: 3px; padding: 3px 8px;
}
.ev-bars { margin-top: 22px; }
.ev-bar-row { display: flex; align-items: center; gap: 12px; }
.ev-bar-row + .ev-bar-row { margin-top: 11px; }
.eb-label { flex: none; width: 92px; font-size: 11.5px; color: var(--muted); }
.eb-track { flex: 1; min-width: 0; }
.eb-track i { display: block; height: 12px; border-radius: 0 3px 3px 0; }
.eb-val { flex: none; width: 64px; text-align: right; font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--ink); }
.eb-val.is-blue { font-weight: 700; color: var(--blue); }
.eb-val.is-bold { font-weight: 700; }
.ev-foot { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--border-soft); font-size: 14px; line-height: 1.6; color: var(--text); text-wrap: pretty; }
.ev-spread { position: relative; height: 64px; margin-top: 24px; }
.sp-line { position: absolute; left: 0; right: 0; top: 28px; height: 1px; background: var(--border-alt); }
.sp-tick { position: absolute; top: 22px; width: 2px; height: 13px; background: var(--ink); }
.sp-tick.sp-l { left: 0; }
.sp-tick.sp-r { right: 0; }
.sp-price { position: absolute; top: 0; font-family: var(--font-mono); font-size: 13.5px; font-weight: 700; color: var(--ink); }
.sp-price.sp-left { left: 0; }
.sp-price.sp-right { right: 0; text-align: right; }
.sp-mid {
  position: absolute; left: 50%; top: 21px; transform: translateX(-50%);
  background: #FFFFFF; padding: 0 10px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  color: var(--text); line-height: 14px;
}
.sp-store { position: absolute; top: 44px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--muted); }
.sp-store-l { left: 0; }
.sp-store-r { right: 0; }

/* ── the stakes (dark, interactive) ─────────────────── */
.stakes { background: var(--ink); padding: 104px 0; position: relative; overflow: hidden; }
.stakes-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 480px at 84% 30%, rgba(1,102,255,0.14), rgba(30,30,46,0) 62%);
}
.stakes .shell { position: relative; }
.stakes-grid { margin-top: 52px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 88px; align-items: start; }
.factor-row { padding: 4px 0 20px; border-bottom: 1px solid var(--d-hairline); }
.factor-row + .factor-row { padding-top: 18px; }
.factor-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.f-label { font-size: 13.5px; color: var(--d-muted-2); }
.f-val { font-family: var(--font-mono); font-size: 16px; font-weight: 700; color: var(--d-bright); }
.factor-fixed { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--d-hairline); }
.factor-fixed.no-line { border-bottom: none; }
.f-label-sm { font-size: 13px; color: var(--d-muted-2); }
.f-val-sm { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--d-emph); }
.rg {
  -webkit-appearance: none; appearance: none; display: block; width: 100%; height: 3px;
  border-radius: 3px; background: rgba(242,240,239,0.20); outline: none; margin: 16px 0 2px; cursor: pointer;
}
.rg::-webkit-slider-runnable-track { height: 3px; background: rgba(242,240,239,0.20); border-radius: 3px; }
.rg::-moz-range-track { height: 3px; background: rgba(242,240,239,0.20); border-radius: 3px; }
.rg::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--d-bright); border: 2px solid var(--ink);
  box-shadow: 0 0 0 1px rgba(242,240,239,0.35); margin-top: -7px; cursor: pointer;
  transition: transform 0.14s ease;
}
.rg:hover::-webkit-slider-thumb { transform: scale(1.08); }
.rg::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--d-bright); border: 2px solid var(--ink); cursor: pointer; }
.modeled-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--amber-dark); border: 1px solid rgba(217,164,65,0.4); border-radius: 999px; padding: 5px 12px;
}
.mp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber-dark); }
.so-label { margin-top: 18px; font-size: 13.5px; color: var(--d-muted-2); }
.so-subline { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 12px; color: var(--d-dim); }
.so-line { width: 16px; height: 1px; background: rgba(242,240,239,0.28); }
.so-figure {
  margin-top: 12px; font-weight: 700;
  font-size: clamp(34px, 2.4vw + 14px, 56px); letter-spacing: -0.028em; line-height: 1.05; color: var(--d-bright);
}
.so-dash { color: #5A586F; padding: 0 12px; font-weight: 400; }
.so-foot { margin: 20px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--d-faint); max-width: 52ch; text-wrap: pretty; }

/* ── the path ───────────────────────────────────────── */
.path-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); }
.path-cell { padding-right: 28px; }
.path-cell + .path-cell { border-left: 1px solid var(--border-alt); padding-left: 28px; }
.pc-status { display: flex; align-items: center; gap: 10px; }
.pc-sq { width: 6px; height: 6px; border-radius: 1.5px; }
.pc-tag { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; }
.pc-name { margin-top: 16px; font-size: 17px; font-weight: 650; letter-spacing: -0.014em; color: var(--ink); text-wrap: balance; }
.pc-desc { margin: 9px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.path-cta-row {
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border-alt);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.path-bridge { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text); max-width: 64ch; text-wrap: pretty; }
.btn-session { flex: none; height: auto; padding: 16px 28px; font-size: 15px; }

/* ── closing band ───────────────────────────────────── */
.closing-band { background: var(--ink); padding: 104px 0 0; position: relative; overflow: hidden; }
.band-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 50% 0%, rgba(1,102,255,0.16), rgba(30,30,46,0) 60%);
}
.band-center { position: relative; text-align: center; }
.band-h2 {
  margin: 0; font-weight: 800;
  font-size: clamp(36px, 2.2vw + 20px, 60px); letter-spacing: -0.026em; line-height: 1.02;
  color: var(--d-bright); text-wrap: balance;
}
.band-form { max-width: 620px; margin: 36px auto 0; flex-wrap: nowrap; }
.band-form input { border-color: transparent; box-shadow: none; }
.band-form input:focus { border-color: transparent; box-shadow: inset 0 0 0 2px var(--blue); }
.band-helper { margin: 20px 0 0; font-size: 14px; color: #A8A7B6; }
.band-footer { position: relative; margin-top: 84px; border-top: 1px solid var(--d-hairline); }
.band-footer-row { padding-top: 22px; padding-bottom: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.brand-foot { display: inline-flex; align-items: center; gap: 10px; }
.wordmark-foot { font-weight: 700; font-size: 13px; letter-spacing: 0.22em; color: var(--d-bright); }
.foot-tag { margin: 0 0 0 auto; font-size: 13px; line-height: 1.6; color: var(--d-faint); max-width: 60ch; text-align: right; text-wrap: pretty; }

/* ── responsive ─────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { max-width: 640px; }
}
@media (max-width: 960px) {
  .stakes-grid { grid-template-columns: 1fr; gap: 44px; }
  .method-grid { grid-template-columns: 1fr; gap: 14px; }
  .path-cta-row { flex-direction: column; align-items: flex-start; }
  .path-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .path-cell:nth-child(odd) { border-left: none; padding-left: 0; }
}
@media (max-width: 700px) {
  .desk-br { display: none; }
  .sc-chips { grid-template-columns: 1fr; }
  .fw-legend { grid-template-columns: 1fr; gap: 12px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-cell { border-left: none !important; padding-left: 0 !important; border-top: 1px solid var(--border-alt); padding-top: 22px; }
  .path-cell:first-child { border-top: none; padding-top: 0; }
}
@media (max-width: 600px) {
  .shell { padding-left: 24px; padding-right: 24px; }
  .scan-form { flex-direction: column; }
  .scan-btn { width: 100%; }
  .chrome-addr { display: none; }
  .hero { padding: 40px 0 68px; }
  .sect { padding: 80px 0; }
  .stakes { padding: 80px 0; }
  .closing-band { padding-top: 80px; }
  .sc-band, .sc-fams { padding-left: 20px; padding-right: 20px; }
  .sc-stat { padding-left: 20px; padding-right: 20px; }
  .sc-chips { padding-left: 20px; padding-right: 20px; }
  .nav-ghost { display: none; }
  .band-form { flex-wrap: wrap; }
}
