/* ============================================================
   Design System — Dashboard esportivo premium
   Tema escuro/preto + azul elétrico (#00A7FF, estilo iHub)
   Mobile-first · Glow neon · Tipografia forte estilo betting
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0a0a;
  --bg-soft:   #0e0e0e;
  --surface:   #141414;
  --surface-2: #1c1c20;
  --line:      rgba(255, 255, 255, 0.07);
  --line-2:    rgba(0, 167, 255, 0.18);

  --neon:      #00a7ff;
  --neon-2:    #4dc3ff;
  --neon-deep: #005791;
  --neon-glow: rgba(0, 167, 255, 0.55);

  --text:      #eef3f7;
  --muted:     #93a0b0;
  --muted-2:   #5f6b7a;
  --danger:    #ff5d5d;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw:      1180px;
  --gutter:    20px;

  --shadow:    0 24px 60px rgba(0, 0, 0, 0.55);
  --glow:      0 0 0 1px rgba(0,167,255,.35), 0 0 28px var(--neon-glow), 0 14px 40px rgba(0,167,255,.18);

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Ambient background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(620px 420px at 12% -5%, rgba(0,167,255,.16), transparent 60%),
    radial-gradient(680px 520px at 100% 0%, rgba(0,90,145,.12), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(0,167,255,.07), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding-block: clamp(56px, 9vw, 110px); }
.section-tight { padding-block: clamp(40px, 6vw, 70px); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -.02em; font-weight: 800; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--neon-2);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(0,167,255,.08);
  border: 1px solid var(--line-2);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: blink 1.6s infinite; }

h1.display {
  font-size: clamp(2rem, 7vw, 3.9rem);
  text-transform: uppercase;
  text-wrap: balance;
}
h2.headline {
  font-size: clamp(1.6rem, 5vw, 2.9rem);
  text-transform: uppercase;
  text-wrap: balance;
}
.lead { color: var(--muted); font-size: clamp(1.02rem, 2.4vw, 1.22rem); text-wrap: pretty; }
.neon-text { color: var(--neon-2); text-shadow: 0 0 22px var(--neon-glow); }
.section-head { max-width: 760px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; display: grid; gap: 16px; justify-items: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 17px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.04rem;
  letter-spacing: .02em; text-transform: uppercase;
  padding: var(--pad-y) 30px;
  border: none; border-radius: 999px;
  text-align: center; line-height: 1.15;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  position: relative;
}
/* CTA principal: verde de conversão (azul fica como cor de destaque/identidade) */
.btn-neon, .btn-wa {
  color: #fff;
  background: linear-gradient(180deg, #28c66f, #14a04f);
  box-shadow: 0 0 0 1px rgba(40,198,111,.5), 0 0 30px rgba(40,198,111,.45), 0 14px 42px rgba(20,160,80,.28);
  animation: pulse 2.6s ease-in-out infinite;
}
.btn-neon:hover, .btn-wa:hover { transform: translateY(-2px) scale(1.012); filter: brightness(1.06); }
.btn-neon:active, .btn-wa:active { transform: translateY(0) scale(.99); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--line);
  animation: none; box-shadow: none;
}
.btn-ghost:hover { border-color: var(--line-2); color: var(--neon-2); }
.btn-lg { --pad-y: 21px; font-size: 1.16rem; padding-inline: 38px; }
.btn-block { display: flex; width: 100%; }
.btn .icon { font-size: 1.15em; }

/* ---------- Icons (SVG line set) ---------- */
.ico {
  width: 1.1em; height: 1.1em; flex: none;
  display: inline-block; vertical-align: -0.16em;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico--fill { fill: currentColor; stroke: none; }
.btn .ico { width: 1.25em; height: 1.25em; vertical-align: -0.24em; }
.cta-note .ico, .eyebrow .ico { width: 1em; height: 1em; }
.stars { display: inline-flex; gap: 2px; align-items: center; color: var(--neon-2); }
.stars .ico { width: 1.05em; height: 1.05em; }

.cta-note { color: var(--muted); font-size: .9rem; margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center; align-items: center; }
.cta-note b { color: var(--text); font-weight: 600; }
.cta-note .sep { color: var(--neon); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,10,10,.86), rgba(10,10,10,.5));
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; letter-spacing: -.01em; font-size: 1.12rem; }
.brand .logo { width: 34px; height: 34px; display: block; flex: none; filter: drop-shadow(0 0 9px rgba(0,167,255,.5)); }
.brand small { color: var(--neon-2); }
.nav-cta { font-size: .92rem; padding: 11px 20px; }
.nav-links { display: none; gap: 26px; color: var(--muted); font-size: .94rem; font-weight: 500; }
.nav-links a:hover { color: var(--neon-2); }

/* ---------- Hero ----------
   Mobile: foto em bloco no topo + texto/botão abaixo (centralizado, compacto).
   Desktop (>=980): full-bleed com a foto sangrando à direita.            */
.hero { position: relative; overflow: hidden; display: flex; flex-direction: column; padding-block: 0; }
.hero-bg { position: relative; width: 100%; aspect-ratio: 1 / 1; max-height: 58vh; overflow: hidden; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.18) 0%, transparent 28%, rgba(10,10,10,.3) 70%, rgba(10,10,10,.92) 92%, #0a0a0a 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 8px; padding-bottom: clamp(26px, 7vw, 44px); }
.hero-content { display: grid; gap: 13px; max-width: 540px; margin-inline: auto; text-align: center; justify-items: center; }
.hero-content h1.display { text-transform: none; font-size: clamp(1.5rem, 6.4vw, 2.05rem); line-height: 1.15; }
.hero-content .lead { color: #cfd8e3; font-size: .96rem; max-width: 430px; }
.hero-content .actions { display: flex; width: 100%; }
.hero-content .actions .btn { width: 100%; font-size: 1rem; --pad-y: 16px; }
.hero-content .cta-note { display: block; text-align: center; max-width: 430px; font-size: .8rem; margin-top: 2px; }
.hero-accent { color: var(--neon); }

/* ---------- Phone / app mockup ---------- */
.device-wrap { position: relative; display: grid; justify-items: center; }
.device-glow { position: absolute; inset: -6% -10%; background: radial-gradient(closest-side, var(--neon-glow), transparent 72%); filter: blur(22px); opacity: .5; z-index: 0; }
.phone {
  position: relative; z-index: 1;
  width: min(330px, 82vw); aspect-ratio: 9 / 19;
  background: linear-gradient(160deg,#161d28,#0e0e0e);
  border-radius: 38px; padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.03);
}
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 7px; border-radius: 99px; background: #0a0a0a; z-index: 3; }
.screen { width: 100%; height: 100%; border-radius: 28px; background: radial-gradient(120% 60% at 50% 0%, #0f1924, #070b11 60%); overflow: hidden; display: flex; flex-direction: column; }
.app-top { padding: 26px 16px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.app-top .live { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; color: var(--neon-2); text-transform: uppercase; letter-spacing: .1em; }
.app-top .live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 9px var(--neon); animation: blink 1.4s infinite; }
.app-top .bal { font-family: var(--font-head); font-weight: 800; font-size: .82rem; }
.app-feed { padding: 12px; display: grid; gap: 10px; overflow: hidden; }
.sig {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 14px; padding: 11px 12px;
  display: grid; gap: 7px; animation: rise .7s both;
}
.sig .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sig .teams { font-weight: 700; font-size: .82rem; }
.sig .tag { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: 999px; }
.tag.up { color: var(--neon-2); background: rgba(0,167,255,.12); border: 1px solid var(--line-2); }
.tag.hot { color: #ffce5a; background: rgba(255,206,90,.12); border: 1px solid rgba(255,206,90,.25); }
.sig .meta { display: flex; align-items: center; justify-content: space-between; font-size: .68rem; color: var(--muted); }
.sig .odd { font-family: var(--font-head); font-weight: 800; color: var(--neon-2); font-size: .9rem; }
.bar { height: 5px; border-radius: 99px; background: rgba(255,255,255,.07); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--neon), var(--neon-deep)); box-shadow: 0 0 10px var(--neon-glow); }

.float-chip {
  position: absolute; z-index: 2; background: rgba(11,16,23,.92); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 10px 13px; box-shadow: var(--shadow); backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 600;
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(0,167,255,.12); color: var(--neon-2); font-size: 1rem; }
.float-chip b { color: var(--neon-2); font-family: var(--font-head); }
.chip-a { top: 12%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.chip-b { bottom: 14%; right: -6%; animation: floaty 6s ease-in-out infinite .8s; }

/* ---------- Pain / qualify list ---------- */
.qualify { }
.pain-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 48px); box-shadow: var(--shadow);
  max-width: 820px; margin-inline: auto;
}
.pain-list { display: grid; gap: 12px; margin: 22px 0; }
.pain-list li { display: flex; gap: 13px; align-items: flex-start; padding: 14px 16px; background: rgba(255,93,93,.05); border: 1px solid rgba(255,93,93,.16); border-radius: var(--radius-sm); font-weight: 500; }
.pain-list li .x { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,93,93,.16); color: var(--danger); display: grid; place-items: center; font-weight: 800; font-size: .8rem; }
.pain-list li b { color: #ff8d8d; }
.pain-card .resolve { font-size: clamp(1.05rem,2.6vw,1.3rem); font-weight: 700; font-family: var(--font-head); text-align: center; }
.pain-card .resolve .neon-text { display: inline; }
.pain-card .sub { color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Feature cards ---------- */
.cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(260px 120px at 50% -10%, rgba(0,167,255,.14), transparent 70%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 18px 44px rgba(0,0,0,.5); }
.card:hover::after { opacity: 1; }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem;
  color: var(--neon-2);
  background: rgba(0,167,255,.1); border: 1px solid var(--line-2); margin-bottom: 16px;
  box-shadow: inset 0 0 18px rgba(0,167,255,.12);
}
.card .ic .ico { width: 26px; height: 26px; }
.float-chip .ic .ico { width: 17px; height: 17px; }
.shot-head .ico, .tag .ico, .line .ico, .bubble .ico { width: 1em; height: 1em; vertical-align: -0.14em; }
.match .lock .ico, .ask .ico { width: 1em; height: 1em; vertical-align: -0.14em; }
.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Proof / authority ---------- */
.proof-wrap { display: grid; gap: clamp(30px,5vw,52px); align-items: center; }
.bignum { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 13vw, 6.6rem); line-height: .9; color: var(--neon-2); text-shadow: 0 0 40px var(--neon-glow); letter-spacing: -.03em; }
.bignum span { display: block; }
.proof-copy .label { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; }
.proof-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.shot {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); aspect-ratio: 4 / 3;
  display: flex; flex-direction: column;
}
.shot .shot-head { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-bottom: 1px solid var(--line); font-size: .72rem; color: var(--muted); }
.shot .shot-head b { color: var(--neon-2); font-family: var(--font-head); }
.shot .shot-body { flex: 1; padding: 13px; display: grid; gap: 9px; align-content: center; }
.shot .line { display: flex; align-items: center; justify-content: space-between; font-size: .76rem; }
.shot .line .green { color: var(--neon-2); font-weight: 800; font-family: var(--font-head); }
.shot .bubble { background: rgba(0,167,255,.08); border: 1px solid var(--line-2); border-radius: 12px 12px 12px 3px; padding: 8px 11px; font-size: .76rem; color: #d6ecff; max-width: 90%; }
.shot .bubble.me { align-self: flex-end; border-radius: 12px 12px 3px 12px; background: rgba(255,255,255,.05); border-color: var(--line); color: var(--text); }
.shot .stat-mini { text-align: center; }
.shot .stat-mini b { font-family: var(--font-head); font-size: 1.5rem; color: var(--neon-2); display: block; }
.shot .stat-mini small { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 26px;
  text-align: center; display: grid; gap: 10px; justify-items: center;
}
.step .num {
  counter-increment: step; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: #fff;
  background: linear-gradient(160deg, var(--neon), var(--neon-deep)); box-shadow: 0 0 22px var(--neon-glow);
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.06rem; }
.step p { color: var(--muted); font-size: .94rem; }
.step .connector { display: none; }

/* ---------- Final CTA ---------- */
.final-cta .box {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, rgba(0,167,255,.08), rgba(10,14,20,.6));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 80px) clamp(24px,5vw,60px);
  box-shadow: 0 0 60px rgba(0,167,255,.1), var(--shadow);
  display: grid; gap: 20px; justify-items: center;
}
.final-cta .box::before { content: ""; position: absolute; inset: -50% 30% auto; height: 300px; background: radial-gradient(closest-side, var(--neon-glow), transparent 70%); filter: blur(30px); opacity: .35; }
.countdown { display: flex; gap: 10px; justify-content: center; }
.countdown .unit { background: rgba(0,0,0,.4); border: 1px solid var(--line-2); border-radius: 12px; padding: 10px 14px; min-width: 64px; text-align: center; }
.countdown .unit b { font-family: var(--font-head); font-size: 1.7rem; color: var(--neon-2); display: block; line-height: 1; }
.countdown .unit small { color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Marquee strip ---------- */
.strip { border-block: 1px solid var(--line); background: rgba(0,167,255,.03); overflow: hidden; padding-block: 14px; }
.marquee { display: flex; gap: 40px; width: max-content; animation: scroll 28s linear infinite; }
.marquee span { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-size: .9rem; display: inline-flex; align-items: center; gap: 40px; }
.marquee span::after { content: "•"; color: var(--neon); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 40px 120px; color: var(--muted-2); font-size: .82rem; }
.site-footer .ft-top { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.site-footer .disclaimer { max-width: 760px; line-height: 1.55; }
.site-footer a { color: var(--muted); text-decoration: underline; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(10,10,10,.97), rgba(10,10,10,.78));
  backdrop-filter: blur(12px); border-top: 1px solid var(--line-2);
  transform: translateY(120%); transition: transform .35s cubic-bezier(.2,.9,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ============================================================
   LP02 — Bingo dos Jogos
   ============================================================ */
.bingo-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.match {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
  display: grid; gap: 14px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.match:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.match .league { display: flex; align-items: center; justify-content: space-between; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.match .league .live { display: inline-flex; align-items: center; gap: 6px; color: var(--neon-2); font-weight: 700; }
.match .league .live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 8px var(--neon); animation: blink 1.4s infinite; }
.match .versus { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.team { display: grid; justify-items: center; gap: 8px; text-align: center; }
.team .name { font-weight: 700; font-size: .9rem; }
.crest {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--text);
  border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 16px rgba(0,0,0,.4);
}
.vs { font-family: var(--font-head); font-weight: 800; color: var(--muted-2); font-size: .8rem; }
.match .odds-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.odds-blur { display: flex; gap: 8px; filter: blur(5px); user-select: none; opacity: .85; }
.odds-blur .o { background: rgba(0,167,255,.1); border: 1px solid var(--line-2); border-radius: 9px; padding: 7px 12px; font-family: var(--font-head); font-weight: 800; color: var(--neon-2); font-size: .9rem; }
.match .ask {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; color: var(--neon-2); padding: 9px 14px; border-radius: 999px;
  background: rgba(0,167,255,.1); border: 1px solid var(--line-2); white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.match .ask:hover { background: rgba(0,167,255,.2); transform: scale(1.04); }
.match .lock { position: absolute; top: 14px; right: 14px; font-size: .8rem; opacity: .5; }

.leagues-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.leagues-row .lg { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.02); }
.leagues-row .lg .dot { width: 16px; height: 16px; border-radius: 5px; }

/* ---------- Crest palettes ---------- */
.c-fla { background: linear-gradient(150deg,#e02020,#7a0d0d); }
.c-vas { background: linear-gradient(150deg,#222,#000); }
.c-pal { background: linear-gradient(150deg,#0a7d3b,#054d24); }
.c-cor { background: linear-gradient(150deg,#1c1c1c,#000); }
.c-rma { background: linear-gradient(150deg,#f2f2f2,#c9ccd6); color:#1a2440 !important; }
.c-bar { background: linear-gradient(150deg,#a3174e,#1f3a93); }
.c-mci { background: linear-gradient(150deg,#6cabdd,#2b6f9e); color:#04263a !important; }
.c-che { background: linear-gradient(150deg,#1f4ed8,#0a2a86); }
.c-int { background: linear-gradient(150deg,#0b1b3a,#000); }
.c-mil { background: linear-gradient(150deg,#c8102e,#000); }
.c-liv { background: linear-gradient(150deg,#c8102e,#7a0d1c); }
.c-juv { background: linear-gradient(150deg,#111,#fff); color:#111 !important; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Animations ---------- */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(40,198,111,.45), 0 0 24px rgba(40,198,111,.4), 0 14px 40px rgba(20,160,80,.24); }
  50%      { box-shadow: 0 0 0 1px rgba(40,198,111,.65), 0 0 44px rgba(40,198,111,.6), 0 14px 52px rgba(20,160,80,.36); }
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .bingo-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: flex; }
  .sticky-cta { display: none; }
}
@media (min-width: 980px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
  .hero { flex-direction: row; align-items: center; min-height: clamp(580px, 92vh, 920px); }
  .hero-bg { position: absolute; inset: 0; aspect-ratio: auto; max-height: none; }
  .hero-bg img { left: auto; right: 0; width: auto; height: 100%; object-position: center; }
  .hero-bg::after {
    background:
      linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 30%, rgba(10,10,10,.72) 48%, rgba(10,10,10,.16) 67%, transparent 82%),
      linear-gradient(0deg, rgba(10,10,10,.4), transparent 32%);
  }
  .hero-inner { padding-top: clamp(96px, 14vw, 130px); padding-bottom: clamp(60px, 8vw, 96px); }
  .hero-content { max-width: 660px; margin-inline: 0; text-align: left; justify-items: start; gap: 20px; }
  .hero-content h1.display { font-size: clamp(2.4rem, 4vw, 3.7rem); line-height: 1.05; text-shadow: 0 2px 22px rgba(0,0,0,.55); }
  .hero-content .lead { color: #dbe4ee; font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 520px; text-shadow: 0 2px 18px rgba(0,0,0,.5); }
  .hero-content .actions { width: auto; }
  .hero-content .actions .btn { width: auto; font-size: 1.16rem; --pad-y: 21px; }
  .hero-content .cta-note { text-align: left; }
  .hero-accent { text-shadow: 0 0 26px rgba(0,167,255,.55); }
  .proof-wrap { grid-template-columns: .9fr 1.1fr; }
  .bingo-grid { grid-template-columns: repeat(3, 1fr); }
  .steps .step .connector { display: block; position: absolute; top: 52px; right: -13px; width: 26px; height: 2px; background: linear-gradient(90deg, var(--neon), transparent); }
  .steps .step:last-child .connector { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
