/* ===================================================
   SHARP EDGE PUNTING — styles.css
   Premium dark sports betting landing page
=================================================== */

/* --- FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  /* Colors */
  --bg-void:       #04060f;
  --bg-deep:       #070c1a;
  --bg-card:       #0b1225;
  --bg-card-hover: #0f1830;
  --bg-glass:      rgba(11, 18, 37, 0.7);
  --border:        rgba(30, 80, 200, 0.18);
  --border-bright: rgba(30, 130, 255, 0.35);

  --blue-primary:  #1e82ff;
  --blue-bright:   #3d9bff;
  --blue-glow:     rgba(30, 130, 255, 0.35);
  --blue-subtle:   rgba(30, 130, 255, 0.08);
  --electric:      #00d4ff;

  --text-primary:  #f0f4ff;
  --text-secondary:#8fa8d4;
  --text-muted:    #4a6080;

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Syne', sans-serif;
  --font-mono:     'DM Mono', monospace;

  /* Spacing */
  --section-pad:   120px;
  --container:     1200px;
  --radius:        12px;
  --radius-lg:     20px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* --- UTILITY --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--blue-primary); }

.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay1 { transition-delay: 0.1s; }
.reveal--delay2 { transition-delay: 0.2s; }
.reveal--delay3 { transition-delay: 0.3s; }
.reveal--delay4 { transition-delay: 0.4s; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: visible;
  line-height: 1.4;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #1e82ff 0%, #0058cc 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(30, 130, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 130, 255, 0.45);
}

.btn-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(30, 130, 255, 0.25); }
  50%       { box-shadow: 0 4px 36px rgba(30, 130, 255, 0.5); }
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-bright);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(30, 130, 255, 0.1);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  border: 1.5px solid var(--blue-primary);
}

.btn-outline:hover {
  background: rgba(30, 130, 255, 0.1);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--blue-primary);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.875rem;
  box-shadow: 0 0 20px rgba(30, 130, 255, 0.3);
}

.btn-nav:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 30px rgba(30, 130, 255, 0.5);
}

.btn-full { width: 100%; justify-content: center; }

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-subtle);
  border: 1px solid rgba(30, 130, 255, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(4, 6, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,0.5);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;  /* Pushes it to the far left */
  margin-left: -20px;  /* Moves it even more left, adjust as needed */
}

.nav-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

.navbar.scrolled .nav-logo {
  height: 90px;
}

.navbar.scrolled .nav-logo {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding: 8px 0;
  line-height: 1.5;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  border-radius: 2px 2px 0 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Background collage */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-photo:hover img {
  transform: scale(1.12);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(4,6,15,0.3) 0%,
    rgba(4,6,15,0.1) 40%,
    rgba(4,6,15,0.6) 100%
  );
}

/* Vertical dividers between photos */
.hero-photo:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--blue-primary), transparent);
  opacity: 0.5;
}

/* Full overlay gradient over the entire hero bg */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(4,6,15,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(4,6,15,0.7) 0%, transparent 100%),
    linear-gradient(to right, rgba(4,6,15,0.7), rgba(4,6,15,0.3) 50%, rgba(4,6,15,0.7));
  flex-wrap: wrap;
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(30,130,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,130,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

.headline-accent {
  color: var(--blue-primary);
  position: relative;
}

.headline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-ctas .btn {
  font-size: 1rem;
  padding: 18px 32px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.stat-unit {
  font-size: 1.2rem;
  color: var(--blue-primary);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: var(--font-mono);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--blue-primary));
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ===================================================
   MARKETS
=================================================== */
.markets { background: var(--bg-deep); position: relative; }

.markets::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
  opacity: 0.4;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 130, 255, 0.15);
  border-color: var(--border-bright);
}

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: saturate(0.8);
}

.market-card:hover .card-image {
  transform: scale(1.06);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11, 18, 37, 0.95) 100%);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--blue-primary);
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(30, 130, 255, 0.4);
  line-height: 1.2;
}

.card-body {
  padding: 24px 28px 32px;
}

.card-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--blue-primary);
  background: var(--blue-subtle);
  border: 1px solid rgba(30, 130, 255, 0.2);
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.3;
}

/* ===================================================
   BOOKMAKERS
=================================================== */
.bookmakers {
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}

.bookmakers::before,
.bookmakers::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.bookmakers::before { top: 0; }
.bookmakers::after  { bottom: 0; }

.bm-inner {
  text-align: center;
}

.bm-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.4;
}

.bm-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Gradient fade on edges */
.bm-carousel::before,
.bm-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.bm-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-void) 0%, transparent 100%);
}

.bm-carousel::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--bg-void) 100%);
}

.bm-track {
  display: flex;
  gap: 48px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}


@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bm-logo-wrap {
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bm-logo-wrap:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 130, 255, 0.1);
}

.bm-logo {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.8);
  transition: filter 0.3s;
}

.bm-logo-wrap:hover .bm-logo {
  filter: brightness(1) saturate(1);
}

/* ===================================================
   PROOF
=================================================== */
.proof {
  background: var(--bg-deep);
  position: relative;
}

.proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
  opacity: 0.3;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.proof-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.proof-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.proof-img-wrap:hover {
  border-color: var(--border-bright);
}

.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.proof-img-wrap:hover .proof-img {
  transform: scale(1.05);
}

.proof-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(7, 12, 26, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.proof-img-wrap:hover .proof-hover {
  opacity: 1;
}

.proof-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.7;
  background: rgba(255, 150, 0, 0.05);
  border: 1px solid rgba(255, 150, 0, 0.15);
  padding: 18px 24px;
  border-radius: 8px;
  max-width: 640px;
  margin: 0 auto;
}

/* ===================================================
   LIGHTBOX
=================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 15, 0.95);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px var(--border-bright);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-out);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ===================================================
   PRICING
=================================================== */
.pricing {
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30, 130, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.pricing-grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card--featured {
  border-color: var(--blue-primary);
  box-shadow:
    0 0 0 1px rgba(30, 130, 255, 0.2),
    0 20px 60px rgba(30, 130, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  background: linear-gradient(160deg, rgba(30, 130, 255, 0.06) 0%, var(--bg-card) 50%);
}

.pricing-card--featured:hover {
  box-shadow:
    0 0 0 1px rgba(30, 130, 255, 0.35),
    0 28px 80px rgba(30, 130, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-primary), #0058cc);
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(30, 130, 255, 0.4);
  line-height: 1.3;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.2;
  margin-bottom: 4px;
  align-self: flex-start;
}

.price-value {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.price-period {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-also {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.pricing-also strong {
  color: var(--text-secondary);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feat-icon {
  color: var(--blue-primary);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feat-icon--muted {
  color: var(--text-muted);
}

.muted { color: var(--text-muted); }

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--text-secondary);
}

/* ===================================================
   FAQ
=================================================== */
.faq { background: var(--bg-deep); }

.faq::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--border-bright);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
  line-height: 1.5;
}

.faq-question:hover { color: var(--blue-bright); }

.faq-icon {
  flex-shrink: 0;
  color: var(--blue-primary);
  transition: transform 0.35s var(--ease-out);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 26px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ===================================================
   CONTACT
=================================================== */
.contact {
  background: var(--bg-deep);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(30, 130, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.contact-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  background: linear-gradient(145deg, rgba(4, 8, 18, 0.95), rgba(8, 13, 28, 0.85));
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 1;
}

.contact-panel-text {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-panel-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
}

.contact-headline {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-headline-accent {
  display: block;
  color: var(--blue-primary);
}

.contact-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f6d365, #fda085, #f7797d, #ea5dad, #6a5af9);
  color: #fff;
  box-shadow: 0 12px 30px rgba(106, 90, 249, 0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  white-space: nowrap;
}

.contact-ig-btn svg {
  stroke: currentColor;
}

.contact-ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(106, 90, 249, 0.5);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 130, 255, 0.12);
  color: var(--blue-primary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--bg-void);
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.85;
}

.footer-brand-text {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
  font-weight: 600;
  line-height: 1.5;
  padding: 2px 0;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-link--accent {
  color: var(--blue-primary);
}

.footer-link--accent:hover {
  color: var(--blue-bright);
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 900px;
}

.footer-disclaimer p + p {
  margin-top: 12px;
}

.footer-disclaimer a {
  color: var(--blue-primary);
  text-decoration: underline;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
}

.footer-bottom {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 16px 0;
    background: rgba(4, 6, 15, 0.9);
    backdrop-filter: blur(16px);
  }

  .nav-logo {
    height: 90px;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(4, 6, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out);
    z-index: 50;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  .nav-link:hover {
    background: var(--blue-subtle);
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero-photos {
    grid-template-columns: 1fr;
  }

  .hero-photo:not(:first-child) { display: none; }
  .hero-photo::after { display: none; }

  .hero-content {
    padding: 60px 32px 80px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-headline {
    font-size: 3.8rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 2rem;
  }

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

  /* Markets */
  .markets-grid {
    grid-template-columns: 1fr;
  }

  .market-card:last-child {
    grid-column: span 1;
  }

  /* Bookmakers */
  .bm-logos {
    gap: 16px;
  }

  .bm-logo-wrap {
    padding: 12px 16px;
  }

  .bm-logo { height: 28px; }

  /* Proof */
  .proof-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .pricing-grid,
  .pricing-grid--three {
    grid-template-columns: 1fr;
    max-width: 480px; 
  }

  .pricing-card {
    padding: 32px 28px;
  }

  .contact-panel {
    padding: 36px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-ig-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container, .container--narrow {
    padding: 0 20px;
  }

  .nav-logo {
    height: 70px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-content {
    padding: 40px 20px 60px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider { display: none; }

  .pricing-card {
    padding: 28px 20px;
  }

  .price-value {
    font-size: 3rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 16px 20px 22px;
  }

  .contact-panel {
    padding: 28px 20px;
  }
}
