/* ═══════════════════════════════════════════════════════ */
/*  ANTE HQ v2 — Bet Smarter. Be Smarter.                 */
/*  Black + Gold, editorial, community-first               */
/* ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #050505;
  --fg: #F0EDE7;
  --fg-dim: #D4D0C8;
  --gold: #C9A84C;
  --gold-light: #DBBF6A;
  --gold-muted: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.2);
  --gold-glow: rgba(201,168,76,0.06);
  --surface: #0A0A0A;
  --surface-2: #111111;
  --surface-3: #161616;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --muted: #9E9A92;
  --faint: #636058;
  --discord: #5865F2;
  --green: #22c55e;

  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(201,168,76,0.3); color: #fff; }
a { color: inherit; text-decoration: none; }
.gold-text { color: var(--gold-light); }
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}
@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ═══════════════════════════ NAV ═══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.nav-inner {
  max-width: 72rem; margin: 0 auto; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; border-radius: 4px; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav {
  padding: 0.6rem 1.5rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 6px; text-transform: uppercase;
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--fg-dim); font-weight: 500;
  border: 1px solid var(--border-light); cursor: pointer; border-radius: 6px;
  transition: all 0.25s ease; white-space: nowrap; font-family: var(--sans);
  font-size: 0.8rem; letter-spacing: 0.02em;
}
.btn-nav-ghost { padding: 0.6rem 1.25rem; }
.btn-ghost:hover {
  border-color: var(--discord);
  color: #fff;
  background: rgba(88,101,242,0.1);
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #0A0A0A; font-weight: 600;
  border: none; cursor: pointer; border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap; font-family: var(--sans);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled { opacity: 0.5; pointer-events: none; }

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 0; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 60%);
  animation: glow-breathe 6s ease-in-out infinite;
}

/* Particle field */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise var(--dur, 8s) var(--delay, 0s) ease-in infinite;
}
@keyframes particle-rise {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1.5); }
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 640px; margin: 0 auto;
}

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  padding: 0.4rem 1.2rem; border-radius: 100px; margin-bottom: 2.5rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { opacity: 0.4; box-shadow: 0 0 0 4px rgba(201,168,76,0); }
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-h1 .gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}

.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75;
  font-weight: 400;
}

/* Hero social pills */
.hero-social {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.625rem; margin-top: 1.75rem;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.45rem 1rem; border-radius: 100px;
  border: 1px solid var(--border-light);
  color: var(--fg-dim); transition: all 0.25s ease; cursor: pointer;
}
.social-discord {
  background: rgba(88,101,242,0.08);
  border-color: rgba(88,101,242,0.25);
  color: #9EA6FF;
}
.social-discord:hover {
  background: rgba(88,101,242,0.18);
  border-color: rgba(88,101,242,0.5);
  color: #fff;
  transform: translateY(-1px);
}
.social-x:hover, .social-ig:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-1px);
}

/* ═══════════════════════════ FORM ═══════════════════════════ */
.form-wrap { width: 100%; max-width: 480px; margin: 0 auto; }
.wl-form { display: flex; flex-direction: column; gap: 0.625rem; width: 100%; }
.form-primary-row { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 480px) { .form-primary-row { flex-direction: row; } }
.wl-input {
  flex: 1; padding: 0.9rem 1.125rem;
  background: var(--surface-2); border: 1px solid var(--border-light);
  border-radius: 8px; color: var(--fg); font-size: 0.95rem;
  font-family: var(--sans); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.wl-input-secondary {
  font-size: 0.85rem; padding: 0.7rem 1.125rem;
  background: var(--surface); border-color: var(--border);
}
.wl-input::placeholder { color: var(--faint); }
.wl-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.btn-submit {
  padding: 0.9rem 1.75rem; font-size: 0.9rem; letter-spacing: 0.02em;
  flex-shrink: 0; white-space: nowrap;
}
.form-msg { font-size: 0.875rem; margin-top: 0.75rem; text-align: center; }
.form-msg.ok { color: var(--gold); }
.form-msg.err { color: #f87171; }
.form-hint { font-size: 0.75rem; color: var(--faint); text-align: center; margin-top: 0.75rem; letter-spacing: 0.01em; }
.spinner {
  width: 18px; height: 18px; border: 2px solid transparent;
  border-top-color: #0A0A0A; border-radius: 50%;
  animation: spin 0.6s linear infinite; margin: 0 auto;
}

/* ═══════════════════════════ TICKER ═══════════════════════════ */
.ticker-wrap {
  width: 100vw; overflow: hidden; margin-top: 4rem;
  position: relative; padding: 1.125rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface) 0%, transparent 100%); }
.ticker-wrap::after { right: 0; background: linear-gradient(270deg, var(--surface) 0%, transparent 100%); }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 30s linear infinite; }
.ticker-content { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--faint);
  padding: 0 2rem; position: relative;
}
.ticker-item::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: 0.4;
}
.gold-item { color: var(--gold); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════ STATS BAR ═══════════════════════════ */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 64rem; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-items: center;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.5rem 1.5rem; gap: 0.3rem;
  text-align: center; width: 100%;
  position: relative; cursor: default;
}
.stat-value-row {
  display: flex; flex-direction: row; align-items: baseline;
  gap: 0.1em; line-height: 1;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  display: inline;
  position: relative;
}
.stat-unit {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold-light);
  opacity: 0.8;
  line-height: 1;
}
.stat-item:hover .stat-num,
.stat-item:hover .stat-unit {
  text-shadow: 0 0 30px rgba(219,191,106,0.45);
  transition: text-shadow 0.3s ease;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px; height: 44px; background: var(--border-light);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 1.25rem 1rem; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(5),
  .stat-item:nth-child(6),
  .stat-item:nth-child(7) { border-bottom: none; }
}

/* ═══════════════════════════ SECTIONS ═══════════════════════════ */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--surface); }
.section-inner { max-width: 56rem; margin: 0 auto; }
.section-center { text-align: center; }
@media (min-width: 768px) { .section { padding: 7rem 2rem; } }

.eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem;
}
.section-h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15; margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.center-h2 { max-width: none; }
.section-sub {
  color: var(--muted); line-height: 1.75;
  max-width: 50ch; font-size: 1.05rem; margin: 0 auto 0.5rem;
}
.section-sub-left {
  color: var(--muted); line-height: 1.75;
  max-width: 56ch; font-size: 1.05rem; margin-bottom: 0.5rem;
}

/* ═══════════════════════════ PAIN GRID ═══════════════════════════ */
.pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--border-light); border-radius: 12px;
  overflow: hidden; background: var(--border-light);
}
@media (min-width: 640px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
.pain-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem; background: var(--surface-2);
  transition: background 0.3s ease;
}
.pain-card:hover { background: var(--surface-3); }
.pain-num {
  font-family: var(--serif);
  font-size: 1.5rem; color: var(--gold); opacity: 0.5;
  flex-shrink: 0; line-height: 1; padding-top: 2px;
}
.pain-card p { font-size: 0.95rem; color: var(--fg-dim); line-height: 1.55; }
.pain-card:hover .pain-num { opacity: 0.9; text-shadow: 0 0 20px rgba(201,168,76,0.35); transition: all 0.3s ease; }

/* ═══════════════════════════ APP SHOWCASE ═══════════════════════════ */
.app-section { overflow: hidden; }

.app-tabs-wrap { margin-top: 3rem; }
.app-tabs {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem; padding: 0.375rem;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.app-tab {
  padding: 0.55rem 1.25rem;
  border: none; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  color: var(--muted); border-radius: 8px;
  transition: all 0.2s ease; white-space: nowrap;
  letter-spacing: 0.01em;
}
.app-tab:hover { color: var(--fg); }
.app-tab.active {
  background: var(--gold); color: #0A0A0A;
}

.app-showcase {
  display: flex; align-items: flex-start;
  gap: 3rem; margin-top: 3rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .app-showcase { flex-direction: row; align-items: center; }
}

.app-phone-wrap {
  flex-shrink: 0; width: 100%; max-width: 260px; margin: 0 auto;
}
@media (min-width: 768px) { .app-phone-wrap { max-width: 240px; } }

.phone-frame {
  position: relative; border-radius: 36px; overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04),
              0 0 60px rgba(201,168,76,0.05);
  background: #0D0D0D;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Phone screen: always position:absolute — never changes position type to avoid layout reflow */
.phone-frame-inner {
  position: relative;
  width: 100%;
  padding-bottom: 205%; /* locks aspect ratio — tallest screen is 2204/1080 = 204% */
}
.phone-screen {
  width: 100%; border-radius: 0;
  position: absolute; top: 0; left: 0; height: auto;
  opacity: 0; transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.phone-screen.active {
  /* Never change position — only change opacity/transform */
  opacity: 1; transform: scale(1);
  pointer-events: auto;
}

.app-desc-wrap {
  flex: 1; text-align: left;
  position: relative;
  /* Fixed min-height prevents layout shift when descriptions switch —
     tall enough for the longest description + bullets */
  min-height: 280px;
}
@media (min-width: 768px) { .app-desc-wrap { min-height: 320px; } }
.app-desc {
  opacity: 0;
  /* Always absolute — never switches to relative, so document height never changes */
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  visibility: hidden;
}
.app-desc.active {
  opacity: 1;
  /* Stay absolute — only change opacity and visibility */
  position: absolute;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.app-desc-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem; color: var(--fg);
}
.app-desc-body {
  font-size: 0.975rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.5rem;
  max-width: 42ch;
}
.app-desc-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 0.625rem;
}
.app-desc-bullets li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--fg-dim); line-height: 1.5;
}
.bullet-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.bullet-dot.green { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.4); }

/* ═══════════════════════════ HOW IT WORKS ═══════════════════════════ */
.steps-list {
  display: flex; flex-direction: column; gap: 0;
  max-width: 36rem; margin: 3.5rem auto 0;
}
.step-item {
  display: flex; gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--border); text-align: left;
  transition: padding-left 0.3s ease;
}
.step-item:hover { padding-left: 0.5rem; }
.step-item:last-child { border-bottom: none; }
.step-icon-wrap {
  flex-shrink: 0; width: 56px; height: 56px;
  background: var(--surface-2); border: 1px solid var(--border-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.step-item:hover .step-icon-wrap {
  border-color: var(--gold-border);
  background: var(--gold-muted);
}
.step-number {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #0A0A0A;
  font-size: 0.6rem; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-text h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.375rem; }
.step-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════ DEEP FEATURES ═══════════════════════════ */
.deep-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.deep-feat {
  display: flex; gap: 1.25rem;
  padding: 2rem; align-items: flex-start;
  border: 1px solid var(--border-light);
  border-radius: 12px; background: var(--surface);
  margin-bottom: 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.deep-feat:hover {
  background: var(--surface-2);
  border-color: var(--gold-border);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(201,168,76,0.05);
}
.deep-feat:last-child { margin-bottom: 0; }
.deep-feat-highlight {
  background: rgba(201,168,76,0.03);
  border-color: var(--gold-border);
}
.deep-feat-highlight:hover { background: rgba(201,168,76,0.06); }
.deep-feat-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.deep-feat-body { flex: 1; min-width: 0; }
.deep-feat-header { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.deep-feat-header h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
.feat-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: 4px;
  background: var(--surface-3); color: var(--fg-dim);
  border: 1px solid var(--border-light);
}
.gold-tag { background: var(--gold-muted); color: var(--gold); border-color: var(--gold-border); }
.deep-feat-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.deep-feat-header h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--fg); }

/* ═══════════════════════════ COMMUNITY ═══════════════════════════ */
.community-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .community-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .community-grid { grid-template-columns: 1fr 1fr 1fr; } }

.community-card {
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 14px; background: var(--surface-2);
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.community-card:hover {
  border-color: var(--gold-border);
  background: var(--surface-3);
  transform: translateY(-4px);
  animation-play-state: paused;
}
.community-card-icon {
  width: 48px; height: 48px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.community-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1.3; }
.community-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.community-card-discord {
  background: rgba(88,101,242,0.06);
  border-color: rgba(88,101,242,0.2);
}
.community-card-discord:hover {
  background: rgba(88,101,242,0.1);
  border-color: rgba(88,101,242,0.4);
}
.community-card-icon-discord {
  background: rgba(88,101,242,0.12);
  border-color: rgba(88,101,242,0.3);
  color: #9EA6FF;
}
.community-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: auto; padding: 0.65rem 1.25rem;
  background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.35);
  color: #9EA6FF; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.25s ease; width: fit-content;
}
.community-cta-btn:hover {
  background: rgba(88,101,242,0.28);
  border-color: rgba(88,101,242,0.6);
  color: #fff; transform: translateY(-1px);
}

/* ═══════════════════════════ DISCORD BANNER ═══════════════════════════ */
.discord-banner-section { padding: 0 2rem 5rem; }
.discord-banner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 56rem; margin: 0 auto;
  padding: 1.5rem 2rem;
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 14px; gap: 1.5rem; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
}
.discord-banner:hover {
  background: rgba(88,101,242,0.14);
  border-color: rgba(88,101,242,0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(88,101,242,0.12);
}
.discord-banner-left { display: flex; align-items: center; gap: 1.25rem; }
.discord-icon-big {
  flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.3);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: #9EA6FF;
}
.discord-banner-text { display: flex; flex-direction: column; gap: 0.25rem; }
.discord-banner-title { font-size: 1rem; font-weight: 600; color: var(--fg); }
.discord-banner-sub { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.discord-banner-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.discord-banner-btn {
  background: rgba(88,101,242,0.2); border: 1px solid rgba(88,101,242,0.4);
  color: #9EA6FF; padding: 0.6rem 1.25rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  transition: all 0.25s ease;
}
.discord-banner:hover .discord-banner-btn { background: rgba(88,101,242,0.35); color: #fff; }
.discord-banner-right > svg { color: #9EA6FF; }
@media (max-width: 560px) {
  .discord-banner { flex-direction: column; align-items: flex-start; }
  .discord-banner-right { align-self: stretch; }
  .discord-banner-btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════ COMPARISON ═══════════════════════════ */
.comparison-card {
  margin-top: 3.5rem; display: flex; flex-direction: column;
  border: 1px solid var(--border-light); border-radius: 12px;
  overflow: hidden; background: var(--surface-2); text-align: left;
}
@media (min-width: 640px) { .comparison-card { flex-direction: row; } }
.compare-side { flex: 1; padding: 2rem; }
.compare-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint);
  margin-bottom: 1.25rem; padding: 0.25rem 0.75rem; border-radius: 4px;
  background: rgba(255,255,255,0.04);
}
.compare-label-gold { color: var(--gold); background: var(--gold-muted); }
.compare-side ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.compare-before li {
  font-size: 0.9rem; color: var(--faint); line-height: 1.5;
  padding-left: 1.25rem; position: relative;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.15);
}
.compare-before li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: #f87171; opacity: 0.6;
}
.compare-after li {
  font-size: 0.9rem; color: var(--fg-dim); line-height: 1.5;
  padding-left: 1.25rem; position: relative;
}
.compare-after li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.8;
}
.compare-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem; color: var(--gold); opacity: 0.4;
}
@media (min-width: 640px) {
  .compare-divider { flex-direction: column; padding: 0 0.25rem; border-left: 1px solid var(--border); }
}
@media (max-width: 639px) {
  .compare-divider { border-top: 1px solid var(--border); padding: 0.75rem 0; }
  .compare-divider svg { transform: rotate(90deg); }
}

/* ═══════════════════════════ PLATFORMS ═══════════════════════════ */
.section-platforms { padding-bottom: 4rem; }
@media (min-width: 768px) { .section-platforms { padding-bottom: 5rem; } }
.platform-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-top: 3rem; margin-bottom: 0; }
.plat-pill {
  font-size: 0.85rem; font-weight: 500; padding: 0.6rem 1.5rem;
  border-radius: 100px; border: 1px solid var(--border-light);
  background: transparent; color: var(--fg-dim);
  transition: all 0.25s ease;
}
.plat-pill:hover { border-color: var(--gold-border); color: var(--fg); background: var(--gold-muted); }
.plat-gold { border-color: var(--gold-border); color: var(--gold); background: var(--gold-muted); }

/* ═══════════════════════════ GET STARTED ═══════════════════════════ */
.started-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-top: 3rem; text-align: left;
  align-items: stretch;
}
@media (min-width: 640px) { .started-grid { grid-template-columns: 1fr 1fr; } }
/* started-grid: 2 cards only, so max 2 cols */

.started-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--surface-2);
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; color: inherit;
  height: 100%;
}
.started-card:hover {
  border-color: rgba(88,101,242,0.3);
  background: var(--surface-3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.started-card-gold {
  border-color: var(--gold-border);
  background: rgba(201,168,76,0.03);
}
.started-card-gold:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
  box-shadow: 0 12px 40px rgba(201,168,76,0.08);
}

.started-step {
  font-family: var(--serif);
  font-size: 0.8rem; font-weight: 400;
  color: var(--faint); letter-spacing: 0.05em;
}
.started-step-gold { color: var(--gold); opacity: 0.7; }

.started-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.started-icon-discord {
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.25);
  color: #9EA6FF;
}
.started-icon-social {
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  color: var(--fg-dim);
}
.started-icon-gold {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

.started-body h3 {
  font-family: var(--sans); font-weight: 600;
  font-size: 1.05rem; color: var(--fg);
  margin-bottom: 0.4rem;
}
.started-body p {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 0.75rem;
}

.started-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 600; color: #9EA6FF;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease, color 0.2s ease;
}
.started-card:hover .started-link { gap: 0.55rem; }
.started-link-gold { color: var(--gold); }
.started-card-gold:hover .started-link-gold { color: var(--gold-light); }

.started-social-row {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.started-social-btn {
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 100px;
  background: var(--surface-3); border: 1px solid var(--border-light);
  color: var(--fg-dim);
  transition: all 0.2s ease;
}
.started-social-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-muted);
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border: 1px solid var(--border-light); border-radius: 10px;
  overflow: hidden; margin-bottom: 0.75rem; background: var(--surface-2);
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: var(--gold-border); }
.faq-item:last-child { margin-bottom: 0; }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--fg); font-family: var(--sans);
  font-size: 0.95rem; font-weight: 500;
  text-align: left; gap: 1rem;
}
.faq-trigger span { flex: 1; }
.faq-chevron {
  flex-shrink: 0; color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════ CTA ═══════════════════════════ */
.cta-section {
  padding: 6rem 2rem; text-align: center;
  position: relative; overflow: hidden; background: var(--bg);
}
@media (min-width: 768px) { .cta-section { padding: 8rem 2rem; } }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 60%);
  animation: glow-breathe 5s ease-in-out infinite;
}
.cta-inner { max-width: 520px; margin: 0 auto; position: relative; z-index: 2; }
.cta-logo { height: 44px; width: auto; margin: 0 auto 2.5rem; display: block; opacity: 0.9; }
.cta-h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin-bottom: 0.75rem;
}
.cta-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem; line-height: 1.65; }
.cta-social-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0.875rem; margin-top: 2rem; flex-wrap: wrap;
}
.cta-social-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 500; color: var(--faint);
  transition: color 0.2s ease;
}
.cta-social-link:hover { color: var(--gold); }
.cta-social-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); flex-shrink: 0; }

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: 3rem 2rem; }
.footer-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.footer-logo { height: 22px; width: auto; margin: 0 auto 1.25rem; display: block; opacity: 0.6; }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border-light);
  color: var(--faint); transition: all 0.25s ease;
}
.footer-social-link:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-muted); }
.footer-legal {
  font-size: 0.7rem; color: var(--faint); max-width: 60ch;
  margin: 0 auto 1.5rem; line-height: 1.7;
}
.footer-bottom { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.7rem; color: var(--faint); }

/* ═══════════════════════════ ANIMATIONS ═══════════════════════════ */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes glow-breathe {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.06); }
}

/* Shimmer sweep on stats */
@keyframes stat-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.stat-item::after {
  content: '';
  position: absolute; inset: 0; border-radius: 8px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.stat-item:hover::after { opacity: 1; animation: stat-shimmer 1.2s ease infinite; }

/* Gold pulse ring on community cards */
@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  70% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
.community-card:hover { animation: none; }

/* Scan line effect on app section phone */
@keyframes scan-line {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.1; }
  100% { transform: translateY(100vh); opacity: 0; }
}
.phone-frame::before {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  z-index: 5; pointer-events: none;
  animation: scan-line 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Glow ring on featured stat on hover */
.stats-bar {
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Discord banner subtle pulse */
@keyframes discord-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88,101,242,0); }
  50% { box-shadow: 0 0 30px rgba(88,101,242,0.12); }
}
.discord-banner { animation: discord-pulse 4s ease-in-out infinite; }
.discord-banner:hover { animation: none; }

/* Floating cards lift on stagger */
@keyframes float-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.community-card:nth-child(1) { animation: float-subtle 6s ease-in-out infinite; }
.community-card:nth-child(2) { animation: float-subtle 6s ease-in-out infinite; animation-delay: 0.9s; }
.community-card:nth-child(3) { animation: float-subtle 6s ease-in-out infinite; animation-delay: 1.8s; }

/* Reveal on scroll */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* Legacy reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger-reveal > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 70ms; }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 140ms; }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 210ms; }
.stagger-reveal.visible > * { opacity: 1; transform: translateY(0); }

/* Success state */
.success-state {
  text-align: center; padding: 2rem 1.5rem;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.success-state.active { opacity: 1; transform: translateY(0); }
.success-check {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; animation: check-in 0.5s cubic-bezier(0.16,1,0.3,1);
}
.success-check svg { color: var(--gold); }
.success-title { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--fg); margin-bottom: 0.5rem; }
.success-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
@keyframes check-in {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── TESTIMONIALS ─────────────────────────────────── */
.section-testimonials { padding-top: 5rem; padding-bottom: 5rem; }

/* Stat text variant for "All Major" stat */
.stat-item-text {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
}
.stat-text-value {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Win cards */
.testi-wins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.testi-win-card {
  background: #0c0c0c;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.testi-win-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.testi-win-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-handle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.testi-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
}
.testi-win-amounts {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.testi-paid {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}
.testi-win-amounts svg { color: var(--faint); flex-shrink: 0; }
.testi-payout {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #22c55e;
  font-weight: 400;
  line-height: 1;
}
.testi-win-label {
  font-size: 0.78rem;
  color: var(--faint);
  margin: 0;
}
.testi-win-quote {
  font-size: 0.9rem;
  color: var(--fg);
  font-style: italic;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Quote cards */
.testi-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.testi-quote-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease;
}
.testi-quote-card:hover { border-color: rgba(201,168,76,0.25); }
.testi-quote-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.testi-quote-author {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Disclaimer */
.testi-disclaimer {
  font-size: 0.75rem;
  color: var(--faint);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .testi-wins { grid-template-columns: 1fr; }
  .testi-quotes { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .testi-wins { grid-template-columns: repeat(2, 1fr); }
  .testi-quotes { grid-template-columns: repeat(2, 1fr); }
  .testi-wins .testi-win-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}

/* ═══════════════════════════ COMPARISON TABLE (NEW) ═══════════════════════════ */
.section-compare { background: var(--surface); }

.compare-table {
  width: 100%;
  margin-top: 3rem;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-2);
}

.compare-table-head {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}

.compare-table-head > div {
  padding: 1rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-col-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-dim);
  padding: 1rem 1.25rem;
}

.compare-col-ante {
  font-size: 0.875rem;
  color: var(--fg);
  padding: 1rem 1.25rem;
}

.compare-col-others {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 1rem 1.25rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s ease;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row:hover {
  background: rgba(255,255,255,0.02);
}

.compare-row .compare-col-feature {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.1rem 1.25rem;
}

.compare-row .compare-col-feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

.compare-row .compare-col-ante {
  font-size: 0.875rem;
  color: var(--fg);
  font-weight: 500;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.compare-row .compare-col-others {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.compare-check {
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-cross {
  color: #f87171;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.7;
}

.compare-ante-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-best-badge {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .compare-table-head,
  .compare-row {
    grid-template-columns: 1fr 1fr;
  }
  .compare-table-head .compare-col-feature,
  .compare-row .compare-col-feature {
    display: none;
  }
  .compare-table-head > div:nth-child(2),
  .compare-row .compare-col-ante {
    border-right: 1px solid var(--border);
  }
}

/* LOGO BLEND FIX — rule consolidated above into line 71 */

/* ═══════════════════════════ CTA LOGO UPDATE ═══════════════════════════ */
.cta-logo-new {
  height: 48px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* Footer logo update */
.footer-logo-new {
  height: 24px;
  width: auto;
  border-radius: 3px;
  opacity: 0.8;
}
