/* ═══════════════════════════════════════════════════════════════
   TAKTGEBER — Dark Cyberpunk Design System
   Static Landing Page — Matching the original Next.js version
   ═══════════════════════════════════════════════════════════════ */

/* === Local Fonts (no external requests) === */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/orbitron-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/rajdhani-300-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/rajdhani-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/rajdhani-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/rajdhani-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/rajdhani-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-card: rgba(18, 18, 26, 0.8);
  --bg-elevated: rgba(26, 26, 46, 0.8);
  --text: #e0e0f0;
  --text-muted: #8888aa;
  --text-dim: #555577;
  --cyan: #00ffc8;
  --magenta: #ff00aa;
  --blue: #00aaff;
  --yellow: #ffaa00;
  --red: #ff3366;
  --border: rgba(255, 255, 255, 0.05);
  --border-cyan: rgba(0, 255, 200, 0.2);
  --surface: #12121a;
  --surface-elevated: #1a1a2e;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  /* Subtle tech grid */
  background-image:
    linear-gradient(rgba(0, 255, 200, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 200, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 200, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-cyan { color: var(--cyan) !important; }
.text-red { color: var(--red) !important; }
.fw-bold { font-weight: 700; }

/* === Glass Utility === */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* === Tag === */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(0, 255, 200, 0.3);
  color: var(--cyan);
  margin-bottom: 1.5rem;
  font-family: 'Rajdhani', sans-serif;
}

/* === Section Header === */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a3e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a4e; }

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAV ═══ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
header.header-hidden {
  transform: translateY(-100%);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 2rem;
  width: auto;
  transition: opacity 0.2s;
}
.logo:hover .logo-img { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  align-items: center;
}
.nav-links a { color: var(--text-muted); font-family: 'Rajdhani', sans-serif; font-weight: 500; }
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  padding: 8px 20px;
  border-radius: 10px;
  background: var(--cyan) !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.25);
}
.nav-cta:hover {
  box-shadow: 0 0 35px rgba(0, 255, 200, 0.45) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
.hero-glow-1 {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.12) 0%, transparent 60%);
}
.hero-glow-2 {
  bottom: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 170, 0.08) 0%, transparent 60%);
  animation-delay: 2s;
}
.hero-glow-3 {
  top: 40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.06) 0%, transparent 60%);
  animation-delay: 4s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 255, 200, 0.3);
  color: var(--cyan);
  margin-bottom: 2rem;
  animation: pulse 3s ease-in-out infinite;
  font-family: 'Rajdhani', sans-serif;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 2rem;
}
.hero h1 span { display: block; }

.accent-glow {
  color: var(--cyan) !important;
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 20px rgba(0, 255, 200, 0.3), 0 0 40px rgba(0, 255, 200, 0.15);
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
}
.glitch::before {
  color: var(--cyan);
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.glitch::after {
  color: var(--magenta);
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}
@keyframes glitch-1 {
  0%, 90% { opacity: 0; transform: translateX(0); }
  92% { opacity: 0.8; transform: translateX(4px); }
  94% { opacity: 0; transform: translateX(-2px); }
  96% { opacity: 0.6; transform: translateX(-4px); }
  98%, 100% { opacity: 0; transform: translateX(0); }
}
@keyframes glitch-2 {
  0%, 88% { opacity: 0; transform: translateX(0); }
  90% { opacity: 0.8; transform: translateX(-4px); }
  93% { opacity: 0; transform: translateX(3px); }
  95% { opacity: 0.6; transform: translateX(4px); }
  97%, 100% { opacity: 0; transform: translateX(0); }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.hero-sports {
  font-size: 0.95rem;
  color: rgba(0, 255, 200, 0.65);
  margin-bottom: 2rem;
}

.divider {
  width: 120px;
  height: 2px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  opacity: 0.6;
}

/* Hero Status */
.hero-status {
  color: var(--cyan);
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Rajdhani', sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 255, 200, 0.35);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ═══ STATS ═══ */
.stats-section {
  padding: 5rem 0;
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 20px rgba(0, 255, 200, 0.3);
  display: block;
}
.stat-number small { font-size: 0.6em; }
.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* ═══ PROBLEM ═══ */
.problem-section {
  padding: 5rem 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.problem-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
}
.problem-before { border-left: 4px solid var(--red); }
.problem-after { border-left: 4px solid var(--cyan); }
.problem-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.problem-icon-red { background: rgba(255, 51, 102, 0.1); color: var(--red); }
.problem-icon-cyan { background: rgba(0, 255, 200, 0.1); color: var(--cyan); }
.problem-card h3 { font-size: 1.1rem; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ═══ USPs ═══ */
.usps-section {
  padding: 5rem 0;
}
.usps-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.usp-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.usp-reverse { flex-direction: row-reverse; }
.usp-reverse .usp-text { text-align: right; }

.usp-icon-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px color-mix(in srgb, var(--usp-color, var(--cyan)) 12%, transparent);
}
.usp-icon {
  width: 48px;
  height: 48px;
  stroke: var(--usp-color, var(--cyan));
}
.usp-text h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}
.usp-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* ═══ FEATURES GRID ═══ */
.features-section {
  padding: 5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(0, 255, 200, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.1);
}
.feature-accent {
  border-color: rgba(0, 255, 200, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.05);
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.accent-bg { background: rgba(0, 255, 200, 0.15); }
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ═══ SPORTS ═══ */
.sports-section {
  padding: 5rem 0;
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.sport-item span {
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
}
.sport-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 2rem;
  transition: all 0.3s;
}
.sport-icon:hover { border-color: rgba(0, 255, 200, 0.3); }

/* ═══ PRIVACY ═══ */
.privacy-section {
  padding: 5rem 0;
}
.privacy-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.privacy-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}
.privacy-card:hover {
  border-color: rgba(0, 255, 200, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.08);
}
.privacy-card-large {
  border-left: 3px solid var(--cyan);
}
.privacy-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.privacy-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--cyan);
}
.privacy-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.privacy-detail {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 200, 0.05);
  border: 1px solid rgba(0, 255, 200, 0.15);
  border-radius: 8px;
}
.privacy-detail code {
  font-family: 'Rajdhani', monospace;
  font-size: 0.8rem;
  color: var(--cyan);
  opacity: 0.8;
  word-break: break-word;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.privacy-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.privacy-item:hover {
  border-color: rgba(0, 255, 200, 0.15);
}
.privacy-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.privacy-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ═══ COMPARE ═══ */
.compare-section {
  padding: 5rem 0;
}
.compare-table {
  padding: 1.5rem 2rem;
  max-width: 750px;
  margin: 0 auto;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #2a2a3e;
  margin-bottom: 0.5rem;
}
.compare-header span {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
}
.compare-header span:nth-child(2),
.compare-header span:nth-child(3) { text-align: center; }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1a1a2e;
  font-size: 0.9rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row span:first-child { color: var(--text-muted); }
.compare-row span:nth-child(2),
.compare-row span:nth-child(3) { text-align: center; }

/* ═══ HOW IT WORKS ═══ */
.how-section {
  padding: 5rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ═══ TECH ═══ */
.tech-section {
  padding: 5rem 0;
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.tech-item:hover { border-color: rgba(0, 255, 200, 0.1); }
.tech-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 255, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.tech-item h4 {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.tech-item p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ═══ CTA ═══ */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 200, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
.cta-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.cta-coming-soon {
  color: rgba(0, 255, 200, 0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--blue));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══ FOOTER ═══ */
footer {
  border-top: 1px solid #1a1a2e;
  margin-top: 0;
}
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--cyan); }
.footer-made {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ═══ LEGAL PAGES ═══ */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.legal h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal .draft-notice {
  background: #3a2a00;
  border: 1px solid #665500;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #ffcc00;
}
.legal h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--cyan); }
.legal h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal p, .legal li { color: var(--text-muted); margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal hr { border: none; border-top: 1px solid #1a1a2e; margin: 2rem 0; }
.legal .back-link { display: inline-block; margin-bottom: 2rem; font-size: 0.9rem; }

/* ═══ MOBILE ═══ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .privacy-main-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid #1a1a2e;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { text-align: center; display: block; }

  .hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .problem-grid { grid-template-columns: 1fr; }

  .usp-row, .usp-reverse { flex-direction: column; text-align: center; }
  .usp-reverse .usp-text { text-align: center; }
  .usp-text p { margin: 0 auto; }
  .usp-icon-wrap { width: 80px; height: 80px; }
  .usp-icon { width: 40px; height: 40px; }

  .features-grid { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }

  .compare-table { padding: 1rem; }
  .compare-row { font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════════
   LARGE SCREEN TYPOGRAPHY SYSTEM
   
   Design Tokens (fluid scaling):
   - --fs-body:    Base body text
   - --fs-small:   Captions, labels, footer
   - --fs-card-h:  Card headings (h3/h4 in grids)
   - --fs-card-p:  Card body text
   - --fs-section-h: Section headings (h2)
   - --fs-section-p: Section subheadings
   
   Breakpoints:
   - Base:    < 1440px (existing styles)
   - Large:   ≥ 1440px (desktop/laptop)
   - XLarge:  ≥ 1920px (ultrawide/4K)
   ═══════════════════════════════════════════════════════════════ */

/* ═══ LARGE SCREENS (≥1440px) ═══ */
@media (min-width: 1440px) {
  :root { --max-width: 1400px; }

  /* — Base Typography — */
  body { font-size: 1.125rem; line-height: 1.7; }

  /* — Navigation — */
  .logo-img { height: 2.5rem; }
  .nav-links { font-size: 1.05rem; gap: 2.5rem; }

  /* — Hero — */
  .hero h1 { font-size: 6rem; }
  .hero-badge { font-size: 0.95rem; padding: 8px 22px; }
  .hero-subtitle { font-size: 1.3rem; max-width: 850px; }
  .hero-sports { font-size: 1.1rem; }
  .hero-status { font-size: 1.2rem; }

  /* — Section Headers (unified) — */
  .section-header h2 { font-size: 3rem; }
  .section-header p { font-size: 1.2rem; max-width: 700px; }
  .tag { font-size: 0.85rem; padding: 8px 20px; }

  /* — Stats — */
  .stat-number { font-size: 4rem; }
  .stat-label { font-size: 1.1rem; }

  /* — Problem Cards — */
  .problem-card { padding: 2.5rem; }
  .problem-card h3 { font-size: 1.3rem; }
  .problem-card p { font-size: 1.1rem; }

  /* — USP Rows — */
  .usp-icon-wrap { width: 120px; height: 120px; }
  .usp-icon { width: 56px; height: 56px; }
  .usp-text h3 { font-size: 1.85rem; }
  .usp-text p { font-size: 1.15rem; max-width: 600px; }

  /* — Feature Cards (grid) — */
  .feature-card { padding: 2rem; }
  .feature-icon-wrap { width: 56px; height: 56px; font-size: 1.75rem; }
  .feature-card h3 { font-size: 1.2rem; }
  .feature-card p { font-size: 1.05rem; }

  /* — Sports — */
  .sport-icon { width: 88px; height: 88px; font-size: 2.5rem; }
  .sport-item span { font-size: 1.1rem; }

  /* — Privacy Section — */
  .privacy-card { padding: 2.5rem; }
  .privacy-card-icon { font-size: 2.5rem; }
  .privacy-card h3 { font-size: 1.35rem; }
  .privacy-card p { font-size: 1.1rem; }
  .privacy-detail code { font-size: 0.9rem; }
  .privacy-item { padding: 2rem; }
  .privacy-item strong { font-size: 1.15rem; }
  .privacy-item p { font-size: 1.05rem; }

  /* — Compare Table — */
  .compare-table { max-width: 850px; padding: 2rem 2.5rem; }
  .compare-header span { font-size: 1.05rem; }
  .compare-row { font-size: 1.1rem; padding: 1rem 0; }

  /* — Steps — */
  .step-icon { width: 84px; height: 84px; font-size: 2.25rem; }
  .step h3 { font-size: 1.3rem; }
  .step p { font-size: 1.1rem; max-width: 400px; }

  /* — Tech Grid — */
  .tech-icon { width: 48px; height: 48px; font-size: 1.4rem; }
  .tech-item { padding: 1.25rem; }
  .tech-item h4 { font-size: 1.05rem; }
  .tech-item p { font-size: 1rem; }

  /* — CTA — */
  .cta-title { font-size: 3.75rem; }
  .cta-subtitle { font-size: 1.3rem; }
  .cta-coming-soon { font-size: 1.05rem; }

  /* — Footer — */
  .footer-links { font-size: 1.05rem; gap: 2.5rem; }
  .footer-made { font-size: 1rem; }
  .footer-copy { font-size: 0.95rem; }

  /* — Legal Pages — */
  .legal h1 { font-size: 2.5rem; }
  .legal h2 { font-size: 1.5rem; }
  .legal p, .legal li { font-size: 1.1rem; }
}

/* ═══ EXTRA LARGE SCREENS (≥1920px) ═══ */
@media (min-width: 1920px) {
  :root { --max-width: 1600px; }

  /* — Base Typography — */
  body { font-size: 1.25rem; line-height: 1.75; }

  /* — Navigation — */
  .logo-img { height: 3rem; }
  .nav-links { font-size: 1.15rem; gap: 3rem; }

  /* — Hero — */
  .hero h1 { font-size: 7rem; }
  .hero-badge { font-size: 1.05rem; padding: 10px 26px; }
  .hero-subtitle { font-size: 1.45rem; max-width: 1000px; }
  .hero-sports { font-size: 1.2rem; }
  .hero-status { font-size: 1.35rem; }

  /* — Section Headers (unified) — */
  .section-header h2 { font-size: 3.5rem; }
  .section-header p { font-size: 1.35rem; max-width: 800px; }
  .tag { font-size: 0.9rem; padding: 10px 24px; }

  /* — Stats — */
  .stat-number { font-size: 4.5rem; }
  .stat-label { font-size: 1.2rem; }

  /* — Problem Cards — */
  .problem-grid { max-width: 1100px; }
  .problem-card { padding: 3rem; }
  .problem-card h3 { font-size: 1.45rem; }
  .problem-card p { font-size: 1.2rem; }

  /* — USP Rows — */
  .usp-icon-wrap { width: 140px; height: 140px; }
  .usp-icon { width: 64px; height: 64px; }
  .usp-text h3 { font-size: 2.1rem; }
  .usp-text p { font-size: 1.25rem; max-width: 700px; }

  /* — Feature Cards (grid) — */
  .features-grid { gap: 1.75rem; }
  .feature-card { padding: 2.5rem; }
  .feature-icon-wrap { width: 64px; height: 64px; font-size: 2rem; }
  .feature-card h3 { font-size: 1.35rem; }
  .feature-card p { font-size: 1.15rem; }

  /* — Sports — */
  .sport-icon { width: 100px; height: 100px; font-size: 2.75rem; }
  .sport-item span { font-size: 1.2rem; }

  /* — Privacy Section — */
  .privacy-card { padding: 3rem; }
  .privacy-card-icon { font-size: 3rem; }
  .privacy-card h3 { font-size: 1.5rem; }
  .privacy-card p { font-size: 1.2rem; }
  .privacy-detail code { font-size: 1rem; }
  .privacy-item { padding: 2.5rem; }
  .privacy-item strong { font-size: 1.25rem; }
  .privacy-item p { font-size: 1.15rem; }

  /* — Compare Table — */
  .compare-table { max-width: 1000px; padding: 2.5rem 3rem; }
  .compare-header span { font-size: 1.15rem; }
  .compare-row { font-size: 1.2rem; padding: 1.1rem 0; }

  /* — Steps — */
  .step-icon { width: 96px; height: 96px; font-size: 2.5rem; }
  .step-num { width: 32px; height: 32px; font-size: 0.95rem; }
  .step h3 { font-size: 1.45rem; }
  .step p { font-size: 1.2rem; max-width: 440px; }

  /* — Tech Grid — */
  .tech-icon { width: 56px; height: 56px; font-size: 1.5rem; }
  .tech-item { padding: 1.5rem; }
  .tech-item h4 { font-size: 1.15rem; }
  .tech-item p { font-size: 1.1rem; }

  /* — CTA — */
  .cta-title { font-size: 4.25rem; }
  .cta-subtitle { font-size: 1.45rem; }
  .cta-coming-soon { font-size: 1.15rem; }

  /* — Footer — */
  .footer-links { font-size: 1.15rem; gap: 3rem; }
  .footer-made { font-size: 1.1rem; }
  .footer-copy { font-size: 1.05rem; }

  /* — Legal Pages — */
  .legal { max-width: 950px; }
  .legal h1 { font-size: 3rem; }
  .legal h2 { font-size: 1.75rem; }
  .legal h3 { font-size: 1.35rem; }
  .legal p, .legal li { font-size: 1.2rem; }
}
