/* =========================================================================
   Ritual — landing page styles
   Bold & playful, white canvas, one vivid pink accent. Venue-inspired.
   ========================================================================= */

/* ---------- Fonts (PolySans, bundled locally) ---------- */
@font-face {
  font-family: "PolySans";
  src: url("assets/fonts/PolySans-Slim.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "PolySans";
  src: url("assets/fonts/PolySans-Median.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "PolySans";
  src: url("assets/fonts/PolySans-Bulky.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "PolySans Wide";
  src: url("assets/fonts/PolySans-BulkyWide.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #17131c;
  --bg: #ffffff;
  --bg-soft: #faf5f2;
  --bg-cream: #fbe9e6;
  --accent: #ff2d6f;
  --accent-deep: #e0145c;
  --accent-soft: #ffd9e4;

  /* playful sticker tints + ink */
  --pinkT: #ffe1ea;  --pinkI: #ff2d6f;
  --lilacT: #ece2ff; --lilacI: #8b5cf6;
  --butterT: #fff1cf;--butterI: #e0a020;
  --mintT: #d8f6ee;  --mintI: #14b8a6;
  --skyT: #e3f1ff;   --skyI: #2f8fe0;

  --line: #efe4e0;
  --muted: #6b6470;

  --font: "PolySans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-wide: "PolySans Wide", "PolySans", system-ui, sans-serif;

  --maxw: 1140px;
  --radius: 22px;
  --radius-pill: 999px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em; background: var(--accent-soft); color: var(--accent-deep);
  padding: 0.08em 0.4em; border-radius: 6px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4em;
  font-family: var(--font-wide); font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.6rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.button-primary {
  color: #fff; background: var(--accent);
  box-shadow: 0 8px 22px rgba(255, 45, 111, 0.28);
}
.button-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,45,111,.34); }
.button-primary:active { transform: translateY(0); }
.button-outline {
  color: var(--accent); background: #fff; border-color: var(--accent);
}
.button-outline:hover { background: var(--accent-soft); transform: translateY(-2px); }
.button-outline:active { transform: translateY(0); }

/* ---------- Shared section bits ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.eyebrow {
  font-family: var(--font-wide); font-weight: 800;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.section-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--muted);
  max-width: 44ch; margin-top: 1rem;
}
.section-title + .section-lead { margin-bottom: 3rem; }

/* ---------- Reveal animation (only when JS present) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(23,19,28,.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  font-family: var(--font-wide); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 0.5rem;
}
.brand-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
  display: inline-block;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a:not(.nav-cta) { font-weight: 600; font-size: 0.96rem; color: var(--ink); transition: color .2s; }
.nav-links > a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta { padding: 0.7rem 1.25rem; font-size: 0.78rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--bg-cream) 0%, rgba(251,233,230,0) 62%),
    radial-gradient(800px 460px at 8% 6%, var(--bg-soft) 0%, rgba(250,245,242,0) 60%),
    var(--bg);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-title { font-size: clamp(2.6rem, 6.4vw, 5rem); letter-spacing: -0.035em; }
.hero-sub { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--muted); margin-top: 1.4rem; max-width: 38ch; }

/* waitlist form */
.waitlist-form {
  display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem;
  max-width: 480px; position: relative;
}
.wf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.waitlist-form input {
  width: 100%; min-width: 0;
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 0.9rem 1.1rem; border: 2px solid var(--line); border-radius: 14px;
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.waitlist-form input::placeholder { color: #b3aab2; }
.waitlist-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.waitlist-form .wf-hp { display: none; }
.waitlist-form .button { width: 100%; }
.form-msg { margin-top: 0.2rem; font-size: 0.92rem; font-weight: 600; }
.form-msg:empty { margin: 0; }
.form-msg.ok { color: var(--mintI); }
.form-msg.err { color: var(--accent-deep); }
.waitlist-form.done .wf-grid, .waitlist-form.done .button { display: none; }
.form-note { margin-top: 0.85rem; font-size: 0.85rem; color: var(--muted); }

.scroll-cue {
  display: inline-block; margin-top: 2.4rem; font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--accent-soft); padding-bottom: 2px; transition: border-color .2s;
}
.scroll-cue:hover { border-color: var(--accent); }
.scroll-cue span { display: inline-block; transition: transform .2s; }
.scroll-cue:hover span { transform: translateY(3px); }

/* hero visual / phone */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 300 / 600;
  background: #1d1822; border-radius: 42px; padding: 12px;
  box-shadow: 0 30px 70px rgba(23,19,28,.28), 0 4px 0 rgba(0,0,0,.2) inset;
  transform: rotate(2.5deg);
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px; background: #1d1822; border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen {
  height: 100%; background: linear-gradient(180deg, #fff 0%, #fff6f9 100%);
  border-radius: 32px; padding: 30px 18px 18px; display: flex; flex-direction: column; gap: 0.7rem;
}
.pm-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.pm-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7aa6 100%);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.pm-name { font-weight: 700; font-size: 0.82rem; }
.pm-handle { font-size: 0.72rem; color: var(--accent-deep); font-weight: 600; }
.pm-row {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 0.7rem 0.85rem; font-size: 0.82rem; font-weight: 600;
}
.pm-row-active { border-color: var(--accent); background: var(--pinkT); }
.pm-price { color: var(--accent-deep); font-weight: 800; }
.pm-deposit { font-size: 0.68rem; color: var(--muted); text-align: center; margin-top: 0.1rem; }
.pm-cta {
  margin-top: auto; border: 0; cursor: default;
  background: var(--accent); color: #fff; font-family: var(--font-wide); font-weight: 800;
  font-size: 0.78rem; padding: 0.8rem; border-radius: var(--radius-pill);
}

/* =========================================================================
   STICKERS (CSS data-URI icons on soft tinted chips)
   ========================================================================= */
.sticker {
  width: 56px; height: 56px; border-radius: 30%;
  background-repeat: no-repeat; background-position: center; background-size: 56%;
  flex: 0 0 auto;
}
.sticker-float { position: absolute; z-index: 3; will-change: transform; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }

/* hero floating decorations */
.hero-visual .s-lip { width: 84px; height: 84px; top: -22px; left: -6px; animation-delay: .4s; }
.hero-visual .s-spark { width: 66px; height: 66px; bottom: -10px; right: 4px; animation-delay: 0s; }

/* --- icon definitions --- */
.s-lip, .s-lip2 { background-color: var(--pinkT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d6f' stroke-width='1.7' stroke-linejoin='round'><rect x='8' y='11' width='8' height='10' rx='1.6'/><rect x='8' y='9' width='8' height='2' rx='.6'/><path d='M9 9 L10 4 L15 5 L16 9'/></svg>"); }
.s-spark, .s-spark2 { background-color: var(--butterT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L13.7 9.3 L21 11 L13.7 12.7 L12 20 L10.3 12.7 L3 11 L10.3 9.3 Z' fill='%23e0a020'/></svg>"); }
.s-dm { background-color: var(--skyT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f8fe0' stroke-width='1.7' stroke-linejoin='round'><rect x='3' y='4' width='18' height='13' rx='3'/><path d='M9 17 L8 20 L12.5 17'/><circle cx='8.5' cy='10.5' r='1.1' fill='%232f8fe0' stroke='none'/><circle cx='12' cy='10.5' r='1.1' fill='%232f8fe0' stroke='none'/><circle cx='15.5' cy='10.5' r='1.1' fill='%232f8fe0' stroke='none'/></svg>"); }
.s-ghost { background-color: var(--lilacT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='1.7' stroke-linejoin='round'><path d='M5 20 V11 a7 7 0 0 1 14 0 v9 l-2.3-2 -2 2 -2-2 -2 2 -2-2 Z'/><circle cx='9.5' cy='10.5' r='1' fill='%238b5cf6' stroke='none'/><circle cx='14.5' cy='10.5' r='1' fill='%238b5cf6' stroke='none'/></svg>"); }
.s-cash { background-color: var(--mintT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='1.7' stroke-linejoin='round'><rect x='3' y='6' width='18' height='12' rx='2.5'/><circle cx='12' cy='12' r='3'/><circle cx='6.5' cy='12' r='.7' fill='%2314b8a6' stroke='none'/><circle cx='17.5' cy='12' r='.7' fill='%2314b8a6' stroke='none'/></svg>"); }
.s-cal { background-color: var(--pinkT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d6f' stroke-width='1.7' stroke-linejoin='round'><rect x='4' y='5' width='16' height='15' rx='2.5'/><path d='M4 9.5 H20 M8 3 V6.5 M16 3 V6.5'/><path d='M8.5 13.5 l1.5 1.5 M10 13.5 l-1.5 1.5 M14 13 l2 3 M16 13 l-2 3' stroke-width='1.4'/></svg>"); }
.s-link { background-color: var(--skyT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f8fe0' stroke-width='1.8' stroke-linecap='round'><path d='M10 13 a3.2 3.2 0 0 0 4.5 0 l2.5-2.5 a3.2 3.2 0 0 0-4.5-4.5 L11.4 7.4'/><path d='M14 11 a3.2 3.2 0 0 0-4.5 0 L7 13.5 a3.2 3.2 0 0 0 4.5 4.5 L12.6 16.6'/></svg>"); }
.s-shield { background-color: var(--mintT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='1.7' stroke-linejoin='round'><path d='M12 3 l7 3 v5 c0 4.4-3 7.4-7 9 -4-1.6-7-4.6-7-9 V6 Z'/><path d='M9 12 l2 2 4-4'/></svg>"); }
.s-wallet { background-color: var(--butterT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0a020' stroke-width='1.7' stroke-linejoin='round'><rect x='3' y='6' width='18' height='13' rx='2.5'/><path d='M3 10.5 H21'/><circle cx='16.5' cy='14.5' r='1.4' fill='%23e0a020' stroke='none'/></svg>"); }
.s-bell { background-color: var(--pinkT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d6f' stroke-width='1.7' stroke-linejoin='round'><path d='M6 16 V11 a6 6 0 0 1 12 0 v5 l1.8 2 H4.2 Z'/><path d='M10 20 a2 2 0 0 0 4 0'/></svg>"); }
.s-cal2 { background-color: var(--lilacT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='1.7' stroke-linejoin='round'><rect x='4' y='5' width='16' height='15' rx='2.5'/><path d='M4 9.5 H20 M8 3 V6.5 M16 3 V6.5'/><path d='M9 14 l2 2 4-4'/></svg>"); }
.s-phone { background-color: var(--skyT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f8fe0' stroke-width='1.7' stroke-linejoin='round'><rect x='7' y='3' width='10' height='18' rx='2.6'/><path d='M11 18 h2'/></svg>"); }
.s-scissors { background-color: var(--lilacT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='1.7' stroke-linejoin='round'><circle cx='6' cy='7' r='2.4'/><circle cx='6' cy='17' r='2.4'/><path d='M8 8.4 L20 17 M8 15.6 L20 7'/></svg>"); }
.s-razor { background-color: var(--skyT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f8fe0' stroke-width='1.7' stroke-linejoin='round'><rect x='5' y='4' width='14' height='3.6' rx='1'/><path d='M7.5 7.6 l1 2 h7 l1-2'/><path d='M12 9.6 V20'/></svg>"); }
.s-nail { background-color: var(--mintT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='1.7' stroke-linejoin='round'><rect x='8' y='9' width='8' height='12' rx='1.6'/><rect x='10' y='4' width='4' height='5' rx='1'/><path d='M8 13 h8'/></svg>"); }
.s-spa { background-color: var(--butterT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0a020' stroke-width='1.6' stroke-linejoin='round'><ellipse cx='12' cy='17.5' rx='7' ry='2.3'/><ellipse cx='12' cy='13' rx='5' ry='1.9'/><ellipse cx='12' cy='9' rx='3.3' ry='1.6'/></svg>"); }
.s-ring { background-color: var(--pinkT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d6f' stroke-width='1.7' stroke-linejoin='round'><circle cx='12' cy='15' r='5'/><path d='M9 9 l3-4 3 4 M9 9 h6'/></svg>"); }
.s-star { background-color: var(--butterT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2.5 l2.6 5.7 6.2 .7 -4.6 4.2 1.3 6.1 -5.5-3 -5.5 3 1.3-6.1 -4.6-4.2 6.2-.7 z' fill='%23e0a020'/></svg>"); }
.s-pin { background-color: var(--skyT);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f8fe0' stroke-width='1.7' stroke-linejoin='round'><path d='M12 21 s7-5.5 7-11 a7 7 0 0 0-14 0 c0 5.5 7 11 7 11 z'/><circle cx='12' cy='10' r='2.4'/></svg>"); }

/* =========================================================================
   PROBLEM
   ========================================================================= */
.problem { background: var(--bg-soft); }
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.prob-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(23,19,28,.07); }
.prob-card .sticker { margin-bottom: 1.1rem; }
.prob-card h3 { font-size: 1.16rem; margin-bottom: 0.5rem; }
.prob-card p { color: var(--muted); font-size: 0.96rem; }

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem 0.4rem 0; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  font-family: var(--font-wide); font-weight: 800; font-size: 1.3rem;
  color: #fff; background: var(--accent); box-shadow: 0 0 0 6px var(--accent-soft);
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.96rem; }
.step::after {
  content: ""; position: absolute; top: 24px; left: 64px; right: -10px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent-soft) 0 8px, transparent 8px 16px);
}
.step:last-child::after { display: none; }

/* =========================================================================
   FEATURES
   ========================================================================= */
.feature-rows { display: flex; flex-direction: column; gap: clamp(1rem, 2.4vw, 2rem); }
.feature {
  display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 1.8rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.6rem);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); border-color: var(--accent-soft); box-shadow: 0 20px 46px rgba(23,19,28,.07); }
.feature-art { display: flex; justify-content: center; }
.feature-art .sticker { width: 96px; height: 96px; border-radius: 28%; background-size: 52%; }
.feature-text h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 0.5rem; }
.feature-text p { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.12rem); max-width: 54ch; }
.feature-flip { grid-template-columns: 1fr 120px; }
.feature-flip .feature-art { order: 2; }

/* =========================================================================
   VISION
   ========================================================================= */
.vision { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.vision::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 300px at 85% 10%, rgba(255,45,111,0.28) 0%, transparent 60%),
              radial-gradient(520px 280px at 5% 90%, rgba(139,92,246,0.22) 0%, transparent 60%);
}
.vision-inner { position: relative; text-align: center; }
.vision .section-title { color: #fff; }
.vision .section-lead { color: rgba(255,255,255,0.74); margin-left: auto; margin-right: auto; max-width: 52ch; }
.vertical-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 4vw, 3rem);
  margin-top: 3.2rem;
}
.vertical-row li { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.vertical-row .sticker { width: 72px; height: 72px; border-radius: 26%; }
.vertical-row span { font-weight: 700; font-size: 1.05rem; }
.vertical-row em {
  font-style: normal; font-family: var(--font-wide); font-weight: 800;
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: rgba(255,45,111,0.14);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
}
.vertical-row li:first-child em { color: #fff; background: var(--accent); }

/* =========================================================================
   PERSONAS + VALUE STRIP
   ========================================================================= */
.personas { background: var(--bg-cream); }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.persona-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform .2s ease, box-shadow .2s ease;
}
.persona-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(23,19,28,.08); }
.persona-card .sticker { width: 64px; height: 64px; margin-bottom: 1.1rem; }
.persona-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.persona-card p { color: var(--muted); }

.value-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.4rem; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1rem;
}
.value-strip > div { display: flex; flex-direction: column; gap: 0.2rem; }
.value-strip strong { font-family: var(--font-wide); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--accent); letter-spacing: -0.02em; }
.value-strip span { color: var(--muted); font-size: 0.96rem; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.cta { background: var(--bg); }
.cta-inner {
  position: relative; text-align: center; max-width: 720px;
  background: linear-gradient(165deg, var(--accent) 0%, #ff6f9c 100%);
  color: #fff; border-radius: 34px; padding: clamp(2.6rem, 6vw, 4.4rem) clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: 0 30px 70px rgba(255,45,111,.30); overflow: hidden;
}
.cta-inner h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.cta-inner > p { font-size: clamp(1.05rem, 1.8vw, 1.25rem); margin-top: 1rem; color: rgba(255,255,255,0.92); }
.cta .s-spark2 { top: 18px; right: 22px; width: 54px; height: 54px; }
.waitlist-form-lg { margin: 2rem auto 0; justify-content: center; }
.waitlist-form-lg input { background: rgba(255,255,255,0.96); border-color: transparent; }
.waitlist-form-lg input:focus { box-shadow: 0 0 0 4px rgba(255,255,255,0.5); border-color: #fff; }
.waitlist-form-lg .button-primary { background: var(--ink); box-shadow: 0 8px 22px rgba(23,19,28,.3); }
.waitlist-form-lg .button-primary:hover { background: #000; }
.cta .form-note { color: rgba(255,255,255,0.82); }
.cta .form-msg.ok { color: #fff; }
.cta .form-msg.err { color: #fff3; color: #ffe2e2; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: clamp(48px,6vw,72px) 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer .brand { color: #fff; }
.footer-brand p { margin-top: 0.7rem; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.86rem; color: rgba(255,255,255,0.5);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-sub { max-width: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .persona-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.4rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 24px 1.4rem; box-shadow: 0 16px 30px rgba(23,19,28,.08);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links > a:not(.nav-cta) { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 0.6rem; text-align: center; }
}
@media (max-width: 560px) {
  .problem-grid, .steps { grid-template-columns: 1fr; }
  .feature, .feature-flip { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .feature-flip .feature-art { order: 0; }
  .feature-text p { margin: 0 auto; }
  .value-strip { grid-template-columns: 1fr; gap: 1.4rem; }
  .wf-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .sticker-float { animation: none; }
}

/* =========================================================================
   PRICING PAGE
   ========================================================================= */
.nav-links a[aria-current="page"] { color: var(--accent); }

/* hero */
.price-hero {
  text-align: center;
  padding-top: clamp(56px, 7vw, 100px);
  background: radial-gradient(1000px 500px at 50% -12%, var(--bg-cream) 0%, rgba(251,233,230,0) 62%), var(--bg);
}
.price-hero-inner { max-width: 760px; margin: 0 auto; }
.price-title { font-size: clamp(2.4rem, 5.8vw, 4.3rem); letter-spacing: -0.035em; }
.price-sub { font-size: clamp(1.1rem, 1.8vw, 1.32rem); color: var(--muted); margin: 1.4rem auto 0; max-width: 46ch; }
.price-sub strong { color: var(--accent); font-weight: 700; }
.price-hero-cta { margin-top: 2.1rem; }

/* plans */
.plans-section { padding-top: clamp(12px, 2vw, 28px); }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 880px; margin: 0 auto; align-items: start; }
.plan-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.3rem 2rem; transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(23,19,28,.08); }
.plan-popular { border: 2px solid var(--accent); box-shadow: 0 22px 50px rgba(255,45,111,.12); }
.plan-badge {
  position: absolute; top: -14px; left: 2rem;
  font-family: var(--font-wide); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 0.36rem 0.9rem; border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(255,45,111,.3);
}
.plan-name { font-size: 1.6rem; }
.plan-for { color: var(--muted); margin-top: 0.35rem; font-size: 0.96rem; min-height: 2.9em; }
.plan-price { display: flex; align-items: baseline; gap: 0.45rem; margin: 1.1rem 0 1.4rem; }
.plan-amount { font-family: var(--font-wide); font-weight: 800; font-size: clamp(2.8rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
.plan-per { color: var(--muted); font-size: 1rem; font-weight: 600; }
.plan-cta { width: 100%; }
.plan-features { margin-top: 1.7rem; display: flex; flex-direction: column; gap: 0.85rem; }
.plan-features li { position: relative; padding-left: 30px; font-size: 0.96rem; line-height: 1.45; }
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0145c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13 l4 4 L19 7'/></svg>") center/13px no-repeat;
}
.plan-features .feat-strong { font-weight: 700; margin-top: 0.6rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.plan-features .feat-strong::before { top: calc(1.1rem + 1px); }
.plans-foot { text-align: center; color: var(--muted); margin-top: 1.9rem; font-size: 0.96rem; }

/* never-pay clarity band */
.never-pay { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.never-pay::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 300px at 50% 0%, rgba(255,45,111,.30) 0%, transparent 62%); }
.never-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.never-eyebrow { font-family: var(--font-wide); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.never-zero { font-family: var(--font-wide); font-weight: 800; font-size: clamp(4.5rem, 16vw, 9rem); line-height: 1; color: var(--accent); letter-spacing: -0.04em; margin: 0.5rem 0 1.7rem; }
.never-list { display: grid; grid-template-columns: repeat(2, auto); justify-content: center; gap: 0.85rem 2.4rem; text-align: left; }
.never-list li { display: flex; align-items: center; gap: 0.65rem; font-weight: 600; font-size: 1.02rem; }
.never-list .x { width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%;
  background: rgba(255,45,111,.18) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d6f' stroke-width='3' stroke-linecap='round'><path d='M7 7 L17 17 M17 7 L7 17'/></svg>") center/12px no-repeat; }
.never-note { color: rgba(255,255,255,.68); margin: 1.9rem auto 0; font-size: 0.96rem; max-width: 54ch; }

/* how it's free */
.freehow-section { background: var(--bg); }
.freehow-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.freehow-inner .section-lead { margin: 1rem auto 0; max-width: 58ch; }
.freehow-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch;
  gap: 1rem; margin: 2.8rem 0 1.8rem;
}
.flow-card {
  display: flex; flex-direction: column; gap: 0.35rem; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.2rem;
}
.flow-you { border: 2px solid var(--accent); background: var(--pinkT); box-shadow: 0 18px 44px rgba(255,45,111,.14); }
.flow-label { font-family: var(--font-wide); font-weight: 800; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.flow-you .flow-label { color: var(--accent-deep); }
.flow-amt { font-family: var(--font-wide); font-weight: 800; font-size: clamp(2.1rem, 4vw, 2.9rem); letter-spacing: -0.02em; }
.flow-you .flow-amt { color: var(--accent-deep); }
.flow-sub { font-size: 0.82rem; color: var(--muted); line-height: 1.35; }
.flow-arrow { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.7rem; font-weight: 700; }
.freehow-note { color: var(--muted); max-width: 56ch; margin: 0 auto; font-size: 0.98rem; }

/* comparison */
.compare-section { background: var(--bg-soft); }
.compare-list { display: flex; flex-direction: column; gap: 0.7rem; max-width: 940px; }
.compare-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.4rem;
  transition: transform .18s ease, box-shadow .18s ease; }
.compare-row:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(23,19,28,.06); }
.compare-has { font-weight: 700; }
.compare-arrow { font-family: var(--font-wide); font-weight: 800; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); white-space: nowrap; }
.compare-old { color: var(--muted); font-size: 0.96rem; }

/* faq accordion */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 0.5rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.3rem 2.4rem 1.3rem 0; position: relative;
  font-weight: 700; font-size: 1.08rem; transition: color .2s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after { content: ""; position: absolute; right: 0; top: 50%; width: 16px; height: 16px; transform: translateY(-50%);
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff2d6f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9 L12 15 L18 9'/></svg>") center/contain no-repeat;
  transition: transform .25s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-body { padding: 0 0 1.4rem; color: var(--muted); line-height: 1.6; }
.faq-body a { color: var(--accent-deep); font-weight: 600; border-bottom: 1px solid var(--accent-soft); }

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; }
  .plan-for { min-height: 0; }
  .compare-row { grid-template-columns: 1fr; gap: 0.45rem; }
  .compare-arrow { justify-self: start; }
  .never-list { grid-template-columns: 1fr; justify-content: start; width: max-content; margin: 0 auto; }
  .freehow-flow { grid-template-columns: 1fr; gap: 0.7rem; }
  .freehow-flow .flow-arrow { transform: rotate(90deg); }
}
