/* ══════════════════════════════════════════════════════════════════════
   VANIQ — landing page
   Concept: "The Mirror". A seam runs down the viewport; the left half is
   the way it is now, the right half is the reflection with VANIQ present.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --void:       #07080B;
  --surface:    #0E1016;
  --surface-2:  #13161E;
  --surface-3:  #191D27;

  --glass:      rgba(255, 255, 255, 0.035);
  --glass-2:    rgba(255, 255, 255, 0.055);
  --line:       rgba(255, 255, 255, 0.09);
  --line-2:     rgba(255, 255, 255, 0.16);

  --ink:        #F2F4F8;
  --muted:      #8A93A6;
  --muted-2:    #5F6878;

  /* mint = the intelligence / the agent / "live" */
  --live:       #5EF2C0;
  --live-dim:   rgba(94, 242, 192, 0.13);
  --live-line:  rgba(94, 242, 192, 0.34);
  --live-glow:  rgba(94, 242, 192, 0.22);

  /* warm = the business result (cart, sale, deal closed) */
  --warm:       #FF8A4C;
  --warm-dim:   rgba(255, 138, 76, 0.13);
  --warm-line:  rgba(255, 138, 76, 0.34);

  /* cold = the "before" half */
  --cold:       #5B6B85;
  --cold-dim:   rgba(91, 107, 133, 0.14);

  --no:         #FF6B6B;
  --no-dim:     rgba(255, 107, 107, 0.12);

  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow:    0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gut: clamp(20px, 5vw, 64px);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }
.dim  { color: var(--muted); }
.live { color: var(--live); }
.warm { color: var(--warm); }

::selection { background: var(--live); color: var(--void); }

/* ── Backdrop: WebGL canvas + static gradient behind it ─────────────── */
#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.scene-fallback {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 108%, rgba(94, 242, 192, 0.14) 0%, transparent 58%),
    radial-gradient(90% 60% at 50% 0%,   rgba(91, 107, 133, 0.20) 0%, transparent 62%),
    var(--void);
}

main, .nav, .foot { position: relative; z-index: 1; }

/* ── The seam ───────────────────────────────────────────────────────── */
.seam {
  position: fixed;
  top: 0;
  left: 50%;
  height: 100vh;
  width: 1px;
  z-index: 2;
  pointer-events: none;
  transform: translateX(-0.5px);
}

.seam-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--line-2) 12%,
    var(--line-2) 88%,
    transparent 100%
  );
}

/* soft bloom around the edge — this is what makes it read as a mirror */
.seam::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -30px;
  width: 60px;
  background: linear-gradient(90deg,
    transparent, rgba(94, 242, 192, 0.05) 42%, rgba(94, 242, 192, 0.09) 50%,
    rgba(94, 242, 192, 0.05) 58%, transparent);
  filter: blur(6px);
}

.seam-rail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 34vh;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.seam-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--live), var(--warm));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--live-glow);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--live);
  color: #04120D;
  box-shadow: 0 0 0 0 var(--live-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 32px var(--live-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--live-line); background: var(--live-dim); }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.arrow { transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateY(3px); }

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gut);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.nav-mark {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 14px var(--live-glow);
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  color: var(--muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

/* ── Shared section furniture ───────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

section { padding: clamp(80px, 12vh, 150px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow--center { justify-content: center; }

.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot--cold { background: var(--cold); }
.dot--live { background: var(--live); box-shadow: 0 0 10px var(--live-glow); }

.section-head { max-width: 880px; margin-bottom: clamp(48px, 7vh, 84px); }
.section-title { font-size: clamp(30px, 4.4vw, 56px); }
.section-title--center { text-align: center; }

.section-lede {
  margin-top: 26px;
  max-width: 640px;
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted);
  line-height: 1.68;
}

/* ── Reveal ─────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════════════
   1 · HERO
   ══════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

.hero-side--left  { padding-right: clamp(20px, 3.4vw, 60px); text-align: right; }
.hero-side--right { padding-left:  clamp(20px, 3.4vw, 60px); text-align: left; }

.hero-side--left .eyebrow  { flex-direction: row-reverse; }
.hero-side--right .eyebrow { flex-direction: row; }

.hero-line {
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 600;
}
.hero-line--left  { color: var(--muted); }
.hero-line--right { color: var(--ink); }

/* the right half is the reflection — give it the live accent */
.hero-line--right em { font-style: normal; color: var(--live); }

.hero-foot {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: clamp(56px, 9vh, 96px) auto 0;
  padding: 0 var(--gut);
  text-align: center;
}

.hero-sub {
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.72;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.scroll-cue {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--live), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1;   transform-origin: top; }
}

/* ══════════════════════════════════════════════════════════════════════
   2 · THE MIRROR — pinned paired beats
   ══════════════════════════════════════════════════════════════════════ */
.mirror {
  padding: 0;
  height: 460vh;
  position: relative;
}

.mirror-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.mirror-head {
  padding: 0 var(--gut);
  text-align: center;
  flex-shrink: 0;
}
.mirror-head .section-title { font-size: clamp(22px, 3vw, 38px); }

.beats {
  position: relative;
  flex: 1;
  min-height: 0;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gut);
}

.beat {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 var(--gut);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.beat.is-active { opacity: 1; pointer-events: auto; }

.beat-half {
  max-width: 460px;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}
.beat-half--left {
  justify-self: end;
  text-align: right;
  padding-right: clamp(24px, 3.4vw, 64px);
  transform: translateX(-28px);
  opacity: 0.45;
}
.beat-half--right {
  justify-self: start;
  text-align: left;
  padding-left: clamp(24px, 3.4vw, 64px);
  transform: translateX(28px);
  opacity: 0.45;
}
.beat.is-active .beat-half { transform: none; opacity: 1; }
.beat.is-active .beat-half--right { transition-delay: 0.1s; }

.beat-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cold);
  margin-bottom: 16px;
}
.beat-tag--live { color: var(--live); }

.beat-title {
  font-size: clamp(21px, 2.5vw, 34px);
  margin-bottom: 18px;
}
.beat-half--left  .beat-title { color: var(--muted); }
.beat-half--right .beat-title { color: var(--ink); }

.beat-body {
  font-size: clamp(14.5px, 1.35vw, 16.5px);
  color: var(--muted);
  line-height: 1.7;
}
.beat-half--right .beat-body { color: #A8B2C4; }

/* hairline separating the two halves on the mirror line */
.beat-half--left  { border-right: 1px solid var(--line); }
.beat-half--right { border-left:  1px solid transparent; }

.beat-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  padding: 28px 0 0;
  flex-shrink: 0;
}
.beat-dot {
  width: 30px; height: 3px;
  border-radius: 2px;
  background: var(--line-2);
  transition: background 0.35s, box-shadow 0.35s, width 0.35s var(--ease);
}
.beat-dot.is-active {
  width: 52px;
  background: var(--live);
  box-shadow: 0 0 12px var(--live-glow);
}

/* ══════════════════════════════════════════════════════════════════════
   3 · CAPABILITIES — card stack
   ══════════════════════════════════════════════════════════════════════ */
.caps { position: relative; }

.stack {
  position: relative;
  height: 440vh;   /* 8 cards → ~42vh of scroll each */
}

.stack-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.cap-card {
  position: absolute;
  width: min(620px, calc(100vw - var(--gut) * 2));
  padding: clamp(30px, 4vw, 52px);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease),
              border-color 0.5s, box-shadow 0.5s;
}
.cap-card.is-active {
  border-color: var(--live-line);
  box-shadow: var(--shadow), 0 0 60px -12px var(--live-glow);
}

.cap-num {
  display: block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--live);
  margin-bottom: 20px;
}
.cap-card h3 {
  font-size: clamp(22px, 2.7vw, 36px);
  margin-bottom: 16px;
}
.cap-card p {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
}

.stack-hint {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* the action flow row */
.flow {
  margin-top: clamp(56px, 8vh, 90px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.flow-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 26px;
  text-align: center;
}
.flow-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 52px);
}
.flow-track li {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-display);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  color: var(--muted);
}
.flow-i { color: var(--live); font-size: 9px; }
.flow-i--warm { color: var(--warm); }
.flow-track li:last-child { color: var(--ink); }

/* ══════════════════════════════════════════════════════════════════════
   4 · CONTROL — policy engine
   ══════════════════════════════════════════════════════════════════════ */
.control { position: relative; }

.policy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.policy-panel, .sim-panel {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--shadow-sm);
}

.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.panel-title {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
}
.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--live);
}
.panel-status--muted { color: var(--muted-2); }

.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 var(--live-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--live-glow); }
  70%  { box-shadow: 0 0 0 8px rgba(94, 242, 192, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 242, 192, 0); }
}

.policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.policy-row:last-of-type { border-bottom: none; }

.policy-label { display: flex; flex-direction: column; gap: 4px; }
.policy-label span { font-size: 14.5px; font-weight: 500; }
.policy-label small { font-size: 12.5px; color: var(--muted-2); line-height: 1.45; }

/* toggle */
.switch {
  flex-shrink: 0;
  width: 46px; height: 26px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
  position: relative;
  transition: background 0.3s var(--ease), border-color 0.3s;
}
.switch i {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--muted-2);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.switch.is-on { background: var(--live-dim); border-color: var(--live-line); }
.switch.is-on i {
  transform: translateX(20px);
  background: var(--live);
  box-shadow: 0 0 12px var(--live-glow);
}

/* slider */
.slider-wrap { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: clamp(96px, 12vw, 160px);
  height: 3px;
  border-radius: 2px;
  background: var(--surface-3);
  outline: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px var(--live-glow);
  cursor: grab;
  transition: transform 0.2s;
}
input[type=range]::-webkit-slider-thumb:active { transform: scale(1.18); cursor: grabbing; }
input[type=range]::-moz-range-thumb {
  width: 16px; height: 16px;
  border: none;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px var(--live-glow);
  cursor: grab;
}
input[type=range]:disabled { opacity: 0.32; cursor: not-allowed; }

.policy-row.is-disabled { opacity: 0.42; }

output#pDiscountOut {
  font-size: 14px;
  font-weight: 500;
  color: var(--live);
  min-width: 44px;
  text-align: right;
}

/* system chips */
.policy-row--chips { flex-direction: column; align-items: stretch; gap: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--live-line); color: var(--ink); }
.chip.is-on {
  background: var(--live-dim);
  border-color: var(--live-line);
  color: var(--live);
}

.panel-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
#policyHash { font-size: 11.5px; color: var(--muted-2); }

/* ── simulator ── */
.sim-requests {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0;
}

.sim-req {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--glass);
  transition: all 0.25s var(--ease);
}
.sim-req:hover {
  border-color: var(--live-line);
  background: var(--live-dim);
  transform: translateX(3px);
}
.sim-req.is-sent { border-color: var(--live-line); background: var(--live-dim); }

.sim-who {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.sim-say { font-size: 14.5px; color: var(--ink); }

.sim-out {
  min-height: 208px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(0, 0, 0, 0.28);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-empty {
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}
.sim-empty-mark {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--line-2);
}

/* the decision */
.verdict { animation: verdictIn 0.5s var(--ease) both; }
@keyframes verdictIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.verdict-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.verdict-badge--ok {
  background: var(--live-dim);
  color: var(--live);
  border: 1px solid var(--live-line);
}
.verdict-badge--no {
  background: var(--no-dim);
  color: var(--no);
  border: 1px solid rgba(255, 107, 107, 0.34);
}
.verdict-rule {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted-2);
}

/* the pipeline: request → policy → decision */
.pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
.pipe-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
}
.pipe-step:last-child { border-bottom: none; }
.pipe-i {
  flex-shrink: 0;
  width: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted-2);
  padding-top: 2px;
}
.pipe-step--ok .pipe-i { color: var(--live); }
.pipe-step--no .pipe-i { color: var(--no); }

.verdict-say {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--glass-2);
  border-left: 2px solid var(--live);
  font-size: 14.5px;
  line-height: 1.6;
}
.verdict-say--warm { border-left-color: var(--warm); }
.verdict-say--no   { border-left-color: var(--no); }
.verdict-say small {
  display: block;
  margin-top: 7px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.sim-legend {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-2);
}
.sim-legend span { display: inline-flex; align-items: center; gap: 8px; }
.lg { width: 7px; height: 7px; border-radius: 50%; }
.lg--ok { background: var(--live); }
.lg--no { background: var(--no); }

.control-note {
  margin-top: clamp(36px, 5vh, 56px);
  max-width: 760px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.72;
}
.control-note strong { color: var(--ink); display: block; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════════════════
   5 · SECURITY
   ══════════════════════════════════════════════════════════════════════ */
.security { border-top: 1px solid var(--line); }

.agent-flow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: clamp(18px, 2.5vw, 30px);
  overflow-x: auto;
  background: linear-gradient(145deg, var(--surface-2), rgba(14, 16, 22, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  scrollbar-width: thin;
}
.flow-node {
  display: flex;
  flex: 1 0 142px;
  min-height: 132px;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--glass);
}
.flow-node span { font-family: var(--f-mono); font-size: 10px; color: var(--muted-2); }
.flow-node strong { font-family: var(--f-display); font-size: 15px; line-height: 1.2; }
.flow-node small { color: var(--muted); font-size: 12px; line-height: 1.4; }
.flow-node--customer { border-color: rgba(91, 107, 133, 0.36); }
.flow-node--guard { border-color: var(--live-line); background: var(--live-dim); }
.flow-node--guard strong { color: var(--live); }
.flow-node--return { border-color: rgba(255, 138, 76, 0.34); }
.flow-node--return strong { color: var(--warm); }
.flow-arrow {
  align-self: center;
  flex: 0 0 auto;
  color: var(--muted-2);
  font-family: var(--f-mono);
  font-size: 18px;
  font-style: normal;
}
.flow-arrow--return { color: var(--warm); }

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}
.security-copy, .tool-test {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-sm);
}
.security-kicker { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--live); }
.security-copy h3 { max-width: 510px; margin: 14px 0 20px; font-size: clamp(24px, 3vw, 38px); }
.security-copy p:not(.security-kicker):not(.security-reassurance) { margin-top: 16px; color: var(--muted); font-size: 14.5px; line-height: 1.72; }
.security-reassurance { margin-top: 28px; padding: 16px 18px; border-left: 2px solid var(--live); background: var(--live-dim); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink); font-family: var(--f-display); font-size: 18px; line-height: 1.45; }
.tool-test { display: flex; flex-direction: column; }
.tool-test-intro { margin: 18px 0; color: var(--muted); font-size: 14.5px; }
.test-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.test-tab { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: var(--f-mono); font-size: 11px; transition: 0.2s var(--ease); }
.test-tab:hover, .test-tab.is-active { color: var(--live); border-color: var(--live-line); background: var(--live-dim); }
.test-request { margin: 18px 0 12px; padding: 17px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(0,0,0,0.22); color: var(--ink); font-size: 15px; line-height: 1.55; }
.test-run { align-self: flex-start; padding: 10px 17px; font-size: 13px; }
.test-result { min-height: 218px; margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(0,0,0,0.28); color: var(--muted-2); font-size: 13.5px; }
.test-result .sim-empty-mark { text-align: center; }
.test-result > p { text-align: center; }
.test-detail { display: grid; grid-template-columns: 126px 1fr; gap: 10px 14px; }
.test-detail dt { color: var(--muted-2); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; }
.test-detail dd { margin: 0; color: var(--ink); font-size: 13.5px; }
.test-detail dd.is-ok { color: var(--live); }
.test-detail dd.is-no { color: var(--no); }

/* ══════════════════════════════════════════════════════════════════════
   6 · VISIBILITY
   ══════════════════════════════════════════════════════════════════════ */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.stat {
  padding: clamp(20px, 2.2vw, 28px);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.stat:hover { border-color: var(--live-line); transform: translateY(-3px); }

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  min-height: 2.6em;
}
.stat-value {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  color: var(--live);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value--warm { color: var(--warm); }
.stat-foot { font-size: 12px; color: var(--muted-2); }

.dash-lower {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}

.feed, .consent {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
}

.feed-list { display: flex; flex-direction: column; }
.feed-item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.feed-item:last-child { border-bottom: none; }

.feed-dot {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-top: 8px;
}
.feed-dot--sale   { background: var(--warm); box-shadow: 0 0 10px var(--warm-dim); }
.feed-dot--lead   { background: var(--live); box-shadow: 0 0 10px var(--live-glow); }
.feed-dot--policy { background: var(--muted-2); }

.feed-say { font-size: 14.5px; color: var(--ink); }
.feed-meta { margin-top: 5px; font-size: 11.5px; color: var(--muted-2); }

.consent { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.consent-badge {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--live-dim);
  border: 1px solid var(--live-line);
  color: var(--live);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.consent h3 { font-size: clamp(19px, 2vw, 25px); }
.consent p { font-size: 14px; color: var(--muted); line-height: 1.68; }
.consent-note {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--muted-2);
}

.demo-flag {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: clamp(28px, 3.5vw, 40px);
  padding: 16px 20px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
}
.demo-flag-tag {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   6 · FOLLOW-UPS
   ══════════════════════════════════════════════════════════════════════ */
.follow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.follow-card {
  padding: clamp(24px, 2.8vw, 34px);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: border-color 0.3s, transform 0.45s var(--ease);
}
.follow-card:hover { border-color: var(--live-line); transform: translateY(-4px); }

.follow-i {
  font-size: 22px;
  color: var(--live);
  line-height: 1;
}
.follow-i--live { color: var(--warm); }
.follow-card h3 { font-size: clamp(18px, 1.9vw, 22px); }
.follow-card p { font-size: 14px; color: var(--muted); line-height: 1.68; }
.follow-gate {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.follow-note {
  margin-top: clamp(32px, 4vh, 48px);
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════════════════
   7 · EXPERIENCE
   ══════════════════════════════════════════════════════════════════════ */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 3.4vw, 48px);
  align-items: start;
}

.exp-options { display: flex; flex-direction: column; gap: 8px; }

.exp-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
}
.exp-opt:hover { background: var(--glass); border-color: var(--line); }
.exp-opt.is-active {
  background: var(--live-dim);
  border-color: var(--live-line);
}

.exp-opt-i {
  flex-shrink: 0;
  font-size: 15px;
  color: var(--muted-2);
  padding-top: 1px;
  transition: color 0.3s;
}
.exp-opt.is-active .exp-opt-i { color: var(--live); }

.exp-opt-t {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
}
.exp-opt-t small {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted-2);
}

/* mock browser */
.mock {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.mock-dots { display: inline-flex; gap: 6px; }
.mock-dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
}
.mock-url { font-size: 11px; color: var(--muted-2); }

.mock-body {
  position: relative;
  height: clamp(300px, 38vh, 420px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%),
    var(--surface);
  overflow: hidden;
}

/* fake storefront content inside the mock */
.mock-store {
  padding: 26px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  height: 100%;
}
.mock-img {
  border-radius: var(--r);
  background: linear-gradient(140deg, var(--surface-3), var(--surface-2));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.mock-img::after {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(94,242,192,0.5), rgba(94,242,192,0.06) 62%, transparent);
  filter: blur(2px);
}
.mock-info { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.mock-h { height: 13px; border-radius: 4px; background: var(--line-2); width: 74%; }
.mock-h--sm { width: 46%; height: 10px; background: var(--line); }
.mock-p { height: 8px; border-radius: 4px; background: var(--line); }
.mock-p--60 { width: 60%; }
.mock-price {
  font-family: var(--f-mono);
  font-size: 19px;
  font-weight: 700;
  color: var(--warm);
  margin-top: 6px;
}
.mock-btn {
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--live);
  color: #04120D;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  width: fit-content;
}

/* the agent's presence inside the mock, per option */
.mock-agent {
  position: absolute;
  animation: agentIn 0.5s var(--ease) both;
}
@keyframes agentIn {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

.mock-agent--corner {
  right: 18px; bottom: 18px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 30px var(--live-glow);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #04120D;
}

.mock-bubble {
  position: absolute;
  right: 18px; bottom: 82px;
  max-width: 250px;
  padding: 13px 16px;
  border-radius: 16px 16px 4px 16px;
  background: var(--surface-3);
  border: 1px solid var(--live-line);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mock-bubble small {
  display: block;
  margin-top: 7px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* popup variant — dims the store, centres the agent */
.mock-dim {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: agentIn 0.45s var(--ease) both;
}
.mock-agent--popup {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(330px, 84%);
  padding: 20px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid var(--live-line);
  box-shadow: var(--shadow);
  animation: popIn 0.45s var(--ease) both;
}
@keyframes popIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.94); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.mock-agent--popup p { font-size: 13.5px; line-height: 1.6; }
.mock-agent--popup small {
  display: block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--live);
}

/* voice variant */
.mock-agent--voice {
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--live-line);
  box-shadow: var(--shadow-sm);
}
.wave { display: inline-flex; align-items: center; gap: 3px; height: 20px; }
.wave i {
  width: 3px;
  border-radius: 2px;
  background: var(--live);
  animation: wave 1.1s ease-in-out infinite;
}
.wave i:nth-child(1) { height: 7px;  animation-delay: 0s; }
.wave i:nth-child(2) { height: 16px; animation-delay: 0.12s; }
.wave i:nth-child(3) { height: 11px; animation-delay: 0.24s; }
.wave i:nth-child(4) { height: 19px; animation-delay: 0.36s; }
.wave i:nth-child(5) { height: 9px;  animation-delay: 0.48s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.45); }
  50%      { transform: scaleY(1); }
}
.mock-agent--voice span { font-size: 13px; color: var(--muted); }

/* product-page assistant variant */
.mock-agent--product {
  left: 26px; right: 26px; bottom: 20px;
  padding: 14px 18px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid var(--live-line);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.mock-agent--product p { font-size: 13px; flex: 1; }
.mock-agent--product .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--live);
  flex-shrink: 0;
}

/* floating salesperson variant */
.mock-agent--float {
  right: 22px; bottom: 26px;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.mock-agent--float .orb {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #B9FFF0, var(--live) 46%, #1C8E6E);
  box-shadow: 0 0 40px var(--live-glow);
  animation: float 3.4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.mock-agent--float small {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
}

/* custom branded character variant */
.mock-agent--custom {
  right: 20px; bottom: 22px;
  width: 200px;
  padding: 18px;
  border-radius: var(--r);
  background: linear-gradient(165deg, rgba(255,138,76,0.14), var(--surface-2));
  border: 1px solid var(--warm-line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.mock-agent--custom .char {
  width: 56px; height: 56px;
  border-radius: 46% 46% 42% 42%;
  background: linear-gradient(160deg, var(--warm), #C2542A);
  box-shadow: 0 0 34px var(--warm-dim);
  position: relative;
  animation: float 3.8s ease-in-out infinite;
}
.mock-agent--custom .char::before,
.mock-agent--custom .char::after {
  content: '';
  position: absolute;
  top: 22px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2B1408;
}
.mock-agent--custom .char::before { left: 15px; }
.mock-agent--custom .char::after  { right: 15px; }
.mock-agent--custom p { font-size: 12.5px; color: var(--ink); line-height: 1.5; }
.mock-agent--custom small {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
}

.mock-caption {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  min-height: 2.6em;
}

/* ══════════════════════════════════════════════════════════════════════
   8 · VISION
   ══════════════════════════════════════════════════════════════════════ */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.vision-card {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.45s var(--ease);
}
.vision-card:hover { border-color: var(--live-line); transform: translateY(-4px); }
.vision-i { font-size: 24px; color: var(--muted-2); line-height: 1; }
.vision-i--live { color: var(--live); }
.vision-card h3 { font-size: clamp(20px, 2.2vw, 26px); }
.vision-card p { font-size: 14.5px; color: var(--muted); line-height: 1.68; }

/* ══════════════════════════════════════════════════════════════════════
   9 · CTA
   ══════════════════════════════════════════════════════════════════════ */
.cta {
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-wrap { max-width: 780px; }

.cta-title {
  font-size: clamp(34px, 5.4vw, 72px);
  background: linear-gradient(120deg, var(--ink) 30%, var(--live) 70%, var(--warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-sub {
  margin: 28px auto 0;
  max-width: 600px;
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.cta-form input {
  padding: 13px 20px;
  width: min(260px, 100%);
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--glass);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.cta-form input::placeholder { color: var(--muted-2); }
.cta-form input:focus { border-color: var(--live-line); background: var(--live-dim); }
.cta-form input.is-bad { border-color: rgba(255,107,107,0.5); }

.cta-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted-2);
}
.cta-note.is-ok { color: var(--live); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}
.foot-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-tag { font-size: 13.5px; color: var(--muted-2); }
.foot-copy { font-size: 12px; color: var(--muted-2); }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .nav-links { display: none; }

  .policy,
  .exp-grid,
  .security-grid { grid-template-columns: 1fr; }

  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-lower { grid-template-columns: 1fr; }

  .follow-grid,
  .vision-grid { grid-template-columns: 1fr; }

  .stat-label { min-height: 0; }
}

@media (max-width: 820px) {
  /* the seam rotates: on narrow screens the mirror is horizontal */
  .seam { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-side--left,
  .hero-side--right { padding: 0; text-align: left; }
  .hero-side--left .eyebrow { flex-direction: row; }
  .hero-side--left .hero-line { color: var(--muted); }

  /* a hairline marks the mirror line between the stacked halves */
  .hero-side--left { padding-bottom: 40px; border-bottom: 1px solid var(--line); }

  .mirror { height: 420vh; }

  .beat { grid-template-columns: 1fr; align-content: center; gap: 34px; }
  .beat-half { max-width: none; padding: 0 !important; text-align: left !important; }
  .beat-half--left {
    border-right: none;
    padding-bottom: 34px !important;
    border-bottom: 1px solid var(--line);
  }
  .beat-half--right { border-left: none; }
  .beat-half--left, .beat-half--right { transform: none; }

  .mirror-head .section-title { font-size: clamp(19px, 4.4vw, 26px); }

  .stack { height: 360vh; }
  .cap-card { padding: 28px 24px; }

  .exp-grid { gap: 28px; }
  .mock-store { grid-template-columns: 1fr; gap: 14px; }
  .mock-img { min-height: 120px; }
}

@media (max-width: 560px) {
  .dash-grid { grid-template-columns: 1fr; }
  .policy-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .policy-row--chips { align-items: stretch; }
  .slider-wrap { width: 100%; }
  input[type=range] { flex: 1; width: auto; }
  .flow-track { flex-direction: column; align-items: center; gap: 14px; }
  .cta-form { flex-direction: column; }
  .cta-form input, .cta-form .btn { width: 100%; justify-content: center; }
  .foot-wrap { flex-direction: column; text-align: center; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }

  .beat-half { opacity: 1; transform: none; }

  /* the pinned sections become ordinary stacked content */
  .mirror { height: auto; }
  .mirror-sticky { position: static; height: auto; padding: 100px 0; }
  .beats { position: static; }
  .beat {
    position: static;
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 56px;
  }
  .beat:last-child { margin-bottom: 0; }
  .beat-dots { display: none; }

  .stack { height: auto; }
  .stack-stage {
    position: static;
    height: auto;
    flex-direction: column;
    gap: 18px;
    perspective: none;
  }
  .cap-card { position: static; transform: none !important; opacity: 1 !important; }
}
