:root {
  --bg: #101114;
  --bg-soft: #17191d;
  --panel: rgba(18, 20, 25, 0.74);
  --panel-strong: rgba(24, 27, 34, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f3ee;
  --muted: #c7c3bb;
  --red: #ef533f;
  --blue: #3979ff;
  --gold: #f6d486;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(239, 83, 63, 0.22), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(57, 121, 255, 0.24), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(246, 212, 134, 0.08), transparent 34%),
    linear-gradient(180deg, #0d0e11 0%, #111318 46%, #151820 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 76px 0 44px;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.legal-hero h1 {
  margin: 0;
  font-family: "Iowan Old Style", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lede {
  max-width: 60ch;
  font-size: 1.14rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #ff7f52);
  color: #fff;
  box-shadow: 0 18px 28px rgba(239, 83, 63, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff0b8);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.watch-shell {
  position: relative;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #2a2d34, #101114);
  box-shadow: var(--shadow);
}

.watch-shell::before,
.watch-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 112px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #2a2d34, #121419);
}

.watch-shell::before {
  top: -12px;
}

.watch-shell::after {
  bottom: -12px;
}

.watch-screen {
  padding: 16px;
  border-radius: 42px;
  background: #07080b;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-topbar,
.watch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.watch-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watch-meta {
  color: rgba(255, 255, 255, 0.64);
}

.watch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff4be, var(--gold));
  box-shadow: 0 0 18px rgba(246, 212, 134, 0.45);
}

.scoreboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 360px;
  margin: 14px 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.score-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 12px 22px;
}

.score-side-red {
  background: linear-gradient(180deg, rgba(239, 83, 63, 0.98), rgba(189, 45, 32, 0.88));
}

.score-side-blue {
  background: linear-gradient(180deg, rgba(57, 121, 255, 0.98), rgba(28, 71, 173, 0.88));
}

.score-initials {
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.score-value {
  font-size: clamp(4.2rem, 12vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
}

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 20px;
}

.section-heading h2,
.split-copy h2,
.legal-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.feature-grid,
.support-grid,
.link-grid,
.stat-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.support-card,
.link-card,
.stat-card,
.split-band,
.legal-content {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.feature-card,
.support-card,
.link-card,
.stat-card {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.feature-card h3,
.support-card h2,
.stat-card strong,
.link-card strong {
  margin: 0 0 8px;
}

.feature-card p,
.support-card p,
.link-card span,
.stat-card span,
.split-copy p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 12px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.split-copy {
  align-self: center;
}

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

.stat-card strong {
  display: block;
  font-size: 1.02rem;
}

.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-card {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--panel-strong);
}

.legal-page {
  padding-top: 52px;
}

.legal-hero {
  margin-bottom: 24px;
}

.legal-content {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.legal-content h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-content h3 {
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content ul {
  margin-top: 0;
  padding-left: 20px;
}

.legal-content a,
.support-card a,
.footer-contact a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 24px 0 8px;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-contact,
.footer-meta {
  margin: 0;
}

@media (max-width: 960px) {
  .hero,
  .split-band,
  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    padding-top: 40px;
  }

  .watch-shell {
    width: min(100%, 360px);
  }

  .scoreboard {
    min-height: 300px;
  }

  .support-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 22px;
  }
}
