:root {
  /*
    SLATEARENA DESIGN SYSTEM NOTES

    This CSS file is intentionally commented as a handoff artifact.
    Treat these notes like embedded markdown for future developers, agents, and designers.

    Product Feel:
    - Premium sports intelligence platform.
    - Dense enough for bettors/DFS players, but not chaotic.
    - Should feel closer to a trading desk/community arena than a marketing template.

    Visual Rules:
    - Cards and panels max out at 8px radius.
    - Avoid decorative blobs, oversized hero art, and generic gradient SaaS styling.
    - Green/blue indicate positive edge or action.
    - Amber indicates gated/locked/caution.
    - Red indicates negative movement/risk.
    - Text must remain readable on mobile; do not scale typography by viewport width.

    Future Rebuild:
    - These tokens should become shared app tokens in React/Next/Vite.
    - Component families to preserve: shell, board rows, edge panel, pricing cards,
      community pulse, lead form, trust/legal note.
  */
  --bg: #080b10;
  --panel: #101720;
  --panel-2: #131d28;
  --line: #273240;
  --text: #f3f7fb;
  --muted: #9aa8b7;
  --green: #19c37d;
  --blue: #4ba3ff;
  --amber: #f7b955;
  --red: #ff5f66;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 11, 16, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-cta,
.primary-action,
.secondary-action,
.buy-link,
.lead-form button,
.arena-preview button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-cta,
.primary-action,
.buy-link,
.lead-form button,
.arena-preview button {
  background: var(--green);
  color: #03120b;
  padding: 0 18px;
}

.secondary-action {
  border-color: var(--line);
  color: var(--text);
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px) 56px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.section-heading p,
.split p,
.founders p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  color: var(--muted);
  font-size: 13px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.arena-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #111a24, #0d1219);
  box-shadow: var(--shadow);
}

.preview-top,
.game-row,
.edge-panel,
.mini-grid,
.community-pulse {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.preview-top span,
small,
.mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.game-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.highlighted {
  border-color: rgba(25, 195, 125, 0.42);
}

.teams {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.market strong {
  display: block;
  margin-top: 4px;
}

.positive {
  color: var(--green);
}

.edge-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.score-ring {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 7px solid rgba(25, 195, 125, 0.22);
  border-top-color: var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mini-grid div {
  padding: 14px;
}

.mini-grid div + div {
  border-left: 1px solid var(--line);
}

.community-pulse {
  padding: 14px;
}

.community-pulse p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 68px clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-grid article,
.price-card,
.rules-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.feature-index,
.plan-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid h3,
.price-card h3,
.rules-card h3 {
  margin: 16px 0 10px;
}

.feature-grid p,
.price-card p,
.rules-card li,
.legal-note {
  color: var(--muted);
  line-height: 1.5;
}

.split,
.founders {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.rules-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.price-card.featured {
  border-color: rgba(75, 163, 255, 0.48);
  background: var(--panel-2);
}

.price {
  font-size: 46px;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.buy-link {
  width: 100%;
  margin-top: 8px;
}

.secondary-buy {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--text);
}

.legal-note {
  margin-top: 18px;
  font-size: 13px;
}

.lead-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.lead-form label {
  font-weight: 900;
}

.lead-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.lead-form input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b1118;
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

#form-status {
  min-height: 18px;
  color: var(--green);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .split,
  .founders {
    grid-template-columns: 1fr;
  }

  .arena-preview {
    min-width: 0;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 34px 16px 36px;
  }

  .section {
    padding: 44px 16px;
  }

  .game-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .mini-grid,
  .lead-form div {
    grid-template-columns: 1fr;
  }

  .mini-grid div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    display: grid;
  }
}
