/* Elevated Bets — public shell. Tokens from logo + TT product CSS. */
:root {
  --bg: #0a0e1a;
  --bg-2: #0c1220;
  --fg: #f1f5f9;
  --muted: #94a3b8;
  --silver: #c8d0dc;
  --tan: #e8c547;
  --tan-2: #b8942e;
  --tan-ink: #0a0e1a;
  --blue: #243c84;
  --blue-2: #3c609c;
  --blue-hi: #6090c0;
  --card: #161f35;
  --card-2: #1c2744;
  --border: rgba(36, 60, 132, 0.45);
  --border-strong: rgba(232, 197, 71, 0.55);
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(22, 31, 53, 0.55);
  --profit: #2ed47a;
  --profit-bg: rgba(46, 212, 122, 0.12);
  --loss: #ef4444;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.75);
  --glow: 0 0 18px color-mix(in srgb, var(--blue-2) 28%, transparent);
  --metal: linear-gradient(120deg, #8aa4c8 0%, #f1f5f9 28%, #e8c547 58%, #d8b460 82%, #243c84 100%);
  --btn: linear-gradient(135deg, #8aa4c8 0%, #e8c547 30%, #f3e7b0 52%, #d8b460 74%, #243c84 100%);
  --btn-blue: linear-gradient(125deg, #0a0e1a 0%, #1c2744 18%, #243c84 40%, #8aa4c8 62%, #3c609c 82%, #161f35 100%);
  --btn-warm: linear-gradient(145deg, #8aa4c8 0%, #e8c547 28%, #f3e7b0 50%, #d8b460 72%, #243c84 100%);
  --drawer: linear-gradient(160deg, #161f35 0%, #0a0e1a 55%, #1c2744 100%);
  --radius: 24px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--fg); }
body {
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.metal {
  background-image: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}
.luxe { box-shadow: none; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: border-color 0.4s, background 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 14, 26, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}
.nav-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}
@media (min-width: 640px) {
  .nav-bar { padding-inline: 2rem; }
}
.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(22, 31, 53, 0.6);
  overflow: hidden;
}
.brand-mark img { width: 22px; height: 22px; object-fit: contain; }
.brand-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop { display: none; align-items: center; gap: 1.05rem; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.nav-link:hover { color: var(--fg); }
.menu-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(22, 31, 53, 0.5);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 1.05rem 1.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid rgba(200, 208, 220, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.25s;
}
.btn-pill:hover { transform: scale(1.03); }
.btn-tan {
  background-image: var(--btn-warm);
  color: var(--tan-ink);
}
.btn-blue {
  background-image: var(--btn-blue);
  color: #f8fafc;
  text-shadow: 0 1px 0 rgba(10, 14, 26, 0.35);
}
.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--silver) 45%, transparent);
  background-image: linear-gradient(145deg, rgba(22, 31, 53, 0.9), rgba(36, 60, 132, 0.55), rgba(232, 197, 71, 0.18));
  color: var(--fg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btn-quiet {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #161f35, #1c2744 55%, #243c84);
  color: var(--silver);
}
.btn-sm { padding: 0.72rem 1.25rem; font-size: 0.7rem; }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 0.75rem; }
.btn-full { width: 100%; }
.btn-wide { width: 100%; padding: 1.1rem 1.6rem; font-size: 0.75rem; font-weight: 700; }

/* Drawer */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  height: 100dvh;
  width: 92%;
  max-width: 28rem;
  padding: 1rem;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
body.nav-open .drawer-scrim { opacity: 1; pointer-events: auto; }
body.nav-open .drawer { transform: none; pointer-events: auto; }
.drawer-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(36, 60, 132, 0.55);
  padding: 1.25rem;
  background-image: var(--drawer);
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.9);
}
.drawer-top { display: flex; justify-content: space-between; align-items: flex-start; }
.drawer-kicker {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
}
.ornament { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.ornament span {
  height: 1px;
  width: 4rem;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--tan) 60%, transparent));
}
.ornament span:last-child { background: linear-gradient(270deg, transparent, color-mix(in srgb, var(--tan) 60%, transparent)); }
.close-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(36, 60, 132, 0.45);
  color: var(--tan);
}
.drawer-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.drawer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 1.25rem;
  background-image: linear-gradient(120deg, #1c2744, #161f35);
}
.drawer-item span { flex: 1; font-size: 17px; font-weight: 500; }
.drawer-item.is-hot {
  border-color: rgba(232, 197, 71, 0.65);
  color: var(--tan);
  background-image: linear-gradient(120deg, rgba(36, 60, 132, 0.55), rgba(10, 14, 26, 0.75));
  box-shadow: none;
}
.drawer-item.is-current {
  border-color: rgba(96, 144, 192, 0.45);
  background-image: linear-gradient(120deg, #1c2744, #161f35);
}
.drawer-foot { margin-top: auto; padding: 2rem 0 0.5rem; text-align: center; }
.drawer-foot .btn-pill { width: 100%; margin-top: 0.75rem; }
.drawer-foot .label {
  margin-top: 1rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
}
.drawer-foot p {
  margin: 0.75rem auto 0;
  max-width: 19rem;
  font-size: 15px;
  color: var(--muted);
}
.drawer-util {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.drawer-util:hover { color: var(--tan); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 85vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(28% 36% at 12% 78%, rgba(36, 60, 132, 0.45), transparent 70%),
    radial-gradient(24% 32% at 88% 18%, rgba(232, 197, 71, 0.16), transparent 68%),
    radial-gradient(40% 50% at 50% 100%, rgba(60, 96, 156, 0.22), transparent 70%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.72;
  filter: saturate(0.85) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 50% 35%, rgba(10, 14, 26, 0.2), var(--bg) 82%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 1.25rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-inner { padding: 10rem 2rem 7rem; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(22, 31, 53, 0.4);
  padding: 0.35rem 1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.eyebrow.tan { color: var(--tan); }
.hero h1 {
  margin-top: 1.75rem;
  max-width: 56rem;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .h1-sub {
  color: rgba(241, 245, 249, 0.92);
  background: none;
  -webkit-text-fill-color: rgba(241, 245, 249, 0.92);
}
.hero-lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}
@media (min-width: 640px) { .hero-lead { font-size: 1rem; } }
.cta-row {
  margin-top: 2.25rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-row { width: auto; flex-direction: row; }
}
.cta-row .btn-pill { width: 100%; }
@media (min-width: 640px) {
  .cta-row .btn-pill { width: auto; }
}

.stats {
  margin-top: 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(22, 31, 53, 0.82);
  padding: 1.5rem 1rem;
  backdrop-filter: blur(8px);
}
.stat dt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat dd {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  background: none;
  -webkit-text-fill-color: var(--fg);
}
@media (min-width: 640px) { .stat dd { font-size: 1.875rem; } }

/* Sections */
.section { padding: 5rem 1.25rem; }
@media (min-width: 640px) { .section { padding-inline: 2rem; } }
@media (min-width: 768px) { .section { padding-block: 7rem; } }
.section-inner { max-width: var(--max); margin: 0 auto; }
.page-hero { padding-top: 8rem; }
@media (min-width: 640px) { .page-hero { padding-top: 10rem; } }
.center { text-align: center; }
.center-copy { max-width: 42rem; margin: 0 auto; text-align: center; }
.page-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
@media (min-width: 640px) { .page-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .page-title { font-size: 3rem; } }
.page-lead {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}
@media (min-width: 640px) { .page-lead { font-size: 1rem; } }

.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-copy { max-width: 36rem; text-align: left; }
.why-list {
  border-radius: 1.5rem;
  padding: 1.75rem;
}
.why-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}
.why-list li + li { margin-top: 1rem; }
.ico {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--tan);
}

/* Leaderboard */
.board { max-width: 56rem; margin: 0 auto; padding: 4rem 1.25rem; }
.board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.board-head h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 640px) { .board-head h2 { font-size: 1.875rem; } }
.board-bar {
  width: 6px;
  height: 28px;
  border-radius: 999px;
  background: var(--profit);
}
.board-tag {
  display: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
@media (min-width: 640px) { .board-tag { display: block; } }
.board-list { border-radius: 1.5rem; overflow: hidden; }
.board-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) { .board-row { padding-inline: 1.5rem; } }
.board-row:last-child { border-bottom: 0; }
.board-row.top { background-image: linear-gradient(90deg, var(--glass), transparent); }
.rank {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--muted);
  flex-shrink: 0;
}
.board-row.top .rank {
  border: 1px solid var(--border-strong);
  color: var(--tan);
  font-weight: 700;
}
.who { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.board-row.top .who { color: var(--tan); font-weight: 700; }
.amt {
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--profit-bg);
  color: var(--profit);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
}
.fineprint {
  margin-top: 1rem;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* Pricing */
.results-cta { margin-top: 3rem; }
.price-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .price-grid { grid-template-columns: 1fr 1fr 1fr; } }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 31, 53, 0.72);
  padding: 1.75rem;
}
.price-card.featured {
  border-color: var(--border-strong);
  background: var(--card);
  box-shadow: var(--glow);
}
.price-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
}
.price-line { margin-top: 1.25rem; display: flex; align-items: flex-end; gap: 0.5rem; }
.price-line .num { font-size: 3rem; font-weight: 600; line-height: 1; }
.price-line .per { padding-bottom: 0.35rem; font-size: 0.875rem; color: var(--muted); }
.glow-note {
  margin-top: 1.25rem;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--tan);
  text-shadow: 0 0 8px color-mix(in srgb, var(--tan) 55%, transparent);
}
.feat { margin-top: 1.75rem; flex: 1; }
.feat li {
  display: flex;
  gap: 0.75rem;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.feat li + li { margin-top: 0.75rem; }
.feat .hi {
  color: var(--tan);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-image: var(--btn);
  color: var(--tan-ink);
}
.price-card .btn-pill { margin-top: 2rem; padding: 0.9rem 1.5rem; font-size: 0.8125rem; }
.qualify-note {
  margin-top: 1.75rem;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}
.free-wrap { max-width: 36rem; margin: 2.5rem auto 0; }

/* Results */
.proof-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .proof-grid { grid-template-columns: 1fr 1fr 1fr; } }
.proof {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(36, 60, 132, 0.45);
  box-shadow: 0 0 34px -18px var(--tan);
  background: #080a12;
}
.proof img {
  width: 100%;
  height: auto;
  max-height: 46rem;
  padding: 0.9rem 0.9rem 0;
  object-fit: contain;
  object-position: top center;
  background: #080a12;
}
.proof figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}
.note-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(36, 60, 132, 0.45);
  padding: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 31, 53, 0.35);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 640px) { .site-footer { padding-inline: 2rem; } }
.member-band {
  position: relative;
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 2rem;
  border: 1px solid rgba(36, 60, 132, 0.45);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.member-band::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 50%;
  width: 16rem;
  height: 16rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background-image: var(--btn);
  opacity: 0.2;
  filter: blur(48px);
  pointer-events: none;
}
.avatars { display: flex; justify-content: center; }
.avatars img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--bg);
  margin-left: -12px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
@media (min-width: 640px) {
  .avatars img { width: 56px; height: 56px; }
}
.member-line {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.85rem;
  font-size: 1.25rem;
  font-weight: 600;
}
@media (min-width: 640px) { .member-line { font-size: 1.875rem; } }
.pipe { color: rgba(255, 255, 255, 0.15); }
.legal {
  max-width: var(--max);
  margin: 3rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}
.legal a { color: var(--muted); }
.legal a:hover { color: var(--tan); }

.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: 0.45s;
}
.sticky-cta.show {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 640px) { .sticky-cta { display: none; } }
.sticky-cta .inner {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 2.85rem;
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  background-image: var(--btn-warm);
  color: var(--tan-ink);
  border: 1px solid rgba(200, 208, 220, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Inner leftover pages */
.inner { max-width: 42rem; margin: 0 auto; padding: 8rem 1.25rem 4rem; }
.inner h1 { font-size: 2rem; font-weight: 600; }
.inner p { margin-top: 1rem; color: var(--muted); }
.inner .stack { margin-top: 1.5rem; display: grid; gap: 1rem; }
.inner article {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: var(--glass);
}
.inner article h3 { color: var(--tan); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }
.inner article p { margin-top: 0.4rem; font-size: 0.9rem; }

@media (max-width: 639px) {
  .btn-join-sm { display: none !important; }
  .brand-name { letter-spacing: 0.1em; font-size: 0.72rem; }
}
@media (min-width: 640px) {
  .btn-join-sm { display: inline-flex !important; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none !important; }
}

/* Conversion pass — proof, compare, steps, quotes */
.hero .stats { display: none; }
.proof-snap { padding-top: 1.5rem; }
.window-tabs {
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.window-tabs button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.window-tabs button.is-on {
  border-color: var(--border-strong);
  color: var(--tan-ink);
  background-image: var(--btn);
}
.record-panel .stats { margin-top: 1.25rem; }
.record-panel .stat dd { font-size: 1.35rem; }
@media (min-width: 640px) { .record-panel .stat dd { font-size: 1.65rem; } }
.record-context {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.record-context strong { color: var(--fg); }
.unit-help {
  margin-top: 1.25rem;
  max-width: 40rem;
  margin-inline: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.unit-help summary {
  cursor: pointer;
  color: var(--blue-hi);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.unit-help p { margin-top: 0.65rem; }
.day-split {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .day-split { grid-template-columns: 1fr 1fr; } }
.day-card {
  border-radius: 1.15rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem 1.15rem;
}
.day-card .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.day-card .v { margin-top: 0.35rem; font-size: 1.35rem; font-weight: 700; }
.day-card.good .v { color: var(--profit); }
.day-card.bad .v { color: var(--loss); }
.day-card .d { font-size: 12px; color: var(--muted); }

.steps {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step {
  border-radius: 1.35rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.35rem 1.4rem;
}
.step .num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}
.step h3 { margin-top: 0.5rem; font-size: 1.05rem; }
.step p { margin-top: 0.55rem; font-size: 0.9rem; color: var(--muted); }

.compare {
  margin-top: 2rem;
  overflow: auto;
  border-radius: 1.35rem;
  border: 1px solid var(--border);
}
.compare table { width: 100%; border-collapse: collapse; min-width: 36rem; }
.compare th, .compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.compare th {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  background: var(--card-2);
}
.compare td { color: var(--muted); background: var(--card); }
.compare td:first-child { color: var(--fg); font-weight: 600; width: 28%; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.compare-cta .btn-pill {
  min-height: 3.1rem;
  padding: 1.15rem 1.9rem;
  font-size: 0.75rem;
}

.premium-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .premium-grid { grid-template-columns: 1fr 1fr; } }
.premium-card {
  border-radius: 1.35rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.35rem 1.4rem;
}
.premium-card h3 { font-size: 1.05rem; }
.premium-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.premium-card .sub {
  margin-top: 0.45rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-hi);
}

.quotes {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote {
  border-radius: 1.35rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.35rem 1.4rem;
}
.quote p { font-size: 0.95rem; line-height: 1.6; }
.quote .who { margin-top: 1rem; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); }

.final-cta { text-align: center; }
.nav-link.is-current { color: var(--fg); }

.hero-legal {
  margin-top: 1.1rem;
  max-width: 36rem;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-legal strong { color: var(--fg); font-weight: 600; }

.qualify-strip { padding-top: 0.5rem; }
.qualify-points {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}
.qualify-points li {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: var(--fg);
}
.qualify-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background: rgba(10, 14, 26, 0.72);
}
@media (min-width: 640px) {
  .qualify-overlay { place-items: center; }
}
.qualify-overlay[hidden] { display: none; }
.qualify-card {
  width: min(32rem, 100%);
  max-height: 92dvh;
  overflow: auto;
  border-radius: 1.35rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-2);
  padding: 1.35rem 1.4rem 1.2rem;
}
.qualify-card h3 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.qualify-card > p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.qualify-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
.qualify-check input { margin-top: 0.2rem; accent-color: var(--tan); }
.qualify-label {
  display: block;
  margin-top: 1rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
}
.qualify-card select {
  margin-top: 0.4rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg);
  padding: 0.7rem 0.8rem;
  font: inherit;
}
.qualify-warn, .qualify-err {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--loss);
}
.qualify-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.qualify-card .fineprint { margin-top: 1rem; font-size: 11px; color: var(--muted); }
.btn-join-sm {
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-size: 10px;
  padding-inline: 0.8rem;
}

@media (max-width: 1100px) {
  .nav-desktop { gap: 0.75rem; }
  .nav-link { font-size: 12px; }
}

/* Live winning-slips carousel */
.slip-carousel {
  margin-top: 2rem;
}
.slip-carousel-frame {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
.slip-carousel-viewport {
  position: relative;
}
.slip-carousel-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slip-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slip-carousel-slide:not(.is-active) {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slip-carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 36rem;
  object-fit: contain;
  object-position: top center;
}
.slip-carousel-btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 18, 0.72);
  color: var(--fg);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}
.slip-carousel-btn:hover,
.slip-carousel-btn:focus-visible {
  border-color: var(--border-strong);
  color: var(--tan);
}
.slip-carousel-btn.prev { left: 0.6rem; }
.slip-carousel-btn.next { right: 0.6rem; }
.slip-carousel-meta {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
}
.slip-carousel-status {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.slip-carousel-progress {
  margin: 0.9rem auto 0;
  max-width: 28rem;
  height: 2px;
  background: rgba(232, 197, 71, 0.16);
  overflow: hidden;
  border-radius: 999px;
}
.slip-carousel-progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--tan);
  transform-origin: left center;
}
.slip-carousel-progress.is-running > i {
  animation: slip-progress 3s linear;
}
.slip-carousel.is-paused .slip-carousel-progress.is-running > i {
  animation-play-state: paused;
}
@keyframes slip-progress {
  from { width: 0; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .slip-carousel-slide { transition: none; }
  .slip-carousel-progress > i { animation: none !important; width: 100%; }
}
