/* ============ Tokens ============ */
:root {
  --night: #0A0A0F;
  --night-2: #14141C;
  --night-3: #1C1C26;
  --green: #00E878;
  --green-deep: #00B85F;
  --warm: #ffffff;
  --warm-2: #f3f3f3;
  --amber: #FFB830;
  --coral: #FF6B4A;
  --line: rgba(255,255,255,1);
  --line-strong: rgba(255,255,255,1);
  --muted: rgba(255,255,255,1);
  --muted-2: rgba(255,255,255,1);

  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--night);
  color: var(--warm);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ Layout ============ */
.shell { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { position: relative; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10,10,15,0.6);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10,10,15,0.85);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
}
.nav-brand .nav-mark {
  width: 56px; height: 56px;
  margin: -16px 0;
  object-fit: contain;
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; color: var(--muted); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--night);
  padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 20% 20%, rgba(0,232,120,0.08), transparent 60%),
    radial-gradient(600px 500px at 85% 70%, rgba(255,184,48,0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  font-variation-settings: "opsz" 96;
  text-wrap: balance;
}
.hero h1 .cycler {
  display: inline-block;
  position: relative;
  color: var(--green);
  font-style: italic;
  font-weight: 700;
  min-width: 5ch;
}
.hero h1 .cycler-word {
  display: inline-block;
  animation: cycleIn .55s cubic-bezier(.2,.7,.2,1);
}
@keyframes cycleIn {
  from { opacity: 0; transform: translateY(20px) rotate(-3deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-sub {
  margin: 28px 0 36px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
}

.email-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px;
  max-width: 460px;
  transition: border-color .2s ease, background .2s ease;
}
.email-form:focus-within {
  border-color: var(--green);
  background: rgba(0,232,120,0.04);
}
.email-form input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  padding: 12px 18px;
  color: var(--warm);
  font-size: 15px;
}
.email-form input::placeholder { color: var(--muted-2); }
.email-form button {
  background: var(--green);
  color: var(--night);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform .15s ease, background .15s ease;
}
.email-form button:hover { background: #00ff86; transform: translateX(2px); }

.hero-meta {
  margin-top: 18px;
  display: flex; gap: 18px; align-items: center;
  font-size: 13px; color: var(--muted-2);
}
.hero-meta .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--amber);
}

/* Hobby picker (right side of hero) */
.picker-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1.05;
  margin-left: auto;
  justify-self: end;
}

.picker-mascot {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.picker-mascot .mascot-frame {
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,232,120,0.18), transparent 60%),
    rgba(20,20,28,0.8);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  backdrop-filter: blur(20px);
}
.picker-mascot .mascot-frame::before {
  content: ""; position: absolute; inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from var(--ang, 0deg), transparent 0%, var(--green) 20%, transparent 40%);
  opacity: 0.4;
  animation: spin 8s linear infinite;
  z-index: -1;
  filter: blur(8px);
}
@keyframes spin { to { --ang: 360deg; transform: rotate(360deg); } }
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.mascot-img {
  width: 78%; height: 78%; object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,232,120,0.25));
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  transform: rotate(var(--mascot-rot, 0deg));
}
.mascot-bubble {
  position: absolute;
  top: 32%;
  left: 62%;
  background: var(--warm);
  color: var(--night);
  padding: 10px 14px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 170px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 2px 0 rgba(0,0,0,0.2);
  z-index: 4;
  animation: bubble .4s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  transform-origin: 0% 100%;
}
.mascot-bubble::before {
  /* tail pointing down-left into Gray's mouth */
  content: "";
  position: absolute;
  bottom: -8px;
  left: -4px;
  width: 18px;
  height: 14px;
  background: var(--warm);
  clip-path: polygon(100% 0, 30% 0, 0 100%);
}
.mascot-bubble::after {
  /* trailing dot at the southwest */
  content: "";
  position: absolute;
  bottom: -18px;
  left: -14px;
  width: 7px;
  height: 7px;
  background: var(--warm);
  border-radius: 50%;
  opacity: 0.85;
}
@keyframes bubble {
  from { opacity: 0; transform: scale(0.8) translate(-6px, 4px); }
  to { opacity: 1; transform: scale(1) translate(0, 0); }
}

.hobby-orbit {
  position: absolute; inset: 0;
}
.hobby-tile {
  position: absolute;
  width: 88px; height: 88px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .2s ease, background .2s ease, color .2s ease;
  backdrop-filter: blur(10px);
  user-select: none;
}
.hobby-tile .glyph {
  font-size: 28px;
  line-height: 1;
}
.hobby-tile:hover {
  transform: translate(-50%, -50%) translateY(-4px) scale(1.06);
  border-color: var(--green);
  background: rgba(0,232,120,0.06);
  color: var(--warm);
}
.hobby-tile.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--night);
  box-shadow: 0 8px 32px rgba(0,232,120,0.35);
}

/* ============ Sections ============ */
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ""; width: 28px; height: 1px; background: var(--green);
}

.section-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}

/* Problem */
.problem {
  padding: 140px 0 100px;
  background:
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.problem-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 1px;
  background: var(--line);
  border-radius: 16px; overflow: hidden;
}
.problem-list li {
  background: var(--night-2);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px;
}
.problem-list li .obj { font-weight: 500; }
.problem-list li .stat {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
}

/* How it works */
.how {
  padding: 120px 0;
  background: var(--warm);
  color: var(--night);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(0,184,95,0.06), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(255,184,48,0.06), transparent 60%);
  pointer-events: none;
}
.how > .shell { position: relative; }
.how .section-label { color: rgba(10,10,15,0.5); }
.how .section-label::before { background: var(--night); }
.how-head { max-width: 720px; }
.how-head p {
  font-size: 18px; line-height: 1.5;
  color: rgba(10,10,15,0.65);
  margin-top: 20px;
}
.how-steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.how-step {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(10,10,15,0.08);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(20px);
}
.how-step-head { display: flex; gap: 16px; align-items: flex-start; }
.how-step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--night);
  color: var(--warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.how-step h3 {
  font-family: var(--display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.01em; margin: 0 0 6px;
}
.how-step p {
  margin: 0; color: rgba(10,10,15,0.62); font-size: 14px; line-height: 1.5;
}
.how-step-visual {
  margin-top: auto;
}
.how-visual {
  background: var(--night);
  color: var(--warm);
  border-radius: 16px;
  padding: 18px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Step 1 — chip grid */
.how-visual-pick { gap: 14px; }
.how-chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  flex: 1;
  align-content: flex-start;
}
.how-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.how-chip .g { font-size: 14px; }
.how-chip.on {
  background: var(--green);
  border-color: var(--green);
  color: var(--night);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,232,120,0.3);
}
.how-pick-foot {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; color: var(--muted-2);
  letter-spacing: 0.05em;
}
.how-cursor {
  width: 12px; height: 18px;
  border: 1.5px solid var(--green);
  border-radius: 2px;
  position: relative;
  animation: blinkCursor 1.2s ease-in-out infinite;
}
@keyframes blinkCursor { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.2; } }

/* Step 2 — recording */
.how-visual-show { justify-content: space-between; gap: 14px; }
.how-record { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.how-record-head {
  display: flex; align-items: center; gap: 8px;
  color: var(--green);
}
.how-rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF4D4D;
  box-shadow: 0 0 10px #FF4D4D;
  animation: recPulse 1.4s ease-in-out infinite;
}
@keyframes recPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.how-wave {
  display: flex; align-items: center; gap: 3px;
  height: 70px;
  flex: 1;
}
.how-wave span {
  flex: 1;
  background: linear-gradient(180deg, var(--green), rgba(0,232,120,0.3));
  border-radius: 2px;
  animation: waveFlex 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes waveFlex { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.45); } }
.how-record-foot {
  display: flex; gap: 14px;
  font-family: var(--mono); font-size: 11px; color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* Step 3 — Gray's note */
.how-visual-step { gap: 12px; justify-content: space-between; }
.how-msg {
  display: flex; gap: 10px; align-items: flex-start;
}
.how-msg-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0,232,120,0.12);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.how-msg-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--warm);
  flex: 1;
}
.how-msg-bubble em { color: var(--green); font-style: italic; font-weight: 500; }
.how-msg-meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.how-action {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.how-action-btn {
  background: var(--green);
  color: var(--night);
  font-weight: 600;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Day 1 → Day 20 scrubber */
.day {
  padding: 100px 0 80px;
  background: var(--night);
  position: relative;
  overflow: hidden;
}
.day-head { max-width: 720px; margin-bottom: 36px; }
.day-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.day-frames {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--night-2);
  border: 1px solid var(--line);
  aspect-ratio: 24/9;
}
.day-frame {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  transition: opacity .4s ease;
}
.day-frame .badge {
  position: absolute; top: 18px; left: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.day-frame .badge .num { color: var(--green); font-weight: 600; }
.day-frame .quote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 720px;
}
.day-frame .quote em {
  font-style: italic;
  color: var(--green);
}
.day-frame .meta {
  position: absolute; bottom: 18px; left: 20px; right: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--muted-2);
}

.day-track {
  position: relative;
  height: 36px;
  display: flex; align-items: center;
  margin: 0 8px;
}
.day-track-rail {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  width: 100%;
  position: relative;
  cursor: pointer;
}
.day-track-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: 999px;
  transition: width .15s ease-out;
}
.day-track-thumb {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  background: var(--warm); border-radius: 50%;
  border: 3px solid var(--night);
  box-shadow: 0 0 0 1px var(--green), 0 4px 16px rgba(0,232,120,0.4);
}
.day-ticks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px; color: var(--muted-2);
}

/* Bento */
.bento-section {
  padding: 60px 0 140px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 14px;
}
.bento-cell {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: var(--night-2);
  border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.bento-cell:hover { transform: translateY(-4px); }
.bento-cell img { width: 100%; height: 100%; object-fit: cover; }
.bento-cell .label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--warm);
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
}
.bento-cell.cell-quote {
  background: var(--green);
  color: var(--night);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  text-align: center;
  border: none;
}
.bento-cell.cell-quote .q {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  line-height: 1.15; letter-spacing: -0.01em;
}
.bento-cell.cell-quote .by {
  font-family: var(--mono); font-size: 11px; margin-top: 12px; opacity: 0.7;
}

.b-1 { grid-column: span 2; grid-row: span 2; }
.b-2 { grid-column: span 2; grid-row: span 1; }
.b-3 { grid-column: span 2; grid-row: span 1; }
.b-4 { grid-column: span 2; grid-row: span 2; }
.b-5 { grid-column: span 2; grid-row: span 1; }
.b-6 { grid-column: span 2; grid-row: span 1; }
.b-7 { grid-column: span 3; grid-row: span 1; }
.b-8 { grid-column: span 3; grid-row: span 1; }

/* Pricing */
.pricing {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.price-card {
  background: var(--warm);
  color: var(--night);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.price-card .ribbon {
  position: absolute; top: -14px; right: 24px;
  background: var(--amber);
  color: var(--night);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.price-amt {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--display);
  margin-bottom: 8px;
}
.price-amt .num { font-weight: 700; font-size: 72px; letter-spacing: -0.04em; line-height: 1; }
.price-amt .per { font-size: 18px; color: rgba(10,10,15,0.5); font-weight: 500; }
.price-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 24px;
  margin: 0 0 24px; letter-spacing: -0.01em;
}
.price-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.4;
}
.price-features li .check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.price-features li .check svg { width: 12px; height: 12px; }
.price-cta {
  display: block;
  width: 100%;
  background: var(--night);
  color: var(--warm);
  padding: 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: transform .15s ease;
}
.price-cta:hover { transform: translateY(-2px); }
.price-fineprint {
  font-family: var(--mono); font-size: 11px;
  text-align: center; margin-top: 12px;
  color: rgba(10,10,15,0.5);
}

.tripod-callout {
  background: var(--night-3);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  margin-top: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.tripod-icon {
  width: 48px; height: 48px;
  background: var(--amber);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Final CTA */
.final {
  padding: 160px 0;
  background: var(--night);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 50% 50%, rgba(0,232,120,0.08), transparent 60%);
}
.final-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 auto 28px;
  max-width: 14ch;
  text-wrap: balance;
  position: relative;
}
.final p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
}
.final .email-form { margin: 0 auto; position: relative; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--night);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted-2);
  flex-wrap: wrap; gap: 16px;
}
.footer .wordmark {
  font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--warm); letter-spacing: -0.02em;
}

/* Sparkles */
.sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--amber);
  animation: drift 4s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(8px, -10px) scale(1.2); opacity: 1; }
}

/* ============ Mobile ============ */
@media (max-width: 900px) {
  .shell { padding: 0 20px; }
  .hero { padding: 100px 0 40px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .picker-stage { aspect-ratio: 1 / 1; max-width: 380px; margin: 0 auto; }
  .hobby-tile { width: 64px; height: 64px; border-radius: 16px; }
  .hobby-tile .glyph { font-size: 22px; }
  .hobby-tile { font-size: 9px; }

  .problem { padding: 80px 0 60px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }

  .how { padding: 80px 0; }
  .how-steps { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .how-visual { min-height: 180px; }

  .day { padding: 80px 0; }
  .day-frames { aspect-ratio: 4/5; }
  .day-frame { padding: 24px; }

  .bento-section { padding: 40px 0 80px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(8, 160px); gap: 10px; }
  .b-1, .b-4 { grid-column: span 2; grid-row: span 2; }
  .b-2, .b-3, .b-5, .b-6 { grid-column: span 1; grid-row: span 1; }
  .b-7, .b-8 { grid-column: span 2; grid-row: span 1; }

  .pricing { padding: 80px 0; }
  .pricing-wrap { grid-template-columns: 1fr; gap: 32px; }
  .price-card { padding: 28px; }
  .price-amt .num { font-size: 56px; }

  .final { padding: 100px 0; }
  .email-form { flex-wrap: wrap; }
}
