/* ============================================
   BALLBALL — root tokens (straight from iOS app)
   ============================================ */
:root {
  --ink: #16180F;
  --ink-80: rgba(22,24,15,0.8);
  --ink-60: rgba(22,24,15,0.6);
  --ink-40: rgba(22,24,15,0.4);
  --ink-20: rgba(22,24,15,0.2);
  --ink-08: rgba(22,24,15,0.08);

  --yellow: #F2FF3A;
  --yellow-soft: rgba(242,255,58,0.2);
  --yellow-mid: rgba(242,255,58,0.4);

  --mint: #8DCEC3;
  --mint-soft: #C6E8E0;
  --mint-bg: #EDFAE4;

  --white: #FFFFFF;
  --surface: #F8FFF0;
  --surface2: #EDFAE4;
  --card: #F4F4F4;

  --peach: #FFD7B5;
  --lavender: #D6D1F5;
  --purple-deep: #4B3C8C;

  --won: #22C55E;
  --lost: #EF4444;
  --upcoming: #3B82F6;
  --tournament: #8B5CF6;
  --streak: #F59E0B;

  --font-serif: 'PT Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;

  --max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: clip;
}

/* ============================================
   SECTION LAYOUT
   body is surface (light). Hero is a rounded inset card at top.
   Tour + people + sauce-intro share body's surface bg (seamless canvas).
   Step cards + dark/yellow sections float as narrow rounded inset cards.
   Downstream (scores, roadmap, pricing, final-cta) keep stacked overlap.
   ============================================ */
section { position: relative; }

/* Default top-radius + overlap for the downstream stack (scores → final-cta) */
section:not(.hero):not(.tour):not(.people):not(.sauce-intro):not(.reason):not(.chars) {
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  margin-top: -36px;
}

/* Hero — rounded all 4 corners, inset from page edges */
section.hero {
  border-radius: 44px;
  margin: 14px 14px 0;
  overflow: hidden;
}

/* Tour — seamless with body surface, no radius, no overlap */
section.tour {
  border-radius: 0;
  margin-top: 0;
}

/* People + sauce-intro share surface bg, no radius, natural flow */
section.people,
section.sauce-intro {
  border-radius: 0;
  margin-top: 0;
}

.final-cta {
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  margin-bottom: -36px;
}
.footer { padding-top: 120px; position: relative; z-index: 0; }

/* Z-index stack — for the downstream sections that overlap */
section.hero { z-index: 1; }
section.people { z-index: 2; }
section.tour { z-index: 3; }
section.sauce-intro { z-index: 4; }
section.reason-level { z-index: 5; }
section.reason-weather { z-index: 6; }
section.reason-people { z-index: 7; }
section.chars { z-index: 8; }
section.reason-soon { z-index: 9; }
section.scores { z-index: 10; }
section.roadmap { z-index: 11; }
section.pricing { z-index: 12; }
section.final-cta { z-index: 13; }

/* STEP CARDS — 5 reason sections as narrow rounded inset cards (myachmyach-style).
   Max-width cap + auto margin centers them; positive gap between. */
section.reason-level.reason,
section.reason-weather.reason,
section.reason-people.reason,
section.chars.reason-dna,
section.reason-soon.reason {
  border-radius: 44px;
  max-width: 1120px;
  margin: 18px auto 0;
  overflow: hidden;
}
section.reason-level.reason { margin-top: 28px; }
section.scores#scores { margin-top: 28px; }

@media (max-width: 1200px) {
  section.reason-level.reason,
  section.reason-weather.reason,
  section.reason-people.reason,
  section.chars.reason-dna,
  section.reason-soon.reason {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 720px) {
  section:not(.hero):not(.tour):not(.people):not(.sauce-intro):not(.reason):not(.chars),
  .final-cta {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    margin-top: -22px;
  }
  .final-cta { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; margin-bottom: -22px; }
  section.hero { border-radius: 28px; margin: 8px 8px 0; }

  section.reason-level.reason,
  section.reason-weather.reason,
  section.reason-people.reason,
  section.chars.reason-dna,
  section.reason-soon.reason {
    border-radius: 28px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 14px;
  }
  section.reason-level.reason { margin-top: 18px; }
  section.scores#scores { margin-top: 18px; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,255,58,0.18) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  opacity: 0;
}
@media (max-width: 720px) { .cursor-glow { display: none; } }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(248, 255, 240, 0.55);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(248, 255, 240, 0.88);
  border-bottom: 1px solid var(--ink-08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.nav-logo-name { font-style: italic; }
.nav-logo-dot { color: var(--yellow); -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--ink);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateX(-50%);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 24px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 14px rgba(22,24,15,0.18);
}
.nav-cta:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(242,255,58,0.5);
}
.nav-cta svg { transition: transform 0.25s; }
.nav-cta:hover svg { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.08);
  transition: transform 20s ease-out;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1.08) translateY(0); }
  100% { transform: scale(1.18) translateY(-30px); }
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(248,255,240,0.1) 0%, rgba(248,255,240,0.45) 45%, rgba(248,255,240,0.95) 100%);
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 90%, var(--yellow-mid) 0%, transparent 40%),
              radial-gradient(ellipse at 85% 20%, var(--mint-soft) 0%, transparent 45%);
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  z-index: 2;
}

.hero-sticker {
  position: absolute;
  top: 30px; right: 40px;
  width: 150px;
  transform: rotate(8deg);
  animation: swing 3s ease-in-out infinite alternate;
  z-index: 3;
  filter: drop-shadow(0 12px 20px rgba(22,24,15,0.18));
  pointer-events: none;
}
@keyframes swing {
  0% { transform: rotate(4deg) translateY(0); }
  100% { transform: rotate(-6deg) translateY(-12px); }
}
@media (max-width: 720px) {
  .hero-sticker { width: 90px; top: -10px; right: 10px; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(22,24,15,0.06);
  animation: fadeSlideUp 0.8s 0.1s both;
}
.hero-pill-dot {
  width: 8px; height: 8px;
  background: var(--won);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(48px, 7.6vw, 112px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  padding-right: 72px;
}
.hero-title-line {
  display: block;
  overflow: visible;
  padding-bottom: 0.04em;
}
.hero-title-line > span,
.hero-title-line {
  animation: titleReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-title-line:nth-child(1) { animation-delay: 0.2s; }
.hero-title-line:nth-child(2) { animation-delay: 0.35s; }
.hero-title-line:nth-child(3) { animation-delay: 0.5s; }
@keyframes titleReveal {
  from { opacity: 0; transform: translateY(60%); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title-italic {
  font-style: italic;
  color: var(--ink);
}
.hero-dot {
  display: inline-block;
  color: var(--ink);
}
.hero-dot-yellow {
  color: var(--yellow);
  text-shadow: 0 0 0 var(--ink);
  -webkit-text-stroke: 2px var(--ink);
  animation: dotBounce 2s ease-in-out infinite;
}
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8%); }
}

.hero-sub {
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.35;
  color: var(--ink-80);
  max-width: 540px;
  margin-bottom: 0;
  animation: fadeSlideUp 0.8s 0.7s both;
}
.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-right: 32px;
}
@media (max-width: 720px) {
  .hero-row { padding-right: 0; gap: 24px; }
}
.hero-sub em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}
.hero-sub b {
  font-weight: 700;
  background: var(--yellow);
  padding: 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--ink);
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeSlideUp 0.8s 0.85s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 0 6px 20px rgba(22,24,15,0.22);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; transition: color 0.25s; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover > * { color: var(--ink); }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(242,255,58,0.5); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(242,255,58,0.24);
}
.btn-yellow:hover {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(242,255,58,0.34);
}
.btn-yellow svg { transition: transform 0.3s; }
.btn-yellow:hover svg { transform: translateX(4px); }

.btn-compact {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--surface); }
.btn-play {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-size: 9px;
  padding-left: 2px;
}

.btn-block { display: flex; width: 100%; justify-content: center; margin-top: 18px; }

.section-cta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-note {
  color: rgba(22,24,15,0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.section-cta-dark .cta-note {
  color: rgba(255,255,255,0.58);
}
.copy-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(22,24,15,0.14);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.copy-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(22,24,15,0.2);
}
.copy-cta-dark {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(242,255,58,0.18);
}
@media (max-width: 720px) {
  .section-cta {
    align-items: stretch;
    gap: 10px;
    margin-top: 34px;
  }
  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-note {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
  .copy-cta {
    width: 100%;
    justify-content: center;
  }
}

/* HERO BIG CTA — myachmyach-style bold yellow pill */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 26px 44px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.015em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(22,24,15,0.3), 0 4px 14px rgba(22,24,15,0.18);
  transition: all 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.btn-hero > * { position: relative; z-index: 1; transition: color 0.28s; }
.btn-hero:hover::before { transform: translateY(0); }
.btn-hero:hover > * { color: var(--ink); }
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(242,255,58,0.55), 0 6px 20px rgba(22,24,15,0.28);
}
.btn-hero svg { transition: transform 0.32s; }
.btn-hero:hover svg { transform: translateX(6px); }

@media (max-width: 720px) {
  .btn-hero {
    padding: 22px 34px;
    font-size: 17px;
    gap: 10px;
  }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 1.05s both;
}
.hero-meta-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-meta-label {
  font-size: 12px;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 4px;
}
.hero-meta-sep {
  width: 1px; height: 40px;
  background: var(--ink-20);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-60);
  text-transform: uppercase;
  animation: fadeSlideUp 0.8s 1.4s both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--ink-60), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -30%; left: 0;
  width: 100%; height: 30%;
  background: var(--ink);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  to { top: 130%; }
}

/* ============================================
   MARQUEE BAND
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--surface);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  animation: marqueeSlide 38s linear infinite;
}
.marquee-item {
  letter-spacing: -0.02em;
}
.marquee-item.italic { font-style: italic; color: var(--yellow); }
.marquee-dot {
  opacity: 0.3;
  align-self: center;
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SHARED SECTION ELEMENTS
   ============================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.section-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--ink-60);
}
.section-eyebrow-light { color: rgba(255,255,255,0.5); }
.section-eyebrow-light .section-eyebrow-line { background: rgba(255,255,255,0.5); }

.hl {
  background: var(--yellow);
  padding: 0 8px;
  color: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hl-y {
  color: var(--ink);
  background: var(--yellow);
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}

[data-reveal] {
  opacity: 1;
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* Only hide + animate reveal when JS has marked page as js-enabled.
   Prevents content from getting stuck invisible if IntersectionObserver misses. */
.js [data-reveal]:not(.in) {
  opacity: 0;
  transform: translateY(30px);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: 140px 0;
  background: var(--surface);
}
.manifesto-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 1000px;
  margin-bottom: 80px;
}
.manifesto-title em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}
.manifesto-card {
  padding: 28px 24px 32px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 22px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.manifesto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.manifesto-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px rgba(22,24,15,0.08);
}
.manifesto-card:hover::before { transform: scaleX(1); }
.manifesto-card-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-40);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.manifesto-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.manifesto-card-text {
  font-size: 14.5px;
  color: var(--ink-80);
  line-height: 1.5;
}

/* ============================================
   SHOWCASE (PLAY)
   ============================================ */
.showcase {
  padding: 140px 0;
  background: var(--mint-bg);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute;
  top: 15%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--yellow-soft) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}
.showcase-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .showcase-container { grid-template-columns: 1fr; gap: 50px; }
}

.showcase-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.showcase-lead {
  font-size: 18px;
  color: var(--ink-80);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 480px;
}
.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.showcase-bullets li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-80);
  line-height: 1.5;
}
.showcase-bullet-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid var(--ink-08);
}
.showcase-bullets b {
  font-weight: 700;
  color: var(--ink);
}

/* ============================================
   PHONE MOCKUP
   ============================================ */
.showcase-phone, .cup-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-frame {
  --phone-w: 320px;
  width: var(--phone-w);
  height: calc(var(--phone-w) * 2.125);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.28) 0%, transparent 16%),
    linear-gradient(285deg, rgba(255,255,255,0.18) 0%, transparent 22%),
    linear-gradient(145deg, #34372d 0%, #0d0f0b 46%, #2b2e25 100%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 56px;
  padding: 12px;
  box-shadow:
    0 54px 110px -22px rgba(22,24,15,0.42),
    0 28px 64px -32px rgba(22,24,15,0.38),
    inset 0 0 0 1px rgba(255,255,255,0.2),
    inset 0 0 0 5px rgba(0,0,0,0.38);
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #2f3329, #0f110d 58%, #373a30);
  border-radius: 8px;
  box-shadow:
    inset 1px 0 rgba(255,255,255,0.22),
    0 8px 18px rgba(0,0,0,0.24);
}
.phone-frame::before {
  width: 4px;
  height: 72px;
  left: -5px;
  top: 128px;
  box-shadow:
    inset 1px 0 rgba(255,255,255,0.22),
    0 92px 0 #181a14,
    0 8px 18px rgba(0,0,0,0.24);
}
.phone-frame::after {
  width: 4px;
  height: 96px;
  right: -5px;
  top: 182px;
}
.showcase-phone:hover .phone-frame,
.cup-phone:hover .phone-frame {
  transform: translateY(-8px) rotateY(-2deg);
}
.phone-notch {
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 116px; height: 34px;
  background:
    radial-gradient(circle at 83% 50%, #171a16 0 5px, #050605 6px 8px, transparent 9px),
    linear-gradient(180deg, #070806, #000);
  border-radius: 100px;
  box-shadow:
    inset 0 1px rgba(255,255,255,0.08),
    0 1px 1px rgba(255,255,255,0.08);
  z-index: 20;
}
.phone-notch::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 25px;
  width: 44px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #12150f, #262b22 50%, #11140f);
  opacity: 0.9;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--surface);
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  padding: 48px 16px 72px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 3px rgba(0,0,0,0.16);
  isolation: isolate;
}
.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 18%, transparent 34%),
    radial-gradient(ellipse at 80% 8%, rgba(255,255,255,0.22), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
  z-index: 8;
}
.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 28px rgba(0,0,0,0.18),
    inset 0 -16px 28px rgba(0,0,0,0.08);
  pointer-events: none;
  z-index: 9;
}

@media (max-width: 720px) {
  .phone-frame {
    --phone-w: min(286px, calc(100vw - 54px));
    border-radius: 50px;
    padding: 10px;
  }
  .phone-screen {
    border-radius: 40px;
  }
  .phone-shot {
    border-radius: 36px;
  }
  .phone-notch {
    top: 21px;
    width: 96px;
    height: 29px;
  }
  .phone-notch::before {
    top: 11px;
    left: 21px;
    width: 36px;
    height: 6px;
  }
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 6px 4px;
}
.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%; height: 80%;
  background: radial-gradient(ellipse, var(--yellow-mid) 0%, transparent 60%);
  z-index: 1;
  filter: blur(40px);
}
.phone-glow-purple {
  background: radial-gradient(ellipse, rgba(139,92,246,0.3) 0%, transparent 60%);
}

.phone-section { padding: 0 4px; }
.phone-section-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 4px;
  margin-bottom: 6px;
}

/* AI bar */
.phone-ai-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 4px;
}
.phone-ai-bar input {
  flex: 1;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 100px;
  font-size: 11px;
  color: var(--ink-60);
  font-family: inherit;
}
.phone-mic {
  width: 34px; height: 34px;
  background: var(--ink);
  color: var(--yellow);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Weather card */
.weather-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding: 14px;
  color: var(--ink);
  min-height: 110px;
  background: linear-gradient(135deg, #B8DEDA 0%, #FFE47D 60%, #FFB37A 100%);
}
.weather-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.weather-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.5) 100%);
}
.weather-card > * { position: relative; z-index: 1; }
.weather-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.weather-city {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.weather-cond {
  font-size: 10px;
  color: var(--ink-60);
  font-weight: 500;
  margin-top: 2px;
}
.weather-ic { width: 40px; height: 40px; }
.sun-spin { animation: spin 12s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.weather-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 12px;
}
.weather-pref {
  display: inline-flex;
  gap: 4px;
  padding: 3px 9px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
}
.weather-temp {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Date chips */
.phone-dates {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.phone-dates::-webkit-scrollbar { display: none; }
.date-chip {
  flex: 1;
  min-width: 36px;
  padding: 6px 2px;
  text-align: center;
  border-radius: 10px;
  font-size: 8px;
  font-weight: 700;
  color: var(--ink-60);
  background: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}
.date-chip b { font-size: 14px; }
.date-chip.active {
  background: var(--ink);
  color: var(--yellow);
}

/* Game rows */
.game-row {
  padding: 10px 12px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 6px;
  border: 1px solid var(--ink-08);
  transition: all 0.3s;
}
.game-row-gold {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFF69A 100%);
  border-color: transparent;
}
.game-row-meta {
  font-size: 9px;
  color: var(--ink-60);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.game-row-club {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.game-row-foot {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-60);
}
.game-row-price b { font-weight: 700; color: var(--ink); }
.game-row-fit {
  background: var(--ink);
  color: var(--yellow);
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 9px;
}
.game-row-friends {
  color: #B8892A;
  font-weight: 700;
}
.tourn-row {
  background: linear-gradient(135deg, var(--white) 0%, var(--mint-bg) 100%);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  padding: 140px 0;
  background: var(--surface);
}
.features-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 800px;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feature {
  grid-column: span 2;
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(22,24,15,0.12);
  border-color: var(--ink);
}
.feature-lg { grid-column: span 3; }
.feature-dark {
  grid-column: span 3;
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.feature-dark:hover { border-color: var(--yellow); }
.feature-accent {
  background: var(--yellow);
  border-color: var(--yellow);
}
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature-lg, .feature-dark { grid-column: span 1; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.feature-dark .feature-tag { background: var(--yellow); color: var(--ink); }
.feature-accent .feature-tag { background: var(--ink); color: var(--yellow); }
.feature-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--ink-40);
  font-style: italic;
}
.feature-dark .feature-num { color: rgba(255,255,255,0.4); }
.feature-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.feature-h em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.feature-dark .feature-h em { color: rgba(255,255,255,0.5); }
.feature p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-60);
  margin-bottom: auto;
}
.feature-dark p { color: rgba(255,255,255,0.65); }

.feature-visual {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--ink-08);
}
.feature-dark .feature-visual { border-top-color: rgba(255,255,255,0.1); }

.feature-code {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  line-height: 1.8;
  background: var(--ink);
  color: var(--surface);
  padding: 14px;
  border-radius: 10px;
}
.ft-k { color: var(--mint); }
.ft-o { color: var(--yellow); }
.ft-n { color: #FFB37A; }

/* map mini */
.feature-visual-map {
  position: relative;
  height: 130px;
  background:
    linear-gradient(rgba(22,24,15,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,24,15,0.04) 1px, transparent 1px),
    var(--mint-bg);
  background-size: 20px 20px;
  border-radius: 10px;
  overflow: hidden;
}
.map-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--ink);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.map-dot.active {
  width: 20px; height: 20px;
  background: var(--yellow);
  border-color: var(--ink);
  animation: pulseMap 2s infinite;
}
@keyframes pulseMap {
  0% { box-shadow: 0 0 0 0 rgba(242,255,58,0.8); }
  70% { box-shadow: 0 0 0 14px rgba(242,255,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,255,58,0); }
}

/* H2H feature */
.feature-hh { margin-top: auto; }
.hh-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.hh-row:last-child { border-bottom: none; }
.hh-rec {
  color: var(--mint);
  font-weight: 700;
  font-family: 'SF Mono', monospace;
  font-size: 12px;
}
.hh-rec-bad { color: #FF9B8A; }

/* weather row */
.feature-weather-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
}
.feature-weather-row .wi {
  width: 38px; height: 38px;
}
.feature-weather-row span:not(.wi) {
  font-size: 16px;
  color: var(--ink-40);
  font-weight: 700;
}
.wi-spin { animation: spin 8s linear infinite; }
.wi-rain { animation: rainShake 0.5s ease-in-out infinite alternate; }
@keyframes rainShake {
  from { transform: translateY(0); }
  to { transform: translateY(2px); }
}

/* streak */
.feature-streak { margin-top: auto; padding-top: 14px; }
.streak-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.sd {
  flex: 1;
  aspect-ratio: 1;
  max-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  background: var(--ink-08);
  color: var(--ink-40);
}
.sd.won { background: var(--won); color: var(--white); }
.sd.upcoming { background: var(--upcoming); color: var(--white); }
.sd.tournament { background: var(--tournament); color: var(--white); }
.streak-label {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* avatars */
.feature-avatars {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
}
.avt {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  border: 3px solid var(--yellow);
  margin-left: -14px;
  transition: transform 0.2s;
}
.avt:first-child { margin-left: 0; }
.avt:nth-child(2) { background: #FFB37A; color: var(--ink); }
.avt:nth-child(3) { background: var(--mint); color: var(--ink); }
.avt:nth-child(4) { background: var(--lavender); color: var(--ink); }
.avt-more { background: var(--surface); color: var(--ink); font-size: 11px; }
.feature:hover .avt { transform: translateY(-4px); }
.feature:hover .avt:nth-child(1) { transition-delay: 0s; }
.feature:hover .avt:nth-child(2) { transition-delay: 0.05s; }
.feature:hover .avt:nth-child(3) { transition-delay: 0.1s; }
.feature:hover .avt:nth-child(4) { transition-delay: 0.15s; }
.feature:hover .avt:nth-child(5) { transition-delay: 0.2s; }

/* ============================================
   CUP TAB SECTION
   ============================================ */
.cup {
  padding: 140px 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.cup::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 60%);
  border-radius: 50%;
}
.cup-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .cup-container { grid-template-columns: 1fr; gap: 50px; }
  .cup-phone { order: 2; }
}

.cup-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cup-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 480px;
}
.cup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cup-stat-v {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--yellow);
}
.cup-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* cup phone contents */
.phone-screen-cup { background: var(--surface); padding: 48px 14px 72px; }
.cup-hero h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.cup-hero p {
  font-size: 11px;
  color: var(--ink-60);
  margin-bottom: 10px;
}

.cup-next {
  background: linear-gradient(135deg, #EDE7FF 0%, #FCF6B5 100%);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 14px;
  border: 2px solid #8B5CF6;
}
.cup-next-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #4B3C8C;
}
.cup-next-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4B3C8C;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.cup-next-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cup-next-sub {
  font-size: 10px;
  color: var(--ink-60);
  margin-top: 2px;
}
.cup-next-meta {
  font-size: 10px;
  margin-top: 8px;
  color: #4B3C8C;
  font-weight: 600;
}

.cup-rival {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 5px;
}
.cup-rival-avt {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.cup-rival-name {
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.cup-rival-name small {
  font-weight: 500;
  color: var(--ink-60);
  font-size: 9px;
}
.cup-rival-rec {
  text-align: right;
  font-size: 9px;
  color: var(--won);
  font-weight: 600;
}
.cup-rival-rec b {
  font-size: 12px;
  display: block;
}
.cup-rival-bad { color: var(--lost); }

.cup-lb {
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
  opacity: 0.9;
}
.cup-lb-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink-08);
}
.cup-lb-row:last-child { border-bottom: none; }
.cup-lb-row.active {
  background: var(--yellow);
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  border: none;
}
.cup-lb-row span { color: var(--ink-60); }
.cup-lb-row.active span { color: var(--ink); font-weight: 700; }

.cup-teaser {
  background: linear-gradient(135deg, var(--ink) 0%, var(--purple-deep) 100%);
  color: var(--surface);
  padding: 14px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.cup-teaser-pill {
  position: absolute;
  top: 10px; right: 10px;
  padding: 3px 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.cup-teaser h5 {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cup-teaser p {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-bottom: 10px;
}
.cup-teaser button {
  background: var(--yellow);
  color: var(--ink);
  border: none;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* ============================================
   CHARACTERS
   ============================================ */
.chars {
  padding: 140px 0 120px;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.chars::before {
  content: 'BALLBALL · BALLBALL · BALLBALL · BALLBALL · BALLBALL · BALLBALL';
  position: absolute;
  top: 45%;
  left: -10%;
  right: -10%;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18vw;
  font-style: italic;
  color: var(--ink);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
}
.chars-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 800px;
}
.chars-title em {
  font-style: italic;
  color: rgba(22,24,15,0.5);
  font-weight: 400;
}
.chars-lead {
  font-size: 18px;
  max-width: 620px;
  color: var(--ink-80);
  line-height: 1.55;
  margin-bottom: 56px;
}
.chars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .chars-grid { grid-template-columns: repeat(2, 1fr); }
}
.char-card {
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.char-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 24px 40px rgba(22,24,15,0.18);
}
.char-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--mint-bg) 0%, var(--surface) 100%);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.char-card:nth-child(1) .char-img { background: linear-gradient(135deg, #FFE47D 0%, #FFB37A 100%); }
.char-card:nth-child(2) .char-img { background: linear-gradient(135deg, #B8DEDA 0%, #D6D1F5 100%); }
.char-card:nth-child(3) .char-img { background: linear-gradient(135deg, var(--ink) 0%, #3a3c30 100%); }
.char-card:nth-child(4) .char-img { background: linear-gradient(135deg, #FFB8E6 0%, #D6D1F5 100%); }
.char-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.char-card:hover .char-img img { transform: scale(1.08) rotate(-3deg); }
.char-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.char-desc {
  font-size: 14px;
  color: var(--ink-80);
  line-height: 1.45;
}

/* ============================================
   PEOPLE ROW — avatar stack + counter
   ============================================ */
.people {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--ink-08);
}
.people-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.people-avatars {
  display: flex;
}
.pa {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -14px;
  border: 3px solid var(--surface);
  box-shadow: 0 3px 10px rgba(22,24,15,0.15);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: var(--card);
}
.pa img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pa:first-child { margin-left: 0; }
.people:hover .pa { transform: translateY(-4px); }
.people:hover .pa:nth-child(1) { transition-delay: 0s; }
.people:hover .pa:nth-child(2) { transition-delay: 0.03s; }
.people:hover .pa:nth-child(3) { transition-delay: 0.06s; }
.people:hover .pa:nth-child(4) { transition-delay: 0.09s; }
.people:hover .pa:nth-child(5) { transition-delay: 0.12s; }
.people:hover .pa:nth-child(6) { transition-delay: 0.15s; }
.people:hover .pa:nth-child(7) { transition-delay: 0.18s; }
.people:hover .pa:nth-child(8) { transition-delay: 0.21s; }

.people-copy { font-family: var(--font-serif); }
.people-num {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.people-num b { font-weight: 700; }
.people-num span {
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink-60);
}
.people-lbl {
  font-size: 13px;
  color: var(--ink-60);
  font-family: var(--font-sans);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ============================================
   FEATURE SLIDER
   ============================================ */
.tour {
  padding: 120px 0 140px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.tour-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  max-width: 900px;
}
.tour-title em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}

.slider {
  position: relative;
}

.slider-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.slider-tabs::-webkit-scrollbar { display: none; }
.slider-tab {
  flex: 1;
  min-width: 160px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: inherit;
  color: var(--ink-60);
  position: relative;
  overflow: hidden;
}
.slider-tab::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slider-tab:hover { border-color: var(--ink); color: var(--ink); }
.slider-tab.active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.slider-tab.active::before { transform: scaleX(1); background: var(--yellow); }
.st-num {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  opacity: 0.55;
}
.st-n {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.slider-stage {
  position: relative;
  min-height: 740px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.45s, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media (max-width: 900px) {
  .slide { grid-template-columns: 1fr; gap: 40px; }
  .slider-stage { min-height: 900px; }
}

.slide-copy {
  padding-right: 20px;
}
.slide-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.slide-copy p {
  font-size: 18px;
  color: var(--ink-80);
  line-height: 1.55;
  max-width: 440px;
}

.slide-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.slide-phone .phone-frame {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slide.active .slide-phone:not(.slide-phone-fan) .phone-frame {
  animation: phoneIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes phoneIn {
  from { transform: perspective(1200px) rotateY(-14deg) rotateX(6deg) translateY(20px); opacity: 0; }
  to { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); opacity: 1; }
}
.slide-phone:not(.slide-phone-fan):hover .phone-frame { transform: perspective(1200px) rotateY(0) rotateX(0); }

/* ---- Real app screenshot inside phone-frame ---- */
.phone-screen-img {
  padding: 0;
  background: var(--ink);
  display: block;
  gap: 0;
}
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 40px;
  background: var(--surface);
}
.reason-weather .phone-shot {
  height: auto;
  object-fit: contain;
  object-position: center top;
}
.reason-weather .phone-screen-img {
  background:
    linear-gradient(180deg, rgba(246,255,238,0.96) 0%, rgba(255,255,255,0.96) 54%, rgba(246,255,238,0.92) 100%);
}

/* ---- Fan layout for 3 phones (slide 5 — extras) ---- */
.slide-phone-fan {
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 720px;
}
.slide-phone-fan .phone-fan-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slide-phone-fan .phone-fan-item .phone-frame {
  width: 280px;
  height: 600px;
  transform: none;
  animation: none;
}
.slide-phone-fan .phone-fan-item .phone-notch {
  width: 96px; height: 28px;
}
.slide-phone-fan .phone-fan-item .phone-notch::before {
  top: 11px;
  left: 21px;
  width: 38px;
  height: 6px;
}
.slide-phone-fan .phone-fan-left {
  transform: translate(-82%, -50%) rotate(-10deg);
  z-index: 1;
}
.slide-phone-fan .phone-fan-center {
  transform: translate(-50%, -54%) rotate(0);
  z-index: 3;
}
.slide-phone-fan .phone-fan-right {
  transform: translate(-18%, -50%) rotate(10deg);
  z-index: 2;
}
.slide-phone-fan .phone-fan-item .phone-frame {
  box-shadow:
    0 40px 80px -20px rgba(22,24,15,0.3),
    0 20px 50px -25px rgba(22,24,15,0.25),
    inset 0 0 0 2px rgba(255,255,255,0.06);
}
.slide.active .slide-phone-fan .phone-fan-left { animation: fanInLeft 0.75s cubic-bezier(0.2, 0.8, 0.2, 1); }
.slide.active .slide-phone-fan .phone-fan-center { animation: fanInCenter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1); }
.slide.active .slide-phone-fan .phone-fan-right { animation: fanInRight 0.75s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes fanInLeft {
  from { transform: translate(-50%, -40%) rotate(0); opacity: 0; }
  to { transform: translate(-82%, -50%) rotate(-10deg); opacity: 1; }
}
@keyframes fanInCenter {
  from { transform: translate(-50%, -40%) rotate(0) scale(0.9); opacity: 0; }
  to { transform: translate(-50%, -54%) rotate(0) scale(1); opacity: 1; }
}
@keyframes fanInRight {
  from { transform: translate(-50%, -40%) rotate(0); opacity: 0; }
  to { transform: translate(-18%, -50%) rotate(10deg); opacity: 1; }
}
@media (max-width: 900px) {
  .slide-phone-fan { min-height: 520px; }
  .slide-phone-fan .phone-fan-item .phone-frame {
    width: 200px;
    height: 430px;
    border-radius: 38px;
    padding: 8px;
  }
  .slide-phone-fan .phone-fan-item .phone-screen,
  .slide-phone-fan .phone-fan-item .phone-shot {
    border-radius: 30px;
  }
  .slide-phone-fan .phone-fan-item .phone-notch {
    top: 18px;
    width: 70px;
    height: 21px;
  }
  .slide-phone-fan .phone-fan-item .phone-notch::before {
    top: 8px;
    left: 15px;
    width: 28px;
    height: 5px;
  }
  .slide-phone-fan .phone-fan-left { transform: translate(-80%, -50%) rotate(-10deg); }
  .slide-phone-fan .phone-fan-right { transform: translate(-20%, -50%) rotate(10deg); }
  @keyframes fanInLeft {
    from { transform: translate(-50%, -40%) rotate(0); opacity: 0; }
    to { transform: translate(-80%, -50%) rotate(-10deg); opacity: 1; }
  }
  @keyframes fanInRight {
    from { transform: translate(-50%, -40%) rotate(0); opacity: 0; }
    to { transform: translate(-20%, -50%) rotate(10deg); opacity: 1; }
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  justify-content: center;
}
.slider-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--ink-08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slider-btn:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-2px);
}
.slider-progress {
  width: 240px;
  height: 3px;
  background: var(--ink-08);
  border-radius: 2px;
  overflow: hidden;
}
.slider-progress-bar {
  height: 100%;
  background: var(--ink);
  width: 20%;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 2px;
}

/* ============================================
   PHONE SCREEN VARIANTS
   ============================================ */

/* MAP screen */
.phone-screen-map {
  padding: 0 0 58px 0;
  overflow: hidden;
  position: relative;
  background: #E8EDDF;
}
.map-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 15px 15px, 15px 15px;
  transform: rotate(8deg);
}
.map-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.55;
}
.map-blob-1 {
  width: 280px; height: 200px;
  background: var(--mint);
  top: 15%; left: -20%;
}
.map-blob-2 {
  width: 240px; height: 180px;
  background: var(--yellow);
  bottom: 20%; right: -10%;
  opacity: 0.35;
}
.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100px;
  padding: 3px 8px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(22,24,15,0.2);
  transform: translate(-50%, -50%);
}
.map-pin::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--white);
}
.map-pin.active {
  background: var(--ink);
  color: var(--yellow);
  transform: translate(-50%, -50%) scale(1.15);
  animation: pinBounce 1.8s ease-in-out infinite;
}
.map-pin.active::after { border-top-color: var(--ink); }
.map-pin-1 { top: 22%; left: 30%; }
.map-pin-2 { top: 38%; left: 55%; }
.map-pin-3 { top: 50%; left: 22%; }
.map-pin-4 { top: 58%; left: 75%; }
.map-pin-5 { top: 68%; left: 42%; }
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%) scale(1.15); }
  50% { transform: translate(-50%, -62%) scale(1.15); }
}
.map-you {
  position: absolute;
  top: 45%; left: 40%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--upcoming);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.2);
}
.map-you::before {
  content: 'You';
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.map-card {
  position: absolute;
  bottom: 74px; left: 12px; right: 12px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(22,24,15,0.18);
  z-index: 5;
}
.map-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.map-card-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-60);
}
.map-card-fit {
  background: var(--ink);
  color: var(--yellow);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
}
.map-card-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.map-card-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-60);
  margin-top: 4px;
  font-weight: 600;
}

/* PROFILE screen */
.phone-screen-profile {
  padding: 48px 14px 72px;
  text-align: center;
}
.profile-hero {
  text-align: center;
  padding: 4px 0 10px;
}
.profile-avt-ring {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--yellow), var(--mint), var(--peach), var(--yellow));
  padding: 3px;
  margin: 0 auto 10px;
  position: relative;
}
.profile-avt-ring::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--white);
  border-radius: 50%;
}
.profile-avt-ring img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  padding: 6px;
}
.profile-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 6px;
}
.profile-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  color: var(--ink);
}
.profile-pill-y {
  background: var(--yellow);
  border-color: var(--yellow);
}
.profile-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.profile-bio {
  font-size: 11px;
  color: var(--ink-60);
  margin-top: 2px;
  font-style: italic;
}
.profile-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 14px 0 10px;
}
.pc {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 4px;
  border: 1px solid var(--ink-08);
  text-align: center;
}
.pc b {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.pc span {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--ink-60);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.my-week {
  background: var(--ink);
  color: var(--surface);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.my-week::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--yellow-soft), transparent 60%);
  border-radius: 50%;
}
.mw-streak {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.mw-dots {
  display: flex;
  gap: 5px;
  position: relative;
}
.mw-dots .sd {
  flex: 1;
  aspect-ratio: 1;
  max-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.mw-dots .sd.won { background: var(--won); color: var(--white); }
.mw-dots .sd.upcoming { background: var(--upcoming); color: var(--white); }
.mw-dots .sd.tournament { background: var(--tournament); color: var(--white); }

/* EXTRAS screen */
.phone-screen-extras {
  padding: 48px 14px 72px;
  gap: 8px;
}
.extras-card {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 11px 12px;
  border: 1px solid var(--ink-08);
}
.extras-card b {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.extras-card small {
  display: block;
  font-size: 10px;
  color: var(--ink-60);
  line-height: 1.3;
  margin-top: 1px;
}
.extras-ic {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.extras-card-ai { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.extras-card-ai small { color: rgba(255,255,255,0.6); }
.extras-card-weather .extras-wi { width: 38px; height: 38px; flex-shrink: 0; }
.extras-stack {
  flex-shrink: 0;
  display: flex;
}
.extras-stack span {
  width: 28px; height: 28px;
  margin-left: -8px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  background: var(--ink);
  color: var(--yellow);
}
.extras-stack span:first-child { margin-left: 0; background: #FFD76A; color: var(--ink); }
.extras-stack span:nth-child(2) { background: var(--mint); color: var(--ink); }
.extras-stack span:nth-child(3) { background: var(--lavender); color: var(--ink); }
.extras-ic-p { background: var(--tournament); color: var(--white); }
.extras-card-cup { background: linear-gradient(135deg, var(--lavender), #FCF6B5); border-color: transparent; }

/* ============================================
   SECRET SAUCE INTRO
   ============================================ */
.sauce-intro {
  padding: 120px 0 60px;
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sauce-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 64px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(22,24,15,0.12), var(--yellow), rgba(22,24,15,0.12), transparent);
}
.sauce-intro::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 92px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--yellow);
  filter: blur(9px);
  opacity: 0.72;
}
.sauce-intro .section-eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.sauce-intro-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sauce-intro-title em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.sauce-intro-lead {
  font-size: 20px;
  color: var(--ink-80);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   STEP CARD DECORATIONS — context-aware floating elements
   ============================================ */

/* ---- 01 LEVEL: level scale with matched pill ----
   The meter charges when the section enters view, then locks into the active level. */
.deco-level {
  --level-fill: 0%;
  --level-glow: 0;
  --level-ring: 0;
  --level-ring-scale: 0.72;
  --level-ring-rotate: 0deg;
  --level-spark-opacity: 0;
  --level-spark-scale: 0.42;
  --level-glow-scale: 0.78;
  --level-halo-size: 5px;
  --level-pulse-size: 18px;
  --level-onb-alpha: 0.08;
  --level-onb-glow: 8px;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.dl-pill {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--white);
  color: var(--ink-60);
  border: 1.5px solid var(--ink-08);
  box-shadow: 0 6px 18px rgba(22,24,15,0.06);
}
.dl-active {
  position: absolute;
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
  font-size: 30px;
  padding: 12px 24px;
  box-shadow:
    0 0 0 8px rgba(242,255,58,0.22),
    0 0 32px 6px rgba(242,255,58,0.55),
    0 0 70px 12px rgba(242,255,58,0.28),
    0 8px 20px rgba(22,24,15,0.12);
  z-index: 2;
  animation: none;
  transform-origin: center;
}
.dl-active::before,
.dl-active::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
}
.dl-active::before {
  border: 2px solid rgba(242,255,58,0.9);
  opacity: var(--level-ring, 0);
  transform: scale(var(--level-ring-scale, 0.72));
}
.dl-active::after {
  background:
    radial-gradient(circle, rgba(242,255,58,0.95) 0 2px, transparent 3px) 6% 42% / 16px 16px,
    radial-gradient(circle, rgba(22,24,15,0.75) 0 2px, transparent 3px) 92% 22% / 18px 18px,
    radial-gradient(circle, rgba(242,255,58,0.9) 0 2px, transparent 3px) 78% 86% / 14px 14px,
    radial-gradient(circle, rgba(22,24,15,0.55) 0 2px, transparent 3px) 20% 92% / 17px 17px;
  background-repeat: no-repeat;
  opacity: var(--level-ring, 0);
  transform: scale(var(--level-ring-scale, 0.72)) rotate(var(--level-ring-rotate, 0deg));
}
/* Non-active pills — each with its own quirk, no shared "float" */
/* Positions tuned to stay in the top ~110px and bottom ~90px "empty strips"
   of the card, avoiding overlap with copy (left) and phone mockup (right). */
.dl-p1 { top: 32px;  right: 38%; transform: rotate(-6deg); animation: dlRock 9s ease-in-out -2s infinite; }
.dl-p2 { top: 62px;  right: 22%; transform: rotate(4deg);  animation: dlDrift 13s ease-in-out -5s infinite; }
.dl-p3 { top: 40px;  right: 6%;  transform: rotate(5deg);  animation: dlRock 11s ease-in-out -1s infinite reverse; }
.dl-p4 { bottom: 40px; left: 50%; margin-left: -60px; }
.dl-p5 { bottom: 34px; right: 10%; transform: rotate(-4deg); animation: dlDrift 15s ease-in-out -9s infinite reverse; }
.dl-p6 { bottom: 48px; left: 10%; transform: rotate(-7deg); animation: dlRock 12s ease-in-out -4s infinite; }

/* Progress bar near bottom-left: a small "level charge" moment for the section. */
.dl-bar {
  position: absolute;
  bottom: 56px;
  left: 5%;
  width: min(280px, 31vw);
  height: 10px;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(22,24,15,0.11) 38px 40px),
    rgba(22,24,15,0.08);
  border-radius: 100px;
  overflow: visible;
  box-shadow:
    inset 0 0 0 1px rgba(22,24,15,0.05),
    0 14px 34px rgba(22,24,15,0.08);
}
.dl-bar::before,
.dl-bar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.dl-bar::before {
  inset: -8px -10px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(242,255,58,0.26), transparent 66%);
  opacity: var(--level-glow, 0);
  transform: scaleX(var(--level-glow-scale, 0.78));
}
.dl-bar::after {
  top: 50%;
  left: var(--level-fill, 0%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--yellow) 0 28%, rgba(242,255,58,0.58) 31% 50%, transparent 56%);
  filter: drop-shadow(0 0 14px rgba(242,255,58,1));
  opacity: var(--level-spark-opacity, 0);
  transform: translate(-50%, -50%) scale(var(--level-spark-scale, 0.42));
}
.dl-bar-fill {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f2ff3a, #fbff86 54%, #ffffff 82%, #f2ff3a);
  border-radius: 100px;
  box-shadow:
    0 0 12px rgba(242,255,58,0.74),
    0 0 30px rgba(242,255,58,0.32);
  transform: scaleX(0);
  transform-origin: left center;
  animation: none;
}
.reason-level.is-level-scroll .dl-pill,
.reason-level.is-level-scroll .dl-bar,
.reason-level.is-level-scroll .dl-bar::before,
.reason-level.is-level-scroll .dl-bar::after,
.reason-level.is-level-scroll .dl-bar-fill,
.reason-level.is-level-scroll .dl-active,
.reason-level.is-level-scroll .dl-active::before,
.reason-level.is-level-scroll .dl-active::after,
.reason-level.is-level-scroll .onb-level,
.reason-level.is-level-scroll .lvl-tick {
  animation: none !important;
  will-change: transform, opacity, width, box-shadow;
}
.reason-level.is-level-scroll .dl-active {
  box-shadow:
    0 0 0 var(--level-halo-size, 5px) rgba(242,255,58,0.18),
    0 0 var(--level-pulse-size, 18px) rgba(242,255,58,0.58),
    0 8px 20px rgba(22,24,15,0.12);
}
.reason-level.is-level-scroll .dl-pill.is-passed:not(.dl-active) {
  background: rgba(242,255,58,0.34);
  color: var(--ink);
  border-color: rgba(22,24,15,0.14);
  box-shadow:
    0 0 0 5px rgba(242,255,58,0.12),
    0 10px 22px rgba(22,24,15,0.08);
}
.reason-level.is-level-scroll .dl-pill.is-near:not(.dl-active) {
  background: var(--yellow);
  border-color: rgba(22,24,15,0.32);
  box-shadow:
    0 0 0 7px rgba(242,255,58,0.18),
    0 0 30px rgba(242,255,58,0.5),
    0 14px 28px rgba(22,24,15,0.1);
}
.reason-level.is-level-scroll .onb-level {
  box-shadow:
    0 0 0 1px rgba(242,255,58,var(--level-onb-alpha, 0.08)),
    0 0 var(--level-onb-glow, 8px) rgba(242,255,58,0.18);
}
.reason-level.is-level-active .dl-bar {
  animation: dlBarKick 5.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.reason-level.is-level-active .dl-bar::before {
  animation: dlTrackGlow 5.6s ease-out both;
}
.reason-level.is-level-active .dl-bar::after {
  animation: dlSparkRun 5.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reason-level.is-level-active .dl-bar-fill {
  animation:
    dlFillMax 5.6s cubic-bezier(0.16, 1, 0.3, 1) both,
    dlPulse 1.6s cubic-bezier(0.4, 0, 0.2, 1) 5.6s infinite;
}
.reason-level.is-level-active .dl-active {
  animation:
    dlTargetPop 5.6s cubic-bezier(0.16, 1, 0.3, 1) both,
    dlHeart 3.2s cubic-bezier(0.4, 0, 0.2, 1) 5.6s infinite;
}
.reason-level.is-level-active .dl-active::before {
  animation: dlBurstRing 1s cubic-bezier(0.16, 1, 0.3, 1) 4.75s both;
}
.reason-level.is-level-active .dl-active::after {
  animation: dlConfetti 1.2s ease-out 4.8s both;
}
.reason-level.is-level-active .dl-p1 {
  animation: dlRock 9s ease-in-out -2s infinite, dlValuePing 0.7s ease-out 0.25s 1 both;
}
.reason-level.is-level-active .dl-p2 {
  animation: dlDrift 13s ease-in-out -5s infinite, dlValuePing 0.7s ease-out 0.9s 1 both;
}
.reason-level.is-level-active .dl-p3 {
  animation: dlRock 11s ease-in-out -1s infinite reverse, dlValuePing 0.7s ease-out 1.55s 1 both;
}
.reason-level.is-level-active .dl-p5 {
  animation: dlDrift 15s ease-in-out -9s infinite reverse, dlValuePing 0.7s ease-out 3.65s 1 both;
}
.reason-level.is-level-active .dl-p6 {
  animation: dlRock 12s ease-in-out -4s infinite, dlValuePing 0.7s ease-out 4.35s 1 both;
}
@keyframes dlHeart {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.05); }
  28% { transform: scale(0.99); }
  42% { transform: scale(1.02); }
  60% { transform: scale(1); }
}
@keyframes dlRock {
  0%, 100% { transform: rotate(var(--r, -6deg)) translateY(0); }
  50% { transform: rotate(calc(var(--r, -6deg) + 1.5deg)) translateY(-3px); }
}
.dl-p1 { --r: -6deg; }
.dl-p3 { --r: 5deg; }
.dl-p6 { --r: -7deg; }
@keyframes dlDrift {
  0%, 100% { transform: rotate(var(--r2, 4deg)) translateX(0); }
  50% { transform: rotate(calc(var(--r2, 4deg) - 1deg)) translateX(6px); }
}
.dl-p2 { --r2: 4deg; }
.dl-p5 { --r2: -4deg; }
@keyframes dlBarKick {
  0% { transform: translateY(8px) scaleX(0.84); opacity: 0.55; }
  12% { transform: translateY(0) scaleX(1.02); opacity: 1; }
  22% { transform: translateY(0) scaleX(0.98); }
  100% { transform: translateY(0) scaleX(1); opacity: 1; }
}
@keyframes dlTrackGlow {
  0%, 16% { opacity: 0; transform: scaleX(0.8); }
  48% { opacity: 0.9; transform: scaleX(1.08); }
  76% { opacity: 0.28; transform: scaleX(1.16); }
  100% { opacity: 0; transform: scaleX(1.24); }
}
@keyframes dlFillMax {
  0% { width: 8%; filter: saturate(0.8); }
  14% { width: 22%; }
  30% { width: 38%; }
  46% { width: 55%; }
  60% { width: 66%; }
  77% { width: 84%; }
  92%, 100% { width: 100%; filter: saturate(1.25); }
}
@keyframes dlSparkRun {
  0% { left: 8%; opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
  9% { opacity: 1; transform: translate(-50%, -50%) scale(0.72); }
  24% { left: 22%; transform: translate(-50%, -50%) scale(0.86); }
  40% { left: 38%; transform: translate(-50%, -50%) scale(0.9); }
  56% { left: 55%; transform: translate(-50%, -50%) scale(1); }
  70% { left: 66%; transform: translate(-50%, -50%) scale(1.18); }
  86% { left: 84%; transform: translate(-50%, -50%) scale(0.96); }
  94% { left: 100%; opacity: 1; transform: translate(-50%, -50%) scale(1.42); }
  100% { left: 100%; opacity: 0; transform: translate(-50%, -50%) scale(2.2); }
}
@keyframes dlTargetPop {
  0% { transform: translateY(18px) scale(0.72); opacity: 0.58; filter: saturate(0.8); }
  46% { transform: translateY(10px) scale(0.86); opacity: 0.74; }
  62% { transform: translateY(0) scale(1.16); opacity: 1; filter: saturate(1.25); }
  72% { transform: translateY(0) scale(0.96); }
  84% { transform: translateY(-2px) scale(1.07); }
  100% { transform: translateY(0) scale(1); opacity: 1; filter: saturate(1); }
}
@keyframes dlBurstRing {
  0% { opacity: 0; transform: scale(0.72); }
  18% { opacity: 0.95; }
  100% { opacity: 0; transform: scale(1.55); }
}
@keyframes dlConfetti {
  0% { opacity: 0; transform: scale(0.72) rotate(0); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.45) rotate(18deg); }
}
@keyframes dlValuePing {
  0%, 100% {
    background: var(--white);
    color: var(--ink-60);
    border-color: var(--ink-08);
    box-shadow: 0 6px 18px rgba(22,24,15,0.06);
    filter: none;
  }
  44% {
    background: var(--yellow);
    color: var(--ink);
    border-color: rgba(22,24,15,0.28);
    box-shadow:
      0 0 0 7px rgba(242,255,58,0.24),
      0 12px 26px rgba(22,24,15,0.12),
      0 0 28px rgba(242,255,58,0.72);
    filter: saturate(1.25);
  }
}
@keyframes dlPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(242,255,58,0.7); }
  50% { box-shadow: 0 0 22px rgba(242,255,58,1); }
}

/* ---- 02 WEATHER: sun arcs, cloud drifts, rain falls ----
   Each element has its own distinct motion, tied to weather physics. */
.deco-weather {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.dw {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(22,24,15,0.1));
}
/* Sun — slow arc across the sky (translate in a curve), barely rotating */
.dw-sun {
  width: 110px;
  top: 22%;
  right: 6%;
  animation: dwSunArc 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
/* Cloud — pure horizontal drift, no bob */
.dw-cloud {
  width: 140px;
  top: 12%;
  right: 24%;
  opacity: 0.92;
  animation: dwCloudDrift 26s linear infinite;
}
/* Rain icon — shivers (like water vibrating), not floating */
.dw-rain {
  width: 82px;
  bottom: 22%;
  right: 11%;
  opacity: 0.88;
  animation: dwShiver 2.8s ease-in-out infinite;
  transform-origin: center 30%;
}
/* Partly cloudy — parked, just mild scale breathing */
.dw-partly {
  width: 68px;
  bottom: 20%;
  left: 7%;
  opacity: 0.78;
  animation: dwBreathe 7s ease-in-out infinite;
}
/* Raindrops — each one falls on its own timing, fast & vertical */
.dw-drop {
  position: absolute;
  top: 8%;
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, #6ea8ff 40%, #3b82f6 100%);
  border-radius: 100px;
  opacity: 0;
  animation: dwRain 1.6s linear infinite;
}
.dw-drop-1 { left: 11%; animation-duration: 1.9s; animation-delay: -0.2s; }
.dw-drop-2 { left: 18%; animation-duration: 1.4s; animation-delay: -0.9s; }
.dw-drop-3 { left: 28%; animation-duration: 2.1s; animation-delay: -0.5s; }
.dw-drop-4 { left: 66%; animation-duration: 1.7s; animation-delay: -1.3s; }
.dw-drop-5 { left: 78%; animation-duration: 1.3s; animation-delay: -0.3s; }
.dw-chip {
  position: absolute;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(22,24,15,0.12);
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(22,24,15,0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}
.dw-chip-rain {
  top: 18%;
  left: 12%;
}
.dw-chip-outdoor {
  bottom: 15%;
  left: 14%;
  color: rgba(22,24,15,0.64);
}
.reason-weather.is-weather-scroll .dw,
.reason-weather.is-weather-scroll .dw-drop,
.reason-weather.is-weather-scroll .dw-chip,
.reason-weather.is-weather-scroll .wx-bg,
.reason-weather.is-weather-scroll .wx-ic,
.reason-weather.is-weather-scroll .wx-pref,
.reason-weather.is-weather-scroll .game-row {
  animation: none !important;
  will-change: transform, opacity, filter;
}
.reason-weather.is-weather-scroll .game-row {
  transition: none;
}
@keyframes dwSunArc {
  0% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(-18px, -20px) rotate(20deg); }
  100% { transform: translate(-36px, 10px) rotate(45deg); }
}
@keyframes dwCloudDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-80px); }
  100% { transform: translateX(0); }
}
@keyframes dwShiver {
  0%, 100% { transform: rotate(-1.5deg); }
  25% { transform: rotate(1.8deg); }
  50% { transform: rotate(-0.8deg); }
  75% { transform: rotate(1.2deg); }
}
@keyframes dwBreathe {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.04); opacity: 0.88; }
}
@keyframes dwRain {
  0% { top: -24px; opacity: 0; }
  8% { opacity: 0.55; }
  88% { opacity: 0.55; }
  100% { top: 110%; opacity: 0; }
}

/* ---- 05 VIBE: floating interest tags ----
   Varied motion per tag: some drift sideways, some rotate gently,
   some sit still. Different durations, no shared timer. */
.deco-vibe {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.deco-vibe::before,
.deco-vibe::after {
  content: "";
  position: absolute;
  inset: 12% 4%;
  background:
    linear-gradient(110deg, transparent 0 28%, rgba(242,255,58,0.08) 28% 29%, transparent 29% 100%),
    linear-gradient(70deg, transparent 0 42%, rgba(255,255,255,0.06) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255,255,255,0.04) 42px 43px);
  opacity: 0.72;
  transform: skewY(-4deg);
}
.deco-vibe::after {
  inset: 22% 10%;
  opacity: 0.4;
  transform: skewY(5deg);
}
.dv-tag {
  position: absolute;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  z-index: 1;
}
/* Highlight tags (yellow-tinted) — two of them, breathing glow */
.dv-accent {
  background: rgba(242,255,58,0.14);
  border-color: rgba(242,255,58,0.35);
  color: var(--yellow);
  animation: dvGlow 4.8s ease-in-out infinite;
}
.dv-t1 { top: 14%; right: 9%;  transform: rotate(-3deg); animation: dvSway 14s ease-in-out -3s infinite; }
.dv-t2 { top: 9%;  left: 13%; transform: rotate(4deg);  animation: dvSlide 18s ease-in-out -7s infinite; }
.dv-t3 { top: 44%; left: 3%;  transform: rotate(-2deg); }
.dv-t4 { top: 30%; right: 4%;  transform: rotate(5deg);  animation: dvGlow 4.8s ease-in-out infinite, dvSlide 22s ease-in-out -4s infinite; }
.dv-t5 { bottom: 30%; left: 7%; transform: rotate(3deg); animation: dvSway 11s ease-in-out -2s infinite reverse; }
.dv-t6 { bottom: 18%; right: 13%; transform: rotate(-4deg); }
.dv-t7 { bottom: 38%; right: 3%; transform: rotate(2deg); animation: dvGlow 5.4s ease-in-out infinite, dvSway 16s ease-in-out -9s infinite; }
.dv-t8 { bottom: 8%; left: 29%; transform: rotate(-5deg); animation: dvSlide 20s ease-in-out -12s infinite reverse; }
.reason-soon.is-vibe-scroll .dv-tag,
.reason-soon.is-vibe-scroll .vibe-card,
.reason-soon.is-vibe-scroll .vibe-match,
.reason-soon.is-vibe-scroll .vibe-match-row,
.reason-soon.is-vibe-scroll .vibe-lock {
  animation: none !important;
  will-change: transform, opacity, box-shadow, filter;
}
.reason-soon.is-vibe-scroll .dv-tag.is-selected {
  background: var(--yellow);
  color: var(--ink);
  border-color: rgba(242,255,58,0.9);
  box-shadow:
    0 0 0 7px rgba(242,255,58,0.14),
    0 0 34px rgba(242,255,58,0.34),
    0 20px 42px rgba(0,0,0,0.24);
}
.reason-soon.is-vibe-scroll .dv-tag.is-muted {
  opacity: 0.32;
  filter: saturate(0.6);
}
@keyframes dvSway {
  0%, 100% { transform: rotate(var(--rv, -3deg)) translateY(0); }
  50% { transform: rotate(calc(var(--rv, -3deg) - 1.5deg)) translateY(-8px); }
}
.dv-t1 { --rv: -3deg; }
.dv-t5 { --rv: 3deg; }
.dv-t7 { --rv: 2deg; }
@keyframes dvSlide {
  0%, 100% { transform: rotate(var(--rh, 4deg)) translateX(0); }
  50% { transform: rotate(calc(var(--rh, 4deg) + 1deg)) translateX(10px); }
}
.dv-t2 { --rh: 4deg; }
.dv-t4 { --rh: 5deg; }
.dv-t8 { --rh: -5deg; }
@keyframes dvGlow {
  0%, 100% {
    background: rgba(242,255,58,0.10);
    border-color: rgba(242,255,58,0.3);
    box-shadow: 0 0 0 0 rgba(242,255,58,0);
  }
  50% {
    background: rgba(242,255,58,0.18);
    border-color: rgba(242,255,58,0.55);
    box-shadow: 0 0 24px 2px rgba(242,255,58,0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dl-active, .dl-p1, .dl-p2, .dl-p3, .dl-p5, .dl-p6,
  .dl-active::before, .dl-active::after,
  .dl-bar, .dl-bar::before, .dl-bar::after,
  .dl-bar-fill,
  .onb-level, .lvl-tick,
  .dw-sun, .dw-cloud, .dw-rain, .dw-partly, .dw-drop, .dw-chip,
  .dv-tag {
    animation: none !important;
  }
  .dl-bar-fill { width: var(--level-fill, 65%); }
}

@media (max-width: 900px) {
  .dl-pill { font-size: 16px; padding: 6px 12px; }
  .dl-active { font-size: 20px; padding: 8px 16px; }
  .dl-p1, .dl-p3, .dl-p5 { display: none; }
  .dw-sun { width: 70px; }
  .dw-cloud { width: 90px; }
  .dw-rain { width: 54px; }
  .dw-partly { width: 46px; }
  .dw-chip { font-size: 10px; padding: 7px 11px; }
  .dw-chip-rain { left: 8%; }
  .dw-chip-outdoor { display: none; }
  .dv-tag { font-size: 12px; padding: 7px 12px; }
  .dv-t3, .dv-t7 { display: none; }
}

/* ============================================
   STEP BADGE — number in a circular yellow pill (myachmyach-style)
   ============================================ */
.step-badge {
  position: absolute;
  top: 36px;
  left: 44px;
  z-index: 4;
  pointer-events: none;
}
.step-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  box-shadow:
    0 0 0 8px rgba(242,255,58,0.22),
    0 0 34px 6px rgba(242,255,58,0.55),
    0 0 70px 14px rgba(242,255,58,0.28),
    0 6px 18px rgba(22,24,15,0.12);
}
/* On yellow card (chars/DNA) — ink pill, glow stays yellow for contrast on yellow bg */
.step-badge-ink span {
  background: var(--ink);
  color: var(--yellow);
  box-shadow:
    0 0 0 8px rgba(22,24,15,0.15),
    0 0 34px 6px rgba(22,24,15,0.35),
    0 0 70px 14px rgba(22,24,15,0.18),
    0 6px 18px rgba(22,24,15,0.18);
}
/* On dark card (reason-soon) — yellow pill with stronger yellow glow on dark bg */
.step-badge-dark span {
  background: var(--yellow);
  color: var(--ink);
  box-shadow:
    0 0 0 8px rgba(242,255,58,0.18),
    0 0 40px 10px rgba(242,255,58,0.7),
    0 0 90px 20px rgba(242,255,58,0.4),
    0 6px 18px rgba(0,0,0,0.3);
}
@media (max-width: 720px) {
  .step-badge { top: 22px; left: 22px; }
  .step-badge span { width: 58px; height: 58px; font-size: 28px; }
}

/* ============================================
   REASON BLOCKS — alternating showcase
   ============================================ */
.reason {
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}
.reason-level { background: var(--white); }
.reason-weather { background: var(--mint-bg); }
.reason-people { background: var(--white); }
.reason-soon { background: var(--ink); color: var(--surface); }
.reason-soon::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
}

.reason-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.reason-container.reason-reverse {
  grid-template-columns: 380px 1fr;
}
.reason-container.reason-reverse .reason-copy {
  order: 2;
}
.reason-container.reason-reverse .reason-phone {
  order: 1;
}
@media (max-width: 900px) {
  .reason-container,
  .reason-container.reason-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .reason-container.reason-reverse .reason-copy { order: 1; }
  .reason-container.reason-reverse .reason-phone { order: 2; }
}

.reason-copy { max-width: 560px; }

.reason-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.reason-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-60);
  letter-spacing: 0;
}
.reason-soon .reason-num { color: rgba(255,255,255,0.6); }
.reason-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 5px 11px;
  border-radius: 100px;
}
.reason-soon-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
}
.reason-soon .reason-soon-pill {
  background: var(--yellow);
  color: var(--ink);
}
.reason-soon .reason-tag {
  background: rgba(255,255,255,0.12);
  color: var(--surface);
}

.reason-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.reason-p {
  font-size: 17px;
  color: var(--ink-80);
  line-height: 1.55;
  margin-bottom: 14px;
}
.reason-p-small { font-size: 14px; color: var(--ink-60); font-style: italic; }
.reason-soon .reason-p { color: rgba(255,255,255,0.78); }
.reason-soon .reason-p-small { color: rgba(255,255,255,0.55); }
.reason-p b {
  font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  padding: 0 4px;
}

.reason-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Orbital people photos — reason-people */
.reason-phone-orbits {
  padding: 60px 30px;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow:
    0 12px 34px rgba(22,24,15,0.14),
    0 0 0 1px rgba(22,24,15,0.06);
  z-index: 3;
  animation: orbitFloat 5s ease-in-out infinite alternate;
  background: var(--surface);
  isolation: isolate;
}
.orbit img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Per-orbit crop tuning for the real court photos. */
.orbit-1 img { object-position: 68% 44%; }
.orbit-2 img { object-position: 70% 42%; }
.orbit-3 img { object-position: 34% 38%; }
.orbit-4 img { object-position: 30% 40%; }
.orbit-5 img { object-position: 50% 22%; }
.orbit-6 img { object-position: 48% 40%; }
.orbit::after {
  content: attr(data-person);
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translate(-50%, 100%);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  border: 1px solid rgba(22,24,15,0.08);
  box-shadow: 0 10px 24px rgba(22,24,15,0.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.orbit-active {
  border-color: var(--yellow);
  box-shadow:
    0 0 0 7px rgba(242,255,58,0.2),
    0 18px 42px rgba(22,24,15,0.16),
    0 0 32px rgba(242,255,58,0.34);
}
.orbit-active::after {
  opacity: 1;
}
.orbit-1 { width: 76px; height: 76px; top: 26px; left: -2px; animation-delay: 0s; }
.orbit-2 { width: 58px; height: 58px; top: 10%; right: 4%; animation-delay: 0.4s; }
.orbit-3 { width: 64px; height: 64px; top: 43%; left: -22px; animation-delay: 1.1s; }
.orbit-4 { width: 54px; height: 54px; bottom: 19%; right: -9px; animation-delay: 0.7s; }
.orbit-5 { width: 74px; height: 74px; bottom: -3px; left: 15%; animation-delay: 1.6s; }
.orbit-6 { width: 48px; height: 48px; bottom: 38%; right: 7%; animation-delay: 1.3s; }
@keyframes orbitFloat {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}
.orbit-line {
  position: absolute;
  inset: 38px 24px;
  border: 1px solid rgba(22,24,15,0.08);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.orbit-line::before,
.orbit-line::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px dashed rgba(22,24,15,0.1);
}
.orbit-line::after {
  inset: 30%;
  border-style: solid;
  border-color: rgba(242,255,58,0.32);
}
.reason-phone-orbits .phone-frame {
  z-index: 2;
  position: relative;
}
.reason-people.is-people-scroll .orbit,
.reason-people.is-people-scroll .orbit::after,
.reason-people.is-people-scroll .orbit-line,
.reason-people.is-people-scroll .crew-row,
.reason-people.is-people-scroll .club-chip {
  animation: none !important;
  will-change: transform, opacity, box-shadow, filter;
}
.reason-people.is-people-scroll .crew-row {
  transition: none;
}
@media (max-width: 900px) {
  .reason-phone-orbits {
    width: 100%;
    padding: 34px 0 18px;
  }
  .orbit-1, .orbit-5 { width: 56px; height: 56px; }
  .orbit-2, .orbit-3, .orbit-4, .orbit-6 { width: 44px; height: 44px; }
  .orbit-1 { top: -8px; left: 10px; }
  .orbit-2 { top: 18px; right: 4px; }
  .orbit-3 { left: 2px; }
  .orbit-4 { right: 4px; }
  .orbit-5 { left: 18%; }
  .orbit-6 { right: 9%; }
  .orbit::after { display: none; }
}
.reason-phone .phone-frame {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reason-container.reason-reverse .phone-frame {
  transform: perspective(1200px) rotateY(3deg) rotateX(1deg);
}
.reason-phone:hover .phone-frame {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

/* ============================================
   ONBOARDING SCREEN (Reason 01)
   ============================================ */
.phone-screen-onb {
  padding: 48px 14px 72px;
  background: var(--surface);
}
.onb-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-40);
  text-transform: uppercase;
  margin-top: 2px;
}
.onb-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 6px 0 14px;
  line-height: 1.1;
}
.onb-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 12px;
  margin-bottom: 8px;
  position: relative;
}
.onb-option:first-of-type {
  border-color: var(--ink);
  background: linear-gradient(135deg, var(--yellow-soft), var(--white) 60%);
}
.onb-option-ic {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.onb-option b {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.onb-option small {
  display: block;
  font-size: 10px;
  color: var(--ink-60);
  margin-top: 2px;
  line-height: 1.3;
}
.onb-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
}
.onb-level {
  margin-top: 14px;
  padding: 12px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 12px;
}
.onb-level-hd {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.onb-level-scale {
  display: flex;
  justify-content: space-between;
  gap: 3px;
}
.lvl-tick {
  flex: 1;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 0;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
}
.lvl-tick.active {
  background: var(--yellow);
  color: var(--ink);
  transform: scale(1.08);
}
.onb-level-foot {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  text-align: center;
}
.reason-level.is-level-active .onb-level {
  animation: onbLevelWake 5.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reason-level.is-level-active .lvl-tick:nth-child(1) {
  animation: onbTickScan 0.58s ease-out 0.35s both;
}
.reason-level.is-level-active .lvl-tick:nth-child(2) {
  animation: onbTickScan 0.58s ease-out 0.85s both;
}
.reason-level.is-level-active .lvl-tick:nth-child(3) {
  animation: onbTickScan 0.58s ease-out 1.35s both;
}
.reason-level.is-level-active .lvl-tick:nth-child(5) {
  animation: onbTickScan 0.58s ease-out 3.2s both;
}
.reason-level.is-level-active .lvl-tick:nth-child(6) {
  animation: onbTickScan 0.58s ease-out 3.7s both;
}
.reason-level.is-level-active .lvl-tick.active {
  animation: onbActiveLock 5.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes onbLevelWake {
  0%, 16% {
    box-shadow: 0 0 0 rgba(242,255,58,0);
    transform: translateY(6px);
  }
  44% {
    box-shadow:
      0 0 0 1px rgba(242,255,58,0.24),
      0 0 28px rgba(242,255,58,0.2);
  }
  72% {
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(242,255,58,0.36),
      0 0 40px rgba(242,255,58,0.28);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(242,255,58,0);
  }
}
@keyframes onbTickScan {
  0%, 100% {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    box-shadow: none;
  }
  45% {
    background: rgba(242,255,58,0.2);
    color: var(--surface);
    box-shadow: inset 0 0 0 1px rgba(242,255,58,0.22);
  }
}
@keyframes onbActiveLock {
  0%, 42% {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    transform: scale(1);
    box-shadow: none;
  }
  58% {
    background: var(--yellow);
    color: var(--ink);
    transform: scale(1.18);
    box-shadow:
      0 0 0 4px rgba(242,255,58,0.16),
      0 0 18px rgba(242,255,58,0.55);
  }
  72% { transform: scale(1.04); }
  100% {
    background: var(--yellow);
    color: var(--ink);
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(242,255,58,0.2);
  }
}

/* ============================================
   WEATHER SCREEN (Reason 02)
   ============================================ */
.phone-screen-wx {
  padding: 48px 14px 72px;
}
.wx-big {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 140px;
  padding: 14px;
  background: linear-gradient(135deg, #6B9DC7 0%, #A8BDD6 50%, #D4D4D4 100%);
  color: var(--white);
  margin-bottom: 14px;
}
.wx-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.wx-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,24,15,0.1), rgba(22,24,15,0.4));
}
.wx-big > * { position: relative; z-index: 1; }
.wx-city {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wx-cond {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 2px;
}
.wx-ic {
  position: absolute;
  top: 10px; right: 10px;
  width: 50px; height: 50px;
  z-index: 1;
  animation: rainShake 0.6s ease-in-out infinite alternate;
}
.wx-temp {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 28px;
}
.wx-pref {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
}
.game-row.dimmed {
  opacity: 0.55;
  background: var(--card);
}

/* ============================================
   CREW SCREEN (Reason 03)
   ============================================ */
.phone-screen-crew {
  padding: 48px 14px 72px;
}
.crew-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  padding: 0 2px;
}
.crew-hd h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.crew-count {
  font-size: 10px;
  color: var(--ink-60);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.crew-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 6px;
}
.crew-avt {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  flex-shrink: 0;
}
img.crew-avt {
  object-fit: cover;
  display: block;
  border: 2px solid var(--surface);
  box-shadow: 0 4px 10px rgba(22,24,15,0.12);
}
.crew-meta { flex: 1; min-width: 0; }
.crew-meta b {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.crew-meta small {
  display: block;
  font-size: 10px;
  color: var(--ink-60);
  line-height: 1.3;
}
.crew-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--card);
  color: var(--ink-60);
  white-space: nowrap;
}
.crew-pill-live {
  background: var(--won);
  color: var(--white);
  animation: pulse 2s infinite;
}
.reason-people.is-people-scroll .crew-row:first-of-type {
  border-color: rgba(242,255,58,0.72);
  background: linear-gradient(135deg, var(--white), rgba(242,255,58,0.22));
}
.reason-people.is-people-scroll .crew-row:first-of-type .crew-avt {
  border-color: var(--yellow);
}
.clubs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 4px;
}
.club-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 100px;
  color: var(--ink);
}
.club-chip-fav {
  background: var(--yellow);
  border-color: var(--yellow);
  font-weight: 700;
}

/* ============================================
   CHARS CTA (Reason 04)
   ============================================ */
.chars-cta {
  display: flex;
  width: fit-content;
  margin: 48px auto 0;
}

/* ============================================
   VIBE SCREEN (Reason 05 SOON)
   ============================================ */
.phone-screen-vibe {
  padding: 48px 14px 72px;
  background:
    linear-gradient(180deg, #f7ffef 0%, #ffffff 42%, #f3ffe9 100%);
}
.vibe-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.vibe-hd h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.vibe-soon-pill {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
}
.vibe-radar-card {
  --vibe-lock: 0;
  position: relative;
  min-height: 178px;
  margin-bottom: 10px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,24,15,0.96), rgba(22,24,15,0.9)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(242,255,58,0.08) 18px 19px);
  color: var(--surface);
  border: 1px solid rgba(242,255,58,0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 18px 36px rgba(22,24,15,0.13);
}
.vibe-radar-card::before,
.vibe-radar-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(242,255,58,0.14);
  transform: scale(calc(0.82 + var(--vibe-lock, 0) * 0.12));
  opacity: calc(0.34 + var(--vibe-lock, 0) * 0.42);
}
.vibe-radar-card::after {
  inset: 44px;
  border-style: dashed;
  transform: scale(calc(0.9 + var(--vibe-lock, 0) * 0.1)) rotate(calc(var(--vibe-lock, 0) * 24deg));
}
.vibe-radar-ring,
.vibe-radar-beam,
.vibe-radar-core,
.vibe-node {
  position: absolute;
  z-index: 1;
}
.vibe-radar-ring {
  inset: 24px;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, rgba(242,255,58,0.95) calc(var(--vibe-lock, 0) * 300deg), rgba(255,255,255,0.08) 0);
  opacity: 0.76;
  mask: radial-gradient(circle, transparent 58%, #000 60%);
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%);
}
.vibe-radar-ring-2 {
  inset: 54px;
  opacity: 0.48;
  transform: rotate(38deg);
}
.vibe-radar-beam {
  top: 50%;
  left: 50%;
  width: 92px;
  height: 1px;
  transform-origin: left center;
  transform: rotate(calc(-28deg + var(--vibe-lock, 0) * 128deg));
  background: linear-gradient(90deg, rgba(242,255,58,0.9), transparent);
  box-shadow: 0 0 18px rgba(242,255,58,0.7);
}
.vibe-radar-core {
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%) scale(calc(0.94 + var(--vibe-lock, 0) * 0.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow:
    0 0 0 8px rgba(242,255,58,0.1),
    0 0 calc(14px + var(--vibe-lock, 0) * 24px) rgba(242,255,58,0.45);
}
.vibe-radar-core b {
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1;
}
.vibe-radar-core small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vibe-node {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
  transform: scale(calc(0.92 + var(--vibe-lock, 0) * 0.08));
}
.vibe-node.is-active {
  background: rgba(242,255,58,0.18);
  border-color: rgba(242,255,58,0.48);
  color: var(--yellow);
  box-shadow: 0 0 18px rgba(242,255,58,0.18);
}
.vibe-node-1 { top: 18px; left: 16px; }
.vibe-node-2 { top: 24px; right: 14px; }
.vibe-node-3 { bottom: 22px; left: 18px; }
.vibe-node-4 { right: 16px; bottom: 18px; }
.vibe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.vibe-card {
  background: var(--white);
  border-radius: 12px;
  padding: 9px 10px;
  border: 1px solid var(--ink-08);
  box-shadow: 0 8px 18px rgba(22,24,15,0.04);
}
.reason-soon.is-vibe-scroll .vibe-card.is-active {
  border-color: rgba(242,255,58,0.78);
  background: linear-gradient(135deg, var(--white), rgba(242,255,58,0.24));
  box-shadow: 0 10px 24px rgba(22,24,15,0.08);
}
.vibe-card-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.vibe-card-val {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 3px;
}
.vibe-match {
  background: linear-gradient(135deg, #f7ffd7 0%, #fffcc8 100%);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(22,24,15,0.08);
}
.vibe-match-hd {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.vibe-match-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.vibe-match-name {
  flex: 1;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}
.vibe-match-pct {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.vibe-match-pct::after {
  content: "%";
  font-family: inherit;
  font-size: 11px;
}
.vibe-avt {
  color: var(--ink);
  border: 2px solid var(--surface);
  box-shadow: 0 4px 12px rgba(22,24,15,0.12);
}
.vibe-avt-a { background: linear-gradient(135deg,#FFD76A,#FFB37A); }
.vibe-avt-m { background: linear-gradient(135deg,#8DCEC3,#FCF6B5); }
.vibe-lock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.72);
  border-radius: 10px;
  border: 1px dashed var(--ink-20);
}
.vibe-lock-ic {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--yellow);
  border-radius: 8px;
}
.vibe-lock b {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}
.vibe-lock small {
  display: block;
  font-size: 9px;
  color: var(--ink-60);
  margin-top: 1px;
}

/* ============================================
   THREE SCORES — game/tournament cards
   ============================================ */
.scores {
  padding: 140px 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.scores::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(242,255,58,0.08) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
}
.scores-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 900px;
}
.scores-title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.scores-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 56px;
}

.score-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sc-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px 28px 30px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -15px rgba(242,255,58,0.22);
}
.sc-card-tourn {
  background: linear-gradient(160deg, var(--white) 0%, #FBF4E2 100%);
}

.sc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.sc-card-kind {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  text-transform: uppercase;
}
.sc-card-cta {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 100px;
}
.sc-card-club {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.sc-card-sub {
  font-size: 13px;
  color: var(--ink-60);
  margin-top: 4px;
  margin-bottom: 22px;
}

.sc-card-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 20px;
  border-top: 1px dashed var(--ink-08);
}
@media (max-width: 720px) { .sc-card-scores { grid-template-columns: 1fr; } }

.sc-s {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-s-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.sc-s-top span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-60);
  text-transform: uppercase;
}
.sc-s-top b {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sc-s-top b small {
  font-size: 11px;
  color: var(--ink-60);
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--font-sans);
}
.sc-s-bar {
  height: 6px;
  background: var(--ink-08);
  border-radius: 4px;
  overflow: hidden;
}
.sc-s-fill {
  height: 100%;
  width: 100%;
  background: var(--c, var(--yellow));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
}
.scores.is-scores-scroll .sc-card,
.scores.is-scores-scroll .sc-s,
.scores.is-scores-scroll .sc-s-fill,
.scores.is-scores-scroll [data-score] {
  will-change: transform, opacity;
}
.sc-s-foot {
  font-size: 11px;
  color: var(--ink-60);
  line-height: 1.35;
  font-style: italic;
}
/* ============================================
   HOW WE MATCH — 5 inputs (legacy)
   ============================================ */
.match {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.match::before {
  content: '';
  position: absolute;
  top: 20%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--yellow-soft) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.match-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 900px;
}
.match-title em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.match-lead {
  font-size: 18px;
  color: var(--ink-80);
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 56px;
}
.match-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .match-grid { grid-template-columns: repeat(3, 1fr); }
  .match-grid > :nth-child(4), .match-grid > :nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 720px) {
  .match-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .match-grid { grid-template-columns: 1fr; }
}

.match-card {
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 22px;
  padding: 18px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.match-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 26px 40px -20px rgba(22,24,15,0.12);
}
.match-visual {
  aspect-ratio: 1.4;
  background: linear-gradient(135deg, var(--mint-bg) 0%, var(--surface) 100%);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.match-num {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-40);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.match-h {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.15;
}
.match-card p {
  font-size: 13px;
  color: var(--ink-80);
  line-height: 1.45;
  margin-top: auto;
}
.match-cta {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 100px;
  width: fit-content;
  transition: transform 0.2s;
}
.match-cta:hover { transform: translateX(3px); }

.match-card-dna { background: linear-gradient(160deg, #FFF6D4 0%, var(--white) 100%); }

/* SOON card */
.match-card-soon {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, var(--card) 100%);
}
.match-card-soon .match-h,
.match-card-soon .match-num,
.match-card-soon p { opacity: 0.55; }
.match-soon-pill {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 100px;
  z-index: 2;
}

/* Level bars visual */
.match-visual-level { background: linear-gradient(135deg, #FFE47D 0%, var(--surface) 100%); }
.mv-bar {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 60%;
  width: 100%;
}
.mv-bar span {
  flex: 1;
  background: var(--ink-08);
  border-radius: 3px;
  height: 40%;
}
.mv-bar span:nth-child(1) { height: 20%; }
.mv-bar span:nth-child(2) { height: 35%; }
.mv-bar span:nth-child(3) { height: 60%; }
.mv-bar span:nth-child(4) { height: 85%; }
.mv-bar span:nth-child(5) { height: 60%; }
.mv-bar span:nth-child(6) { height: 40%; }
.mv-bar span:nth-child(7) { height: 25%; }
.mv-bar span.on { background: var(--ink); }
.mv-bar span.on.hi { background: var(--yellow); border: 2px solid var(--ink); }
.mv-label {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid var(--ink-08);
  white-space: nowrap;
}

/* Context visual — clubs + weather + location */
.match-visual-context {
  background: linear-gradient(135deg, #B8DEDA 0%, var(--surface) 100%);
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  justify-content: center;
  align-items: stretch;
}
.mv-ctx-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mv-ctx-pin { font-size: 12px; }
.mv-ctx-ic { width: 16px; height: 16px; }
.mv-ctx-lbl { font-family: var(--font-serif); font-size: 11px; font-weight: 700; flex: 1; }

/* Friends visual */
.match-visual-friends {
  background: linear-gradient(135deg, #FFD7B5 0%, #D6D1F5 100%);
}
.mv-friends { display: flex; }
.mv-fr {
  width: 38px; height: 38px;
  border-radius: 50%;
  margin-left: -10px;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.mv-fr:first-child { margin-left: 0; }
.mv-fr.more { background: var(--ink); color: var(--yellow); font-size: 11px; }

/* DNA visual — 4 characters */
.match-visual-dna {
  background: linear-gradient(135deg, #FCF6B5 0%, #FFE47D 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 6px;
  aspect-ratio: 1.4;
}
.mv-dna-ch {
  width: 100%; height: 100%;
  object-fit: contain;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 3px;
  transition: transform 0.3s;
}
.mv-dna-ch:hover { transform: scale(1.08) rotate(-3deg); }

/* Vibe visual — meter */
.match-visual-vibe {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--surface) 100%);
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.mv-vibe-meter {
  width: 88%;
  position: relative;
  padding: 10px 0 22px;
}
.mv-vibe-track {
  height: 6px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--yellow) 50%, #FB3600 100%);
  border-radius: 4px;
  opacity: 0.5;
}
.mv-vibe-dot {
  position: absolute;
  top: 4px;
  left: 65%;
  width: 18px; height: 18px;
  background: var(--ink);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(22,24,15,0.2);
  transform: translateX(-50%);
}
.mv-vibe-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   THREE SCORES — dark section
   ============================================ */
.scores {
  padding: 140px 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.scores::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(242,255,58,0.1) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
}
.scores-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 900px;
}
.scores-title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.scores-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 64px;
}
.scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .scores-grid { grid-template-columns: 1fr; } }

.score-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 32px 28px 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.score-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}
.score-card-featured {
  background: rgba(242,255,58,0.1);
  border-color: rgba(242,255,58,0.25);
}
.score-card-featured:hover {
  background: rgba(242,255,58,0.15);
  border-color: rgba(242,255,58,0.4);
}

.score-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 20px;
}
.score-card-featured .score-eyebrow { color: var(--yellow); }

.score-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 20px;
}
.score-ring-fill {
  stroke-dasharray: 464.96;
  stroke-dashoffset: 464.96;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.in .score-ring-fill.ring-72 { stroke-dashoffset: 130; }
.in .score-ring-fill.ring-94 { stroke-dashoffset: 28; }
.in .score-ring-fill.ring-85 { stroke-dashoffset: 70; }

.score-center {
  position: absolute;
  text-align: center;
  font-family: var(--font-serif);
}
.score-center b {
  display: block;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--surface);
}
.score-card-featured .score-center b { color: var(--yellow); }
.score-center span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
}

.score-h {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.score-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ============================================
   6 SIGNALS — NEW VISUALS (legacy, not used after slider refactor)
   ============================================ */

/* Level window */
.feature-level {
  margin-top: auto;
  padding-top: 20px;
}
.level-scale {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 6px;
  position: relative;
}
.level-scale::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--ink-08);
}
.level-tick {
  position: relative;
  background: var(--white);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-40);
  padding: 4px 8px;
  border-radius: 100px;
  border: 1px solid var(--ink-08);
  z-index: 1;
}
.level-tick.active {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
  transform: scale(1.15);
}
.level-window {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  font-size: 11px;
  color: var(--ink-60);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.level-window span {
  padding: 4px 10px;
  background: var(--yellow-soft);
  border-radius: 100px;
}

/* Court chips */
.feature-courts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}
.court-chip {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-60);
}
.court-chip-active {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}

/* Vibe rows */
.feature-vibe {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vibe-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 12px;
}
.vibe-row-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.vibe-row-active small { color: rgba(255,255,255,0.6); }
.vibe-emoji {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  border-radius: 8px;
  font-size: 16px;
}
.vibe-row b { display: block; font-size: 13px; font-family: var(--font-serif); }
.vibe-row small { display: block; font-size: 11px; color: var(--ink-60); margin-top: 1px; }

/* DNA mini row */
.feature-dna {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 6px;
}
.dna-mini {
  flex: 1;
  aspect-ratio: 1;
  min-width: 0;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
  border-radius: 10px;
  transition: transform 0.3s;
}
.dna-mini:hover { transform: translateY(-4px) rotate(-2deg); }
.feature-accent .dna-mini { background: rgba(22,24,15,0.06); }

/* Score ring */
.feature-score {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.feature-score .feature-h em,
.feature-score .feature-num { color: rgba(255,255,255,0.5); }
.feature-score p { color: rgba(255,255,255,0.65); }
.feature-score-vis {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 140px;
}
.score-ring-fill {
  animation: scoreRing 1.4s ease-out 0.3s both;
}
@keyframes scoreRing {
  from { stroke-dashoffset: 301.6; }
  to { stroke-dashoffset: 30; }
}
.score-val {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
  font-family: var(--font-serif);
}
.score-val b {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yellow);
}
.score-val span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ============================================
   CUP COPY — bullets
   ============================================ */
.cup-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
}
.cup-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.cup-point-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.cup-point b { color: var(--yellow); font-weight: 700; }

/* Cup rival tweaks */
.cup-rival-rec b { display: block; font-size: 14px; color: var(--ink); font-family: var(--font-serif); }
.cup-rival-rec small { display: block; font-size: 8px; color: var(--ink-60); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.cup-rival-bad b { color: var(--lost); }

/* ============================================
   ROADMAP
   ============================================ */
.roadmap {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.roadmap-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 900px;
}
.roadmap-title em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .roadmap-grid { grid-template-columns: 1fr; } }

.roadmap-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 22px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.roadmap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--won);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.roadmap-live::before { background: var(--won); transform: scaleX(1); }
.roadmap-soon::before { background: var(--yellow); }
.roadmap-vote::before { background: var(--tournament); }

.roadmap-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 30px 50px -20px rgba(22,24,15,0.14);
}
.roadmap-card:hover::before { transform: scaleX(1); }

.roadmap-date {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.roadmap-d {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.roadmap-m {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink-60);
}
.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px 4px 6px;
  background: var(--card);
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}
.roadmap-dot {
  width: 8px; height: 8px;
  background: var(--won);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 1.6s infinite;
}
.roadmap-dot-y {
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.roadmap-dot-purple {
  background: var(--tournament);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.25);
}
.roadmap-city {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.roadmap-city b {
  background: var(--yellow);
  padding: 0 8px;
  display: inline-block;
  font-style: italic;
}
.roadmap-card p {
  font-size: 14.5px;
  color: var(--ink-80);
  line-height: 1.55;
  margin-top: auto;
}

/* ============================================
   PRICING — simple
   ============================================ */
.pricing {
  padding: 140px 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--yellow-soft) 0%, transparent 60%);
  border-radius: 50%;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(141,206,195,0.2) 0%, transparent 60%);
  border-radius: 50%;
}
.pricing-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1060px;
}
.pricing-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-title span:nth-child(1) { font-style: italic; color: rgba(255,255,255,0.55); font-weight: 400; }
.pricing-title span:nth-child(3) { font-style: italic; color: rgba(255,255,255,0.55); font-weight: 400; }

.pricing-plans {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  text-align: left;
}

.pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 70px rgba(0,0,0,0.22);
  overflow: hidden;
}

.pricing-plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: rgba(22,24,15,0.08);
}

.pricing-plus {
  border-color: rgba(242,255,58,0.9);
  box-shadow:
    0 0 0 8px rgba(242,255,58,0.08),
    0 34px 76px rgba(242,255,58,0.18);
}

.pricing-plus::before {
  background: linear-gradient(90deg, var(--yellow), rgba(242,255,58,0.2));
}

.pricing-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.pricing-kicker,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-kicker {
  background: var(--ink);
  color: var(--yellow);
}

.pricing-badge {
  background: rgba(22,24,15,0.06);
  color: rgba(22,24,15,0.6);
}

.pricing-badge-hot {
  background: var(--yellow);
  color: var(--ink);
}

.pricing-plan h3 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.pricing-price b {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.pricing-price span {
  color: rgba(22,24,15,0.55);
  font-size: 14px;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 24px 0 28px;
  padding: 24px 0 0;
  border-top: 1px dashed rgba(22,24,15,0.12);
}

.pricing-features li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  align-items: baseline;
  color: rgba(22,24,15,0.68);
  font-size: 14px;
  line-height: 1.35;
}

.pricing-features b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pricing-plan .btn-block {
  margin-top: auto;
}

.pricing-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 26px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -20px rgba(242,255,58,0.3);
  border: 2px solid var(--yellow);
  text-align: center;
}
.pricing-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-serif);
  margin-bottom: 8px;
}
.pricing-num span:first-child { font-size: 32px; font-weight: 700; color: var(--ink-60); line-height: 1; }
.pricing-num b {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
}
.pricing-num span:last-child { font-size: 15px; color: var(--ink-60); font-weight: 500; font-family: var(--font-sans); }
.pricing-sub {
  font-size: 14px;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding-top: 24px;
  border-top: 1px dashed var(--ink-08);
  font-size: 14.5px;
  color: var(--ink-80);
}

@media (max-width: 900px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .pricing-plan {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .pricing-plan {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .pricing-plan-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .pricing-features li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ============================================
   FOOTER — simplified
   ============================================ */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }

/* ============================================
   CITIES  (legacy — kept if referenced)
   ============================================ */
.cities {
  padding: 140px 0 100px;
  background: var(--surface);
}
.cities-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 900px;
}
.cities-title em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.cities-marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 40px 0;
  overflow: hidden;
  margin-bottom: 56px;
}
.cities-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  animation: citiesSlide 42s linear infinite;
}
.city-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.city-item.soon { color: var(--ink-40); font-style: normal; }
.city-dot { color: var(--ink-40); font-style: normal; }
.city-soon {
  font-size: 0.2em;
  font-weight: 700;
  padding: 0.25em 0.6em;
  background: var(--yellow);
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0.15em;
  border-radius: 100px;
  vertical-align: middle;
  font-family: var(--font-sans);
}
@keyframes citiesSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cities-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cities-3 { grid-template-columns: 1fr; } }

.city-card {
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.city-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 40px rgba(22,24,15,0.08);
}
.city-card-rank {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-40);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.city-card-name {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1;
}
.city-card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px dashed var(--ink-08);
  border-bottom: 1px dashed var(--ink-08);
  font-size: 14px;
  color: var(--ink-80);
  margin-bottom: 16px;
}
.city-card-stats b {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 4px;
}
.city-card-foot {
  font-size: 12px;
  color: var(--ink-60);
  letter-spacing: 0.02em;
}

/* ============================================
   PLUS PRICING
   ============================================ */
.plus {
  padding: 140px 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.plus::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--yellow-soft) 0%, transparent 60%);
  border-radius: 50%;
}
.plus-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .plus-container { grid-template-columns: 1fr; gap: 40px; }
}
.plus-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.plus-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 480px;
}
.plus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
}
.plus-list li {
  padding-left: 6px;
}

.plus-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(242,255,58,0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--yellow);
}
.plus-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.plus-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.plus-price-cur {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink-60);
}
.plus-price-val {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.8;
}
.plus-price-sub {
  font-size: 15px;
  color: var(--ink-60);
  font-weight: 500;
}
.plus-price-year {
  font-size: 14px;
  color: var(--ink-60);
}
.plus-price-year b { color: var(--ink); font-weight: 700; }
.plus-micro {
  text-align: center;
  font-size: 12px;
  color: var(--ink-60);
  margin-top: 12px;
}

/* ============================================
   QUOTE
   ============================================ */
.quote-sec {
  padding: 140px 0;
  background: var(--mint-bg);
  text-align: center;
}
.quote {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin: 0 auto 24px;
  position: relative;
}
.quote em {
  font-style: italic;
  color: var(--ink-60);
  font-weight: 400;
}
.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5em;
  line-height: 0.6;
  margin-bottom: 12px;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink);
}
.quote-by {
  font-size: 14px;
  color: var(--ink-60);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 140px 0;
  background: var(--surface);
}
.team-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 1000px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.team-initials {
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.team-card:nth-child(2) .team-initials { background: var(--yellow); color: var(--ink); }
.team-card:nth-child(3) .team-initials { background: var(--mint); color: var(--ink); }
.team-card:nth-child(4) .team-initials { background: var(--peach); color: var(--ink); }
.team-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--ink-60);
  letter-spacing: 0.02em;
}
.team-corp {
  font-size: 13px;
  color: var(--ink-60);
  letter-spacing: 0.03em;
  padding-top: 32px;
  border-top: 1px dashed var(--ink-08);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 140px 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.72) 0 4%, transparent 18%),
    radial-gradient(circle at 12% 10%, rgba(242,255,58,0.96) 0 20%, transparent 42%),
    radial-gradient(circle at 88% 86%, rgba(141,206,195,0.72) 0 10%, transparent 34%),
    linear-gradient(135deg, #f2ff3a 0%, #efff54 36%, #d9ff73 58%, #8dcec3 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 35%, rgba(22,24,15,0.08) 35% 35.35%, transparent 35.35% 100%),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(22,24,15,0.045) 54px 55px),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(22,24,15,0.024) 86px 87px);
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.62), rgba(141,206,195,0.18) 34%, transparent 64%);
  filter: blur(8px);
  pointer-events: none;
}
.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.final-logo {
  width: 156px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 20px rgba(22,24,15,0.1));
}
.final-launch {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(22,24,15,0.9);
  color: var(--yellow);
  box-shadow: 0 14px 34px rgba(22,24,15,0.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.final-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 38px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final-title em {
  font-style: italic;
  color: rgba(22,24,15,0.56);
  font-weight: 400;
}
.final-lead {
  font-size: 20px;
  color: var(--ink-80);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.waitlist-form {
  width: min(680px, 100%);
  margin: 0 auto;
}
.waitlist-hp {
  display: none;
}
.waitlist-label {
  display: none;
  width: fit-content;
  margin: 0 auto 10px;
  color: rgba(22,24,15,0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.waitlist-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: all 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.waitlist-row input {
  min-width: 0;
  height: 62px;
  width: 0;
  padding: 0 24px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: inset 0 0 0 1px rgba(22,24,15,0.08);
  opacity: 0;
  transform: scaleX(0.86);
  transform-origin: right center;
  pointer-events: none;
  transition:
    width 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.22s,
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.waitlist-row input::placeholder {
  color: rgba(22,24,15,0.38);
}
.waitlist-row input:focus {
  box-shadow:
    inset 0 0 0 2px var(--ink),
    0 0 0 5px rgba(242,255,58,0.28);
}
.waitlist-row .btn-store {
  height: 62px;
  padding: 0 28px;
  border: 0;
}
.waitlist-form.is-open .waitlist-label {
  display: block;
}
.waitlist-form.is-open .waitlist-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px;
  border: 1px solid rgba(22,24,15,0.12);
  background: rgba(255,255,255,0.58);
  box-shadow:
    0 22px 60px rgba(22,24,15,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.42);
  backdrop-filter: blur(16px) saturate(1.25);
}
.waitlist-form.is-open .waitlist-row input {
  width: 100%;
  opacity: 1;
  transform: scaleX(1);
  pointer-events: auto;
}
.waitlist-note {
  min-height: 0;
  margin-top: 0;
  color: rgba(22,24,15,0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.waitlist-note:not(:empty) {
  min-height: 22px;
  margin-top: 14px;
}
.waitlist-form.is-sent .waitlist-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px;
  background: rgba(22,24,15,0.9);
}
.waitlist-form.is-sent .waitlist-row input {
  width: 100%;
  opacity: 1;
  transform: scaleX(1);
  color: var(--yellow);
  background: transparent;
  box-shadow: none;
}
.waitlist-form.is-sent .waitlist-row input::placeholder {
  color: var(--yellow);
}
.waitlist-form.is-sent .btn-waitlist {
  pointer-events: none;
  background: var(--yellow);
  color: var(--ink);
}
.btn-store {
  background: var(--ink);
  color: var(--yellow);
  padding: 20px 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 900;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 16px 40px rgba(22,24,15,0.24);
}
.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(22,24,15,0.34);
}
.btn-store-alt {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-waitlist svg {
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-waitlist:hover svg {
  transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}
.footer-sign {
  width: 72px;
  height: auto;
  filter: invert(1) brightness(1.2);
}
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 720px) { .footer-bot { flex-direction: column; gap: 12px; } }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { color: rgba(255,255,255,0.4); }
.footer-socials a:hover { color: var(--yellow); }

/* ============================================
   CONSISTENCY PASS — product-led visual language
   ============================================ */
:root {
  --bb-radius-lg: 44px;
  --bb-radius-card: 22px;
  --bb-hairline: rgba(22,24,15,0.08);
  --bb-court-line: rgba(22,24,15,0.055);
  --bb-light-glass: rgba(255,255,255,0.68);
}

section.reason-level.reason,
section.reason-weather.reason,
section.reason-people.reason,
section.chars.reason-dna,
section.reason-soon.reason {
  box-shadow:
    inset 0 0 0 1px rgba(22,24,15,0.035),
    0 18px 44px rgba(22,24,15,0.045);
}

.reason::after,
section.chars.reason-dna::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(100deg, transparent 0 31%, var(--bb-court-line) 31% 31.4%, transparent 31.4% 100%),
    repeating-linear-gradient(0deg, transparent 0 56px, rgba(22,24,15,0.026) 56px 57px);
  opacity: 0.8;
}

.reason > .container,
.chars > .container {
  position: relative;
  z-index: 2;
}

.reason-soon::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(110deg, transparent 0 24%, rgba(242,255,58,0.09) 24% 24.3%, transparent 24.3% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,0.035) 42px 43px);
}

.reason-h,
.chars-title,
.scores-title,
.roadmap-title,
.pricing-title,
.final-title {
  letter-spacing: -0.018em;
}

.reason-tag,
.section-eyebrow,
.roadmap-status,
.sc-card-kind,
.vibe-soon-pill,
.reason-soon-pill {
  letter-spacing: 0.14em;
}

.hl,
.hl-y,
.roadmap-city b {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.phone-frame {
  filter: saturate(1.02) contrast(1.01);
}

.phone-shot {
  filter: saturate(1.04);
}

.char-card,
.roadmap-card,
.sc-card,
.pricing-card {
  border-radius: var(--bb-radius-card);
}

.char-card {
  position: relative;
  border: 1px solid rgba(22,24,15,0.08);
  box-shadow: 0 18px 34px rgba(22,24,15,0.08);
}

.char-card::before {
  content: "DNA";
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(22,24,15,0.08);
  color: rgba(22,24,15,0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.char-card:nth-child(1)::before { content: "POWER"; }
.char-card:nth-child(2)::before { content: "VIBE"; }
.char-card:nth-child(3)::before { content: "TACTIC"; }
.char-card:nth-child(4)::before { content: "MENTOR"; }

.char-img {
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.scores::before,
.pricing::before,
.final-cta::before {
  inset: 0;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  transform: none;
  border-radius: 0;
  background:
    linear-gradient(118deg, transparent 0 33%, rgba(242,255,58,0.10) 33% 33.35%, transparent 33.35% 100%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,0.04) 46px 47px);
}

.pricing::after {
  display: none;
}

.scores-title,
.scores-lead,
.roadmap-title {
  position: relative;
  z-index: 1;
}

.sc-card {
  border-color: rgba(242,255,58,0.12);
  box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

.sc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--mint), rgba(255,255,255,0));
}

.sc-card-cta,
.club-chip-fav,
.roadmap-city b {
  box-shadow: 0 0 0 5px rgba(242,255,58,0.16);
}

.roadmap {
  background:
    linear-gradient(180deg, var(--surface) 0%, #ffffff 48%, var(--surface) 100%);
}

.roadmap > .container {
  position: relative;
  z-index: 2;
}

.city-map-bg {
  position: absolute;
  inset: -4% -2%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  background:
    linear-gradient(180deg, rgba(246,255,241,0.18) 0%, rgba(255,255,255,0.22) 48%, rgba(246,255,241,0.38) 100%),
    url("assets/city-map.svg") center / cover no-repeat;
}

.city-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(242,255,58,0.22), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(141,206,195,0.16), transparent 28%),
    linear-gradient(180deg, rgba(246,255,241,0) 0%, rgba(246,255,241,0.28) 72%, var(--surface) 100%);
}

.roadmap-grid {
  position: relative;
}

.roadmap-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--won), var(--yellow), var(--tournament));
  opacity: 0.45;
}

.roadmap-card {
  min-height: 330px;
  box-shadow: 0 18px 40px rgba(22,24,15,0.07);
  backdrop-filter: blur(10px);
}

.roadmap-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(22,24,15,0.08);
  border-radius: 50%;
}

.roadmap-live {
  background: linear-gradient(180deg, #ffffff 0%, #f6fff1 100%);
}

.roadmap-soon {
  background: linear-gradient(180deg, #ffffff 0%, #fffede 100%);
}

.roadmap-vote {
  background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  border-width: 1px;
  box-shadow:
    0 0 0 8px rgba(242,255,58,0.08),
    0 32px 68px rgba(242,255,58,0.24);
}

.pricing-card::before {
  content: "NO CARD TO START";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.72) 0 4%, transparent 18%),
    radial-gradient(circle at 12% 10%, rgba(242,255,58,0.96) 0 20%, transparent 42%),
    radial-gradient(circle at 88% 86%, rgba(141,206,195,0.72) 0 10%, transparent 34%),
    linear-gradient(135deg, #f2ff3a 0%, #efff54 36%, #d9ff73 58%, #8dcec3 100%);
}

.final-cta::before {
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(22,24,15,0.08) 34% 34.3%, transparent 34.3% 100%),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(22,24,15,0.04) 54px 55px),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(22,24,15,0.024) 86px 87px);
}

@media (max-width: 900px) {
  .city-map-bg {
    inset: -2% -42%;
    opacity: 0.72;
    background-size: auto 100%;
  }

  .roadmap-grid::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--won), var(--yellow), var(--tournament));
  }
}

@media (max-width: 720px) {
  section.reason-level.reason,
  section.reason-weather.reason,
  section.reason-people.reason,
  section.chars.reason-dna,
  section.reason-soon.reason {
    box-shadow:
      inset 0 0 0 1px rgba(22,24,15,0.035),
      0 10px 24px rgba(22,24,15,0.04);
  }

  .char-card,
  .roadmap-card,
  .sc-card,
  .pricing-card {
    border-radius: 20px;
  }

  .sc-card {
    padding: 24px 20px 26px;
  }

  .roadmap-card {
    min-height: 300px;
    padding: 28px 24px;
  }
}

/* ============================================
   TOUR + BACKGROUND REFINEMENT PASS
   ============================================ */
.tour {
  background:
    linear-gradient(180deg, var(--surface) 0%, #ffffff 44%, var(--surface) 100%);
}

.tour .container {
  position: relative;
}

.tour .container::before {
  content: "";
  position: absolute;
  top: 88px;
  right: 32px;
  width: min(420px, 38vw);
  height: 170px;
  pointer-events: none;
  opacity: 0.62;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(22,24,15,0.08) 12% 12.5%, transparent 12.5% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(242,255,58,0.4) 48% 52%, transparent 52% 100%);
  transform: skewY(-7deg);
}

.tour-system {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -26px 0 34px;
  max-width: 760px;
}

.tour-system span,
.slide-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(22,24,15,0.08);
  background: rgba(255,255,255,0.72);
  color: rgba(22,24,15,0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22,24,15,0.05);
}

.tour-system span:nth-child(3),
.slide-signals span:first-child {
  background: var(--yellow);
  color: var(--ink);
  border-color: rgba(22,24,15,0.12);
  box-shadow: 0 0 0 5px rgba(242,255,58,0.14);
}

.slide-copy {
  position: relative;
}

.slide-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 460px;
}

.slide-signals span {
  min-height: 28px;
  padding: 5px 10px;
  font-size: 10px;
}

.slide-phone::before,
.slide-phone::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.slide-phone::before {
  width: 260px;
  height: 260px;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%) rotate(-12deg);
  border: 1px dashed rgba(22,24,15,0.11);
  border-radius: 36px;
}

.slide-phone::after {
  width: 170px;
  height: 8px;
  bottom: 74px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.7;
}

.slide-phone .phone-frame {
  position: relative;
  z-index: 1;
}

.scores::before {
  background:
    radial-gradient(circle at 1px 1px, rgba(242,255,58,0.13) 1.1px, transparent 1.6px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(242,255,58,0.08), transparent 42%, rgba(141,206,195,0.06));
  opacity: 0.62;
}

.pricing::before {
  background:
    linear-gradient(180deg, rgba(242,255,58,0.08) 0%, transparent 34%, rgba(141,206,195,0.08) 100%),
    radial-gradient(circle at 50% 0, rgba(242,255,58,0.18) 0 1px, transparent 1.5px) 0 0 / 28px 28px;
  opacity: 0.58;
}

@media (max-width: 900px) {
  .tour-system {
    margin-top: -28px;
  }

  .tour .container::before {
    top: 150px;
    right: -40px;
    width: 260px;
    opacity: 0.42;
  }
}

@media (max-width: 720px) {
  .tour-system {
    gap: 6px;
    margin-bottom: 28px;
  }

  .tour-system span {
    font-size: 9px;
    min-height: 26px;
    padding: 5px 9px;
  }

  .slide-signals {
    margin-top: 18px;
  }

  .slide-signals span {
    font-size: 9px;
  }

  .slide-phone::before {
    width: 210px;
    height: 210px;
    bottom: 28px;
  }
}

/* ---- Hero sub: swap text on mobile to avoid awkward wrap ---- */
.hero-sub-desktop { display: inline; }
.hero-sub-mobile { display: none; }
@media (max-width: 720px) {
  .hero-sub-desktop { display: none; }
  .hero-sub-mobile { display: inline; }
}

/* ============================================
   MOBILE POLISH (<=720px)
   Unified overrides so the site actually looks adapted on phones.
   Appended last so declaration order beats earlier media queries.
   ============================================ */
@media (max-width: 720px) {
  /* Kill any residual horizontal overflow at document level */
  html, body { overflow-x: hidden; }

  /* ---- Typography scale ---- */
  .hero-title { font-size: clamp(44px, 12vw, 64px); line-height: 1; }
  .hero-sub { font-size: 16px; line-height: 1.45; }
  .tour-title,
  .sauce-intro-title,
  .chars-title,
  .scores-title,
  .roadmap-title,
  .pricing-title,
  .final-cta-h { font-size: clamp(30px, 8.2vw, 42px) !important; line-height: 1.06 !important; }
  .reason-h { font-size: clamp(30px, 8vw, 40px) !important; line-height: 1.05 !important; }
  .reason-p { font-size: 16px; line-height: 1.5; }
  .slide-h { font-size: clamp(28px, 7.6vw, 38px) !important; line-height: 1.08 !important; }
  .slide-copy p { font-size: 15px; line-height: 1.5; }

  /* ---- Section paddings (less air on mobile) ---- */
  .reason { padding: 90px 0 70px; }
  .reason-soon { padding: 90px 0 70px; }
  section.chars.reason-dna { padding: 90px 0 70px; }
  .tour { padding: 80px 0 60px; }
  .sauce-intro { padding: 70px 0 30px; }
  .scores { padding: 80px 0 70px; }
  .roadmap { padding: 80px 0 70px; }
  .pricing { padding: 80px 0 70px; }
  .final-cta { padding: 80px 0; }

  /* Container breathing room */
  .reason-container,
  .reason-container.reason-reverse { gap: 36px; }
  .reason-copy { max-width: 100%; }

  /* ---- Kill floating decorations that overlap copy on narrow screens ---- */
  .deco-level,
  .deco-weather,
  .deco-people,
  .deco-vibe { display: none !important; }

  /* ---- Tour slider tabs: mobile pagination dots instead of horizontal tabs ---- */
  .slider-tabs {
    justify-content: center;
    gap: 10px;
    margin: -22px 0 28px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .slider-tab {
    flex: 0 0 auto;
    min-width: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(22,24,15,0.16);
    color: transparent;
    box-shadow: none;
    scroll-snap-align: none;
  }
  .slider-tab.active {
    width: 34px;
    background: var(--ink);
    color: transparent;
  }
  .slider-tab::before,
  .st-num,
  .st-n { display: none; }

  /* ---- Slider stage/phone sizing ---- */
  .slider-stage { min-height: 0; }
  .slide { position: relative; inset: auto; }
  .slide:not(.active) { display: none; }
  .slide.active { display: grid; }
  .slide-copy { padding-right: 0; }
  .slide-phone .phone-frame { width: 240px; height: 520px; }

  /* Hide decorative phone-glow that pushes past the viewport */
  .phone-glow { display: none; }

  /* ---- Slide 5 fan: shrink so three phones fit in 375px ---- */
  .slide-phone-fan { min-height: 420px !important; }
  .slide-phone-fan .phone-fan-item .phone-frame {
    width: 150px !important;
    height: 320px !important;
    border-radius: 30px !important;
    padding: 6px !important;
  }
  .slide-phone-fan .phone-fan-item .phone-screen,
  .slide-phone-fan .phone-fan-item .phone-shot { border-radius: 24px !important; }
  .slide-phone-fan .phone-fan-item .phone-notch {
    width: 58px !important;
    height: 18px !important;
    top: 14px !important;
  }
  .slide-phone-fan .phone-fan-left  { transform: translate(-88%, -50%) rotate(-10deg) !important; }
  .slide-phone-fan .phone-fan-center { transform: translate(-50%, -54%) rotate(0) !important; }
  .slide-phone-fan .phone-fan-right { transform: translate(-12%, -50%) rotate(10deg) !important; }
  @keyframes fanInLeft {
    from { transform: translate(-50%, -40%) rotate(0); opacity: 0; }
    to   { transform: translate(-88%, -50%) rotate(-10deg); opacity: 1; }
  }
  @keyframes fanInRight {
    from { transform: translate(-50%, -40%) rotate(0); opacity: 0; }
    to   { transform: translate(-12%, -50%) rotate(10deg); opacity: 1; }
  }

  /* ---- Reason-people: shrink orbit composition so faces fit card ---- */
  .reason-phone-orbits .orbit-photo { width: 66px !important; height: 66px !important; }
  .reason-phone-orbits .orbit-1 { top: -6% !important; left: 2% !important; }
  .reason-phone-orbits .orbit-2 { top: 18% !important; right: -2% !important; }
  .reason-phone-orbits .orbit-3 { top: 48% !important; left: -4% !important; }
  .reason-phone-orbits .orbit-4 { top: 66% !important; right: -2% !important; }
  .reason-phone-orbits .orbit-5 { top: 86% !important; left: 4% !important; }
  .reason-phone-orbits .orbit-6 { top: 92% !important; right: 6% !important; }

  /* ---- Step badge a touch smaller + closer to edge ---- */
  .step-badge {
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
  .step-badge span {
    width: 52px; height: 52px; font-size: 24px;
    box-shadow:
      0 0 0 5px rgba(242,255,58,0.2),
      0 0 22px 4px rgba(242,255,58,0.45),
      0 0 48px 10px rgba(242,255,58,0.25),
      0 4px 12px rgba(22,24,15,0.12);
  }

  /* ---- CTA buttons full-width-ish, center ---- */
  .copy-cta,
  .section-cta a,
  .tour-cta a,
  .chars-cta { width: 100%; justify-content: center; }

  /* ---- Vibe phone: keep the mockup inside the card on narrow screens ---- */
  .reason-soon .reason-phone {
    width: 100%;
    overflow: hidden;
    padding: 0 8px 8px;
  }
  .reason-soon .reason-phone .phone-frame {
    width: min(252px, 76vw);
    height: auto;
    aspect-ratio: 390 / 844;
    max-width: 100%;
    transform: none !important;
  }
  .phone-screen-vibe {
    padding: 40px 9px 34px;
    overflow: hidden;
  }
  .phone-screen-vibe .phone-status {
    margin-bottom: 14px;
    font-size: 9px;
  }
  .vibe-hd {
    margin-bottom: 7px;
  }
  .vibe-hd h4 {
    display: none;
  }
  .vibe-radar-card {
    min-height: 128px;
    margin-bottom: 7px;
    border-radius: 16px;
  }
  .vibe-radar-card::before { inset: 14px; }
  .vibe-radar-card::after { inset: 34px; }
  .vibe-radar-ring { inset: 18px; }
  .vibe-radar-ring-2 { inset: 42px; }
  .vibe-radar-beam { width: 70px; }
  .vibe-radar-core {
    width: 70px;
    height: 70px;
  }
  .vibe-radar-core b {
    font-size: 23px;
  }
  .vibe-radar-core small {
    font-size: 7px;
  }
  .vibe-node {
    font-size: 8px;
    padding: 3px 5px;
    max-width: 74px;
  }
  .vibe-node-1 { top: 12px; left: 12px; }
  .vibe-node-2 { top: 16px; right: 10px; }
  .vibe-node-3 { bottom: 16px; left: 12px; }
  .vibe-node-4 { right: 10px; bottom: 14px; }
  .vibe-grid {
    gap: 5px;
    margin-bottom: 7px;
  }
  .vibe-card {
    min-height: 62px;
    padding: 7px 8px;
    border-radius: 11px;
  }
  .vibe-card-label {
    font-size: 7px;
    letter-spacing: 0.07em;
  }
  .vibe-card-val {
    font-size: 11px;
    margin-top: 2px;
  }
  .vibe-match {
    padding: 8px;
    margin-bottom: 0;
    border-radius: 12px;
  }
  .vibe-match-hd {
    font-size: 9px;
    margin-bottom: 4px;
  }
  .vibe-match-row {
    gap: 6px;
    padding: 4px 0;
  }
  .vibe-match-name {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .vibe-match-pct {
    font-size: 14px;
  }
  .vibe-avt {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .vibe-lock {
    display: none;
  }

  /* ---- Soft background halos smaller ---- */
  .reason-soon::before { width: 320px; height: 320px; top: -10%; right: -20%; }

  /* ---- City-map bg: don't bleed past viewport ---- */
  .city-map-bg { display: none; }

  .waitlist-row {
    border-radius: 28px;
  }
  .waitlist-form.is-open .waitlist-row,
  .waitlist-form.is-sent .waitlist-row {
    grid-template-columns: 1fr;
    padding: 8px;
  }
  .waitlist-row input {
    height: 58px;
    text-align: center;
    font-size: 17px;
  }
  .waitlist-row .btn-store {
    width: 100%;
    height: 58px;
    justify-content: center;
  }
}

/* Extra-small: <=380px — tune hero and CTA */
@media (max-width: 380px) {
  .hero-title { font-size: 44px; }
  .btn-hero { padding: 14px 20px; font-size: 14px; }
  .slide-phone-fan .phone-fan-item .phone-frame {
    width: 132px !important;
    height: 282px !important;
  }
  .slide-phone-fan { min-height: 380px !important; }
}
