/* DFY v2 Funnel — Sales division
 * Deep-black premium agency. Amber CTAs. Inter body, JetBrains Mono numerics.
 */

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* overflow-x: clip (not hidden) preserves position:sticky on descendants
     while still containing horizontal overflow. hidden creates a scrolling
     context that silently breaks sticky. */
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  line-height: 1.5;
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ───────── Tokens layered on brand-tokens.css ───────── */
:root {
  --ink: #0a0a0a;          /* deepest */
  --bg-deep: #121212;
  --bg-1: #1a1a1a;
  --bg-2: #242424;
  --bg-3: #2e2e2e;

  --fg-1: #ffffff;
  --fg-2: #e5e5e5;
  --fg-3: #b5b5b5;
  --fg-4: #8a8a8a;
  --fg-5: #5a5a5a;

  --amber: #fbbf24;
  --amber-lt: #fcd34d;
  --amber-soft: #fde68a;
  --green: #86efac;
  --rose: #fda4af;

  --hair: rgba(255, 255, 255, 0.06);
  --hair-2: rgba(255, 255, 255, 0.10);
  --hair-3: rgba(255, 255, 255, 0.14);
  --amber-hair: rgba(251, 191, 36, 0.18);
  --amber-hair-lt: rgba(251, 191, 36, 0.32);

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

/* ───────── Layout primitives ───────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; overflow-x: clip; }
@media (min-width: 768px) { .section { padding: 112px 0; } }

.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-4);
  margin-bottom: 24px;
}
.section-kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--amber);
}
.section-kicker.center::before { display: none; }

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fg-3);
  max-width: 620px;
}

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ───────── Top logo bar (no nav menu per brief) ───────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 64px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--hair);
  display: flex; align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.topbar .brand { display: flex; align-items: center; gap: 12px; }
.topbar .brand img { height: 26px; width: auto; }
.topbar .brand .mark {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-4);
  padding-left: 12px;
  border-left: 1px solid var(--hair-2);
}
.topbar .mini-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-3);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 150ms ease;
  font-variant-numeric: tabular-nums;
}
.topbar .mini-cta:hover { color: var(--amber); background: rgba(251, 191, 36, 0.06); }
.topbar .mini-cta .dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 160ms cubic-bezier(0.05, 0.7, 0.1, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #000;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.25), 0 20px 40px -20px rgba(251, 191, 36, 0.4);
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.4), 0 24px 50px -20px rgba(251, 191, 36, 0.55);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.25; }

.btn-secondary {
  background: transparent;
  color: var(--fg-2);
  border: 1px solid var(--hair-3);
}
.btn-secondary:hover {
  border-color: var(--hair-3);
  color: var(--fg-1);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}
.btn-large { padding: 18px 30px; min-height: 56px; font-size: 16px; border-radius: 12px; }
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ───────── 1. HERO ───────── */
.hero {
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, rgba(251, 191, 36, 0.07) 0%, rgba(251, 146, 60, 0.03) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 6px 6px 14px;
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid var(--amber-hair);
  font-size: 13px;
  color: var(--fg-2);
  margin-bottom: 32px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .ref {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.14);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-lt);
}

.hero-h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 28px;
  text-wrap: balance;
  max-width: 18ch;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-lt) 0%, var(--amber) 50%, #fb923c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--fg-1); font-weight: 600; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

/* Hero meta strip beneath CTAs */
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px 32px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-4);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  max-width: 720px;
}
.hero-meta .item { display: flex; align-items: center; gap: 10px; }
.hero-meta .item b { color: var(--fg-1); font-weight: 500; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.hero-meta .item .dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* VSL card */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-layout { grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
}

.vsl {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--hair);
  aspect-ratio: 16 / 10;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.05, 0.7, 0.1, 1);
}
.vsl:hover { transform: translateY(-2px); border-color: var(--amber-hair); }
.vsl:hover .vsl-play { transform: translate(-50%, -50%) scale(1.08); }

.vsl-poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(251, 191, 36, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(192, 132, 252, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}
.vsl-poster::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
  opacity: 0.6;
}

/* Faux Bobby portrait silhouette */
.vsl-portrait {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
}
.vsl-portrait svg { width: 65%; max-width: 280px; opacity: 0.32; }

.vsl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.95);
  display: grid; place-items: center;
  transition: transform 250ms cubic-bezier(0.05, 0.7, 0.1, 1);
  box-shadow: 0 12px 40px -8px rgba(251, 191, 36, 0.5);
}
.vsl-play svg { width: 26px; height: 26px; fill: #000; margin-left: 4px; }

.vsl-tl {
  position: absolute; top: 16px; left: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.vsl-tl .dot { width: 6px; height: 6px; border-radius: 100px; background: var(--rose); animation: pulse 2s ease-in-out infinite; }

.vsl-br {
  position: absolute; bottom: 16px; right: 16px;
  padding: 6px 12px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.vsl-bl {
  position: absolute; bottom: 20px; left: 20px; right: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.vsl-bl .who {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 6px;
  display: block;
}

/* ───────── 2. Social-proof bar ───────── */
.sp-bar {
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.012), transparent);
}
.sp-grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px 40px;
}
.sp-lead {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.sp-lead b { color: var(--fg-1); font-weight: 500; font-variant-numeric: tabular-nums; }
.sp-lead .live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 9px;
  background: rgba(134, 239, 172, 0.08);
  border: 1px solid rgba(134, 239, 172, 0.22);
  border-radius: 100px;
  color: var(--green);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.sp-lead .live .dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s ease-in-out infinite;
}
.sp-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 36px; }
.sp-logo {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  font-weight: 500;
  white-space: nowrap;
  transition: color 150ms ease;
}
.sp-logo:hover { color: var(--fg-2); }
.sp-logo .marker { color: var(--amber); margin-right: 6px; }

/* ───────── 3. Problem agitation ───────── */
.problem {
  padding: 96px 0;
  position: relative;
}
.problem .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.problem-line {
  padding: 32px 36px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-deep));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  transition: border-color 200ms ease;
}
.problem-line:hover { border-color: var(--hair-2); }
.problem-line .idx {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.12em;
  align-self: start;
  padding-top: 8px;
}
.problem-line .text {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--fg-2);
  text-wrap: balance;
}
.problem-line .text em {
  font-style: normal;
  color: var(--fg-1);
  font-weight: 600;
}

/* ───────── 4. How it works ───────── */
.how {
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(251, 191, 36, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.how .container { position: relative; z-index: 1; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.step {
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 250ms cubic-bezier(0.05, 0.7, 0.1, 1);
}
.step:hover { border-color: var(--amber-hair); transform: translateY(-2px); }

.step-head { display: flex; align-items: center; gap: 14px; }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--amber-hair);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.step-kind {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
}

.step-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fg-1);
  text-wrap: balance;
}
.step-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fg-3);
}
.step-desc em { font-style: normal; color: var(--fg-1); font-weight: 500; }

/* MIRA calibration panel inside step 2 */
.mira-panel {
  margin-top: auto;
  padding: 18px 20px;
  background: var(--ink);
  border: 1px solid var(--hair);
  border-radius: 12px;
}
.mira-panel .phdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--hair-2);
}
.mira-panel .phdr .t {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.mira-panel .phdr .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mira-panel .phdr .live .dot { width: 5px; height: 5px; border-radius: 100px; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 1.6s infinite; }

.mira-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mira-cell {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}
.mira-cell .v {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--amber-lt);
  line-height: 1;
}
.mira-cell .v.green { color: var(--green); }
.mira-cell .l {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-5);
  font-weight: 500;
}

/* Step 3 mock slack report */
.slack-mock {
  margin-top: auto;
  background: var(--ink);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--mono);
  font-size: 12px;
}
.slack-mock .srow {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}
.slack-mock .srow:last-child { border-bottom: none; }
.slack-mock .srow .k { color: var(--fg-4); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; flex: 1; }
.slack-mock .srow .v { color: var(--fg-1); font-variant-numeric: tabular-nums; }
.slack-mock .srow .v.up { color: var(--green); }
.slack-mock .srow .v.amber { color: var(--amber); }

/* Step 1 intake mock */
.intake-mock {
  margin-top: auto;
  background: var(--ink);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.intake-field {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11.5px;
}
.intake-field .ic { width: 14px; height: 14px; color: var(--fg-4); }
.intake-field .label { color: var(--fg-4); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; flex: 1; }
.intake-field .val { color: var(--fg-1); font-variant-numeric: tabular-nums; }
.intake-field.checked { border-color: rgba(134, 239, 172, 0.25); background: rgba(134, 239, 172, 0.04); }
.intake-field.checked .check {
  width: 16px; height: 16px;
  background: var(--green); color: #0a2416;
  border-radius: 100px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

/* ───────── 5. Included ───────── */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 20px;
}
@media (min-width: 768px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}
.inc-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px;
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: var(--bg-1);
  transition: border-color 150ms ease;
}
.inc-row:hover { border-color: var(--hair-2); }
.inc-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 100px;
  background: rgba(134, 239, 172, 0.12);
  display: grid; place-items: center;
  margin-top: 2px;
}
.inc-check svg { width: 12px; height: 12px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.inc-row .meta {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-5);
  margin-top: 4px;
  text-transform: uppercase;
}
.inc-row .tt { font-size: 0.9375rem; font-weight: 600; color: var(--fg-1); letter-spacing: -0.01em; line-height: 1.4; }

/* ───────── 6. Comparison table ───────── */
.compare-wrap {
  position: relative;
  border: 1px solid var(--hair);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-deep);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-wrap .scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-hair) transparent;
}
.compare-wrap .scroll::-webkit-scrollbar { height: 6px; }
.compare-wrap .scroll::-webkit-scrollbar-track { background: transparent; }
.compare-wrap .scroll::-webkit-scrollbar-thumb { background: var(--amber-hair); border-radius: 3px; }
.compare-table thead th,
.compare-table tbody td { scroll-snap-align: start; }

/* Right-edge fade — signals "more content exists" */
.compare-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--bg-deep) 85%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 200ms ease;
  display: none;
}

/* "Swipe to compare" hint pill — mobile only */
.compare-hint {
  display: none;
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--hair);
  vertical-align: top;
}
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th {
  padding-top: 28px;
  padding-bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  font-weight: 500;
}
.compare-table thead th.us {
  color: var(--amber);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.08), transparent);
  border-left: 1px solid var(--amber-hair);
  border-right: 1px solid var(--amber-hair);
  border-top: 1px solid var(--amber-hair-lt);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
}
.compare-table thead th.us::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.compare-table tbody td.us {
  background: rgba(251, 191, 36, 0.04);
  border-left: 1px solid var(--amber-hair);
  border-right: 1px solid var(--amber-hair);
  color: var(--fg-1);
  font-weight: 500;
}
.compare-table tbody tr:last-child td.us {
  border-bottom: 1px solid var(--amber-hair);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.compare-table th.dim {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--fg-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 200px;
}
.compare-table td { color: var(--fg-3); }
.compare-table td strong, .compare-table td b {
  display: block;
  color: var(--fg-1);
  font-weight: 600;
  margin-bottom: 4px;
}
.compare-table td.us strong { color: var(--amber-lt); }
.compare-table td small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-5);
  letter-spacing: 0.04em;
}

/* ───────── 7. Proof ───────── */
.proof-tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: 100px;
  margin-bottom: 48px;
}
.proof-tab {
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
  border-radius: 100px;
  font-weight: 500;
  transition: all 150ms ease;
}
.proof-tab.active { background: rgba(251, 191, 36, 0.12); color: var(--amber); }
.proof-tab .n { font-size: 10px; color: var(--fg-5); margin-left: 6px; }
.proof-tab.active .n { color: var(--amber); opacity: 0.7; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

.proof-card {
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 250ms cubic-bezier(0.05, 0.7, 0.1, 1);
  position: relative;
  overflow: hidden;
}
.proof-card:hover { border-color: var(--amber-hair); transform: translateY(-2px); }
.proof-card.nda { border-style: dashed; border-color: var(--hair-2); }

.proof-head {
  display: flex; gap: 14px; align-items: center;
}
.proof-avatar {
  width: 44px; height: 44px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--amber), #f59e0b);
  color: #1f1303;
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.proof-card.nda .proof-avatar {
  background: repeating-linear-gradient(45deg, var(--bg-2), var(--bg-2) 3px, var(--bg-1) 3px, var(--bg-1) 6px);
  color: var(--fg-4);
  border: 1px solid var(--hair-2);
}
.proof-avatar svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.proof-id .n { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.proof-id .m {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-5);
  margin-top: 3px;
}

.proof-stars { color: var(--amber); letter-spacing: 2px; font-size: 13px; }

.proof-quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fg-2);
  font-style: italic;
  text-wrap: pretty;
}

.proof-book {
  aspect-ratio: 2 / 3;
  max-height: 140px;
  background:
    linear-gradient(180deg, rgba(251, 191, 36, 0.15), rgba(192, 132, 252, 0.12));
  border: 1px dashed var(--hair-3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  width: 80px;
  flex-shrink: 0;
  position: relative;
}
.proof-card.nda .proof-book {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-color: var(--hair-2);
  color: var(--fg-5);
}
.proof-card.nda .proof-book::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(20, 20, 20, 0.4);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}

.proof-meta { display: flex; gap: 14px; align-items: center; }

.proof-result {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1;
}
.proof-result .n {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber-lt);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.proof-result .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}

.nda-tag {
  position: absolute; top: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px 4px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hair-2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.nda-tag .dot { width: 5px; height: 5px; border-radius: 100px; background: var(--fg-5); }

.proof-crop {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-5);
  letter-spacing: 0.06em;
  padding-top: 14px;
  border-top: 1px dashed var(--hair);
  margin-top: 4px;
}

/* ───────── 8. Bobby bio ───────── */
.bio {
  background: linear-gradient(180deg, var(--bg-deep), var(--ink));
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.bio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .bio-layout { grid-template-columns: 320px 1fr; gap: 72px; }
}

.bio-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border: 1px solid var(--hair);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, #1f1f1f, #141414);
  position: relative;
  overflow: hidden;
}
.bio-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 3px);
}
.bio-portrait .avatar-silh {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 72%;
  opacity: 0.5;
}
.bio-portrait .ph-label {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 10px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--hair);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  backdrop-filter: blur(8px);
}
.bio-portrait .ph-sig {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bio-portrait .ph-sig span { display: block; color: var(--fg-4); font-size: 10px; margin-top: 2px; }

.bio-name {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
  text-wrap: balance;
}
.bio-role {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bio p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.bio p strong { color: var(--fg-1); font-weight: 600; }
.bio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 32px 0;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) { .bio-stats { grid-template-columns: repeat(4, 1fr); } }
.bio-stat {
  padding: 18px 20px;
  background: var(--bg-deep);
}
.bio-stat .n {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--amber-lt);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 8px;
}
.bio-stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}

.bio-links { display: flex; flex-wrap: wrap; gap: 10px; }
.bio-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hair-2);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  transition: all 150ms ease;
}
.bio-link:hover { border-color: var(--amber-hair); color: var(--amber); }
.bio-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ───────── 9. Pricing ───────── */
.pricing { position: relative; overflow: hidden; }
.pricing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.pricing .container { position: relative; z-index: 1; }
.price-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-deep));
  border: 1px solid var(--amber-hair);
  border-radius: 20px;
  padding: 44px 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.08),
    0 40px 80px -40px rgba(251, 191, 36, 0.18);
}
.price-card::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.price-card > * { position: relative; }

.price-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 9px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--amber-hair);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  font-weight: 500;
}
.price-eyebrow .dot { width: 6px; height: 6px; border-radius: 100px; background: var(--amber); animation: pulse 2s infinite; }

.price-amount {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.price-amount .big {
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #fcd34d 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-amount .cur {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--fg-4);
}
.price-amount .per {
  align-self: flex-end;
  font-size: 0.9375rem;
  color: var(--fg-4);
  font-family: 'Inter', sans-serif;
  letter-spacing: normal;
  padding-bottom: 12px;
}

.price-label {
  font-size: 1.0625rem;
  color: var(--fg-2);
  font-weight: 500;
  margin-bottom: 8px;
}
.price-variable {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-4);
  letter-spacing: 0.02em;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--hair-2);
  border-radius: 8px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.price-variable b { color: var(--fg-1); font-weight: 600; }

.price-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-2), transparent);
  margin: 0 0 28px;
}

.price-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.price-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9375rem;
  color: var(--fg-2);
  line-height: 1.5;
}
.price-list li svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 3px; }

.price-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.price-cta .btn { width: 100%; }
.price-fine {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-5);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.price-fine b { color: var(--fg-3); font-weight: 500; }

/* ───────── 10. Risk tiles ───────── */
.risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .risk-grid { grid-template-columns: repeat(3, 1fr); }
}
.risk-tile {
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 200ms ease;
}
.risk-tile:hover { border-color: var(--hair-2); }
.risk-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(251, 191, 36, 0.08);
  display: grid; place-items: center;
}
.risk-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 1.75; }
.risk-title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  text-wrap: balance;
}
.risk-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fg-3);
}

/* ───────── 11. FAQ ───────── */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: var(--bg-1);
  transition: border-color 200ms ease;
  overflow: hidden;
}
.faq-item.open { border-color: var(--amber-hair); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.015em;
  line-height: 1.4;
  text-wrap: balance;
}
.faq-question .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-5);
  letter-spacing: 0.1em;
  margin-right: 16px;
  font-weight: 500;
}
.faq-q-text { flex: 1; }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 7px;
  border: 1px solid var(--hair-2);
  display: grid; place-items: center;
  color: var(--fg-3);
  transition: all 200ms cubic-bezier(0.05, 0.7, 0.1, 1);
}
.faq-item.open .faq-toggle { background: var(--amber); color: #000; border-color: var(--amber); transform: rotate(45deg); }
.faq-toggle svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.25; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.05, 0.7, 0.1, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 28px 24px 74px;
  font-size: 0.9375rem;
  color: var(--fg-3);
  line-height: 1.7;
  text-wrap: pretty;
}
.faq-answer-inner em { font-style: normal; color: var(--fg-1); font-weight: 500; }
@media (max-width: 640px) {
  .faq-answer-inner { padding-left: 28px; }
  .faq-question { padding: 20px; }
  .faq-question .num { margin-right: 10px; }
}

/* ───────── 12. Final CTA ───────── */
.final-cta {
  padding: 96px 0 120px;
}
.final-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--amber-hair);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(251, 191, 36, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-deep));
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}
.final-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(251, 191, 36, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 191, 36, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
}
.final-card > * { position: relative; }

.capacity-bar {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--amber-hair);
  background: rgba(251, 191, 36, 0.04);
  border-radius: 100px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
}
.capacity-bar .dot { width: 7px; height: 7px; border-radius: 100px; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.6s infinite; }
.capacity-bar b { color: var(--amber); font-weight: 500; font-variant-numeric: tabular-nums; }
.capacity-bar .sep { width: 1px; height: 12px; background: var(--hair-2); }

.final-h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
  text-wrap: balance;
  max-width: 16ch;
  margin-left: auto; margin-right: auto;
}
.final-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-p {
  font-size: 1.125rem;
  color: var(--fg-3);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ───────── 13. Footer ───────── */
.footer {
  border-top: 1px solid var(--hair);
  padding: 48px 0 32px;
  background: var(--ink);
}
.footer .container { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer .brand img { height: 24px; opacity: 0.8; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
  transition: color 150ms ease;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-4);
}
.footer-copy a:hover { color: var(--fg-3); }

/* ───────── Scroll reveal ───────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms cubic-bezier(0.05, 0.7, 0.1, 1), transform 600ms cubic-bezier(0.05, 0.7, 0.1, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ───────── Responsive fixes (surgical mobile pass) ───────── */
@media (max-width: 760px) {
  /* Layout foundation */
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* Topbar: hide mini-cta on mobile (hero CTA sits right below) */
  .topbar { height: 58px; }
  .topbar .brand img { height: 22px; }
  .topbar .brand .mark { font-size: 9px; padding-left: 8px; letter-spacing: 0.14em; }
  .topbar .mini-cta { display: none; }

  /* Buttons: allow wrap, don't nowrap past viewport */
  .btn { white-space: normal; text-align: center; line-height: 1.25; padding: 14px 20px; }
  .btn-large { padding: 16px 22px; min-height: 52px; font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; }

  /* Hero */
  .hero { padding: 96px 0 56px; }
  .hero-eyebrow { display: inline-flex; flex-wrap: wrap; padding: 6px 12px 6px 8px; font-size: 12px; gap: 8px; max-width: 100%; }
  .hero-eyebrow .ref { font-size: 9.5px; padding: 3px 8px; }
  .hero-h1 { max-width: none; font-size: clamp(2rem, 9.2vw, 2.6rem); line-height: 1.06; margin-bottom: 22px; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; max-width: none; }
  .hero-meta { gap: 14px 22px; padding-top: 20px; }
  .hero-meta .item { flex: 0 1 auto; }
  .hero-layout { gap: 40px; }

  /* VSL card */
  .vsl-play { width: 64px; height: 64px; }
  .vsl-play svg { width: 22px; height: 22px; }
  .vsl-tl { top: 12px; left: 12px; font-size: 9px; padding: 4px 9px; }
  .vsl-br { bottom: 12px; right: 12px; font-size: 10px; padding: 4px 9px; }
  .vsl-bl { left: 16px; right: 88px; bottom: 16px; font-size: 12.5px; line-height: 1.3; }
  .vsl-bl .who { font-size: 9.5px; margin-bottom: 4px; }
  .vsl-portrait svg { width: 52%; }

  /* Section typography */
  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .section-sub { font-size: 0.975rem; }
  .section-head { margin-bottom: 40px; }
  .section-kicker { margin-bottom: 18px; font-size: 10.5px; }

  /* Social-proof bar — stack vertically to prevent space-between gap */
  .sp-bar { padding: 20px 0; }
  .sp-grid { flex-direction: column; gap: 14px; align-items: flex-start; }
  .sp-lead { flex-wrap: wrap; gap: 10px; font-size: 11.5px; }
  .sp-logos { gap: 12px 22px; }
  .sp-logo { font-size: 11px; letter-spacing: 0.1em; }

  /* Problem agitation */
  .problem { padding: 64px 0; }
  .problem-line { padding: 22px; grid-template-columns: 1fr; gap: 10px; }
  .problem-line .idx { padding-top: 0; }
  .problem-line .text { font-size: 1.0625rem; line-height: 1.45; }

  /* Bio */
  .bio-layout { gap: 32px; }
  .bio-portrait { max-width: 220px; margin: 0 auto; }
  .bio-name { font-size: clamp(1.6rem, 7.4vw, 2rem); line-height: 1.1; }
  .bio-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bio-stat { padding: 14px; }
  .bio-stat .n { font-size: 20px; }

  /* Mechanism (step cards) */
  .step { padding: 24px; }
  .step-title { font-size: 1.1875rem; }
  .step-desc { font-size: 0.9375rem; }
  .mira-grid { grid-template-columns: repeat(2, 1fr); }

  /* Showcase (Booketeer + MIRA) */
  .showcase { padding: 64px 0; }
  .showcase-copy { max-width: none; }
  .showcase-h2 { font-size: clamp(1.875rem, 8.2vw, 2.25rem); line-height: 1.08; margin-bottom: 18px; }
  .showcase-lede { font-size: 15px; margin-bottom: 22px; }
  .showcase-badge { font-size: 9.5px; padding: 5px 12px 5px 9px; margin-bottom: 18px; flex-wrap: wrap; }
  .showcase-badge .acr { display: none; }
  .showcase-feats { gap: 12px; margin-bottom: 22px; }
  .showcase-feat .f-ic { width: 32px; height: 32px; }
  .showcase-feat .f-ic svg { width: 16px; height: 16px; }
  .showcase-feat .f-body h4 { font-size: 14.5px; }
  .showcase-feat .f-body p { font-size: 13px; }
  .showcase-cta-row { flex-wrap: wrap; gap: 8px 14px; font-size: 12px; row-gap: 6px; }
  .showcase-cta-row .sep { display: none; }

  /* Media panel (mock frame) */
  .media-body { padding: 14px; }
  .media-hdr { padding: 11px 14px; gap: 8px; flex-wrap: wrap; }
  .media-hdr .brand-chip { font-size: 10px; }
  .media-hdr .path { font-size: 10px; }
  .media-hdr .live-tag { font-size: 9px; margin-left: auto; }

  /* Booketeer scene-index mock — STACK, don't side-by-side */
  .bk-mock { grid-template-columns: 1fr; min-height: 0; gap: 14px; }
  .bk-ms { max-height: 240px; padding: 14px; font-size: 11.5px; }
  .bk-ms p { font-size: 11.5px; }
  .bk-scene { padding: 10px 11px; grid-template-columns: auto 1fr auto; gap: 8px; }
  .bk-scene .t { font-size: 11.5px; }
  .bk-scene .s { font-size: 10.5px; padding: 2px 7px; }

  /* MIRA scoring mock — 2-col emotion grid */
  .mira-mock { min-height: 0; gap: 12px; }
  .mira-emotion-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .mira-em { padding: 10px 11px 10px; }
  .mira-em .n { font-size: 17px; }
  .mira-caption-preview { padding: 12px 14px; }
  .mira-caption-preview .cap-lbl { flex-wrap: wrap; gap: 4px 10px; }
  .mira-caption-preview .cap-body { font-size: 12.5px; }
  .mira-caption-preview .cap-meta { flex-wrap: wrap; gap: 6px; margin-top: 10px; }
  .mira-caption-preview .cap-meta .chip { font-size: 9.5px; padding: 2px 6px; }

  /* Stack consolidation */
  .stack-section { padding: 64px 0; }
  .stack-section .section-head-row { margin-bottom: 36px; gap: 18px; }
  .stack-section .section-head-row .hd h2 { font-size: clamp(1.875rem, 8vw, 2.25rem); }
  .stack-section .section-head-row .hd p { font-size: 14.5px; }
  .stack-section .section-head-row .aside { font-size: 11.5px; padding: 12px 14px; line-height: 1.5; }
  .stack-layout { gap: 28px; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stack-tile { padding: 11px 11px 10px; gap: 6px; }
  .stack-tile .tl-head { font-size: 11.5px; gap: 7px; }
  .stack-tile .tl-ic { width: 20px; height: 20px; }
  .stack-tile .tl-ic svg { width: 11px; height: 11px; }
  .stack-tile .tl-desc { font-size: 10px; }
  .stack-tile .tl-price { font-size: 10px; }
  .stack-total { padding: 10px 12px; font-size: 11px; }
  .stack-arrow { padding: 4px; }
  .stack-arrow .arr { width: 40px; height: 40px; transform: rotate(90deg); }
  .stack-arrow .arr::before { inset: -6px; }
  .stack-arrow .arr svg { width: 16px; height: 16px; }
  .stack-arrow .lbl-a { font-size: 9.5px; margin-top: 10px; }
  .stack-after { padding: 20px; border-radius: 14px; }
  .stack-after .lbl-one { font-size: 10px; margin-bottom: 12px; }
  .stack-after .brand-row { gap: 8px; padding-bottom: 12px; margin-bottom: 12px; }
  .stack-after .brand-row img { width: 24px; height: 24px; }
  .stack-after .brand-row .t { font-size: 14px; }
  .stack-after .brand-row .m { font-size: 9px; }
  .stack-after .incl-list { gap: 9px; }
  .stack-after .incl-item { font-size: 12.5px; gap: 8px; }
  .stack-after .incl-item .note { font-size: 11px; }
  .roadmap { padding: 10px 12px; margin-top: 12px; }
  .roadmap .rm-lbl { font-size: 9px; margin-bottom: 7px; }
  .roadmap .rm-items { gap: 5px; }
  .roadmap .rm-pill { font-size: 10px; padding: 3px 7px; }

  /* Included grid */
  .inc-row { padding: 16px 18px; gap: 12px; }
  .inc-check { width: 20px; height: 20px; }
  .inc-row .tt { font-size: 14px; }
  .inc-row .meta { font-size: 10.5px; }

  /* Comparison table — keep horizontal scroll; add swipe hint + edge fade */
  .compare-wrap { border-radius: 12px; }
  .compare-wrap::after { display: block; }
  .compare-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    padding: 6px 12px 6px 11px;
    background: rgba(251,191,36,0.12);
    border: 1px solid var(--amber-hair);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    backdrop-filter: blur(8px);
    pointer-events: none;
    animation: swipe-hint 2.4s ease-in-out infinite;
  }
  .compare-hint svg {
    width: 12px; height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: swipe-arrow 2.4s ease-in-out infinite;
  }
  @keyframes swipe-hint {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
  }
  @keyframes swipe-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }
  /* Hide hint once user has scrolled the table */
  .compare-wrap.scrolled .compare-hint { opacity: 0; transition: opacity 240ms ease; }
  .compare-wrap.scrolled::after { opacity: 0; }
  .compare-table th, .compare-table td { padding: 14px 16px; font-size: 13.5px; }
  .compare-table thead th { font-size: 10px; padding-top: 20px; padding-bottom: 14px; }
  .compare-table th.dim { width: 140px; font-size: 10px; }

  /* Pricing */
  .price-card { padding: 32px 22px 28px; border-radius: 16px; }
  .price-eyebrow { font-size: 10px; margin-bottom: 22px; }
  .price-amount { flex-wrap: wrap; gap: 6px 10px; margin-bottom: 6px; }
  .price-amount .big { font-size: clamp(3rem, 14vw, 4rem); }
  .price-amount .cur { font-size: 1.625rem; }
  .price-amount .per { padding-bottom: 8px; font-size: 0.875rem; }
  .price-label { font-size: 0.9375rem; }
  .price-variable { font-size: 11.5px; }

  /* Risk reversal (what we promise) */
  .risk-tile { padding: 24px 22px; }

  /* FAQ */
  .faq-question { padding: 18px 16px; min-height: 56px; }
  .faq-question .num { font-size: 10px; margin-right: 10px; min-width: 30px; }
  .faq-q-text { font-size: 14px; line-height: 1.35; }
  .faq-answer-inner { padding: 0 18px 20px 18px; font-size: 0.875rem; line-height: 1.6; }

  /* Final CTA */
  .final-cta { padding: 64px 0 72px; }
  .final-card { padding: 48px 20px 44px; border-radius: 18px; }
  .final-h2 { font-size: clamp(1.625rem, 7.4vw, 2.25rem); }
  .final-p { font-size: 1rem; }
  .capacity-bar { font-size: 10.5px; padding: 6px 11px 6px 8px; gap: 10px; flex-wrap: wrap; }
  .capacity-bar .sep { display: none; }

  /* Footer */
  .footer { padding: 36px 0 28px; }
  .footer .container { flex-direction: column; align-items: flex-start; gap: 18px; justify-content: flex-start; }
  .footer-links { gap: 6px 18px; }
  .footer-links a { font-size: 10.5px; }
  .footer-copy { font-size: 10px; }
}

/* ─────────────────────────────────────────────────
   NARROW MOBILE (iPhone SE 375 / small Android 360)
   ───────────────────────────────────────────────── */
@media (max-width: 400px) {
  .container, .container-wide { padding: 0 16px; }
  .hero-eyebrow { font-size: 11.5px; }
  .hero-eyebrow .ref { font-size: 9px; }
  .vsl-bl { right: 76px; font-size: 11.5px; }
  .stack-grid { grid-template-columns: 1fr; }
  .mira-emotion-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-after .brand-row .m { display: none; }
  .sp-lead { font-size: 11px; }
  .compare-table th, .compare-table td { padding: 12px 12px; }
}

/* ───────── Util ───────── */
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.amber { color: var(--amber); }
.amber-lt { color: var(--amber-lt); }
.dim { color: var(--fg-4); }

/* ═════════════════════════════════════════════════
   PRODUCT SHOWCASES — Booketeer (amber) + MIRA (orange)
   Full-width alternating splits. Each has its own
   ambient radial glow and hairline accent.
   ═════════════════════════════════════════════════ */

:root {
  --mira-orange: #ff6a00;
  --mira-orange-lt: #ff8a3d;
  --mira-orange-soft: #ffb380;
  --mira-hair: rgba(255, 106, 0, 0.22);
  --mira-hair-lt: rgba(255, 106, 0, 0.35);
}

.showcase {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
@media (min-width: 768px) { .showcase { padding: 120px 0; } }

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 40%, rgba(251,191,36,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 75%, rgba(251,191,36,0.035) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.showcase.mira::before {
  background:
    radial-gradient(ellipse 1000px 650px at 80% 35%, rgba(255,106,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 15% 80%, rgba(255,106,0,0.04) 0%, transparent 65%);
}

.showcase .container { position: relative; z-index: 1; }

.showcase-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .showcase-split {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .showcase.reverse .showcase-split .showcase-media { order: -1; }
}

.showcase-copy {
  max-width: 520px;
}
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: rgba(251,191,36,0.09);
  border: 1px solid var(--amber-hair);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.showcase.mira .showcase-badge {
  color: var(--mira-orange-lt);
  background: rgba(255,106,0,0.08);
  border-color: var(--mira-hair);
}
.showcase-badge .mk {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 100px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.showcase-badge .acr {
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  padding-left: 8px;
  margin-left: 4px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.showcase-h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  margin-bottom: 22px;
}
.showcase-h2 em {
  font-style: normal;
  color: var(--amber);
  font-weight: 800;
}
.showcase.mira .showcase-h2 em { color: var(--mira-orange-lt); }

.showcase-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.showcase-lede strong { color: var(--fg-1); font-weight: 600; }

.showcase-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.showcase-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.showcase-feat .f-ic {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(251,191,36,0.1);
  border: 1px solid var(--amber-hair);
  display: grid; place-items: center;
  color: var(--amber);
}
.showcase.mira .showcase-feat .f-ic {
  background: rgba(255,106,0,0.1);
  border-color: var(--mira-hair);
  color: var(--mira-orange-lt);
}
.showcase-feat .f-ic svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.showcase-feat .f-body .feat-h,
.showcase-feat .f-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 4px 0 4px 0;
  letter-spacing: -0.01em;
}
.showcase-feat .f-body p {
  font-size: 13.5px;
  color: var(--fg-3);
  line-height: 1.5;
  margin: 0;
}
.showcase-feat .f-body p code,
.showcase-feat .f-body p .m {
  font-family: var(--mono);
  color: var(--fg-2);
  background: rgba(255,255,255,0.05);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.showcase-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--fg-4);
}
.showcase-cta-row .sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.14);
}
.showcase-cta-row a {
  color: var(--amber);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease;
}
.showcase.mira .showcase-cta-row a { color: var(--mira-orange-lt); }
.showcase-cta-row a svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── Media panel (the mock) ─── */
.showcase-media {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
}
.showcase.mira .showcase-media {
  border-color: var(--mira-hair);
  box-shadow: 0 0 0 1px rgba(255,106,0,0.04), 0 40px 80px -40px rgba(255,106,0,0.15);
}
.showcase:not(.mira) .showcase-media {
  box-shadow: 0 40px 80px -40px rgba(251,191,36,0.08);
}

.media-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0f0f0f;
}
.media-hdr .brand-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.06em;
}
.showcase.mira .media-hdr .brand-chip { color: var(--mira-orange-lt); }
.media-hdr .brand-chip .d {
  width: 6px; height: 6px; border-radius: 100px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: mira-pulse 1.8s ease-in-out infinite;
}
@keyframes mira-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.media-hdr .path {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.02em;
}
.media-hdr .live-tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-body { padding: 20px; }

/* ─── Booketeer scene-index mock ─── */
.bk-mock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.25fr;
  gap: 16px;
  min-height: 380px;
}
.bk-ms {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px 16px 12px 16px;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--fg-3);
  position: relative;
  overflow: hidden;
  max-height: 380px;
}
.bk-ms .ms-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--fg-5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; justify-content: space-between;
}
.bk-ms .ms-lbl .pg { color: var(--fg-4); }
.bk-ms p {
  margin-bottom: 10px;
  font-size: 11.5px;
  color: var(--fg-3);
  line-height: 1.65;
}
.bk-ms .ms-hl {
  background: rgba(251,191,36,0.12);
  border-left: 2px solid var(--amber);
  padding: 6px 10px;
  margin: 0 -10px 10px -10px;
  border-radius: 0 6px 6px 0;
  color: var(--fg-2);
}
.bk-ms::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0c0c0c);
  pointer-events: none;
}

.bk-index {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-idx-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--fg-5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex; justify-content: space-between;
}
.bk-idx-lbl .ct { color: var(--amber); }
.bk-scene {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.bk-scene .ch {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.04em;
  min-width: 40px;
}
.bk-scene .t {
  font-size: 12px;
  color: var(--fg-2);
  line-height: 1.4;
}
.bk-scene .s {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(251,191,36,0.08);
  border: 1px solid var(--amber-hair);
  padding: 3px 8px;
  border-radius: 100px;
}
.bk-scene.top { border-color: var(--amber-hair-lt); background: linear-gradient(180deg, rgba(251,191,36,0.04), transparent); }
.bk-scene.top .s { background: var(--amber); color: #1f1303; border-color: var(--amber); }

/* ─── MIRA scoring mock ─── */
.mira-mock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
}

.mira-emotion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mira-em {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 12px 11px 12px;
}
.mira-em .l {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--fg-5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mira-em .n {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.mira-em .bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.mira-em .bar > i {
  display: block;
  height: 100%;
  background: var(--mira-orange);
  box-shadow: 0 0 6px rgba(255,106,0,0.5);
  border-radius: 100px;
  transform-origin: left;
}
.mira-em.hot .n { color: var(--mira-orange-lt); }
.mira-em.dim .n { color: var(--fg-4); }
.mira-em.dim .bar > i { background: var(--fg-5); box-shadow: none; }

.mira-caption-preview {
  background: #0f0f0f;
  border: 1px solid rgba(255,106,0,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  position: relative;
}
.mira-caption-preview .cap-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--mira-orange-lt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mira-caption-preview .cap-lbl .verif {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mira-caption-preview .cap-lbl .verif::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 100px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.mira-caption-preview .cap-body {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.55;
  font-style: italic;
}
.mira-caption-preview .cap-body .q {
  background: rgba(255,106,0,0.08);
  padding: 1px 4px;
  border-radius: 3px;
  color: #ffd5b3;
  font-style: normal;
}
.mira-caption-preview .cap-meta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mira-caption-preview .cap-meta .chip {
  padding: 3px 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
}
.mira-caption-preview .cap-meta .chip.src { color: var(--mira-orange-lt); border-color: var(--mira-hair); background: rgba(255,106,0,0.06); }

/* ═════════════════════════════════════════════════
   STACK CONSOLIDATION SECTION
   Grid of 6 generic tool cards → arrow → IAA card
   ═════════════════════════════════════════════════ */
.stack-section {
  padding: 96px 0;
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, var(--bg-deep) 50%, var(--ink) 100%);
  overflow: hidden;
}
@media (min-width: 768px) { .stack-section { padding: 120px 0; } }

.stack-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .stack-layout {
    grid-template-columns: 1.2fr auto 1fr;
    gap: 40px;
    align-items: center;
  }
}

.stack-before {
  position: relative;
}
.stack-before .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stack-before .lbl .x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 100px;
  background: rgba(253,164,175,0.12);
  color: var(--rose);
  font-size: 10px;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 560px) {
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
}

.stack-tile {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  opacity: 0.65;
  transition: opacity 200ms ease, transform 200ms ease;
}
.stack-tile:hover { opacity: 0.85; }
.stack-tile .tl-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: -0.01em;
}
.stack-tile .tl-ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--fg-3);
}
.stack-tile .tl-ic svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.stack-tile .tl-desc {
  font-size: 10.5px;
  color: var(--fg-4);
  line-height: 1.4;
}
.stack-tile .tl-price {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-4);
  margin-top: auto;
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
  border-top: 1px dashed rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
}
.stack-tile .tl-price .strike {
  position: relative;
  color: var(--fg-5);
}
.stack-tile .tl-price .strike::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1px;
  background: var(--rose);
  opacity: 0.5;
}
.stack-total {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(253,164,175,0.05);
  border: 1px solid rgba(253,164,175,0.15);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
}
.stack-total .lbl-s {
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.stack-total .amt {
  color: var(--rose);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stack-arrow {
  display: grid;
  place-items: center;
  padding: 20px;
}
.stack-arrow .arr {
  width: 48px; height: 48px;
  border-radius: 100px;
  background: rgba(251,191,36,0.08);
  border: 1px solid var(--amber-hair);
  display: grid; place-items: center;
  color: var(--amber);
  position: relative;
}
.stack-arrow .arr svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stack-arrow .arr::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 100px;
  border: 1px dashed var(--amber-hair);
  animation: stack-spin 18s linear infinite;
}
@keyframes stack-spin {
  to { transform: rotate(360deg); }
}
.stack-arrow .lbl-a {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1023px) {
  .stack-arrow { padding: 8px; }
  .stack-arrow .arr { transform: rotate(90deg); }
}

.stack-after {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid var(--amber-hair-lt);
  border-radius: 16px;
  padding: 24px 24px 22px 24px;
  box-shadow: 0 40px 80px -40px rgba(251,191,36,0.15);
}
.stack-after::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%, rgba(251,191,36,0.06), transparent 70%);
  pointer-events: none;
}
.stack-after > * { position: relative; }
.stack-after .lbl-one {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stack-after .lbl-one::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 100px;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}
.stack-after .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.stack-after .brand-row img {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(251,191,36,0.1);
  padding: 2px;
}
.stack-after .brand-row .t {
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.stack-after .brand-row .m {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stack-after .incl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.stack-after .incl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.stack-after .incl-item .ck {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 100px;
  background: rgba(134,239,172,0.12);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 2px;
}
.stack-after .incl-item .ck svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.stack-after .incl-item b { color: var(--fg-1); font-weight: 600; }
.stack-after .incl-item .note {
  display: block;
  font-size: 11.5px;
  color: var(--fg-4);
  margin-top: 2px;
  font-family: var(--mono);
}

.roadmap {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 10px;
}
.roadmap .rm-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.roadmap .rm-lbl .tag {
  background: rgba(251,191,36,0.08);
  color: var(--amber);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 8.5px;
  letter-spacing: 0.1em;
}
.roadmap .rm-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.roadmap .rm-pill {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-3);
  padding: 4px 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Section head adjustments for asymmetric layouts */
.stack-section .section-head-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 768px) {
  .stack-section .section-head-row {
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
  }
}
.stack-section .section-head-row .hd h2 {
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  margin-bottom: 14px;
}
.stack-section .section-head-row .hd h2 em {
  font-style: normal;
  color: var(--amber);
}
.stack-section .section-head-row .hd p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 520px;
}
.stack-section .section-head-row .hd p strong { color: var(--fg-1); font-weight: 600; }
.stack-section .section-head-row .aside {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-3);
  line-height: 1.55;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid var(--amber);
  border-radius: 0 10px 10px 0;
}
.stack-section .section-head-row .aside b { color: var(--amber); font-weight: 600; }
