/* ═══════════════════════════════════════════════════
   VOLUM — style.css  (v3)
   Lime-first, dark, athletic. Matches app design tokens.
═══════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────── */
:root {
  --bg-primary:     #0A121E;
  --bg-card:        #101D2E;
  --bg-surface:     #1A1A2E;
  --accent:         #A7FF41;
  --accent-glow:    rgba(167,255,65,0.15);
  --accent-text:    #0A0A0A;
  --brand:          #359EFF;
  --text-primary:   #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted:     #767676;
  --border:         #2A2A2A;
  --error:          #FF5F57;
  --radius-card:    16px;
  --radius-pill:    999px;
  --font:           'Inter', system-ui, -apple-system, sans-serif;
  --max-width:      1100px;
  --section-pad:    72px;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 14px auto 0;
  text-align: center;
  line-height: 1.7;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: filter 150ms ease, box-shadow 150ms ease, transform 150ms ease, opacity 150ms ease;
  font-family: var(--font);
  border: none;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 8px 24px rgba(167,255,65,0.25);
}
.btn-accent:hover         { filter: brightness(1.08); box-shadow: 0 12px 32px rgba(167,255,65,0.38); }
.btn-accent:active        { transform: scale(0.97); box-shadow: 0 4px 14px rgba(167,255,65,0.18); }
.btn-accent:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn-accent:disabled      { opacity: 0.4; cursor: not-allowed; filter: none; box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover         { border-color: var(--accent); color: var(--accent); }
.btn-ghost:active        { transform: scale(0.97); }
.btn-ghost:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.btn-sm { padding: 10px 20px; font-size: 14px; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── SKELETON ────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg,
    var(--bg-card) 25%, var(--bg-surface) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-card);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes bounce-y {
  0%, 100% { transform: rotate(45deg) translate(0,0); }
  50%       { transform: rotate(45deg) translate(3px,3px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── LANGUAGE PICKER ────────────────────────────── */
.lang-picker { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
}
.lang-btn:hover         { border-color: var(--accent); color: var(--accent); }
.lang-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.lang-btn svg           { width: 9px; height: 9px; transition: transform 150ms ease; }
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  list-style: none;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  display: none;
  z-index: 200;
}
.lang-dropdown.open { display: block; animation: fade-up 150ms ease both; }

.lang-dropdown li {
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.lang-dropdown li:hover                  { background: var(--bg-card); color: var(--text-primary); }
.lang-dropdown li[aria-selected="true"]  { color: var(--accent); }
.lang-dropdown li:focus-visible          { outline: 2px solid var(--accent); outline-offset: -2px; }

.nav-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 12px 0 4px;
}
.nav-mobile-lang button {
  flex: 1;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 120ms, color 120ms;
}
.nav-mobile-lang button:hover,
.nav-mobile-lang button.active { border-color: var(--accent); color: var(--accent); }

/* ─── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 120ms ease, border-color 120ms ease;
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  will-change: transform;
}
.navbar.scrolled {
  background: rgba(26,26,46,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img { height: 28px; width: auto; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 150ms;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text-primary); }
.nav-links a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 2px; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 150ms ease, opacity 150ms ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 4px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 150ms;
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 12px; text-align: center; }
.nav-mobile a:hover { color: var(--text-primary); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 108px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 100%, rgba(53,158,255,0.13) 0%, transparent 55%),
    url('assets/hero-bg.png') center / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,18,30,0.88);
}

.hero-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 40px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-phones {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  overflow: visible;
}

.hero-phones::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(167,255,65,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ─── PODIUM (hero 3-phone showcase) ────────────── */
.podium-deck {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  perspective: 1400px;
}

.podium-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  aspect-ratio: 9 / 19;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 350ms ease, box-shadow 350ms ease, filter 350ms ease, border-color 350ms ease;
}

.podium-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.podium-left {
  width: 170px;
  transform: rotateY(14deg) translateX(20px) scale(0.95);
  transform-origin: right center;
  filter: brightness(0.72);
  z-index: 2;
  margin-right: -44px;
  box-shadow: -4px 24px 52px rgba(0,0,0,0.55);
}

.podium-center {
  width: 220px;
  aspect-ratio: 1038 / 2048;
  transform: translateY(-24px);
  z-index: 5;
  border-color: rgba(167,255,65,0.4);
  box-shadow: 0 28px 64px rgba(0,0,0,0.65),
              0 0 0 1px rgba(167,255,65,0.4),
              0 0 52px rgba(167,255,65,0.2);
  animation: phone-float-neutral 5s ease-in-out infinite;
}

.podium-right {
  width: 170px;
  transform: rotateY(-14deg) translateX(-20px) scale(0.95);
  transform-origin: left center;
  filter: brightness(0.72);
  z-index: 2;
  margin-left: -44px;
  box-shadow: 4px 24px 52px rgba(0,0,0,0.55);
}

.podium-left:hover,
.podium-left:focus-visible {
  transform: rotateY(4deg) translateX(10px) scale(1.03);
  filter: brightness(0.92);
  z-index: 10;
  box-shadow: 0 28px 60px rgba(0,0,0,0.7), 0 0 0 1px var(--accent);
  border-color: rgba(167,255,65,0.5);
  outline: none;
}

.podium-right:hover,
.podium-right:focus-visible {
  transform: rotateY(-4deg) translateX(-10px) scale(1.03);
  filter: brightness(0.92);
  z-index: 10;
  box-shadow: 0 28px 60px rgba(0,0,0,0.7), 0 0 0 1px var(--accent);
  border-color: rgba(167,255,65,0.5);
  outline: none;
}

.podium-center:hover,
.podium-center:focus-visible {
  transform: translateY(-36px) scale(1.06);
  box-shadow: 0 44px 84px rgba(0,0,0,0.8),
              0 0 0 1px var(--accent),
              0 0 68px rgba(167,255,65,0.32);
  outline: none;
}

.podium-card .showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 52px 18px 20px;
  background: linear-gradient(to top, rgba(10,18,30,0.97) 0%, rgba(10,18,30,0.75) 55%, transparent 100%);
  transform: translateY(100%);
  transition: transform 300ms ease;
}

.podium-card:hover .showcase-overlay,
.podium-card:focus-visible .showcase-overlay { transform: translateY(0); }

.podium-card .showcase-overlay h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.podium-card .showcase-overlay p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-phone {
  width: 200px;
  aspect-ratio: 9 / 19;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), 0 0 48px rgba(167,255,65,0.12);
  animation: hero-icon-enter 700ms ease both, phone-float-neutral 5s ease-in-out 750ms infinite;
  animation-delay: 750ms, 750ms;
}

.hero-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 520px;
}

.hero-proof {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 16px;
  background: rgba(167,255,65,0.06);
  border: 1px solid rgba(167,255,65,0.18);
  border-radius: 8px;
  padding: 10px 14px;
  align-self: flex-start;
}

.hero-differentiator {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin-bottom: 16px;
}

.waitlist-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 150ms;
  min-width: 0;
}
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus        { border-color: var(--accent); }

.form-message     { font-size: 14px; margin-bottom: 6px; min-height: 18px; }
.form-success-msg { color: var(--accent); }
.form-error-msg   { color: var(--error); }

.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 0;
  text-align: left;
}
.form-consent {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: left;
  opacity: 0.75;
}
.form-consent a { color: var(--text-muted); text-decoration: underline; }
.form-consent a:hover { color: var(--accent); }

.waitlist-count {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 10px;
  opacity: 0.85;
}

.hero-launch { font-size: 13px; color: var(--text-muted); }

.hero-wordplay-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 14px 0 8px;
}

.hero-launch-inline {
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-left: 12px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  animation: bounce-y 1.8s ease-in-out infinite;
}

/* ─── FEATURES ────────────────────────────────────── */
.features { padding: var(--section-pad) 0; }
.features .container { text-align: center; }

.features-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 12px auto 0;
  max-width: 480px;
}

.features-ai-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px 22px;
  background: var(--accent-glow);
  border: 1px solid rgba(167,255,65,0.2);
  border-radius: var(--radius-card);
  flex-wrap: wrap;
}

.features-ai-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  white-space: nowrap;
}

.features-ai-callout p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}

.features h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 40px rgba(167,255,65,0.07);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ─── VOLUME STATEMENT ────────────────────────────── */
.volume-statement {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.volume-statement .container { text-align: center; max-width: 720px; }

.volume-statement h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.volume-body {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.volume-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.volume-formula span { font-size: 20px; font-weight: 700; color: var(--accent); }
.volume-formula .op  { color: var(--text-muted); font-weight: 400; }
.volume-formula > span:last-child { font-size: 26px; text-shadow: 0 0 18px rgba(167,255,65,0.35); }

/* ─── HOW IT WORKS ────────────────────────────────── */
.how-it-works { padding: var(--section-pad) 0; }
.how-it-works .container { text-align: center; }

.how-it-works h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 52px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  text-align: left;
  gap: 40px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 6px;
  right: calc(33.33% - 33px);
  height: 1px;
  background: var(--border);
}

.step-connector-fill {
  position: absolute;
  top: 58px;
  left: 6px;
  right: calc(33.33% - 33px);
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(167,255,65,0.45);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.step { position: relative; }

.step-number {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -12px;
  font-variant-numeric: tabular-nums;
  transition: opacity 500ms ease, text-shadow 500ms ease;
}

.step-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(167,255,65,0.15);
}

.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; transition: color 500ms ease; }
.step p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ─── ACTIVE STEP (loop cycle) ───────────────────── */
.step.loop-active .step-number {
  opacity: 0.35;
  text-shadow: 0 0 40px rgba(167,255,65,0.4);
}

.step.loop-active .step-dot {
  animation: dot-ripple 1.6s ease-out infinite;
}

.step.loop-active h3 { color: var(--accent); }

@keyframes dot-ripple {
  0%   { box-shadow: 0 0 0 4px rgba(167,255,65,0.25); }
  70%  { box-shadow: 0 0 0 12px rgba(167,255,65,0); }
  100% { box-shadow: 0 0 0 12px rgba(167,255,65,0); }
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials { padding: var(--section-pad) 0; }
.testimonials .container { text-align: center; }

.testimonials-heading {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  text-align: left;
}

.testimonial-card {
  padding: 24px 28px 24px 24px;
  background: rgba(167,255,65,0.03);
  border-left: 3px solid rgba(167,255,65,0.4);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}

.testimonial-card:hover {
  background: rgba(167,255,65,0.07);
  border-left-color: var(--accent);
}

.testimonial-quote {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-handle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 150ms, gap 150ms;
}

.testimonial-handle:hover {
  opacity: 1;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── REAL NUMBERS ────────────────────────────────── */
.real-numbers {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.real-numbers .container { text-align: center; }

.real-numbers h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 14px; color: var(--text-secondary); }

.stats-fine-print {
  margin-top: 44px;
  font-size: 12px;
  color: var(--text-muted);
}


/* ─── APP SCREENSHOTS ─────────────────────────────── */
.mockup-section { padding: var(--section-pad) 0; }
.mockup-section .container { text-align: center; }

.mockup-section h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.showcase-deck {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 24px 0 52px;
  margin-top: 56px;
  overflow: visible;
}

.showcase-card {
  position: relative;
  width: 160px;
  aspect-ratio: 9 / 19;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  margin-left: -36px;
}

.showcase-card:first-child { margin-left: 0; }

.showcase-card:nth-child(1) { transform: rotate(-5deg) translateY(8px);  z-index: 1; }
.showcase-card:nth-child(2) { transform: rotate(-2deg) translateY(3px);  z-index: 2; }
.showcase-card:nth-child(3) { transform: rotate(1deg)  translateY(0px);  z-index: 3; }
.showcase-card:nth-child(4) { transform: rotate(-1deg) translateY(4px);  z-index: 3; }
.showcase-card:nth-child(5) { transform: rotate(3deg)  translateY(6px);  z-index: 2; }
.showcase-card:nth-child(6) { transform: rotate(6deg)  translateY(10px); z-index: 1; }

.showcase-card:hover,
.showcase-card:focus-visible {
  transform: rotate(0deg) translateY(-24px) scale(1.12) !important;
  z-index: 20;
  box-shadow: 0 28px 56px rgba(0,0,0,0.7), 0 0 0 1px var(--accent);
  border-color: var(--accent);
  outline: none;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(10,18,30,0.97) 0%, rgba(10,18,30,0.75) 55%, transparent 100%);
  transform: translateY(100%);
  transition: transform 250ms ease;
}

.showcase-card:hover .showcase-overlay,
.showcase-card:focus-visible .showcase-overlay {
  transform: translateY(0);
}

.showcase-overlay h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 3px;
  text-align: left;
}

.showcase-overlay p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  text-align: left;
}

/* ─── MID-PAGE CTA ───────────────────────────────── */
.mid-cta {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mid-cta-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin: 8px 0 0;
  max-width: 340px;
}
.mid-cta-quote cite { font-style: normal; font-weight: 600; color: var(--text-primary); }

.mid-cta-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  max-width: 360px;
  line-height: 1.3;
}

.mid-cta-right {
  flex: 1;
  min-width: 280px;
}

.mid-cta-form {
  max-width: 460px;
  margin-bottom: 0;
}

/* ─── WAITLIST CTA ────────────────────────────────── */
.waitlist-section {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 3px solid var(--accent);
}

.waitlist-inner { text-align: center; max-width: 620px; }

.waitlist-inner h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.waitlist-inner > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

.waitlist-form-large {
  flex-direction: column;
  max-width: 380px;
  margin: 0 auto;
  gap: 8px;
}

.waitlist-form-large .waitlist-input {
  border-radius: 12px;
  text-align: center;
  padding: 16px 18px;
}

.waitlist-form-large .btn { width: 100%; padding: 16px; font-size: 16px; }

.waitlist-inner .waitlist-count {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.85;
}

.waitlist-inner .form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.share-nudge { font-size: 14px; color: var(--text-muted); margin-top: 20px; }
.share-nudge button {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}
.share-nudge button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 2px; }
.share-copied { font-size: 13px; color: var(--accent); margin-top: 6px; display: none; }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 150ms; }
.footer-links a:hover { color: var(--text-primary); }
.footer-links a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 2px; }

.footer-social { display: flex; gap: 20px; }

.footer-social a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 150ms;
}
.footer-social a:hover        { color: var(--accent); }
.footer-social a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 2px; }

.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color 150ms, color 150ms;
  cursor: default;
}
.badge-play.active:hover { border-color: var(--accent); color: var(--accent); cursor: pointer; }
.badge-ios   { opacity: 0.4; }
.badge-icon  { font-size: 15px; }

.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ─── RESPONSIVE — 900px ─────────────────────────── */
@media (max-width: 900px) {
  .showcase-deck { padding-bottom: 36px; }
  .showcase-card { width: 140px; margin-left: -30px; }
}

/* ─── RESPONSIVE — 768px ─────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 48px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 88px; min-height: auto; padding-bottom: 60px; }
  .hero-row { flex-direction: column; gap: 0; padding-bottom: 0; }

  /* ── Podium → swipe carousel ── */
  .hero-phones { width: 100%; overflow: hidden; margin-top: 24px; }
  .podium-left, .podium-right { display: block; }
  .podium-deck {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 10%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 20px 10%;
    align-items: center;
    perspective: none;
    justify-content: flex-start;
  }
  .podium-deck::-webkit-scrollbar { display: none; }
  .podium-left,
  .podium-center,
  .podium-right {
    flex-shrink: 0;
    width: 80%;
    max-width: none;
    scroll-snap-align: center;
    transform: none !important;
    animation: none;
    filter: none !important;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.12);
  }
  .podium-center {
    border-color: rgba(167,255,65,0.4);
    box-shadow: 0 12px 32px rgba(0,0,0,0.65),
                0 0 0 1px rgba(167,255,65,0.4),
                0 0 24px rgba(167,255,65,0.15);
  }
  .hero-headline { font-size: 40px; letter-spacing: -1px; }
  .hero-sub      { font-size: 16px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .platform-picker .platform-btn { padding: 12px 22px; font-size: 14px; }
  .form-consent { font-size: 12px; opacity: 0.9; }
  .mid-cta-inner { flex-direction: column; gap: 20px; }
  .mid-cta-heading { font-size: 20px; max-width: 100%; text-align: center; }
  .mid-cta-quote { max-width: 100%; text-align: center; border-left: none; border-top: 2px solid var(--accent); padding: 10px 0 0; }
  .mid-cta-right { width: 100%; }
  .mid-cta-form { max-width: 100%; }

  .features h2,
  .volume-statement h2,
  .how-it-works h2,
  .real-numbers h2,
  .mockup-section h2,
.waitlist-inner h2 { font-size: 30px; }

  .features-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .step-number { font-size: 44px; margin-bottom: -8px; }

  .stats-grid { gap: 40px; }
  .stat-number { font-size: 36px; }

  .showcase-deck {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    overflow: visible;
  }
  .showcase-card {
    width: 100%;
    margin-left: 0;
    transform: none !important;
    z-index: 1 !important;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-heading { font-size: 30px; }

  .testimonial-card { -webkit-tap-highlight-color: rgba(167,255,65,0.12); }
  .testimonial-card:active { background: rgba(167,255,65,0.09); }
  .testimonial-handle { padding: 6px 0; }

}

/* ─── RESPONSIVE — 480px ─────────────────────────── */
@media (max-width: 480px) {
  .hero-headline { font-size: 34px; }

  .showcase-deck { gap: 10px; }
  .stats-grid { gap: 32px; }
  .waitlist-form-large { width: 100%; }

}

/* ─── RESPONSIVE — 375px ─────────────────────────── */
@media (max-width: 375px) {
  .hero-headline { font-size: 28px; letter-spacing: -0.5px; }
}

/* ─── HERO ICON ENTER ────────────────────────────── */
@keyframes hero-icon-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO STAGGER ON LOAD ───────────────────────── */
.hero-eyebrow  { animation: fade-up 600ms ease both; animation-delay:   0ms; }
.hero-headline { animation: fade-up 600ms ease both; animation-delay: 150ms; }
.hero-sub      { animation: fade-up 600ms ease both; animation-delay: 300ms; }
.hero-proof    { animation: fade-up 600ms ease both; animation-delay: 420ms; }
.waitlist-form { animation: fade-up 600ms ease both; animation-delay: 540ms; }
.hero-launch   { animation: fade-up 600ms ease both; animation-delay: 660ms; }

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PHONE FLOAT ─────────────────────────────────── */
@keyframes phone-float-left {
  0%, 100% { transform: rotate(-3deg) translateY(0px);   }
  50%       { transform: rotate(-3deg) translateY(-10px); }
}
@keyframes phone-float-right {
  0%, 100% { transform: rotate(3deg) translateY(0px);  }
  50%       { transform: rotate(3deg) translateY(-8px); }
}
@keyframes phone-float-neutral {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}

/* ─── VOLUME FORMULA SEQUENTIAL REVEAL ───────────── */
.volume-formula.revealed span              { animation: formula-item 350ms ease forwards; }
.volume-formula.revealed span:nth-child(1) { animation-delay:   0ms; }
.volume-formula.revealed span:nth-child(2) { animation-delay: 100ms; }
.volume-formula.revealed span:nth-child(3) { animation-delay: 200ms; }
.volume-formula.revealed span:nth-child(4) { animation-delay: 300ms; }
.volume-formula.revealed span:nth-child(5) { animation-delay: 400ms; }
.volume-formula.revealed span:nth-child(6) { animation-delay: 500ms; }
.volume-formula.revealed span:last-child   {
  animation: formula-glow 500ms ease forwards;
  animation-delay: 600ms;
}

@keyframes formula-item {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
@keyframes formula-glow {
  0%   { opacity: 0; transform: translateY(8px); text-shadow: none; }
  60%  { opacity: 1; transform: translateY(0);   text-shadow: 0 0 24px rgba(167,255,65,0.75); }
  100% { opacity: 1; transform: translateY(0);   text-shadow: 0 0 18px rgba(167,255,65,0.35); }
}

/* ─── STAT NUMBER GLOW PULSE ─────────────────────── */
@keyframes stat-glow-pulse {
  0%   { text-shadow: none; }
  35%  { text-shadow: 0 0 30px rgba(167,255,65,0.65), 0 0 60px rgba(167,255,65,0.25); }
  100% { text-shadow: none; }
}
.stat-glow { animation: stat-glow-pulse 900ms ease forwards; }

/* ─── PLATFORM PICKER ────────────────────────────── */
.platform-picker { display: flex; gap: 8px; margin-bottom: 10px; }
.platform-picker .platform-btn { padding: 8px 18px; font-size: 13px; }

@keyframes platform-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.platform-picker.shake { animation: platform-shake 0.4s ease; }
.platform-picker.shake .platform-btn {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.35);
}

/* ─── PREFERS-REDUCED-MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

