/* =============================================================
   Reconnect — retro CRT terminal theme
   Black & cream (essentially B&W), monospace + serif display.
============================================================= */

:root {
  --bg: #0d0c0a;          /* near-black screen */
  --bg-2: #16140f;        /* panel surface */
  --fg: #f3f1e6;          /* warm off-white (CRT phosphor) */
  --dim: rgba(243, 241, 230, 0.85);
  --faint: rgba(243, 241, 230, 0.65);
  --line: rgba(243, 241, 230, 0.22);

  --accent-star: #ffb800; /* reserved tiny accent */

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --mono: 'Courier New', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --display: Georgia, 'Times New Roman', Times, serif;
}

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

/* overflow-x: clip (not hidden) — hidden forces overflow-y to compute as
   'auto' per spec, which makes body a scroll container and silently breaks
   position:sticky on .nav. clip avoids that while still stopping the
   horizontal iOS bounce-reveal. */
html { scroll-behavior: smooth; overflow-x: clip; overscroll-behavior-x: none; }

body {
  font-family: var(--mono);
  font-weight: 500;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

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

/* ---------- Global CRT overlay (scanlines + vignette + flicker) ---------- */
.crt-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,0.05) 2px 4px);
  animation: flicker 6s steps(80) infinite;
}
.crt-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(125% 125% at 50% 50%, transparent 70%, rgba(0,0,0,0.22) 100%);
}
@keyframes flicker { 0%,100% { opacity: 0.98; } 48% { opacity: 0.94; } 50% { opacity: 1; } 52% { opacity: 0.96; } }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--fg); color: var(--bg);
  padding: 10px 16px; border-radius: var(--radius-sm);
  z-index: 10000; font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px dashed var(--fg); outline-offset: 3px; }

/* eyebrows look like terminal prompts */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.eyebrow::before { content: "> "; }
.eyebrow--invert { color: rgba(0,0,0,0.7); }

.section-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.section-sub {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.1vw, 1.18rem);
  font-weight: 700;
  color: var(--dim);
  max-width: 60ch;
}
.section-sub--invert { color: rgba(0,0,0,0.78); }

/* ---------- Inverted (cream-filled) surfaces ---------- */
.inverted { background: var(--fg); color: var(--bg); }
.inverted .eyebrow { color: rgba(0,0,0,0.7); }
.inverted .section-sub { color: rgba(0,0,0,0.8); }
.inverted .btn--solid {
  background: var(--bg); color: var(--fg); border-color: var(--bg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.22);
}
.inverted .btn--solid:hover { box-shadow: 6px 6px 0 rgba(0,0,0,0.3); }
.inverted .signup__input {
  background: #fff; border-color: rgba(0,0,0,0.28); color: var(--bg);
}
.inverted .signup__input::placeholder { color: rgba(0,0,0,0.55); }
.inverted .signup__input:focus-visible { border-color: var(--bg); box-shadow: 0 0 0 3px rgba(0,0,0,0.12); }
.inverted .signup__msg.is-success { color: var(--bg); }

/* ---------- Buttons (chunky retro with hard shadow) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--fg);
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease),
              background 0.15s var(--ease), color 0.15s var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--fg); color: var(--bg);
  box-shadow: 4px 4px 0 rgba(243,241,230,0.22);
}
.btn--solid:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(243,241,230,0.32); }
.btn--solid:active { transform: translate(2px,2px); box-shadow: 0 0 0 rgba(0,0,0,0); }
.btn--invert {
  background: transparent; color: var(--fg); border-color: var(--fg);
  box-shadow: 4px 4px 0 rgba(243,241,230,0.18);
}
.btn--invert:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(243,241,230,0.28); }

/* ---------- Window panels ---------- */
.win {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
}
.win__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border-bottom: 2px solid var(--line);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.win__dots {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--faint);
  box-shadow: 14px 0 var(--faint), 28px 0 var(--faint);
  margin-right: 28px;
  flex: none;
}
.win__body { padding: clamp(22px, 3.5vw, 40px); }

/* dashed divider between sections */
.section-line { border: 0; border-top: 1px dashed var(--line); }

/* =============================================================
   (1) NAV — floating cream pill
============================================================= */
.nav {
  position: sticky;
  top: calc(14px + env(safe-area-inset-top, 0px));
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: 14px;
  margin-bottom: -64px;
}
.nav__pill {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 26px);
  background: var(--fg);
  color: var(--bg);
  border: 2px solid var(--bg);
  border-radius: var(--radius-pill);
  padding: 7px 8px 7px 18px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bg);
}
.nav__logo img { width: auto; height: 18px; display: block; }
.nav__links { display: flex; gap: 20px; }
.nav__links a {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.75);
  transition: color 0.15s var(--ease);
}
.nav__links a:hover { color: var(--bg); }
.nav__cta {
  padding: 9px 20px;
  font-size: 0.78rem;
  background: var(--bg);
  color: var(--fg);
  border-color: var(--bg);
  border-radius: var(--radius-pill);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.nav__cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
@media (max-width: 720px) { .nav__links { display: none; } }

/* =============================================================
   (2) HERO — CRT boot screen
============================================================= */
.hero { position: relative; padding: clamp(86px, 12vw, 120px) 0 clamp(36px, 5vw, 56px); }

.crt {
  position: relative;
  overflow: hidden;
  background: #0a0908;
  border: 2px solid var(--line);
  border-radius: 26px;
  padding: clamp(34px, 6vw, 76px) clamp(22px, 5vw, 64px) clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), inset 0 0 140px rgba(0,0,0,0.75);
  text-align: center;
}
.crt__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.crt__scan {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,0.08) 2px 4px);
}
.crt__vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(115% 130% at 50% 50%, transparent 50%, rgba(0,0,0,0.6) 100%);
}

/* boot splash */
.boot { margin-bottom: clamp(28px, 4vw, 44px); }
.boot__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 30px);
  margin-bottom: 22px;
}
.boot__mark {
  flex: none;
  display: grid; place-items: center;
  width: clamp(72px, 11vw, 104px);
  aspect-ratio: 1;
  background: var(--fg);
  border-radius: 50%;
  padding: 9px;
  box-shadow: 0 0 0 4px rgba(243,241,230,0.15);
}
.boot__mark img { width: 100%; height: 100%; object-fit: contain; }
.boot__word {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.45rem, 9vw, 6.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 2px 0 rgba(243,241,230,0.35), -2px 0 rgba(243,241,230,0.16), 0 0 18px rgba(243,241,230,0.2);
}
.boot__meta {
  font-family: var(--mono);
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--dim);
}

/* segmented loading bar */
.loader {
  width: min(360px, 80%); height: 26px;
  margin: 22px auto 0;
  border: 2px solid var(--fg);
  border-radius: 4px; padding: 3px; overflow: hidden;
}
.loader__fill {
  height: 100%;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--fg) 0 13px, transparent 13px 18px);
  /* fills once on load, then stays full */
  animation: load 2.6s steps(20, end) 1 both;
}
@keyframes load { 0% { width: 0; } 100% { width: 100%; } }

/* reward pill */
.hero__reward {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fg); color: var(--bg);
  border: 2px solid var(--bg);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: clamp(0.7rem, 3.4vw, 0.82rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-wrap: balance;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease);
}
.hero__reward strong { font-weight: 700; }
.hero__reward:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.35); }

.hero__title {
  font-family: var(--display);
  font-style: italic; font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 1;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero__sub {
  font-size: clamp(1.08rem, 2.3vw, 1.28rem);
  font-weight: 700;
  color: var(--dim);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.hero__count { margin-top: 18px; font-size: 0.92rem; color: var(--dim); }
.hero__count strong { color: var(--fg); }

.crt__copy {
  margin-top: clamp(26px, 4vw, 40px);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--faint);
}

/* =============================================================
   (3) MOODS CAROUSEL
============================================================= */
.moods-section { padding: clamp(48px, 7vw, 80px) 0; }
.moods__head { margin-bottom: clamp(22px, 3vw, 36px); max-width: 52ch; }

/* infinite marquee rows */
.moods-carousel {
  overflow: hidden;
  padding-top: clamp(14px, 2vw, 20px);
}
.moods-carousel--rev { padding-top: clamp(10px, 1.5vw, 14px); padding-bottom: clamp(18px, 2.5vw, 28px); }

.moods-carousel__track {
  display: flex;
  gap: clamp(8px, 1.2vw, 12px);
  width: max-content;
  padding-inline: clamp(8px, 1.2vw, 12px);
}
.moods-carousel__track--fwd {
  animation: slide-fwd 36s linear infinite;
}
.moods-carousel__track--rev {
  animation: slide-rev 32s linear infinite;
  margin-top: clamp(8px, 1.2vw, 12px);
}
.moods-carousel:hover .moods-carousel__track { animation-play-state: paused; }

@keyframes slide-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes slide-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.mood {
  flex: none;
  width: clamp(88px, 11vw, 110px);
  background: var(--fg);
  border-radius: var(--radius);
  padding: 12px 8px 8px;
  text-align: center;
}
.mood img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.mood figcaption {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* =============================================================
   (4) PROBLEM
============================================================= */
.problem { padding: clamp(56px, 8vw, 110px) 0; }
.problem__head { max-width: 60ch; margin-bottom: clamp(32px, 5vw, 52px); }
.problem .hl {
  font-family: var(--display);
  font-style: italic;
  background: var(--fg);
  color: var(--bg);
  padding: 0 0.2em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.stats {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.stat {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: clamp(20px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.stat:hover { border-color: var(--fg); transform: translateY(-3px); }
.stat__num {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}
.stat__label { font-size: 0.9rem; color: var(--dim); }

/* =============================================================
   (5) HOW IT WORKS — numbered terminal rows
============================================================= */
.how { padding: clamp(56px, 8vw, 110px) 0; }
.how__head { max-width: 52ch; margin-bottom: clamp(32px, 5vw, 52px); }

.steps {
  list-style: none;
  padding: 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 clamp(16px, 3vw, 32px);
  padding: clamp(22px, 3.5vw, 34px) clamp(22px, 3vw, 32px);
  border-bottom: 1px dashed var(--line);
  align-items: start;
  transition: background 0.18s var(--ease);
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(243,241,230,0.04); }
.step__num {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--faint);
  padding-top: 5px;
}
.step__num::before { content: "["; }
.step__num::after  { content: "]"; }
.step__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  line-height: 1.1;
}
.step__text {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--dim);
}
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 4px 0; }
  .step__num { font-size: 0.66rem; }
}

/* =============================================================
   FEATURE SPOTLIGHT — request more time
============================================================= */
/* =============================================================
   APP SHOWCASE
============================================================= */
.showcase { padding: clamp(56px, 8vw, 110px) 0; }
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.showcase__sub {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 700;
  color: var(--dim);
  max-width: 44ch;
}
.showcase__visual { display: flex; justify-content: center; }
.showcase__visual img {
  width: 100%;
  max-width: clamp(240px, 28vw, 380px);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.spotlight { padding: 0 0 clamp(56px, 8vw, 110px); }
.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.spotlight__copy .section-title { margin-top: 4px; }
.spotlight__sub {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 700;
  color: var(--dim);
  max-width: 44ch;
}
.spotlight__sub strong { color: var(--fg); }

/* Echo chat bubbles */
.chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat__bubble {
  max-width: 84%;
  padding: 11px 15px;
  font-family: var(--mono);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.55;
}
.chat__bubble--user {
  align-self: flex-end;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg);
  border-radius: 14px 14px 4px 14px;
}
.chat__bubble--echo {
  align-self: flex-start;
  background: var(--fg);
  color: var(--bg);
  border-radius: 4px 14px 14px 14px;
}
.chat__who {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-bottom: 3px;
}
.chat__grant { text-decoration: underline; font-weight: 700; }
.chat__cursor::after {
  content: "_";
  animation: caret 1s steps(2) infinite;
}
@keyframes caret { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 760px) {
  .spotlight__grid { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__visual { margin-top: clamp(24px, 5vw, 40px); }
}

/* =============================================================
   (6) TRANSFORMATION
============================================================= */
.transform { padding: clamp(56px, 8vw, 110px) 0; }
.transform__head { max-width: 52ch; margin-bottom: clamp(30px, 4vw, 46px); }

.results__grid {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.stat__unit {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.instead {
  margin: clamp(20px, 3vw, 32px) 0 clamp(24px, 3.5vw, 36px);
  padding: clamp(18px, 2.5vw, 26px) clamp(22px, 3vw, 32px);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.instead__line {
  font-family: var(--mono);
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: var(--dim);
  margin: 0;
  line-height: 1.5;
}
.instead__swap {
  color: var(--fg);
  font-weight: 700;
  transition: opacity 0.25s ease;
}
.instead__swap.is-hiding { opacity: 0; }
.instead__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--fg);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.results__goal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.results__mascot {
  width: clamp(72px, 10vw, 96px);
  height: auto;
}
.results__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  line-height: 1;
  color: var(--bg);
  margin: 4px 0 14px;
}
.results__num small {
  font-size: 0.38em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.results__desc {
  font-size: clamp(0.88rem, 1.7vw, 1rem);
  color: rgba(0,0,0,0.75);
  max-width: 52ch;
  line-height: 1.7;
}

/* =============================================================
   (7) COMPARISON TABLE
============================================================= */
.compare { padding: clamp(56px, 8vw, 100px) 0; }
.compare__head { max-width: 56ch; margin-bottom: clamp(30px, 4vw, 46px); }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: clamp(0.76rem, 1.5vw, 0.88rem);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__table thead th {
  padding: clamp(14px, 2.5vw, 20px) clamp(14px, 2vw, 22px);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--dim);
  border-bottom: 1px dashed var(--line);
  background: var(--bg-2);
}
.compare__table thead th:first-child { text-align: left; }
.compare__table tbody td {
  padding: clamp(13px, 2vw, 18px) clamp(14px, 2vw, 22px);
  text-align: center;
  border-bottom: 1px dashed var(--line);
  vertical-align: middle;
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__feature {
  text-align: left !important;
  color: var(--fg);
  font-weight: 600;
  white-space: nowrap;
}
.compare__yes { color: var(--fg); font-weight: 700; font-size: 1.3em; }
.compare__no { color: var(--faint); font-size: 1.3em; }
.compare__meh { color: var(--dim); font-size: 0.82em; }
.compare__us {
  background: var(--fg) !important;
  color: var(--bg) !important;
  font-weight: 700;
}
.compare__us.compare__yes { color: var(--bg) !important; }
.compare__us.compare__no { color: rgba(0,0,0,0.45) !important; }
.compare__us.compare__meh { color: rgba(0,0,0,0.65) !important; font-weight: 600; }
.compare__table thead .compare__us { color: var(--bg) !important; font-size: 0.76rem; }

/* =============================================================
   (8) FAQ
============================================================= */
.faq { padding: clamp(56px, 8vw, 100px) 0; }
.faq__head { max-width: 52ch; margin-bottom: clamp(30px, 4vw, 46px); }
.faq__list {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq__item { border-bottom: 1px dashed var(--line); }
.faq__item:last-child { border-bottom: none; }
.faq__q {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(18px, 3vw, 26px) clamp(22px, 3.5vw, 36px);
  font-family: var(--mono);
  font-size: clamp(0.84rem, 1.7vw, 0.96rem);
  font-weight: 700;
  color: var(--fg);
  transition: color 0.15s var(--ease);
}
.faq__q:hover { color: var(--dim); }
.faq__q::before { content: "[Q] "; color: var(--faint); }
.faq__icon {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--faint);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.15s var(--ease);
  line-height: 1;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); color: var(--dim); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__body {
  overflow: hidden;
  padding: 0 clamp(22px, 3.5vw, 36px) 0;
  font-size: clamp(0.86rem, 1.6vw, 0.96rem);
  color: var(--dim);
  line-height: 1.75;
  max-width: 72ch;
  transition: padding-bottom 0.28s var(--ease);
}
.faq__item.is-open .faq__body { padding-bottom: clamp(18px, 3vw, 26px); }
.faq__body a { color: var(--fg); }

/* =============================================================
   (9) FINAL CTA — inverted cream block
============================================================= */
.cta { padding: clamp(40px, 6vw, 72px) 0; }
.cta__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  border-radius: 26px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
}
/* CTA sits on a cream block, so the all-black mascot already pops — no badge */
.cta__mascot { width: clamp(96px, 16vw, 120px); height: auto; margin: 0 auto 22px; }
.cta__title {
  font-family: var(--display);
  font-style: italic; font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.05;
}
.cta__sub { margin-top: 16px; font-size: clamp(1.05rem, 2.3vw, 1.22rem); font-weight: 700; color: rgba(0,0,0,0.72); }
.cta__sub strong { color: var(--bg); }
.signup--invert { margin-top: 30px; }

/* =============================================================
   SIGNUP FORM
============================================================= */
.signup { width: 100%; max-width: 480px; }
.hero .signup, .cta .signup { margin-inline: auto; }
.signup__row { display: flex; gap: 10px; }

/* Hero form: stacked, centered */
.signup--hero { max-width: 380px; }
.signup--hero .signup__row { flex-direction: column; gap: 10px; }
.signup--hero .signup__input { text-align: center; }
.signup--hero .signup__btn { width: 100%; justify-content: center; }
.signup__input {
  flex: 1; min-width: 0;
  font-family: var(--mono);
  font-size: 0.98rem;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(243,241,230,0.05);
  color: var(--fg);
  caret-color: var(--fg);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.signup__input::placeholder { color: var(--faint); }
.signup__input:focus-visible { outline: none; border-color: var(--fg); box-shadow: 0 0 0 3px rgba(243,241,230,0.12); }
.signup__btn { position: relative; }

.spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.signup.is-loading .signup__label { display: none; }
.signup.is-loading .spinner { display: inline-block; }
.signup.is-loading .signup__btn { pointer-events: none; opacity: 0.85; }

.signup__msg { min-height: 1.2em; margin-top: 12px; font-size: 0.86rem; font-weight: 700; padding-left: 4px; }
.signup__msg.is-error { color: #ff8a7a; }
.signup__msg.is-success { color: var(--fg); }
.signup.is-success .signup__row { display: none; }
.signup.is-success .signup__msg { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; animation: pop 0.4s var(--ease); }
@keyframes pop { 0% { transform: scale(0.92); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* =============================================================
   (8) FOOTER
============================================================= */
.footer { border-top: 2px solid var(--line); padding: 36px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer__brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-style: italic; font-weight: 700; font-size: 1.1rem;
}
.footer__brand img { width: 26px; height: 26px; background: var(--fg); border-radius: 50%; padding: 3px; box-sizing: border-box; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.78rem; letter-spacing: 0.05em;
  color: var(--dim);
  transition: color 0.15s var(--ease);
}
.footer__links a:hover { color: var(--fg); }
.footer__copy { font-family: var(--mono); color: var(--faint); font-size: 0.78rem; }

/* =============================================================
   FLOATING DOCK PILL
============================================================= */
.dock {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fg); color: var(--bg);
  border: 2px solid var(--bg);
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-family: var(--mono); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(20px) scale(0.96);
  transition: opacity 0.3s var(--ease), transform 0.2s var(--ease);
}
.dock[hidden] { display: none; }
.dock.is-shown { opacity: 1; transform: none; }
.dock:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.45); }
.dock__icon { display: inline-flex; }
.dock__icon svg { width: 18px; height: 18px; }
@media (max-width: 480px) { .dock__label { display: none; } .dock { padding: 13px; } }

/* =============================================================
   SPIN-TO-WIN MODAL
============================================================= */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: fade 0.3s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  position: relative; z-index: 1;
  width: min(460px, 100%);
  max-height: 92vh; overflow-y: auto;
  border: 2px solid var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
  box-shadow: 10px 10px 0 rgba(243,241,230,0.18);
  animation: pop-in 0.42s var(--ease);
}
@keyframes pop-in { 0% { transform: scale(0.9) translateY(10px); opacity: 0; } 100% { transform: none; opacity: 1; } }
.modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 34px; height: 34px; border: 2px solid var(--bg);
  background: transparent; border-radius: var(--radius-sm);
  font-size: 1.3rem; line-height: 1; color: var(--bg);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.modal__close:hover { background: var(--bg); color: var(--fg); }
.modal__eyebrow {
  font-family: var(--mono);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,0,0,0.7); margin-bottom: 10px;
}
.modal__title { font-family: var(--display); font-style: italic; font-weight: 700; font-size: clamp(1.5rem, 4vw, 1.95rem); line-height: 1.12; }
.modal__sub { margin-top: 10px; font-size: 1.05rem; font-weight: 700; color: rgba(0,0,0,0.8); }

.offer__mascot {
  width: clamp(96px, 24vw, 120px); height: auto; margin: 0 auto 10px;
  animation: pop-in 0.5s var(--ease);
}
.offer__deal { display: inline-block; background: var(--bg); color: var(--fg); padding: 0 0.3em; border-radius: 6px; font-style: italic; }
.signup--wheel { margin: 22px auto 0; }
.win__fine { margin-top: 14px; font-size: 0.78rem; color: rgba(0,0,0,0.65); }

/* =============================================================
   SCROLL REVEAL
============================================================= */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 920px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .signup__row { flex-direction: column; }
  .signup__btn { width: 100%; }
  .results__goal { grid-template-columns: 1fr; text-align: center; }
  .results__mascot { margin: 0 auto; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  /* comparison: hide competitor columns, show only Reconnect */
}

/* =============================================================
   LEGAL PAGES (privacy.html, terms.html)
============================================================= */
.legal { padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 100px); }
.legal__container { max-width: 720px; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 0.8rem; color: var(--dim); text-decoration: none; margin-bottom: clamp(32px, 5vw, 56px); letter-spacing: 0.04em; }
.legal__back:hover { color: var(--fg); }
.legal__back::before { content: "←"; }
.legal h1 { font-family: var(--display); font-style: italic; font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 8px; }
.legal__date { font-family: var(--mono); font-size: 0.78rem; color: var(--faint); margin-bottom: clamp(36px, 5vw, 56px); }
.legal h2 { font-family: var(--mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin: clamp(28px, 4vw, 44px) 0 10px; }
.legal p, .legal ul { font-size: clamp(0.92rem, 1.8vw, 1rem); color: var(--dim); line-height: 1.75; margin: 0 0 14px; max-width: 66ch; }
.legal ul { padding-left: 20px; }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--fg); }
.legal hr { border: none; border-top: 1px dashed var(--line); margin: clamp(28px, 4vw, 44px) 0; }
.legal__emph { color: var(--fg); }
.legal__code { font-family: var(--mono); font-size: 0.85em; }

/* =============================================================
   MOTION PREFERENCES
============================================================= */
@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;
  }
  .reveal { opacity: 1; transform: none; }
  /* Keep carousel visible but stop scrolling */
  .moods-carousel__track--fwd,
  .moods-carousel__track--rev { animation: none; }
}
