/* ---------------------------------------------------------------
   Tokens — unchanged from the live site
--------------------------------------------------------------- */
:root {
  --ink: #111827;
  --ink-70: rgba(17, 24, 39, .7);
  --body: #4b5563;
  --muted: #5b6270;
  --blue: #3347d8;
  --blue-dark: #2535b6;
  --blue-tint: #dfe3ff;
  --yellow: #ffd743;
  --cream: #f7f4ec;
  --white: #fff;
  --line: #d9d7ce;
  --green: #176a36;
  --green-bright: #1f9d52;
  --red: #b3261e;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-ink: 6px 6px 0 var(--ink);
  --shadow-yellow: 6px 6px 0 var(--yellow);

  --section-y: clamp(84px, 10vw, 130px);
  --ease: cubic-bezier(.2, .8, .3, 1);

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, "Helvetica Neue", Arial, sans-serif;
}

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

[hidden] { display: none !important; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:where(a, button, input, summary):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

section[id] { scroll-margin-top: 96px; }

.push {
  transition: transform .16s var(--ease), box-shadow .16s var(--ease),
    background-color .16s var(--ease), color .16s var(--ease);
}
.push:hover { transform: translate(-2px, -2px); }
.push:active { transform: translate(2px, 2px); }


/* ---------------------------------------------------------------
   Header / nav
--------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 236, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(17, 24, 39, .12);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 19px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 18px;
  transition: transform .2s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-lockup { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.brand-name { line-height: 1; }
.brand .beta-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.nav-links a { padding: 6px 2px; transition: color .16s var(--ease); }
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--yellow);
}
.nav-cta:hover { background: #1d2637; }

/* ---------------------------------------------------------------
   Hero
--------------------------------------------------------------- */
.hero {
  padding: clamp(40px, 5vw, 68px) 0 clamp(56px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 64px);
}

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow {
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.live-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #35c46a;
  box-shadow: 0 0 0 4px #d9f7e4;
}

.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(46px, 6.4vw, 94px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 900;
}
.hero h1 span { color: var(--blue); }

.hero-lede {
  max-width: min(40ch, 100%);
  margin: 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--body);
}
.hero-lede strong { color: var(--ink); }
.hero-lede .hero-hook {
  display: block;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 800;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 9px;
  box-shadow: var(--shadow-yellow);
  font-weight: 900;
}
.hero-cta:hover { background: var(--blue-dark); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 2px solid rgba(17, 24, 39, .22);
  padding-bottom: 2px;
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.text-link:hover { color: var(--blue); border-color: var(--blue); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.hero-proof li { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

/* ---------------------------------------------------------------
   Deck
--------------------------------------------------------------- */
.deck-stage {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 660px;
  margin: 0;
  padding-bottom: 44px;
  isolation: isolate;
  touch-action: pan-y;
}
.deck-stage::before,
.deck-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
}
.deck-stage::before {
  width: min(540px, 104%);
  aspect-ratio: 1;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: translate(-50%, -50%);
}
.deck-stage::after {
  width: min(488px, 94%);
  aspect-ratio: 1;
  border: 2px dashed rgba(17, 24, 39, .28);
  transform: translate(-50%, -50%) rotate(12deg);
}

.orbit {
  position: absolute;
  z-index: 6;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 16px;
  font-size: 26px;
}
.orbit-one { left: 4px; top: 12%; transform: rotate(-9deg); background: var(--ink); }
.orbit-one svg { width: 24px; height: 24px; fill: var(--white); }
.orbit-two { right: 4px; bottom: 14%; transform: rotate(8deg); }

/* Deck header: counters + progress */
.deck-meter {
  width: min(360px, 100%);
  display: grid;
  gap: 8px;
}
.deck-meter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.deck-meter-top span { display: inline-flex; align-items: center; gap: 6px; }
.deck-count-posted { color: var(--green); }
.deck-count-killed { color: var(--red); }
.deck-bar {
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.deck-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width .3s var(--ease);
}

/* Card stack */
.deck {
  position: relative;
  width: min(360px, 100%);
  height: 452px;
  /* the two cards behind peek 44px lower — keep the controls clear of them */
  margin-bottom: 34px;
  perspective: 1200px;
}

.card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ink);
  overflow: hidden;
  /* the hero centres its text below 1020px — cards always read left */
  text-align: left;
  will-change: transform;
  transition: transform .34s var(--ease), box-shadow .2s var(--ease),
    border-color .16s var(--ease), opacity .3s var(--ease);
}
.card.is-top { cursor: grab; touch-action: none; }
.card.is-top.is-dragging { cursor: grabbing; transition: box-shadow .2s var(--ease), border-color .16s var(--ease); }
/* keyboard + button swipes: short shove to the threshold, then the fly-out */
.card.is-swiping { transition: transform .16s var(--ease), border-color .16s var(--ease); }
.card.is-gone { transition: transform .42s cubic-bezier(.35, .1, .5, 1), opacity .42s ease-in; }
.card[data-depth="1"] { background: #fffdf3; }
.card[data-depth="2"] { background: #fbf8ee; }

.card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.card-avatar {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}
.card-who { min-width: 0; line-height: 1.25; }
.card-who b { display: block; font-size: 14px; letter-spacing: -.02em; }
.card-who small { display: block; color: #6e7980; font-size: 11px; font-weight: 700; }
.card-reach {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  flex-wrap: wrap;
}
.reach-chip {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(21, 22, 26, 0.14);
  background: #fff;
  color: #3a3d46;
}
.reach-pos { color: #6e7980; }
.reach-badge { font-size: 15px; }

.card-post {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -.01em;
}
.card-stats {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  color: #6e7980;
  font-size: 11px;
  font-weight: 700;
}

.card-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.card-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}

.card-reply {
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: auto;
  padding: 12px;
  background: #fff9dd;
  border: 1px solid #f2df82;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: none;
  outline: none;
  /* dragging beats selecting — the caret only appears after a deliberate tap */
  cursor: inherit;
  user-select: none;
  -webkit-user-select: none;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.card-reply:focus,
.card-reply.is-editing {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--white);
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}
.card-divider .edit-hint {
  margin-left: auto;
  padding-left: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}
.card-divider:has(.edit-hint)::after { order: -1; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.card-why { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.card-why b { color: var(--ink); }
.card-chars { flex: none; font-variant-numeric: tabular-nums; }
.card-chars.is-over { color: var(--red); }

/* Stamps — Tinder style: fade + swell with how far the card has travelled.
   JS drives --p (0 → 1); everything else is CSS. */
.stamp {
  --p: 0;
  position: absolute;
  /* clears the avatar row and the match badge, lands over the post text */
  top: 104px;
  z-index: 3;
  padding: 6px 14px;
  border: 4px solid currentColor;
  border-radius: 10px;
  /* sits over the post text, so it needs to stay readable */
  background: rgba(255, 255, 255, .84);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.05;
  text-transform: uppercase;
  opacity: var(--p);
  pointer-events: none;
  /* smooths keyboard swipes; a real drag needs to track the thumb exactly */
  transition: opacity .14s linear, transform .14s var(--ease);
}
.card.is-dragging .stamp { transition: none; }
.stamp-post {
  left: 18px;
  color: var(--green-bright);
  transform: rotate(-14deg) scale(calc(.74 + .26 * var(--p)));
}
.stamp-nope {
  right: 18px;
  color: var(--red);
  transform: rotate(14deg) scale(calc(.74 + .26 * var(--p)));
}
.stamp-more {
  left: 50%;
  top: auto;
  bottom: 76px;
  width: 84%;
  color: var(--blue);
  font-size: 20px;
  letter-spacing: .02em;
  text-align: center;
  transform: translateX(-50%) rotate(-4deg) scale(calc(.74 + .26 * var(--p)));
}

/* Colour wash under the stamps, same progress signal */
.card-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: background-color .12s linear;
}

/* Empty state */
.deck-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--ink);
  border-radius: var(--radius-lg);
}
.deck-empty .bell-emoji { font-size: 40px; }
.deck-empty h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.deck-empty p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; max-width: 26ch; }
.deck-empty button {
  margin-top: 6px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--yellow);
}

/* Controls */
.deck-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.deck-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 22px;
  line-height: 1;
}
.deck-btn:disabled { opacity: .4; cursor: not-allowed; box-shadow: 2px 2px 0 var(--ink); }
.deck-btn-kill { color: var(--red); box-shadow: 4px 4px 0 var(--red); }
.deck-btn-queue { width: 46px; height: 46px; font-size: 17px; color: var(--blue); }
.deck-btn-undo { width: 46px; height: 46px; font-size: 17px; color: var(--muted); }
.deck-btn-post { color: var(--green); box-shadow: 4px 4px 0 var(--green); }

.deck-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.deck-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  background: var(--white);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
}

/* Toast */
.deck-toast {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(17, 24, 39, .2);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.deck-toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.deck-toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.deck-toast.is-post .dot { background: #4ade80; }
.deck-toast.is-nope .dot { background: #fca5a5; }
.deck-toast.is-more .dot { background: #93a4ff; }

/* Nudge hint on the first card */
@keyframes nudge {
  0%, 62%, 100% { transform: translate(0, 0) rotate(0); }
  72% { transform: translate(26px, 0) rotate(2.2deg); }
  86% { transform: translate(-16px, 0) rotate(-1.4deg); }
}
.card.is-nudging { animation: nudge 3.4s var(--ease) 0.6s infinite; }

/* ---------------------------------------------------------------
   Ticker
--------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-block: 2px solid rgba(255, 255, 255, .12);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: drift 34s linear infinite; }
.ticker-track ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 17px 17px 17px 0;
  list-style: none;
}
.ticker-track li { font-size: 13px; font-weight: 900; letter-spacing: .09em; white-space: nowrap; }
.ticker-track li.sep { color: var(--yellow); }
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------------------------------------------------------------
   Versus
--------------------------------------------------------------- */
.versus { padding: var(--section-y) 0 0; }
.versus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.versus-card {
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
}
.versus-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.versus-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.versus-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15px;
  line-height: 1.55;
}
.versus-old {
  background: var(--white);
  color: var(--muted);
  box-shadow: 6px 6px 0 rgba(17, 24, 39, .12);
}
.versus-old h3 { color: var(--ink); }
.versus-old li::before { content: "✗"; font-weight: 900; color: var(--red); }
.versus-new {
  background: var(--yellow);
  box-shadow: var(--shadow-ink);
}
.versus-new li { font-weight: 600; }
.versus-new li::before { content: "✓"; font-weight: 900; color: var(--green); }

/* ---------------------------------------------------------------
   Section headings / steps
--------------------------------------------------------------- */
.how { padding: var(--section-y) 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}
.kicker { color: var(--blue); }
.section-heading h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
}
.section-heading .lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--yellow);
}
.steps article {
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 24px;
  background: var(--white);
  border-right: 2px solid var(--ink);
  transition: background-color .18s var(--ease);
}
.steps article:last-child { border-right: 0; }
.steps article:hover { background: #fffdf5; }
.step-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.step-icon {
  width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 15px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
  transition: transform .2s var(--ease);
}
.steps article:nth-child(2n) .step-icon { transform: rotate(4deg); }
.steps article:hover .step-icon { transform: rotate(0) scale(1.06); }
.step-num { color: #6b7280; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.steps h3 { margin: 40px 0 10px; font-size: 20px; letter-spacing: -.03em; }
.steps p { margin: 0; color: #5b6270; line-height: 1.6; font-size: 14px; }

/* ---------------------------------------------------------------
   Gestures (replaces "example dings")
--------------------------------------------------------------- */
.gestures { padding: 0 0 var(--section-y); }
.gesture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.gesture {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 rgba(17, 24, 39, .14);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.gesture:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-yellow); }
.gesture-demo {
  position: relative;
  height: 104px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}
.gesture-demo .mini {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 58px;
  margin: -29px 0 0 -38px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 8px;
}
.gesture-demo .mini i {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(17, 24, 39, .18);
}
.gesture-demo .mini i:nth-child(2) { width: 70%; }
.gesture-demo .mini i:nth-child(3) { width: 45%; background: var(--yellow); }
.gesture:hover .mini { animation: none; }
@keyframes slideRight { 0%, 30% { transform: none; } 65%, 100% { transform: translateX(74px) rotate(11deg); opacity: 0; } }
@keyframes slideLeft { 0%, 30% { transform: none; } 65%, 100% { transform: translateX(-74px) rotate(-11deg); opacity: 0; } }
@keyframes slideUp { 0%, 30% { transform: none; } 65%, 100% { transform: translateY(-64px) scale(.9); opacity: 0; } }
@keyframes tapPulse { 0%, 40% { transform: none; } 55% { transform: scale(.94); } 70%, 100% { transform: scale(1); } }
.gesture-right .mini { animation: slideRight 2.6s var(--ease) infinite; }
.gesture-left .mini { animation: slideLeft 2.6s var(--ease) .3s infinite; }
.gesture-up .mini { animation: slideUp 2.6s var(--ease) .6s infinite; }
.gesture-tap .mini { animation: tapPulse 2.6s var(--ease) .9s infinite; }
.gesture-demo .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 900;
}
.gesture-right .arrow { right: 10px; color: var(--green); }
.gesture-left .arrow { left: 10px; color: var(--red); }
.gesture-up .arrow { top: 8px; left: 50%; transform: translateX(-50%); color: var(--blue); }
.gesture-tap .arrow { right: 10px; color: var(--ink); }
.gesture h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gesture p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.gesture-note {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

/* Safety strip */
.safety {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: center;
  margin-top: 34px;
  padding: 26px 30px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 var(--yellow);
}
.safety h3 { margin: 0; font-size: 26px; letter-spacing: -.035em; }
.safety h3 span { color: var(--yellow); }
.safety ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.safety li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.5;
}
.safety li::before { content: "🔒"; font-size: 13px; }
.safety li b { color: var(--white); }

/* ---------------------------------------------------------------
   Pricing
--------------------------------------------------------------- */
.pricing-section { padding: var(--section-y) 0; text-align: center; }
.pricing-bell {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 19px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 34px;
  transform: rotate(-4deg);
}
.pricing-section .kicker { margin-bottom: 16px; }
.pricing-section h2 {
  margin: 0;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 900;
}
.pricing-lede { max-width: 50ch; margin: 22px auto 0; color: var(--muted); line-height: 1.65; }

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 22px;
  max-width: 900px;
  margin: 48px auto 0;
  text-align: left;
}
.price-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 9px 9px 0 var(--ink);
}
.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 25px;
  background: var(--blue);
  color: var(--white);
  border-bottom: 3px solid var(--ink);
}
.price-card-label {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.price-card h3 { margin: 0; color: var(--white); font-size: 28px; letter-spacing: -.04em; }
.price-badge {
  flex: none;
  padding: 6px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 32px;
  padding: 30px 32px 32px;
}
.price-card-offer { min-width: 0; }
.price-card-included {
  min-width: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.price-card-included-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.price-description {
  margin: 0;
  padding: 12px 14px;
  background: var(--cream);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}
.pricing-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
.pricing-option { padding: 16px; border: 2px solid var(--line); border-radius: 12px; background: #fafaf7; }
.pricing-option:last-child { border-color: var(--ink); background: var(--yellow); }
.pricing-option span { display: block; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pricing-option strong { display: inline-block; margin-top: 8px; font-size: 38px; letter-spacing: -.06em; }
.pricing-option small { color: var(--muted); font-size: 12px; font-weight: 800; }
.pricing-option-note { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: none; }
.price-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.price-card li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; font-size: 14px; line-height: 1.5; }
.price-card li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}
.pricing-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 26px;
  padding: 17px 25px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-yellow);
  font-weight: 900;
}
.pricing-button:hover { background: var(--blue-dark); }

/* ---------------------------------------------------------------
   FAQ
--------------------------------------------------------------- */
.faq { padding: 0 0 var(--section-y); }
.faq-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq details {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(17, 24, 39, .14);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; background: var(--yellow); transform: rotate(180deg); }
.faq p { margin: 0; padding: 0 20px 20px; color: var(--muted); line-height: 1.65; font-size: 15px; }

/* ---------------------------------------------------------------
   Final CTA + footer
--------------------------------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  border-block: 2px solid var(--ink);
  text-align: center;
  padding: clamp(76px, 8vw, 105px) 0;
}
.final-cta::before,
.final-cta::after {
  content: "✦";
  position: absolute;
  font-size: 220px;
  line-height: 1;
  color: rgba(17, 24, 39, .08);
  pointer-events: none;
}
.final-cta::before { left: -30px; top: -60px; }
.final-cta::after { right: -20px; bottom: -80px; }
.bell {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-ink);
  font-size: 36px;
  transform: rotate(-5deg);
}
.final-cta h2 span { color: var(--blue); }
.final-cta p { font-size: clamp(16px, 1.6vw, 18px); color: #3f4756; margin: 20px 0 28px; }
.final-cta .cta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 9px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--blue);
}

.site-footer {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 0;
}
.site-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 12px; font-weight: 800; }
.footer-links a:hover { color: var(--blue); }

/* ---------------------------------------------------------------
   Responsive
--------------------------------------------------------------- */
@media (max-width: 1100px) {
  .gesture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  .hero { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 620px; }
  .hero-proof { justify-content: center; }
  .deck-stage { min-height: 640px; width: 100%; }
  .safety { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .section-heading { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps article { border-bottom: 2px solid var(--ink); }
  .steps article:nth-child(2n) { border-right: 0; }
  .steps article:nth-last-child(-n + 2) { border-bottom: 0; }
  .versus-grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .price-card-body { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .price-card-included { padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav { height: 66px; }
  .brand { font-size: 16px; }
  .nav-cta { padding: 10px 14px; box-shadow: 3px 3px 0 var(--yellow); }
  .hero { padding-top: 30px; gap: 28px; }
  .eyebrow { font-size: 10.5px; letter-spacing: .1em; padding: 8px 12px; }
  .hero h1 { margin: 18px 0 16px; }
  .hero-actions { justify-content: center; }
  .deck-stage { min-height: 0; padding: 24px 0 10px; gap: 12px; }
  .deck { height: 442px; margin-bottom: 30px; }
  /* the deck fills the width on phones — the orbit badges would sit on top of it */
  .orbit { display: none; }
  .gesture-grid { grid-template-columns: minmax(0, 1fr); max-width: 460px; margin-inline: auto; }
  .versus-card { padding: 24px; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps article { border-right: 0; border-bottom: 2px solid var(--ink); min-height: 0; }
  .steps article:last-child { border-bottom: 0; }
  .steps h3 { margin-top: 26px; }
  .safety { padding: 22px; }
  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .price-card { box-shadow: 6px 6px 0 var(--ink); }
  .price-card-top { flex-direction: column; gap: 14px; padding: 22px 20px 20px; }
  .price-card-body { padding: 24px 20px 20px; }
  .pricing-option { padding: 13px; }
  .pricing-option strong { font-size: 32px; }
  .site-footer { flex-direction: column; text-align: center; }
}

/* Quiet-deck split: control stays the busy page. Test is only the deck. */
.hero-kicker-test,
.hero-copy-test { display: none; }
html:not([data-validation-variant="test"]) #landing-side-stats { display: none !important; }

html[data-validation-variant="test"] .nav-links { display: none; }
html[data-validation-variant="test"] .hero-copy-control { display: none; }
html[data-validation-variant="test"] .hero-copy-test {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
html[data-validation-variant="test"] .hero-kicker-test {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
}
html[data-validation-variant="test"] .kicker-x {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
}
html[data-validation-variant="test"] .kicker-x svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
html[data-validation-variant="test"] .hero-copy-test .hero-actions { display: none; }
html[data-validation-variant="test"] .hero {
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  text-align: center;
  padding: 32px 0 56px;
  gap: 22px;
}
html[data-validation-variant="test"] .hero-copy-test { justify-self: center; }
html[data-validation-variant="test"] .ticker,
html[data-validation-variant="test"] .versus,
html[data-validation-variant="test"] .how,
html[data-validation-variant="test"] .gestures,
html[data-validation-variant="test"] .faq,
html[data-validation-variant="test"] .final-cta { display: none; }
html[data-validation-variant="test"] .orbit,
html[data-validation-variant="test"] .deck-meter,
html[data-validation-variant="test"] .deck-hint,
html[data-validation-variant="test"] .deck-controls,
html[data-validation-variant="test"] .card-stats,
html[data-validation-variant="test"] .card-reach,
html[data-validation-variant="test"] .card-foot { display: none; }
html[data-validation-variant="test"] .card-divider {
  margin: 16px 0 12px;
}
html[data-validation-variant="test"] .deck-stage {
  width: 100%;
  min-height: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
html[data-validation-variant="test"] .deck {
  width: 460px;
  flex: none;
  height: 420px;
  margin-bottom: 12px;
}
html[data-validation-variant="test"] #landing-side-stats:not([hidden]) {
  display: grid;
  flex: none;
  width: 176px;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ink);
  text-align: left;
}
html[data-validation-variant="test"] .swipe-side-stats h4 {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
html[data-validation-variant="test"] .side-stat { display: flex; align-items: center; gap: 8px; }
html[data-validation-variant="test"] .side-stat b {
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
html[data-validation-variant="test"] .side-stat-icon { width: 18px; height: 18px; flex: none; color: var(--ink); }
html[data-validation-variant="test"] .side-stat-reach {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(21, 22, 26, 0.14);
}
html[data-validation-variant="test"] .side-stat-reach span { color: var(--muted); font-size: 11px; font-weight: 700; }
html[data-validation-variant="test"] .side-stat-reach.tier-decent { background: #e8f6ea; border-color: #bfe4c6; }
html[data-validation-variant="test"] .side-stat-reach.tier-decent b { color: #256c33; }
html[data-validation-variant="test"] .side-stat-reach.tier-strong { background: #34a04a; border-color: #2c8a40; }
html[data-validation-variant="test"] .side-stat-reach.tier-strong b,
html[data-validation-variant="test"] .side-stat-reach.tier-strong span { color: #fff; }
html[data-validation-variant="test"] .side-stat-reach.tier-jackpot {
  background: linear-gradient(135deg, #f7c948, #e8a713);
  border-color: #d69a10;
  box-shadow: 0 1px 6px rgba(232, 167, 19, 0.45);
}
html[data-validation-variant="test"] .side-stat-reach.tier-jackpot b { color: #4a3403; }
html[data-validation-variant="test"] .side-stat-reach.tier-jackpot span { color: #6b4e0c; }
html[data-validation-variant="test"] .side-pos { margin: 0; font-size: 12px; font-weight: 700; }
html[data-validation-variant="test"] .side-pos.pos-open { color: #2c8a40; }
html[data-validation-variant="test"] .side-pos.pos-mid { color: #b07a10; }

@media (max-width: 720px) {
  html[data-validation-variant="test"] #landing-side-stats { display: none !important; }
  html[data-validation-variant="test"] .deck { max-width: calc(100vw - 48px); }
}
html[data-validation-variant="test"] .deck-stage::before,
html[data-validation-variant="test"] .deck-stage::after { display: none; }
html[data-validation-variant="test"] body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
html[data-validation-variant="test"] #main { flex: 1; }
html[data-validation-variant="test"] .footer-links a[href="#faq"] { display: none; }
html[data-validation-variant="test"] .site-footer .brand { display: none; }
html[data-validation-variant="test"] .site-footer {
  margin-top: auto;
  justify-content: center;
  border-top: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ticker-track { animation: none; }
}
