@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Saira+Condensed:wght@500;600;700;800&display=swap');

:root {
  --bg: #0A0E1A;
  --surface: #161D33;
  --surface2: #1E2748;
  --primary: #2A5BFF;
  --gold: #F5C451;
  --live: #FF3B5C;
  --text: #FFFFFF;
  --text2: #9AA4BF;
  --alaves-blue: #2A5BFF;
  --baskonia-granate: #C01F32;
  --baskonia-navy: #16234A;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Glow blobs ===== */
.glow { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .55; z-index: 0; pointer-events: none; }
.glow.a { width: 560px; height: 560px; top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(42,91,255,.40), transparent 70%); }
.glow.b { width: 460px; height: 460px; top: 38%; right: -180px;
  background: radial-gradient(circle, rgba(245,196,81,.22), transparent 70%); }
.glow.c { width: 420px; height: 420px; bottom: -140px; left: -140px;
  background: radial-gradient(circle, rgba(42,91,255,.28), transparent 70%); }

header.site, .hero, section, footer.site { position: relative; z-index: 1; }

/* ===== Scroll reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

.saira {
  font-family: 'Saira Condensed', 'Inter', sans-serif;
}

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

/* ===== Header ===== */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--text);
  text-decoration: none;
}
.wordmark b { color: var(--gold); }
nav.site-nav { display: flex; gap: 28px; }
nav.site-nav a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
nav.site-nav a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.lang-switch { display: flex; gap: 6px; }
.lang-switch button {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text2);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 11px;
  border-radius: 20px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button[aria-current="true"] { color: var(--bg); background: var(--gold); border-color: var(--gold); }

/* ===== Hero ===== */
.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(42, 91, 255, 0.22) 0%, transparent 60%),
    var(--bg);
}
.hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.crests { display: flex; align-items: center; gap: 30px; }
.ball { width: 64px; height: 64px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text2);
}
.zaleak {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -4px;
}
.hero h1 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 12vw, 108px);
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
  background: linear-gradient(120deg, #fff, #9db4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 b { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.tagline { font-size: 17px; color: var(--text2); }
.tagline b { color: var(--gold); font-weight: 600; }
.lede {
  max-width: 560px;
  font-size: 16px;
  color: var(--text2);
  margin-top: 4px;
}
.stores {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 11px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  color: var(--text);
  transition: border-color .3s, transform .3s;
}
.store-pill:hover { border-color: rgba(245,196,81,0.4); transform: translateY(-2px); }
.store-pill svg { width: 26px; height: 26px; flex-shrink: 0; fill: var(--text); }
.store-pill small {
  display: block;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.store-pill b {
  display: block;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--text);
  margin-top: 1px;
}

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 42px);
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-head p { color: var(--text2); font-size: 16px; margin: 0; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 26px 24px;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(42,91,255,0.4); }
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, var(--primary), #11308F);
  margin-bottom: 16px;
}
.feature-card.soon .icon { background: linear-gradient(135deg, var(--baskonia-granate), var(--baskonia-navy)); }
.feature-card h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 8px; }
.feature-card p { font-size: 13.5px; color: var(--text2); margin: 0; line-height: 1.5; }
.feature-card.soon { opacity: 0.75; }
.badge-soon {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 196, 81, 0.12);
  padding: 3px 9px;
  border-radius: 20px;
}

.about {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 56px;
  backdrop-filter: blur(18px) saturate(1.2);
}
.about h2 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}
.about p { color: var(--text2); font-size: 15px; margin: 0 0 12px; }
.hl-white { color: #fff; }
.about ul { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about li { display: flex; gap: 12px; font-size: 14.5px; color: var(--text); align-items: flex-start; }
.about li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }

/* ===== CTA ===== */
.cta {
  text-align: center;
  background: radial-gradient(70% 120% at 50% 0%, rgba(42,91,255,0.25), transparent), rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 64px 32px;
  backdrop-filter: blur(18px) saturate(1.2);
}
.cta h2 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 14px;
  text-wrap: balance;
}
.cta p { color: var(--text2); max-width: 480px; margin: 0 auto 24px; }

/* ===== Footer ===== */
footer.site {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 44px 0 56px;
}
footer.site .wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--text2); font-size: 13.5px; text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.disclaimer { color: var(--text2); font-size: 12.5px; max-width: 640px; line-height: 1.6; }
.copyright { color: #566089; font-size: 12px; }

@media (max-width: 760px) {
  .features { grid-template-columns: 1fr 1fr; }
  .about { padding: 32px; }
  nav.site-nav { display: none; }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
}

/* ===== Legal pages ===== */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal h1 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 6px;
}
.legal .updated { color: var(--text2); font-size: 13px; margin-bottom: 40px; }
.legal h2 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--gold);
  margin: 40px 0 12px;
}
.legal p, .legal li { color: var(--text2); font-size: 15px; line-height: 1.7; }
.legal ul { padding-left: 20px; }
.legal strong { color: var(--text); }
.legal a { color: var(--gold); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text2);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 32px;
}
.back-link:hover { color: var(--text); }
