/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet:       #7c3aed;
  --violet-light: #8b5cf6;
  --violet-dim:   rgba(124,58,237,0.15);
  --pink:         #ec4899;
  --pink-dim:     rgba(236,72,153,0.15);
  --emerald:      #10b981;
  --emerald-dim:  rgba(16,185,129,0.12);
  --amber:        #f59e0b;
  --amber-dim:    rgba(245,158,11,0.12);
  --blue:         #3b82f6;
  --border:       rgba(255,255,255,0.07);
  --text-secondary: #94a3b8;
  --text-muted:     #4b5563;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(ellipse 150% 55% at 50% -5%, rgba(80,20,160,0.52), transparent 60%);
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ── GRADIENT TEXT (with slow shimmer) ───────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #f472b6 38%, #c084fc 68%, #a78bfa 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 9s ease-in-out infinite;
}
@keyframes textShimmer {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}

/* ── REVEAL ANIMATION ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ── ORB BACKGROUNDS ──────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 860px; height: 860px;
  background: rgba(109,40,217,0.24);
  top: -320px; left: -200px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 640px; height: 640px;
  background: rgba(236,72,153,0.16);
  top: 40px; right: -180px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.orb-3 {
  width: 520px; height: 520px;
  background: rgba(109,40,217,0.12);
  bottom: -120px; left: 28%;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-center {
  width: 1000px; height: 640px;
  background: radial-gradient(ellipse, rgba(76,19,172,0.32) 0%, transparent 68%);
  top: -260px; left: 50%;
  transform: translateX(-50%);
  filter: blur(90px);
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-how-1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.12);
  top: 0; right: -200px;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-how-2 {
  width: 400px; height: 400px;
  background: rgba(16,185,129,0.08);
  bottom: 0; left: -150px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.97); }
}

/* ── GRID & NOISE OVERLAY ─────────────────────────────────────── */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ── NAV SCROLLED STATE ───────────────────────────────────────── */
.nav.scrolled {
  background: rgba(10,10,20,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── LOGO GLOW ────────────────────────────────────────────────── */
.logo-mark {
  filter: drop-shadow(0 0 10px rgba(124,58,237,0.35));
  transition: filter 0.2s;
}
a:hover .logo-mark { filter: drop-shadow(0 0 18px rgba(139,92,246,0.6)); }

/* ── BADGE DOT PULSE ──────────────────────────────────────────── */
.badge-dot { animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

/* ── PHONE MOCKUP ─────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-halo {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px; height: 300px;
  background: radial-gradient(ellipse, rgba(109,40,217,0.42) 0%, rgba(139,92,246,0.14) 42%, transparent 70%);
  filter: blur(38px);
  z-index: 0;
  pointer-events: none;
}
.phone-glow {
  position: absolute;
  width: 440px; height: 880px;
  background: radial-gradient(ellipse, rgba(109,40,217,0.55) 0%, rgba(139,92,246,0.2) 32%, transparent 66%);
  filter: blur(55px);
  z-index: 0;
}
.phone-mockup {
  width: 306px;
  height: 632px;
  background: linear-gradient(160deg, #111120 0%, #0a0a14 60%, #0f0a1a 100%);
  border-radius: 44px;
  border: 1.5px solid rgba(139,92,246,0.25);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 0 3px rgba(0,0,0,0.8),
    0 50px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(124,58,237,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
}

/* Side buttons */
.phone-btn-vol-up,
.phone-btn-vol-down,
.phone-btn-power {
  position: absolute;
  background: linear-gradient(180deg, #1e1e30, #16162a);
  border-radius: 2px;
  z-index: 3;
}
.phone-btn-vol-up   { left: -2.5px; top: 120px; width: 3px; height: 32px; box-shadow: -1px 0 0 rgba(255,255,255,0.06); }
.phone-btn-vol-down { left: -2.5px; top: 162px; width: 3px; height: 32px; box-shadow: -1px 0 0 rgba(255,255,255,0.06); }
.phone-btn-power    { right: -2.5px; top: 140px; width: 3px; height: 60px; box-shadow: 1px 0 0 rgba(255,255,255,0.06); }

/* Dynamic island */
.phone-island {
  width: 100px; height: 28px;
  background: #000;
  border-radius: 20px;
  margin: 12px auto 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 3px rgba(0,0,0,0.8);
}

/* Glass sheen */
.phone-sheen {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  border-radius: 44px 44px 0 0;
  pointer-events: none;
  z-index: 2;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Phone screen */
.phone-screen {
  padding: 10px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: space-between;
}

/* Status bar */
.screen-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.status-icons { display: flex; align-items: center; gap: 5px; }
.signal-bars { display: flex; align-items: flex-end; gap: 1.5px; }
.signal-bars span { width: 3px; background: rgba(255,255,255,0.8); border-radius: 1px; }
.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 6px; }
.signal-bars span:nth-child(3) { height: 9px; }
.signal-bars span:nth-child(4) { height: 12px; }
.wifi-icon {
  width: 12px; height: 9px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
}
.battery-icon {
  width: 18px; height: 10px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 2px;
  position: relative;
}
.battery-icon::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%; transform: translateY(-50%);
  width: 2px; height: 5px;
  background: rgba(255,255,255,0.7);
  border-radius: 0 1px 1px 0;
}
.battery-icon::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px; bottom: 2px;
  width: 65%;
  background: var(--emerald);
  border-radius: 1px;
}

/* App header */
.app-header { display: flex; justify-content: space-between; align-items: center; }
.app-header-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.app-header-title { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.app-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}

/* Tab card */
.tab-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 16px;
  overflow: hidden;
}
.tab-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tab-venue { font-size: 13px; font-weight: 600; color: #fff; }
.tab-meta-row { display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.tab-pin { font-size: 10px; color: rgba(255,255,255,0.4); }
.tab-duration { font-size: 10px; color: rgba(255,255,255,0.25); }
.tab-open-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600;
  color: var(--emerald);
  background: var(--emerald-dim);
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid rgba(16,185,129,0.2);
}
.tab-open-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Drink rows */
.tab-drinks { padding: 10px 14px; display: flex; flex-direction: column; gap: 7px; }
.drink-row { display: flex; align-items: center; gap: 8px; }
.drink-icon {
  width: 22px; height: 22px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.drink-icon.beer    { background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.3); }
.drink-icon.cocktail{ background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.3); }
.drink-icon.wine    { background: rgba(236,72,153,0.2); border: 1px solid rgba(236,72,153,0.3); }
.drink-name  { flex: 1; font-size: 12px; color: rgba(255,255,255,0.8); }
.drink-qty   { font-size: 11px; color: rgba(255,255,255,0.3); margin-right: 2px; }
.drink-price { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }

/* Tab footer */
.tab-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.tab-footer-left { display: flex; flex-direction: column; gap: 1px; }
.tab-total-label  { font-size: 10px; color: rgba(255,255,255,0.4); }
.tab-total-amount { font-size: 16px; font-weight: 700; color: var(--emerald); }
.tab-close-btn {
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: default;
}

/* Add drink button */
.app-add-btn {
  width: 100%;
  padding: 10px;
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: default;
}

/* Friends bar */
.friends-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 10px 12px;
}
.friends-avatars { display: flex; }
.friend-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid #0d0d1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
  margin-left: -6px;
}
.friend-av:first-child { margin-left: 0; }
.friends-info { flex: 1; }
.friends-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
.friends-sub   { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.friends-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 8px var(--violet);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── FLOATING NOTIFICATION CARDS ──────────────────────────────── */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(20,20,36,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 2;
}
.float-card-1 { right: -40px; top: 15%; animation: floatCard1 7s ease-in-out infinite; border-left: 2px solid rgba(16,185,129,0.5); }
.float-card-2 { left: -40px; bottom: 20%; animation: floatCard2 8s ease-in-out infinite; border-left: 2px solid rgba(245,158,11,0.5); }
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(10px) rotate(1.5deg); }
}
.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.float-card-icon.emerald { background: var(--emerald-dim); color: var(--emerald); border: 1px solid rgba(16,185,129,0.3); }
.float-card-icon.amber   { background: var(--amber-dim);   color: var(--amber);   border: 1px solid rgba(245,158,11,0.3); }
.float-card-title { font-size: 13px; font-weight: 600; color: #fff; }
.float-card-sub   { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }

/* ── SCROLL HINT ──────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}
.scroll-hint span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── PHONE GLOW RINGS ─────────────────────────────────────────── */
.phone-ring {
  position: absolute;
  border-radius: 54px;
  border: 1px solid rgba(139,92,246,0.2);
  pointer-events: none;
  z-index: 0;
}
.phone-ring-1 {
  width: 334px; height: 686px;
  border-color: rgba(139,92,246,0.25);
  animation: ringPulse 4s ease-in-out infinite;
}
.phone-ring-2 {
  width: 366px; height: 752px;
  border-radius: 60px;
  border-color: rgba(139,92,246,0.12);
  animation: ringPulse 4s ease-in-out infinite 0.9s;
}
.phone-ring-3 {
  width: 404px; height: 828px;
  border-radius: 68px;
  border-color: rgba(139,92,246,0.05);
  animation: ringPulse 4s ease-in-out infinite 1.7s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}

/* ── HERO SPOTLIGHT ──────────────────────────────────────────── */
.hero-spotlight {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse 55% 55% at 50% 0%, rgba(100,30,200,0.22) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* ── BUTTON GLOW PULSE ────────────────────────────────────────── */
.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 28px rgba(109,40,217,0.5), 0 0 60px rgba(124,58,237,0.2); }
  50%       { box-shadow: 0 8px 52px rgba(109,40,217,0.8), 0 0 100px rgba(139,92,246,0.35); }
}

/* ── PRIMARY CTA — animated gradient ─────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 40%, #9333ea 70%, #5b21b6 100%);
  background-size: 250% 100%;
  animation: btnGlow 3s ease-in-out infinite, btnShimmer 5s ease infinite;
}
@keyframes btnShimmer {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}

/* ── PHONE 3D TILT WRAPPER ───────────────────────────────────── */
.phone-tilt {
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
}
@media (max-width: 900px) {
  .phone-tilt { transform: none; }
}

/* ── APP STORE BADGES ─────────────────────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.2s;
  cursor: default;
}
.store-badge:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

/* ── MARQUEE TICKER ───────────────────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a14 20%, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #0a0a14 20%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  margin: 0 5px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.marquee-item-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 6px var(--violet);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(8,8,18,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.5);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: #fff; }

/* ── STEP LAYOUT ──────────────────────────────────────────────── */
.step-row {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 32px;
  min-height: 120px;
  align-items: start;
}
.step-connector {
  background: linear-gradient(to bottom, rgba(124,58,237,0.35), rgba(124,58,237,0.06));
  align-self: stretch;
  margin-top: 56px;
}
.step-connector-last { background: transparent; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .float-card-1 { right: 0; top: -20px; }
  .float-card-2 { left: 0; bottom: -10px; }
}

@media (max-width: 640px) {
  .step-row {
    display: flex;
    gap: 16px;
    padding-bottom: 36px;
    min-height: auto;
  }
  .step-row:last-child { padding-bottom: 0; }
  .step-connector { display: none; }
  .step-row > div:last-child { padding-top: 4px; padding-bottom: 0; }
}

@media (max-width: 600px) {
  .phone-mockup { width: 260px; height: 537px; }
  .phone-island { width: 88px; height: 24px; }
  .float-card   { display: none; }
  .scroll-hint  { display: none; }
  .phone-halo   { width: 320px; }
}

/* ── BADGE SHIMMER BORDER ─────────────────────────────────────── */
.badge-rotate-wrap {
  display: inline-flex;
  padding: 1.5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(139,92,246,0.9) 0%,
    rgba(236,72,153,0.7) 35%,
    rgba(99,102,241,0.5) 65%,
    rgba(139,92,246,0.9) 100%
  );
  background-size: 200% 100%;
  animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── STATS SECTION ────────────────────────────────────────────── */
.stat-cell {
  background: #0d0d1a;
  padding: 28px 20px;
  text-align: center;
}
.stat-val {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-val.stat-green {
  background: linear-gradient(135deg, #34d399, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-val.stat-pink {
  background: linear-gradient(135deg, #f472b6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-val.stat-amber {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number, .stat-suffix { display: inline; }
.stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* ── WAITLIST SECTION ─────────────────────────────────────────── */
.orb-cta {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(109,40,217,0.22) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
  border-radius: 50%;
}
.waitlist-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-family: var(--font);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.waitlist-input::placeholder { color: rgba(100,116,139,0.8); }
.waitlist-input:focus {
  border-color: rgba(124,58,237,0.5);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.perk-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #64748b;
}
.perk-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  flex-shrink: 0;
}
.perk-check.emerald { background: rgba(16,185,129,0.12);  border: 1px solid rgba(16,185,129,0.25);  color: #10b981; }
.perk-check.violet  { background: rgba(124,58,237,0.12);  border: 1px solid rgba(124,58,237,0.25);  color: #8b5cf6; }
.perk-check.pink    { background: rgba(236,72,153,0.12);  border: 1px solid rgba(236,72,153,0.25);  color: #ec4899; }

/* ── PHONE DRINK ENTRANCE ANIMATIONS ─────────────────────────── */
.tab-drinks .drink-row {
  animation: drinkSlideIn 0.45s cubic-bezier(0.16,1,0.3,1) both;
}
.tab-drinks .drink-row:nth-child(1) { animation-delay: 0.9s; }
.tab-drinks .drink-row:nth-child(2) { animation-delay: 1.3s; }
.tab-drinks .drink-row:nth-child(3) { animation-delay: 1.7s; }
@keyframes drinkSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tab-footer  { animation: fadeInPhone 0.4s ease both; animation-delay: 2.1s; }
.app-add-btn { animation: fadeInPhone 0.4s ease both; animation-delay: 2.3s; }
.friends-bar { animation: fadeInPhone 0.4s ease both; animation-delay: 2.5s; }
@keyframes fadeInPhone {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .phone-mockup, .float-card-1, .float-card-2,
  .badge-dot, .scroll-line, .tab-open-dot, .friends-dot,
  .gradient-text, .btn-glow, .btn-primary, .marquee-track,
  .phone-ring, .badge-rotate-wrap { animation: none; }
  .badge-rotate-wrap { background: rgba(139,92,246,0.5); }
  .btn-primary { background: #6d28d9; }
  .scroll-hint { display: none; }
  .marquee-track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
  .tab-drinks .drink-row,
  .tab-footer, .app-add-btn, .friends-bar { animation: none; opacity: 1; transform: none; }
}
