/* ═══════════════════════════════════════
   ADAPTYVE — Main Stylesheet
   Theme: Black & Orange | Bold & Dynamic
═══════════════════════════════════════ */

:root {
  --orange:       #FF6B00;
  --orange-light: #FF8C2A;
  --orange-dim:   #CC5500;
  --orange-glow:  rgba(255, 107, 0, 0.25);
  --black:        #0A0A0A;
  --black-2:      #111111;
  --black-3:      #1A1A1A;
  --black-4:      #222222;
  --white:        #FFFFFF;
  --white-80:     rgba(255,255,255,0.8);
  --white-50:     rgba(255,255,255,0.5);
  --white-20:     rgba(255,255,255,0.2);
  --white-08:     rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Franklin', sans-serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-08);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 0 30px rgba(255,107,0,0.1);
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}


.logo-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900; font-size: 1.1rem;
  color: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.logo-text {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.main-nav ul li a {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-80);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--orange);
}
.main-nav ul li a.active {
  border-bottom: 2px solid var(--orange);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 1.5rem;
}
.btn-login {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-80);
  padding: 0.5rem 1rem;
  border: 1px solid var(--white-20);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-login:hover { border-color: var(--orange); color: var(--orange); }

.btn-register {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  padding: 0.5rem 1.2rem;
  background: var(--orange);
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-register:hover { background: var(--orange-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── BANNER ─────────────────────────────── */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.5) 70%, transparent 100%),
    linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}

.banner-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 0 clamp(2rem, 7vw, 8rem);
  max-width: 820px;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.35);
  background: rgba(255,107,0,0.08);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease both;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.banner-title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.banner-title .line-1 {
  font-size: clamp(4rem, 9vw, 9rem);
  color: var(--white);
  animation: fadeUp 0.7s 0.1s ease both;
}
.banner-title .line-2 {
  font-size: clamp(4rem, 9vw, 9rem);
  color: var(--white);
  animation: fadeUp 0.7s 0.2s ease both;
}
.banner-title .line-3 {
  font-size: clamp(4rem, 9vw, 9rem);
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange);
  animation: fadeUp 0.7s 0.3s ease both;
}
.banner-title .dot { color: var(--white); }

.banner-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--white-80);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.7s 0.5s ease both;
}

.cta-main {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--orange);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.cta-main:hover { background: var(--orange-light); transform: translateY(-2px); }

.cta-ghost {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-80);
  border: 1px solid var(--white-20);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.cta-ghost:hover { border-color: var(--orange); color: var(--orange); }

.banner-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s 0.6s ease both;
}
.bstat { display: flex; flex-direction: column; }
.bstat strong {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}
.bstat span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-top: 0.2rem;
}
.bstat-divider {
  width: 1px; height: 40px;
  background: var(--white-20);
}

/* Scroll hint */
.banner-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.banner-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-50);
  writing-mode: vertical-rl;
}
.scroll-arrow {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ─────────────────────────────── */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 0.65rem 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track span {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  flex-shrink: 0;
}
.ticker-track em {
  font-style: normal;
  color: rgba(0,0,0,0.65);
  font-weight: 400;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ───────────────────────────── */
.section { padding: 6rem 0; }

.section-label {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 3rem;
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}

/* ── WHY SECTION ────────────────────────── */
.why-section { background: var(--black-2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--white-08);
}
.feature-card {
  background: var(--black-2);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.feature-card:hover {
  border-bottom-color: var(--orange);
  background: var(--black-3);
}
.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--white-50);
}

/* ── PREDICTIONS ────────────────────────── */
.predictions-section { background: var(--black); }

.predictions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pred-card {
  background: var(--black-3);
  border: 1px solid var(--white-08);
  padding: 1.8rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.pred-card:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
}
.pred-card.hot {
  border-color: rgba(255,107,0,0.35);
  background: linear-gradient(135deg, var(--black-3) 60%, rgba(255,107,0,0.06));
}

.pred-league {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 1.2rem;
}
.pred-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.team {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex: 1;
}
.team:last-child { text-align: right; }
.vs {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.pred-tip {
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.tip-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
}
.tip-val {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange);
}

.pred-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pred-conf { flex: 1; }
.conf-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  display: block;
  margin-bottom: 0.35rem;
}
.conf-bar {
  height: 3px;
  background: var(--white-08);
  border-radius: 100px;
  overflow: hidden;
}
.conf-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
}
.conf-pct {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--orange);
  display: block;
  margin-top: 0.3rem;
}
.pred-odds {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--black-4);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
}

.hot-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--orange);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.center-action { text-align: center; }
.btn-outline-orange {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.4);
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #000;
}

/* ── HOW IT WORKS ───────────────────────── */
.how-section { background: var(--black-2); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2.5rem 2rem;
  border: 1px solid var(--white-08);
  border-right: none;
  transition: background 0.2s;
}
.step:last-child { border-right: 1px solid var(--white-08); }
.step:hover { background: var(--black-3); }
.step-arrow {
  flex-shrink: 0;
  padding-top: 2.8rem;
  font-size: 1.5rem;
  color: var(--orange);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.step-num {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,107,0,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--white-50);
}

/* ── CTA BAND ───────────────────────────── */
.cta-band {
  background: linear-gradient(100deg, var(--black-3) 0%, #1a0a00 100%);
  border-top: 1px solid rgba(255,107,0,0.2);
  border-bottom: 1px solid rgba(255,107,0,0.2);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'ADAPTYVE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 12rem;
  color: rgba(255,107,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cta-inner p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--white-50);
}
.cta-band-btns { display: flex; gap: 1rem; align-items: center; }
.cta-ghost-dark {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-80);
  border: 1px solid var(--white-20);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.cta-ghost-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ── FOOTER ─────────────────────────────── */
.site-footer { background: #080808; }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white-80);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--white-20);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--white-50);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,0.08);
}

.footer-col h4 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--white-50);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-newsletter h4 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-newsletter > p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.83rem;
  color: var(--white-50);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 1.2rem;
}
.newsletter-form input {
  flex: 1;
  background: var(--black-3);
  border: 1px solid var(--white-20);
  border-right: none;
  padding: 0.7rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--white);
  outline: none;
  border-radius: 4px 0 0 4px;
}
.newsletter-form input::placeholder { color: var(--white-50); }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange);
  border: none;
  padding: 0 1.1rem;
  font-size: 1.1rem;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--orange-light); }

.footer-18 {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.badge-18 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  background: var(--orange);
  color: #000;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  flex-shrink: 0;
}
.footer-18 span:last-child {
  font-size: 0.72rem;
  color: var(--white-50);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--white-08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom-inner span {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--white-50);
}
.footer-bottom-inner span:last-child {
  color: var(--orange);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .predictions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .steps-row { flex-direction: column; gap: 0; }
  .step { border-right: 1px solid var(--white-08); border-bottom: none; }
  .step:last-child { border-bottom: 1px solid var(--white-08); }
  .step-arrow { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1.5rem; }

  .main-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid var(--white-08);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li a { padding: 0.85rem 0; border-bottom: 1px solid var(--white-08); width: 100%; }
  .nav-auth { margin-left: 0; margin-top: 1.2rem; width: 100%; }
  .btn-login, .btn-register { flex: 1; text-align: center; padding: 0.75rem; }

  .hamburger { display: flex; }

  .banner-content { padding: 0 1.5rem; }
  .banner-stats { flex-wrap: wrap; gap: 1rem; }
  .bstat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .predictions-grid { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .banner-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .banner-actions { flex-direction: column; align-items: flex-start; }
  .cta-main, .cta-ghost { width: 100%; text-align: center; }
}
