/* =====================================
   MatPulse Landing Page — Custom Styles
   ===================================== */

:root {
  --bg: #0B1628;
  --bg-card: #0f1e33;
  --bg-card-hover: #142540;
  --fg: #f0f4ff;
  --fg-muted: #8899bb;
  --accent: #00E5C4;
  --accent-dim: rgba(0, 229, 196, 0.12);
  --accent-glow: rgba(0, 229, 196, 0.25);
  --coral: #FF4D6D;
  --coral-dim: rgba(255, 77, 109, 0.12);
  --amber: #FFB800;
  --teal-dark: #00a896;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Landing Nav ---- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.lp-nav-logo span { color: var(--accent); }
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-nav-link:hover { color: var(--fg); }
.lp-nav-cta {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-nav-cta:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .lp-nav-inner { padding: 0 16px; }
  .lp-nav-links { gap: 16px; }
  .lp-nav-link { display: none; }
}

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,196,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,196,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}

.headline-line {
  display: block;
}

.headline-line.accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.stat {
  padding: 0 24px;
}

.stat:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ---- Scoreboard ---- */
.hero-scoreboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scoreboard-frame {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,196,0.2);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,229,196,0.1), 0 20px 60px rgba(0,0,0,0.4);
}

.scoreboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,229,196,0.08);
  border-bottom: 1px solid rgba(0,229,196,0.15);
}

.sb-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
}

.sb-event {
  font-size: 12px;
  color: var(--fg-muted);
  flex: 1;
}

.sb-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.scoreboard-teams {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}

.score-team.team-a {
  border: 1px solid rgba(0,229,196,0.25);
  background: rgba(0,229,196,0.05);
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

.team-div {
  font-size: 11px;
  color: var(--fg-muted);
}

.team-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--fg-muted);
}

.team-score.score-current {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0,229,196,0.4);
}

.scoreboard-divider {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.vs-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}

.score-breakdown {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 90px 1fr 48px;
  align-items: center;
  gap: 10px;
}

.breakdown-label {
  font-size: 11px;
  color: var(--fg-muted);
}

.breakdown-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.7;
  transition: width 1s ease;
}

.bar-fill.bar-red {
  background: var(--coral);
}

.breakdown-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: right;
}

.val-red {
  color: var(--coral);
}

.scoreboard-footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-text {
  font-size: 11px;
  color: var(--fg-muted);
}

.scoreboard-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  opacity: 0.5;
}

/* ---- Problem Section ---- */
.problem {
  padding: 120px 0;
  background: #080f1a;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.problem-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.section-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
}

.tag-teal {
  color: var(--accent);
}

.tag-teal::before {
  background: var(--accent);
}

.problem-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.problem-card:hover {
  border-color: rgba(255, 77, 109, 0.3);
  transform: translateY(-2px);
}

.problem-icon {
  margin-bottom: 16px;
}

.problem-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--fg);
}

.problem-card-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.problem-quote {
  border-left: 3px solid var(--coral);
  padding-left: 28px;
}

.problem-quote blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.problem-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ---- Live Scores Section ---- */
.live-scores {
  padding: 120px 0;
  background: var(--bg);
}

.live-scores-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.feature-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.feature-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 48px;
}

.scores-ui-preview {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.phone-frame {
  width: 300px;
  background: #1a2535;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 80px rgba(0,229,196,0.12), 0 30px 60px rgba(0,0,0,0.5);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #1a2535;
  border-radius: 12px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: #0d1826;
  border-radius: 28px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-app-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.phone-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--accent);
  background: rgba(0,229,196,0.12);
  padding: 3px 8px;
  border-radius: 10px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.event-selector {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 12px;
}

.event-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--fg);
}

.event-meta {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.now-performing {
  background: rgba(255,77,109,0.08);
  border: 1px solid rgba(255,77,109,0.2);
  border-radius: 10px;
  padding: 10px 12px;
}

.np-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 6px;
}

.np-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
}

.np-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral);
  animation: pulse 1s ease-in-out infinite;
}

.division-leaderboard {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  overflow: hidden;
}

.dl-header {
  font-size: 10px;
  color: var(--fg-muted);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
}

.dl-row {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  gap: 8px;
}

.dl-row-top {
  background: rgba(0,229,196,0.03);
}

.dl-row-current {
  background: rgba(255,77,109,0.06);
  border-left: 3px solid var(--coral);
}

.dl-rank {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--fg-muted);
  width: 20px;
}

.dl-name {
  flex: 1;
  font-size: 12px;
  color: var(--fg);
}

.dl-score-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dl-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}

.dl-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.status-hit { background: rgba(0,229,196,0.15); color: var(--accent); }
.status-performing { background: rgba(255,77,109,0.15); color: var(--coral); }
.status-upcoming { background: rgba(255,255,255,0.06); color: var(--fg-muted); }

.phone-follow-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,196,0.08);
  border: 1px solid rgba(0,229,196,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.feature-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.ff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}

.ff-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- AI Insights ---- */
.ai-insights {
  padding: 120px 0;
  background: #080f1a;
  position: relative;
  overflow: hidden;
}

.ai-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,196,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ai-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.ai-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--fg);
}

.ai-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 56px;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ai-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,196,0.12);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s;
}

.ai-card:hover {
  border-color: rgba(0,229,196,0.3);
}

.ai-card-primary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.ai-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ai-card-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.ai-card-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.ai-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-card-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.ai-prediction {
  background: rgba(0,229,196,0.06);
  border: 1px solid rgba(0,229,196,0.2);
  border-radius: 12px;
  padding: 16px;
}

.pred-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.pred-range {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pred-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--accent);
}

.pred-sep {
  font-size: 24px;
  color: var(--fg-muted);
}

.pred-meta {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ---- Follow Teams ---- */
.follow-teams {
  padding: 120px 0;
  background: var(--bg);
}

.follow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.follow-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  margin-top: 48px;
}

.follow-card-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.follow-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}

.follow-card:hover {
  border-color: rgba(0,229,196,0.25);
  transform: translateY(-3px);
}

.fc-1 { border-top: 3px solid var(--accent); }
.fc-2 { border-top: 3px solid var(--coral); margin-top: 20px; }
.fc-3 { border-top: 3px solid var(--amber); margin-top: -10px; }

.fc-gym {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}

.fc-teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-team {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-team-name {
  font-size: 13px;
  color: var(--fg-muted);
}

.fc-team-score {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.fc-team-score.positive {
  background: rgba(0,229,196,0.12);
  color: var(--accent);
}

.fc-team-score.neutral {
  background: rgba(255,255,255,0.06);
  color: var(--fg-muted);
}

.fc-event {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

/* ---- Why Now ---- */
.why-now {
  padding: 120px 0;
  background: #080f1a;
}

.why-now-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-now-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.why-now-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-now-highlight {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  line-height: 1.4;
  margin-top: 24px;
  padding: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,196,0.2);
  border-radius: 12px;
}

.why-now-facts {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}

.fact-item {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fact-item:last-child {
  border-bottom: none;
}

.fact-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- Closing ---- */
.closing {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0,229,196,0.06) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(0,229,196,0.03) 100%);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing-statement {
  margin-top: 48px;
  padding: 28px 36px;
  border: 1px solid rgba(0,229,196,0.25);
  border-radius: 16px;
  background: var(--accent-dim);
  display: inline-block;
  max-width: 560px;
}

.closing-statement span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--fg);
  line-height: 1.5;
}

/* ---- Footer ---- */
footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #070d18;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

.footer-link-a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  opacity: 0.6;
  margin-right: 16px;
  transition: opacity 0.2s;
}
.footer-link-a:hover { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-scoreboard {
    order: -1;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-card-primary {
    grid-template-columns: 1fr;
  }
  .why-now-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feature-features {
    grid-template-columns: 1fr;
  }
  .follow-card-stack {
    flex-direction: column;
    align-items: center;
  }
  .follow-card {
    width: 100%;
    max-width: 360px;
  }
  .fc-2, .fc-3 {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .hero, .problem, .live-scores, .ai-insights, .why-now, .closing {
    padding: 80px 0;
  }
  .hero-content, .problem-inner, .live-scores-inner, .ai-inner, .why-now-inner, .closing-inner {
    padding: 0 24px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .stat-divider {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}