/* ── Reset + Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1117;
  --navy2:      #161b22;
  --navy3:      #21262d;
  --navy4:      #2d333b;
  --gold:       #d4a017;
  --gold-bright:#f0b429;
  --gold-dim:   rgba(212,160,23,0.12);
  --gold-border:rgba(212,160,23,0.35);
  --text1:      #f0f6fc;
  --text2:      #8b949e;
  --text3:      #6e7681;
  --green:      #3fb950;
  --danger:     #f85149;
  --border:     #30363d;
  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text1);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(13,17,23,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
  font-size: 18px; font-weight: 900; letter-spacing: 2px;
  color: var(--text1);
}
.nav-logo span { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #000;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-60%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-bottom {
  top: auto; bottom: 0;
  left: 50%; transform: translateX(-50%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
  padding: 0;
}

.badge {
  display: inline-flex; align-items: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold);
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.gold { color: var(--gold); }

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(212,160,23,0.25);
  border: none; cursor: pointer; letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,160,23,0.35);
}

.btn-ghost {
  display: inline-block;
  color: var(--text2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text1); }

.hero-note {
  font-size: 13px;
  color: var(--text3);
}

/* ── MOCK PHONE ────────────────────────────────────────────────────────────── */
.phone-wrap {
  position: relative; z-index: 1;
  flex-shrink: 0;
}

.phone {
  width: 240px;
  background: var(--navy2);
  border-radius: 36px;
  border: 1.5px solid var(--border);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.03),
    0 32px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(212,160,23,0.08);
  overflow: hidden;
  padding: 24px 16px 20px;
}

.phone-screen {
  display: flex; flex-direction: column; gap: 10px;
}

.mock-header {
  text-align: center;
  font-size: 14px; font-weight: 900; letter-spacing: 2px;
}
.mock-logo-w { color: var(--text1); }
.mock-logo-g { color: var(--gold); }

.mock-badge {
  align-self: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--gold);
}

.mock-card-img {
  background: var(--navy3);
  border-radius: 10px;
  border: 1px solid var(--border);
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}

/* shimmer animation */
.mock-card-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,160,23,0.07) 40%,
    rgba(212,160,23,0.15) 50%,
    rgba(212,160,23,0.07) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── mock sports card — 2018 Topps Chrome style ──────────────────────── */
.mock-sports-card {
  width: 82px; height: 114px;
  border-radius: 4px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.3);
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative; z-index: 1;
  flex-shrink: 0;
  background: #e8e8e8;
}

/* rainbow refractor shimmer */
.mock-chrome-sheen {
  position: absolute; inset: 0; z-index: 10; pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255,80,80,0.18) 0%,
    rgba(255,180,0,0.15) 18%,
    rgba(80,255,120,0.12) 33%,
    rgba(0,180,255,0.18) 50%,
    rgba(180,0,255,0.12) 66%,
    rgba(255,80,80,0.1) 82%,
    rgba(255,220,0,0.15) 100%
  );
  border-radius: 4px;
  mix-blend-mode: screen;
}

/* outer red border frame */
.mock-topps-frame {
  position: absolute; inset: 3px;
  border: 1.5px solid #cc1122;
  border-radius: 3px;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: #f0f0f0;
}

/* logos row */
.mock-topps-logos {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 4px 1px;
  background: rgba(240,240,240,0.95);
  flex-shrink: 0;
}

.mock-topps-chrome-logo {
  font-size: 4px; font-weight: 900; color: #222;
  line-height: 1.1; letter-spacing: 0.3px;
  border: 0.5px solid #666;
  padding: 1px 2px;
  border-radius: 1px;
}
.mock-topps-chrome-logo span {
  font-weight: 400; color: #555;
}

.mock-topps-wordmark {
  font-size: 9px; font-weight: 900; color: #cc1122;
  font-style: italic; letter-spacing: -0.5px;
}

/* action photo — middle bulk of card */
.mock-action-photo {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #dde8f5 0%, #b8cce8 40%, #8aaad0 100%);
}

.mock-action-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(255,255,255,0.4) 0%, transparent 60%),
    linear-gradient(170deg, #c8daf0 0%, #95b4d8 50%, #6a90c0 100%);
}

/* pitcher wind-up silhouette */
.mock-pitcher-figure {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-40%);
  width: 42px; height: 58px;
  background: linear-gradient(180deg, #f5f5f5 0%, #d0d0d0 100%);
  clip-path: polygon(
    /* foot base */
    15% 100%, 20% 100%, 25% 82%, 42% 75%,
    /* back leg */
    48% 58%, 52% 42%,
    /* torso */
    60% 28%, 68% 16%,
    /* pitching arm extended forward */
    90% 22%, 92% 28%, 75% 35%,
    /* glove hand tucked */
    55% 38%,
    /* head */
    58% 12%, 52% 4%, 44% 4%, 40% 10%, 42% 22%,
    /* left shoulder */
    32% 30%, 22% 45%,
    /* left leg */
    18% 62%, 12% 80%, 10% 100%
  );
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

/* RC badge bottom-left of photo */
.mock-rc-badge {
  position: absolute; bottom: 4px; left: 4px;
  display: flex; align-items: center; gap: 1.5px;
}
.mock-rc-text {
  background: #cc1122;
  color: #fff;
  font-size: 5.5px; font-weight: 900;
  padding: 1px 2.5px; border-radius: 1.5px;
  letter-spacing: 0.3px;
}
.mock-mlb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002d72 50%, #cc1122 50%);
  border: 0.5px solid #fff;
}

/* nameplate — white section with headshot + name */
.mock-nameplate {
  display: flex; align-items: center; gap: 4px;
  padding: 3px 4px 2px;
  background: #f8f8f8;
  border-top: 1px solid #cc1122;
  flex-shrink: 0;
}

/* circular headshot */
.mock-headshot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid #cc1122;
  overflow: hidden;
  flex-shrink: 0;
  background: #cc1122;
  display: flex; align-items: flex-end; justify-content: center;
}
.mock-headshot-inner {
  width: 12px; height: 14px;
  background: linear-gradient(180deg, #f5d5a0 0%, #e0b070 100%);
  border-radius: 50% 50% 0 0;
  margin-bottom: -1px;
}

.mock-name-block {
  display: flex; flex-direction: column; gap: 0.5px;
}
.mock-player-name {
  font-size: 7px; font-weight: 900; color: #111;
  line-height: 1.05; letter-spacing: 0.2px;
}
.mock-player-pos {
  font-size: 4.5px; color: #555; letter-spacing: 0.3px; font-weight: 600;
}

/* red team banner at very bottom */
.mock-team-banner {
  background: #cc1122;
  color: #fff;
  font-size: 7px; font-weight: 900;
  text-align: center;
  padding: 2px 0;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.mock-result {
  background: var(--navy3);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}

.mock-result-row {
  display: flex; justify-content: space-between; align-items: center;
}
.mock-label {
  font-size: 9px; color: var(--text3); font-weight: 500;
}
.mock-val {
  font-size: 10px; color: var(--text1); font-weight: 600; text-align: right;
}
.mock-good { color: var(--green); }
.mock-price { color: var(--gold); font-weight: 800; font-size: 12px; }

.mock-btn {
  background: var(--gold);
  border-radius: 8px;
  color: #000;
  font-size: 11px; font-weight: 800;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.3px;
  animation: pulse-btn 3s ease-in-out infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
  50%       { box-shadow: 0 0 12px 3px rgba(212,160,23,0.3); }
}

/* ── PROOF BAR ─────────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px;
  font-size: 14px; color: var(--text2);
  text-align: center;
}
.proof-sep { color: var(--border); }

/* ── SECTIONS ──────────────────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text2);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* ── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 48px;
}

/* ── video embed ─────────────────────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.step-card {
  flex: 1;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }

.step-card-highlight {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, var(--navy2), #1a1f0a);
  box-shadow: 0 0 40px rgba(212,160,23,0.08);
}

.step-num {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); opacity: 0.7;
}
.step-icon { font-size: 32px; }
.step-card h3 { font-size: 18px; font-weight: 800; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

.step-connector {
  padding: 0 8px;
  margin-top: 80px;
  font-size: 24px;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── PAIN POINTS ───────────────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s;
}
.pain-card:hover { border-color: rgba(248,81,73,0.4); }
.pain-icon { font-size: 28px; }
.pain-card h4 { font-size: 16px; font-weight: 700; }
.pain-card p  { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── FEATURES ──────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature p  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── PRICING ───────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}

.pricing-card-popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, #161b22, #1a1f0a);
  box-shadow: 0 0 48px rgba(212,160,23,0.1);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--text2); text-transform: uppercase;
}

.pricing-price {
  font-size: 42px; font-weight: 900; letter-spacing: -1px;
  color: var(--gold); line-height: 1;
}
.pricing-price span { font-size: 16px; color: var(--text2); font-weight: 500; }

.pricing-desc { font-size: 13px; color: var(--text2); }

.pricing-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px;
}
.pricing-features li {
  font-size: 14px; color: var(--text2);
  display: flex; gap: 8px;
}
.pricing-features li::before {
  content: '';
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  color: var(--text2);
  font-size: 15px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SURVEY SECTION ────────────────────────────────────────────────────────── */
.survey-section { background: var(--navy); }

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

.survey-text { display: flex; flex-direction: column; gap: 16px; }
.survey-text h2 { margin-bottom: 0; }
.survey-text p { color: var(--text2); font-size: 16px; line-height: 1.7; }

.survey-qs {
  display: flex; flex-direction: column; gap: 12px;
}

.survey-q {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text2);
  transition: color 0.15s, border-color 0.15s;
}
.survey-q:hover { color: var(--text1); border-left-color: var(--gold-bright); }

/* ── WAITLIST ──────────────────────────────────────────────────────────────── */
.waitlist-section {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.waitlist-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 24px;
  position: relative; z-index: 1;
}

.waitlist-inner h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
}

.waitlist-form {
  width: 100%; max-width: 640px;
}

.form-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.form-row input {
  flex: 1; min-width: 160px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text1);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
}
.form-row input::placeholder { color: var(--text3); }
.form-row input:focus { border-color: var(--gold-border); }

.form-note {
  margin-top: 10px;
  font-size: 13px; color: var(--text3); text-align: center;
}

.waitlist-success {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 32px;
  background: rgba(63,185,80,0.08);
  border: 1px solid rgba(63,185,80,0.3);
  border-radius: var(--radius-lg);
  max-width: 500px;
}
.success-icon { font-size: 40px; }
.waitlist-success h3 { font-size: 22px; font-weight: 800; color: var(--green); }
.waitlist-success p  { color: var(--text2); font-size: 15px; line-height: 1.6; }

.waitlist-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.stat-num {
  font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--text3);
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
}

.footer-logo { font-size: 16px; font-weight: 900; letter-spacing: 2px; }
.footer-copy { font-size: 13px; color: var(--text3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--text2); text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-inner { align-items: center; }
  .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }

  .phone-wrap { justify-self: center; }
  .phone { width: 220px; }

  .steps {
    flex-direction: column; gap: 12px;
  }
  .step-connector {
    transform: rotate(90deg);
    margin: 0 auto; padding: 0;
  }

  .survey-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column; text-align: center;
  }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
  }
  .form-row .btn-primary { width: 100%; text-align: center; }
}
