:root {
  --bg: #080b10;
  --bg-soft: #0e131a;
  --panel: #121922;
  --panel-2: #0d141d;
  --text: #f4f7fb;
  --muted: #98a6b8;
  --line: rgba(255,255,255,.09);
  --blue: #31a7ff;
  --blue-2: #0d74d8;
  --blue-glow: rgba(49,167,255,.24);
  --red: #ff4d5a;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 20px;
  --shell: 1180px;
}

* { 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;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(49,167,255,.08), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(calc(100% - 36px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(8,11,16,.82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49,167,255,.65);
  background: linear-gradient(145deg, rgba(49,167,255,.18), rgba(49,167,255,.04));
  color: var(--blue);
  border-radius: 9px;
  box-shadow: inset 0 0 24px rgba(49,167,255,.08);
}
.brand-text { font-size: .95rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding-block: 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}

h1, h2, h3 { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(4.2rem, 11vw, 8.7rem);
  line-height: .82;
  letter-spacing: -.06em;
  font-weight: 950;
  background: linear-gradient(180deg, #fff 0%, #a7d9ff 55%, #2e91dc 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 18px;
  max-width: 840px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

h3 { margin-bottom: 8px; }

.hero-tagline {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
}
.hero-body,
.section-copy {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #06101a;
  box-shadow: 0 12px 36px var(--blue-glow);
}
.btn-secondary {
  background: rgba(255,255,255,.03);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: rgba(49,167,255,.45); }

.status-card {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}
.status-card div {
  display: grid;
  gap: 1px;
}
.status-card strong { font-size: .83rem; }
.status-card span:last-child {
  color: var(--muted);
  font-size: .8rem;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(255,77,90,.65);
}

.hero-visual {
  min-height: 480px;
  position: relative;
  display: grid;
  place-items: center;
}
.radar {
  width: min(36vw, 430px);
  aspect-ratio: 1;
  position: relative;
  border: 1px solid rgba(49,167,255,.22);
  border-radius: 50%;
  background:
    linear-gradient(rgba(49,167,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,167,255,.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(49,167,255,.16), rgba(49,167,255,.015) 60%, transparent 70%);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow:
    inset 0 0 60px rgba(49,167,255,.08),
    0 0 90px rgba(49,167,255,.08);
}
.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(49,167,255,.18);
}
.radar::before {
  width: 1px;
  inset-block: 0;
  left: 50%;
}
.radar::after {
  height: 1px;
  inset-inline: 0;
  top: 50%;
}
.radar-ring {
  position: absolute;
  border: 1px solid rgba(49,167,255,.16);
  border-radius: 50%;
  inset: 12%;
}
.ring-2 { inset: 27%; }
.ring-3 { inset: 41%; }
.radar-line {
  position: absolute;
  inset: 50% 50% auto auto;
  width: 46%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(49,167,255,.9), transparent);
  animation: sweep 7s linear infinite;
}
.radar-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #0b1119;
  border: 1px solid rgba(49,167,255,.38);
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 950;
  box-shadow: 0 0 35px rgba(49,167,255,.18);
}
@keyframes sweep { to { transform: rotate(360deg); } }

.hero-chip {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11,16,23,.85);
  color: #d6e8f7;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  box-shadow: var(--shadow);
}
.chip-1 { top: 18%; right: 4%; }
.chip-2 { bottom: 17%; right: 12%; }
.chip-3 { bottom: 23%; left: 2%; }

.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.section-muted {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
}

.section-heading {
  margin-bottom: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-heading h2 { margin-bottom: 0; }

.text-link {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}
.content-card {
  min-height: 360px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(49,167,255,.11), transparent 30%),
    var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}
.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49,167,255,.45);
}
.card-feature {
  background:
    linear-gradient(145deg, rgba(49,167,255,.16), transparent 45%),
    var(--panel);
}
.card-kicker {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.card-icon {
  font-size: 3rem;
  color: var(--blue);
}
.card-bottom p { margin: 0; color: var(--muted); }

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-2);
}
.game-number {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-weight: 900;
  font-size: .75rem;
}
.game-card h3 {
  font-size: 1.35rem;
}
.game-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.schedule-grid,
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.schedule-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.schedule-row {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.schedule-row span { color: var(--muted); }
.schedule-note {
  padding: 20px 24px;
  color: var(--muted);
  font-size: .9rem;
}

.about-mark {
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  border: 1px solid rgba(49,167,255,.32);
  background:
    radial-gradient(circle, rgba(49,167,255,.2), rgba(49,167,255,.04) 55%, transparent 70%);
  color: var(--blue);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 950;
  box-shadow: inset 0 0 80px rgba(49,167,255,.05);
}

.connect-section {
  text-align: center;
}
.connect-inner h2 { margin-inline: auto; }
.social-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.social-grid a {
  min-height: 120px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}
.social-grid a:hover {
  border-color: rgba(49,167,255,.45);
  background: rgba(49,167,255,.035);
}
.social-grid span {
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.social-grid strong { font-size: .92rem; }

.site-footer {
  padding: 26px 0;
  color: var(--muted);
  font-size: .83rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-grid,
  .schedule-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .radar { width: min(76vw, 420px); }

  .card-grid { grid-template-columns: 1fr; }
  .content-card { min-height: 280px; }

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

  .about-grid { gap: 38px; }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 13px;
    right: 13px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0c1118;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-grid { padding-block: 64px; }
  h1 { font-size: clamp(3.6rem, 20vw, 6rem); }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }

  .section { padding: 76px 0; }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .hero-visual { min-height: 320px; }
  .hero-chip { font-size: .62rem; }

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

  .game-card { min-height: 210px; }
  .game-number { margin-bottom: 38px; }

  .schedule-row {
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .radar-line { animation: none; }
  * { transition: none !important; }
}
