:root {
  --bg: #0d1117;
  --panel: rgba(13, 18, 28, 0.74);
  --panel-strong: rgba(20, 27, 40, 0.92);
  --text: #f5f7fb;
  --muted: #b6bfd0;
  --orange: #ff7a18;
  --blue: #3b82f6;
  --teal: #15c7b8;
  --red: #ef4444;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.24), transparent 26%),
    radial-gradient(circle at bottom center, rgba(21, 199, 184, 0.12), transparent 28%),
    linear-gradient(145deg, #090c12 0%, #101621 45%, #0b1220 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25));
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.hero,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 22px;
}

.hero::after,
.panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -65% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.18), transparent 60%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), #ffb067);
  color: #09111a;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.topbar-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-links a,
.button,
.connect-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.topbar-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.topbar-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.scoreboard-card,
.spotlight-card,
.anthem-display,
.anthem-list,
.connect-card {
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.hero-copy {
  padding: 18px 8px 18px 8px;
  border: 0;
  background: transparent;
}

.eyebrow,
.connect-kicker,
.card-chip,
.anthem-label,
.list-title,
.score-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Syne", sans-serif;
}

h1 {
  margin-top: 8px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 6px;
}

.hero-text {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
  margin: 18px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ffb067);
  color: #08111b;
}

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

.button:hover,
.connect-card:hover {
  transform: translateY(-3px);
}

.scoreboard-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.scoreboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(255, 122, 24, 0.08));
  pointer-events: none;
}

.scoreboard-head,
.score-stat,
.section-heading,
.anthem-layout,
.connect-grid,
.spotlight-grid {
  position: relative;
  z-index: 1;
}

.scoreboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(21, 199, 184, 0.55);
  animation: pulse 1.8s infinite;
}

.scoreboard-body {
  display: grid;
  gap: 12px;
}

.score-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.score-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.panel {
  margin-top: 22px;
  padding: 26px;
}

.spotlight-grid,
.connect-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.spotlight-card,
.connect-card,
.anthem-display,
.anthem-list {
  border-radius: 24px;
  padding: 20px;
}

.spotlight-card h3,
.anthem-copy h3 {
  margin-top: 14px;
  font-size: 1.45rem;
}

.spotlight-card p,
.anthem-copy p,
.connect-card span:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.philly-card {
  background:
    linear-gradient(160deg, rgba(0, 76, 84, 0.5), rgba(8, 22, 28, 0.95)),
    var(--panel-strong);
}

.duke-card {
  background:
    linear-gradient(160deg, rgba(21, 64, 158, 0.52), rgba(6, 18, 34, 0.95)),
    var(--panel-strong);
}

.mix-card {
  background:
    linear-gradient(160deg, rgba(127, 29, 29, 0.45), rgba(25, 12, 24, 0.95)),
    var(--panel-strong);
}

.anthem-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 22px;
}

.anthem-display {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 280px;
  background:
    radial-gradient(circle at center, rgba(255, 122, 24, 0.17), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(59, 130, 246, 0.06)),
    var(--panel-strong);
}

.vinyl-ring {
  position: relative;
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0c0f15 0 20%, #1a2330 21% 31%, #0c0f15 32% 37%, #1a2330 38% 47%, #0c0f15 48% 60%, #1a2330 61% 100%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04), 0 22px 45px rgba(0, 0, 0, 0.36);
  animation: spin 18s linear infinite;
}

.vinyl-core {
  position: absolute;
  inset: 50%;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #facc15);
}

.anthem-copy {
  max-width: 34rem;
}

.anthem-copy h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.96;
}

.anthem-list ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.anthem-list li {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.anthem-list li.featured {
  color: var(--text);
  border: 1px solid rgba(255, 122, 24, 0.35);
  background: rgba(255, 122, 24, 0.09);
}

.connect-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  min-height: 190px;
}

.connect-card strong {
  font-size: 1.5rem;
}

.status-card {
  justify-content: space-between;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 199, 184, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(21, 199, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 199, 184, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .anthem-layout,
  .spotlight-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .anthem-display {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .panel {
    padding: 18px;
    border-radius: 22px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
  }

  .vinyl-ring {
    width: 140px;
    height: 140px;
    flex-basis: 140px;
  }
}
