/* ============================================================
   COMBO — Waitlist site
   Apple-style typography (SF Pro on Apple, Inter elsewhere)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;

  --bg: #000;
  --surface:    rgba(255,255,255,0.04);
  --surface-2:  rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.08);
  --border-2:   rgba(255,255,255,0.14);
  --text:       #fff;
  --text-dim:   rgba(255,255,255,0.62);
  --text-mute:  rgba(255,255,255,0.42);
  --red:        #ef4444;
  --red-2:      #dc2626;
  --red-glow:   rgba(239,68,68,0.35);

  --bronze: #cd7f32;
  --silver: #a8a9ad;
  --gold:   #ffd700;
  --elite:  #7c3aed;
  --legend: #ef4444;

  --r-card: 24px;
  --r-md:   16px;
  --r-sm:   10px;
  --container: 1240px;
  --pad: clamp(20px, 5vw, 80px);

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

body {
  font-family: var(--font-body);
  background: #000;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

/* ---------- Background atmosphere ---------- */
.bg-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(239,68,68,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 30%, rgba(239,68,68,0.05), transparent 60%);
}

/* ============== APPLE-STYLE TYPOGRAPHY ============== */
.display, h1, h2, .big-text, .logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
h1.display, .hero h1 {
  font-size: clamp(48px, 7.6vw, 116px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
p {
  color: var(--text-dim);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  letter-spacing: -0.011em;
}
.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--text-dim);
  max-width: 520px;
  letter-spacing: -0.012em;
}
.red { color: var(--red); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 99px;
  background: rgba(239,68,68,0.06);
  margin-bottom: 22px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: clamp(16px, 1.15vw, 18px); margin: 0 auto; max-width: 520px; }

main { position: relative; z-index: 2; }
section { padding: clamp(72px, 9vw, 130px) var(--pad); position: relative; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  background: rgba(0,0,0,0.85);
  border-bottom-color: var(--border);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--red);
  text-shadow: 0 0 24px var(--red-glow);
  transition: text-shadow .3s var(--ease);
}
.logo:hover { text-shadow: 0 0 30px var(--red-glow), 0 0 60px var(--red-glow); }
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(239,68,68,0.45));
  transition: filter .3s var(--ease), transform .3s var(--ease);
  mix-blend-mode: screen;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 18px rgba(239,68,68,0.65));
  transform: scale(1.05);
}
.footer-inner .logo-img { height: 36px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 10px 18px;
  background: var(--red);
  color: #fff;
  border-radius: 99px;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 20px rgba(239,68,68,0.3);
}
.btn-nav:hover {
  background: #f55;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(239,68,68,0.5);
}
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.hero {
  min-height: 96vh;
  padding-top: clamp(120px, 13vw, 170px);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  flex: 1;
  align-items: center;
}
.hero-text { position: relative; z-index: 3; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  padding: 7px 14px;
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 99px;
  background: rgba(239,68,68,0.06);
  margin-bottom: 24px;
}
.badge .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .red {
  background: linear-gradient(180deg, #ff5757 0%, #dc2626 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px var(--red-glow);
}
.hero .lead { margin-bottom: 32px; max-width: 460px; }

/* ---------- Signup form ---------- */
.signup-form { max-width: 500px; }
.signup-form.big { max-width: 540px; margin: 0 auto; }
.signup-input {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.signup-input:focus-within {
  border-color: var(--red);
  background: rgba(239,68,68,0.04);
}
.signup-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.signup-input input::placeholder { color: var(--text-mute); }
.signup-input button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  background: var(--red);
  color: #fff;
  border-radius: 99px;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 24px rgba(239,68,68,0.35);
  white-space: nowrap;
}
.signup-input button:hover {
  background: #f55;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(239,68,68,0.5);
}
.signup-input button svg { transition: transform .25s var(--ease); }
.signup-input button:hover svg { transform: translateX(3px); }
.signup-form.big .signup-input { padding: 7px; }
.signup-form.big input { padding: 16px 24px; font-size: 16px; }
.signup-form.big button { padding: 14px 26px; font-size: 14px; }

/* ---------- intl-tel-input — dark theme integration ---------- */
.signup-input .iti {
  flex: 1;
  display: flex;
  width: 100%;
}
.signup-input .iti__country-container { padding: 0; }
.signup-input .iti__selected-country,
.signup-input .iti__selected-country-primary {
  background: transparent;
  border: 0;
  height: 100%;
  padding: 0 6px 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.signup-input .iti__selected-country:hover,
.signup-input .iti__selected-country:focus {
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
}
.signup-input .iti__arrow {
  border-top-color: rgba(255,255,255,0.5);
}
.signup-input .iti__arrow--up {
  border-bottom-color: rgba(255,255,255,0.5);
}
.signup-input .iti--separate-dial-code .iti__selected-dial-code {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding-left: 4px;
}
.signup-form.big .iti--separate-dial-code .iti__selected-dial-code { font-size: 16px; }
.signup-input .iti input[type="tel"] {
  flex: 1;
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
}

/* Dropdown */
.iti__dropdown-content {
  background: #0a0a0a;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  z-index: 200;
}
.iti__search-input {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
}
.iti__search-input::placeholder { color: var(--text-mute); }
.iti__country-list {
  background: #0a0a0a;
  max-height: 260px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.iti__country-list::-webkit-scrollbar { width: 8px; }
.iti__country-list::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 4px; }
.iti__country {
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.iti__country:hover,
.iti__country.iti__highlight {
  background: rgba(239,68,68,0.12);
  color: #fff;
}
.iti__country-name { color: var(--text); }
.iti__dial-code { color: var(--text-mute); }

/* Mobile stacking — country picker still on the same row as input, button below */
@media (max-width: 720px) {
  .signup-input .iti { width: 100%; }
}

.form-status {
  font-size: 13px;
  margin-top: 12px;
  min-height: 18px;
  font-weight: 500;
  padding-left: 20px;
}
.form-status.success { color: #22c55e; }
.form-status.error { color: var(--red); }

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.avatars { display: flex; }
.av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-right: -10px;
}
.av1 { background: linear-gradient(135deg, #ef4444, #f97316); }
.av2 { background: linear-gradient(135deg, #7c3aed, #ef4444); }
.av3 { background: linear-gradient(135deg, #fbbf24, #ef4444); }
.av4 { background: linear-gradient(135deg, #22c55e, #06b6d4); }
.trust-text { font-size: 13px; color: var(--text-dim); letter-spacing: -0.005em; }
.trust-text strong { color: var(--text); font-weight: 700; }

/* ---------- HERO PHONES ---------- */
.hero-phones {
  position: relative;
  height: clamp(420px, 56vw, 640px);
  perspective: 1400px;
}
.phone {
  position: absolute;
  width: clamp(220px, 21vw, 290px);
  aspect-ratio: 1170/2007;
  transform-style: preserve-3d;
}
.phone-1 {
  top: 10%;
  left: 0;
  transform: rotate(-7deg) translateZ(0);
  z-index: 2;
  animation: float-1 6s ease-in-out infinite;
}
.phone-2 {
  top: 0;
  right: 0;
  transform: rotate(8deg) translateZ(40px);
  z-index: 3;
  animation: float-2 7s ease-in-out infinite;
}
@keyframes float-1 {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-12px); }
}
@keyframes float-2 {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-16px); }
}

.phone-frame {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #2a2a2a 0%, #0a0a0a 100%);
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(239,68,68,0.12);
}
.phone-2 .phone-frame {
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 30px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255,215,0,0.2);
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 22px;
  background: #000;
  border-radius: 99px;
  z-index: 5;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #000;
}

/* ============== FIGHTER CARD ============== */
.fc {
  position: relative;
  width: 100%;
  aspect-ratio: 0.7 / 1;
  border-radius: 18px;
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.fc::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  z-index: -1;
}
.fc::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(255,255,255,0.15);
  z-index: 1;
  pointer-events: none;
}
.fc-gold::before { background: linear-gradient(160deg, #ffd700 0%, #b8860b 40%, #5c3d00 100%); }
.fc-gold {
  box-shadow:
    0 20px 60px rgba(255,215,0,0.25),
    0 0 80px rgba(255,215,0,0.15);
}
.fc-bronze::before { background: linear-gradient(160deg, #cd7f32 0%, #7a4d1f 100%); }
.fc-silver::before { background: linear-gradient(160deg, #d8d9dc 0%, #6f7075 100%); }
.fc-elite::before  { background: linear-gradient(160deg, #a78bfa 0%, #5b21b6 100%); }
.fc-legend::before { background: linear-gradient(160deg, #ff5757 0%, #7f1d1d 100%); }

.fc-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.2) 45%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.2) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}
@keyframes shine {
  0% { background-position: 200% 0; }
  60%, 100% { background-position: -100% 0; }
}

.fc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}
.fc-rating { display: flex; flex-direction: column; line-height: 1; }
.fc-ovr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  letter-spacing: -0.04em;
}
.fc-tier {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.7);
  margin-top: 3px;
}
.fc-rare {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.7);
  background: rgba(255,255,255,0.25);
  padding: 3px 6px;
  border-radius: 3px;
}
.fc-portrait {
  position: relative;
  aspect-ratio: 1;
  margin: 4px 8px 8px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  z-index: 2;
}
.fc-silhouette { width: 100%; height: 100%; }
.fc-name {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 8px;
  z-index: 2;
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.fc-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  z-index: 2;
  position: relative;
}
.fc-stat { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.fc-stat span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.fc-stat label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.7);
  margin-top: 2px;
}

/* Big version */
.fc-large { width: clamp(280px, 32vw, 420px); border-radius: 28px; }
.fc-large::after { border-radius: 28px; }
.fc-large.fc { padding: 26px 22px 28px; }
.fc-large .fc-ovr { font-size: 60px; }
.fc-large .fc-tier { font-size: 13px; margin-top: 4px; }
.fc-large .fc-rare { font-size: 10px; padding: 5px 10px; }
.fc-portrait-lg { aspect-ratio: 1.05; margin: 8px 12px 12px; border-radius: 14px; }
.fc-large .fc-name { font-size: 24px; margin-bottom: 14px; }
.fc-stats-lg .fc-stat span { font-size: 30px; }
.fc-stats-lg .fc-stat label { font-size: 10px; margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee {
  margin-top: clamp(60px, 7vw, 100px);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #000, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: -0.025em;
  color: var(--text);
}
.marquee-track i {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--red-glow);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Card showcase ---------- */
.card-showcase {
  position: relative;
  padding-bottom: clamp(80px, 10vw, 140px);
}
.card-stage {
  position: relative;
  height: clamp(440px, 50vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(40px, 5vw, 64px) auto;
  perspective: 1400px;
}
.hero-card {
  position: relative;
  z-index: 5;
  transition: transform .4s var(--ease);
  transform-style: preserve-3d;
}
.hero-card:hover { transform: scale(1.02); }

.floating-cards { position: absolute; inset: 0; pointer-events: none; }
.float-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r));
  width: clamp(110px, 13vw, 160px);
  aspect-ratio: 0.7;
  opacity: 0.55;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
}
.float-card.fc-mini.fc { padding: 12px 10px; border-radius: 14px; }
.float-card.fc-mini.fc::after { border-radius: 14px; }
.float-card .fc-ovr { font-size: 26px; }
.float-card .fc-tier { font-size: 8px; margin-top: 2px; }
.card-showcase:hover .float-card { opacity: 0.85; }

.stat-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.legend-item:hover { background: var(--surface-2); border-color: var(--border-2); }
.legend-item strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--red);
}

/* ---------- Session Analysis ---------- */
.analysis {
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(239,68,68,0.06), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.015) 100%);
}
.analysis-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.analysis-text { max-width: 580px; }
.analysis-text h2 { margin-bottom: 18px; }
.analysis-text > p {
  font-size: clamp(16px, 1.15vw, 18px);
  margin-bottom: 32px;
  max-width: 480px;
}
.analysis-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.analysis-list li {
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.analysis-list li:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  transform: translateX(4px);
}
.analysis-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.analysis-list span {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.analysis-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}
.phone-static {
  position: relative;
  width: clamp(260px, 28vw, 340px);
  aspect-ratio: 1170/1986;
  transform: rotate(-3deg);
  animation: float-static 7s ease-in-out infinite;
}
@keyframes float-static {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-12px); }
}
.phone-static .phone-frame {
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 30px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(239,68,68,0.18);
}

/* ---------- How it works ---------- */
.how { background: linear-gradient(180deg, transparent 0%, rgba(239,68,68,0.02) 100%); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  max-width: var(--container);
  margin: 0 auto;
}
.step {
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.step::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .5s var(--ease);
}
.step:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.step:hover::before { width: 100%; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  display: block;
  margin-bottom: 16px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  opacity: 0.85;
  transition: opacity .3s var(--ease);
}
.step:hover .step-num { opacity: 1; }
.step h3 { font-size: 21px; margin-bottom: 10px; }

/* ---------- Tiers ---------- */
.tier-ladder {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier {
  display: grid;
  grid-template-columns: 6px 1fr;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.tier:hover { background: var(--surface-2); transform: translateX(4px); }
.tier-bar { width: 6px; }
.tier-content {
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 90px 180px 1fr;
  gap: 24px;
  align-items: center;
}
.tier-range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-mute);
  letter-spacing: -0.02em;
}
.tier h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.tier p { font-size: 14px; color: var(--text-dim); }

.tier-bronze .tier-bar { background: var(--bronze); box-shadow: inset 0 0 20px rgba(205,127,50,0.5); }
.tier-bronze h3 { color: var(--bronze); }
.tier-silver .tier-bar { background: var(--silver); }
.tier-silver h3 { color: var(--silver); }
.tier-gold   .tier-bar { background: var(--gold); box-shadow: inset 0 0 20px rgba(255,215,0,0.5); }
.tier-gold   h3 { color: var(--gold); text-shadow: 0 0 20px rgba(255,215,0,0.3); }
.tier-elite  .tier-bar { background: var(--elite); box-shadow: inset 0 0 20px rgba(124,58,237,0.5); }
.tier-elite  h3 { color: var(--elite); text-shadow: 0 0 20px rgba(124,58,237,0.3); }
.tier-legend .tier-bar { background: var(--legend); box-shadow: inset 0 0 20px rgba(239,68,68,0.6); }
.tier-legend h3 { color: var(--legend); text-shadow: 0 0 30px var(--red-glow); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(239,68,68,0.10), transparent 70%);
  overflow: hidden;
}
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta h2 {
  font-size: clamp(64px, 11vw, 168px);
  margin-bottom: 26px;
  letter-spacing: -0.05em;
}
.cta h2 .red {
  background: linear-gradient(180deg, #ff5757 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px var(--red-glow);
}
.cta p {
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 500px;
  margin: 0 auto 30px;
}
.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--surface);
}
.trust-pill .dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--pad);
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.footer-inner .logo { font-size: 24px; }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: -0.005em;
}
.footer-status { display: inline-flex; align-items: center; gap: 8px; }
.status-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

.steps [data-reveal]:nth-child(1) { transition-delay: 0s; }
.steps [data-reveal]:nth-child(2) { transition-delay: .08s; }
.steps [data-reveal]:nth-child(3) { transition-delay: .16s; }

.tier-ladder [data-reveal]:nth-child(1) { transition-delay: 0s; }
.tier-ladder [data-reveal]:nth-child(2) { transition-delay: .06s; }
.tier-ladder [data-reveal]:nth-child(3) { transition-delay: .12s; }
.tier-ladder [data-reveal]:nth-child(4) { transition-delay: .18s; }
.tier-ladder [data-reveal]:nth-child(5) { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .hero-text { max-width: 600px; margin: 0 auto; }
  .hero h1 { text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .signup-form { margin: 0 auto; }
  .trust-row { justify-content: center; }
  .hero-phones { height: 520px; max-width: 540px; margin: 0 auto; width: 100%; }
  .phone { width: clamp(220px, 30vw, 280px); }
  .analysis-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .analysis-text { margin: 0 auto; }
  .analysis-text > p { margin-left: auto; margin-right: auto; }
  .analysis-list { text-align: left; }
  .phone-static { width: clamp(240px, 60vw, 320px); }
  .steps { grid-template-columns: 1fr; }
  .tier-content { grid-template-columns: 1fr; gap: 8px; padding: 18px 22px; }
  .tier-range { font-size: 14px; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .logo { font-size: 20px; }
  .btn-nav { padding: 8px 14px; font-size: 12px; }
  .signup-input { flex-direction: column; padding: 8px; gap: 6px; }
  .signup-input input { padding: 12px 16px; text-align: center; }
  .signup-input button { width: 100%; justify-content: center; padding: 14px; }
  .marquee-track { font-size: 24px; gap: 16px; }
  .marquee-track i { width: 6px; height: 6px; }
  .floating-cards { display: none; }
  .hero-phones { height: 460px; }
  .phone { width: 200px; }
  .phone-1 { left: 50%; transform: translateX(-90%) rotate(-7deg); }
  .phone-2 { right: 50%; transform: translateX(90%) rotate(8deg); }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .badge, .eyebrow { font-size: 10px; }
  .hero { padding-top: 100px; }
  .hero h1 { font-size: clamp(40px, 12vw, 64px); }
  h2 { font-size: clamp(32px, 10vw, 52px); }
  .cta h2 { font-size: clamp(56px, 18vw, 96px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
