/* Hindsight — waiting-room site (brand mirrors hindsight-app/src/theme.ts) */
:root {
  --ink: #161616;
  --ink-soft: #1e1e1e;
  --paper: #EDEAE4;
  --light-bg: #D9EEF7;
  --white: #FFFFFF;
  --orange: #F5A94E;
  --blush: #F7C5DC;
  --mint: #A9EBD1;
  --lavender: #D9CFF6;
  --butter: #FBE8B6;
  --powder: #AEDCF2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--orange); color: var(--ink); }

/* ---------- Scroll reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled { background: rgba(22, 22, 22, 0.85); backdrop-filter: blur(12px); }
.nav-inner {
  max-width: 1020px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: rgba(255, 255, 255, 0.7); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange); color: var(--ink) !important;
  padding: 9px 20px; border-radius: 999px; font-weight: 600 !important;
  transition: transform 0.15s ease !important;
}
.nav-cta:hover { transform: scale(1.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 660px; }

/* soft glow behind the hero cluster */
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 720px; height: 720px; left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(245, 169, 78, 0.14), transparent 70%),
    radial-gradient(closest-side at 38% 42%, rgba(247, 197, 220, 0.10), transparent 65%),
    radial-gradient(closest-side at 64% 58%, rgba(174, 220, 242, 0.10), transparent 65%);
  animation: glow 9s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.07); }
}

/* drifting background faces (wrapper takes mouse parallax, svg keeps drifting) */
.drift-wrap { position: absolute; z-index: 1; pointer-events: none; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.drift {
  opacity: 0.16; display: block;
  animation: drift 16s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50% { transform: translate(14px, -26px) rotate(5deg); }
}

.status-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13.5px; font-weight: 500; color: rgba(255, 255, 255, 0.85);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 169, 78, 0.55); }
  60% { box-shadow: 0 0 0 9px rgba(245, 169, 78, 0); }
}

.hero .faces { display: flex; justify-content: center; margin-top: 38px; }
.face { animation: bob 3.4s ease-in-out infinite; position: relative; }
.face + .face { margin-left: -24px; }
.face:nth-child(1) { z-index: 3; }
.face:nth-child(2) { z-index: 2; animation-delay: 0.55s; }
.face:nth-child(3) { z-index: 1; animation-delay: 1.1s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 62px);
  font-weight: 600; line-height: 1.12;
  margin-top: 30px; letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal; color: var(--orange); position: relative; white-space: nowrap;
}
.hero .sub {
  font-size: 17px; font-weight: 400; line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px; margin: 20px auto 0;
}

/* ---------- Waitlist form ---------- */
.wl { max-width: 520px; margin: 36px auto 0; position: relative; }
.wl-form { display: flex; gap: 10px; }
.wl-form input[type="email"] {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px; padding: 16px 24px;
  font-family: inherit; font-size: 15px; color: var(--white);
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.wl-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.4); }
.wl-form input[type="email"]:focus { border-color: var(--orange); background: rgba(255, 255, 255, 0.11); }
.wl-form button {
  background: var(--orange); color: var(--ink);
  border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.2s;
  white-space: nowrap;
}
.wl-form button:hover { transform: scale(1.04); }
.wl-form button:disabled { opacity: 0.6; transform: none; cursor: wait; }
.wl-hp { position: absolute; left: -9999px; opacity: 0; }
.wl-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.4); margin-top: 13px; font-weight: 500; }
.wl-error { color: var(--blush); font-size: 13.5px; margin-top: 12px; font-weight: 500; display: none; }

.wl-count {
  display: none; align-items: center; justify-content: center; gap: 10px;
  margin-top: 22px; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); font-weight: 500;
}
.wl-count .mini-faces { display: flex; }
.wl-count .mini-faces svg { margin-left: -7px; border-radius: 50%; }
.wl-count .mini-faces svg:first-child { margin-left: 0; }

/* success card */
.wl-success {
  display: none; background: var(--paper); color: var(--ink);
  border-radius: 28px; padding: 34px 30px; text-align: center;
  animation: pop 0.45s cubic-bezier(0.18, 1.25, 0.4, 1);
}
@keyframes pop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.wl-success .you-face { margin: -70px auto 10px; width: 76px; height: 76px; }
.wl-success h3 { font-size: 24px; font-weight: 600; }
.wl-success .pos { color: #C77500; }
.wl-success p { font-size: 14.5px; line-height: 1.6; color: rgba(22, 22, 22, 0.65); margin-top: 10px; }
.wl-success .share-row { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.wl-success .share-btn {
  background: var(--ink); color: var(--white); border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 13.5px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  transition: transform 0.15s ease; display: inline-block;
}
.wl-success .share-btn.alt { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.wl-success .share-btn:hover { transform: scale(1.05); }

/* confetti faces */
.confetti-face {
  position: fixed; z-index: 90; pointer-events: none; top: 0; left: 0;
  animation: confetti-fall 2.8s cubic-bezier(0.25, 0.4, 0.45, 1) forwards;
}
@keyframes confetti-fall {
  0% { transform: translate(var(--x0), -8vh) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--x1), 105vh) rotate(var(--spin)); opacity: 0.9; }
}

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35); font-size: 22px; z-index: 2;
  animation: hint 2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Question marquee ---------- */
.marquee-band { background: var(--ink); padding: 30px 0 66px; overflow: hidden; }
.marquee { display: flex; gap: 14px; width: max-content; }
.marquee:hover { animation-play-state: paused; }
.marquee.m1 { animation: slide 46s linear infinite; }
.marquee.m2 { animation: slide 58s linear infinite reverse; margin-top: 14px; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.q-chip {
  flex-shrink: 0; border-radius: 999px; padding: 13px 24px;
  font-size: 14.5px; font-weight: 500; color: var(--ink); white-space: nowrap;
}

/* ---------- Paper sections ---------- */
.paper-zone { background: var(--paper); color: var(--ink); border-radius: 44px 44px 0 0; position: relative; }
section { padding: 96px 0; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(22, 22, 22, 0.45); text-align: center;
}
.paper-zone .section-title, .story .section-title { color: var(--ink); }
.section-title {
  font-size: clamp(28px, 4vw, 38px); font-weight: 600;
  text-align: center; margin-top: 12px; letter-spacing: -0.4px;
}
.section-sub {
  font-size: 15.5px; color: rgba(22, 22, 22, 0.58); text-align: center;
  max-width: 540px; margin: 14px auto 0; line-height: 1.65;
}

/* Story / quote */
.story-card {
  max-width: 720px; margin: 48px auto 0;
  background: var(--white); border-radius: 32px; padding: 44px 46px;
  box-shadow: 0 18px 50px rgba(22, 22, 22, 0.07);
  position: relative;
}
.story-card .quote-mark {
  position: absolute; top: -26px; left: 38px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 700;
}
.story-card p { font-size: 16.5px; line-height: 1.75; color: rgba(22, 22, 22, 0.82); }
.story-card p + p { margin-top: 16px; }
.story-card .sign { margin-top: 22px; font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 12px; }

/* TikTok card */
.tiktok-card {
  max-width: 720px; margin: 22px auto 0;
  background: var(--ink); color: var(--white);
  border-radius: 32px; padding: 34px 40px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.tiktok-card .tt-icon {
  width: 62px; height: 62px; border-radius: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blush), var(--powder));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.tiktok-card .tt-body { flex: 1; min-width: 220px; }
.tiktok-card h3 { font-size: 18px; font-weight: 600; }
.tiktok-card p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; margin-top: 6px; }
.tiktok-card .tt-btn {
  background: var(--white); color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 13px 24px; border-radius: 999px;
  transition: transform 0.15s ease; white-space: nowrap;
}
.tiktok-card .tt-btn:hover { transform: scale(1.05); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.feature {
  border-radius: 32px; padding: 34px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.feature:hover { transform: translateY(-7px) rotate(-0.6deg); box-shadow: 0 22px 44px rgba(22, 22, 22, 0.13); }
.feature .emoji { font-size: 30px; display: block; }
.feature h3 { font-size: 18.5px; font-weight: 600; margin-top: 14px; }
.feature p { font-size: 14px; line-height: 1.65; color: rgba(22, 22, 22, 0.68); margin-top: 8px; }

/* ---------- Try a question ---------- */
.try-zone { background: var(--light-bg); border-radius: 44px; margin: 0 16px; }
.q-card {
  background: var(--white); border-radius: 32px;
  max-width: 540px; margin: 46px auto 0; padding: 40px 34px 34px;
  text-align: center; box-shadow: 0 16px 44px rgba(22, 22, 22, 0.09);
  transition: transform 0.3s ease;
}
.q-tag {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.q-text {
  font-size: 23px; font-weight: 600; line-height: 1.45;
  margin: 20px 0 8px; min-height: 100px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.22s ease;
}
.q-time { font-size: 13px; color: rgba(22, 22, 22, 0.5); font-weight: 500; }
.q-btn {
  background: var(--ink); color: var(--white); border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 999px; margin-top: 24px;
  transition: transform 0.15s ease;
}
.q-btn:hover { transform: scale(1.05); }

/* ---------- Peek inside (phone mockup) ---------- */
.peek { background: var(--ink); color: var(--white); overflow: hidden; }
.peek .eyebrow { color: rgba(255, 255, 255, 0.4); }
.peek .section-title { color: var(--white); }
.peek-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-top: 56px;
}
.peek-copy h3 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.peek-copy .peek-point { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.peek-copy .peek-point:last-child { border-bottom: none; }
.peek-copy p { font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.55); }
.peek-copy .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 10px; }

.phone-wrap { display: flex; justify-content: center; perspective: 1200px; }
.phone {
  width: 310px; border-radius: 48px;
  background: #0b0b0b; padding: 12px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 0 1.5px rgba(255, 255, 255, 0.08);
  transform: rotate(2.5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  animation: phone-float 7s ease-in-out infinite;
}
.phone:hover { transform: rotate(0deg) scale(1.02); }
@keyframes phone-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
.phone-screen {
  background: var(--paper); border-radius: 38px; overflow: hidden;
  color: var(--ink); padding: 22px 16px 18px;
}
.ps-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ps-head .ps-title { font-size: 15px; font-weight: 600; }
.ps-head .ps-faces { display: flex; }
.ps-head .ps-faces svg { margin-left: -8px; }
.ps-head .ps-faces svg:first-child { margin-left: 0; }
.ps-qcard {
  background: var(--white); border-radius: 22px; padding: 18px 16px;
  box-shadow: 0 8px 22px rgba(22, 22, 22, 0.07);
}
.ps-tag {
  display: inline-block; background: var(--butter); border-radius: 999px;
  padding: 4px 11px; font-size: 10.5px; font-weight: 600;
}
.ps-q { font-size: 15.5px; font-weight: 600; line-height: 1.4; margin-top: 9px; }
.ps-answer {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: 18px; padding: 12px 13px; margin-top: 10px;
}
.ps-answer .ps-name { font-size: 11px; font-weight: 600; }
.ps-answer .ps-meta { font-size: 10px; color: rgba(22, 22, 22, 0.45); font-weight: 500; }
.wave { display: flex; align-items: center; gap: 2.5px; height: 20px; flex: 1; }
.wave i {
  width: 3px; border-radius: 2px; background: var(--ink); opacity: 0.75;
  animation: wave 1.1s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}
.ps-locked { position: relative; overflow: hidden; }
.ps-locked .ps-blur { filter: blur(5px); user-select: none; font-size: 11.5px; line-height: 1.5; color: rgba(22, 22, 22, 0.8); }
.ps-lock-note {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 11px; font-weight: 600; color: rgba(22, 22, 22, 0.75);
}
.ps-cta {
  background: var(--orange); border-radius: 999px; text-align: center;
  font-size: 13px; font-weight: 600; padding: 12px; margin-top: 14px;
}

/* ---------- Suggest a question ---------- */
.suggest-card {
  background: var(--white); border-radius: 32px;
  max-width: 560px; margin: 46px auto 0; padding: 38px 34px 34px;
  box-shadow: 0 16px 44px rgba(22, 22, 22, 0.09);
}
.suggest-card .q-tag { background: var(--lavender); }
.suggest-card textarea {
  width: 100%; margin-top: 18px; resize: none;
  background: var(--paper); border: 1.5px solid transparent;
  border-radius: 20px; padding: 18px 20px; min-height: 108px;
  font-family: inherit; font-size: 16.5px; font-weight: 500; line-height: 1.5;
  color: var(--ink); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.suggest-card textarea:focus { border-color: var(--ink); background: var(--white); }
.suggest-card textarea::placeholder { color: rgba(22, 22, 22, 0.35); font-weight: 500; }
.suggest-row { display: flex; gap: 10px; margin-top: 12px; }
.suggest-row input {
  flex: 1; min-width: 0;
  background: var(--paper); border: 1.5px solid transparent;
  border-radius: 999px; padding: 13px 20px;
  font-family: inherit; font-size: 14px; color: var(--ink); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.suggest-row input:focus { border-color: var(--ink); background: var(--white); }
.suggest-row input::placeholder { color: rgba(22, 22, 22, 0.35); }
.suggest-row button {
  background: var(--ink); color: var(--white); border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 14.5px;
  padding: 13px 24px; border-radius: 999px; white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.2s;
}
.suggest-row button:hover { transform: scale(1.04); }
.suggest-row button:disabled { opacity: 0.6; transform: none; cursor: wait; }
.suggest-note { font-size: 12.5px; color: rgba(22, 22, 22, 0.45); margin-top: 14px; font-weight: 500; text-align: center; }
.suggest-error { color: #C0392B; font-size: 13.5px; margin-top: 10px; font-weight: 500; display: none; }
.suggest-done { display: none; text-align: center; padding: 14px 0 6px; animation: pop 0.45s cubic-bezier(0.18, 1.25, 0.4, 1); }
.suggest-done h3 { font-size: 21px; font-weight: 600; margin-top: 12px; }
.suggest-done p { font-size: 14px; line-height: 1.6; color: rgba(22, 22, 22, 0.6); margin-top: 8px; }
.suggest-done .again {
  background: transparent; border: 1.5px solid var(--ink); color: var(--ink); cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 13.5px;
  padding: 11px 22px; border-radius: 999px; margin-top: 16px;
  transition: transform 0.15s ease;
}
.suggest-done .again:hover { transform: scale(1.05); }

/* ---------- Timeline ---------- */
.timeline { max-width: 640px; margin: 56px auto 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 21px; top: 8px; bottom: 8px;
  width: 2px; background: rgba(255, 255, 255, 0.12);
}
.t-item { position: relative; padding: 0 0 42px 66px; }
.t-item:last-child { padding-bottom: 0; }
.t-dot {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; z-index: 1;
}
.t-item h3 { font-size: 17px; font-weight: 600; }
.t-item h3 span { color: rgba(255, 255, 255, 0.4); font-weight: 500; font-size: 13.5px; margin-left: 10px; }
.t-item p { font-size: 14px; color: rgba(255, 255, 255, 0.55); line-height: 1.65; margin-top: 6px; max-width: 460px; }
.t-item.future .t-dot { background: rgba(255, 255, 255, 0.1); border: 1.5px dashed rgba(255, 255, 255, 0.3); }
.t-item.future h3, .t-item.future p { opacity: 0.75; }

.story { background: var(--ink); color: var(--white); }
.story .eyebrow { color: rgba(255, 255, 255, 0.4); }
.story .section-title { color: var(--white); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .faces { display: flex; justify-content: center; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.5); padding: 44px 0 52px; }
.footer .divider { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 32px; }
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; font-size: 13.5px;
}
.footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; margin-left: 20px; }
.footer a:hover { color: var(--white); }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--ink); color: var(--white); text-align: center; padding: 130px 24px 56px; }
.legal-hero h1 { font-size: 30px; font-weight: 600; }
.legal-hero .date { color: rgba(255, 255, 255, 0.5); font-size: 14px; margin-top: 8px; }
.legal-body { background: var(--paper); color: var(--ink); padding: 48px 24px 88px; }
.legal-card { background: var(--white); border-radius: 28px; padding: 40px 36px; max-width: 680px; margin: 0 auto; }
.legal-card h2 { font-size: 19px; font-weight: 600; margin: 28px 0 10px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { font-size: 15px; line-height: 1.7; color: rgba(22, 22, 22, 0.85); }
.legal-card p + p { margin-top: 12px; }
.legal-card ul { padding-left: 22px; margin: 10px 0; }
.legal-card li { margin: 6px 0; }
.legal-card a { color: var(--ink); }

/* ---------- Responsive & motion ---------- */
@media (max-width: 760px) {
  .wl-form { flex-direction: column; }
  .wl-form button { width: 100%; }
  .features { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .story-card { padding: 36px 26px; }
  .tiktok-card { padding: 28px 26px; }
  .try-zone { margin: 0; border-radius: 44px 44px 0 0; }
  section { padding: 72px 0; }
  .peek-grid { grid-template-columns: 1fr; gap: 44px; }
  .phone { width: 280px; }
  .suggest-row { flex-direction: column; }
  .suggest-row button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
