*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #050608;
  --bg-muted: #0c1016;
  --surface: #10141c;
  --border-soft: rgba(255, 215, 0, 0.18);
  --text-main: #f5f5f7;
  --text-muted: #b1b3bd;
  --accent-gold: #f5d47a;
  --accent-emerald: #3fa58a;
  --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.55);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #10141c 0, #050608 55%);
  color: var(--text-main);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.7));
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: radial-gradient(circle at 30% 0, var(--accent-gold), var(--accent-emerald));
  color: #050608;
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.main-nav a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.main-nav a:hover {
  color: var(--accent-gold);
}

.hero {
  padding: 2.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--accent-emerald);
  margin: 0 0 0.4rem;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-size: 2.1rem;
  line-height: 1.15;
}

.hero h1 .accent {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-gold), #f7b733);
  color: #1a1307;
  box-shadow: var(--shadow-soft);
}

.btn.secondary {
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--accent-gold);
  background: rgba(5, 6, 8, 0.6);
}

.hero-footnote {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-card {
  background: radial-gradient(circle at 0 0, rgba(63, 165, 138, 0.4), rgba(5, 6, 8, 0.9));
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 215, 0, 0.20);
  padding: 0.7rem 0.8rem;
  box-shadow: var(--shadow-soft);
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.stat-value {
  margin-top: 0.3rem;
  font-size: 0.95rem;
}

.section {
  padding: 2.25rem 0;
}

.section.muted {
  background: linear-gradient(to bottom, rgba(12, 16, 22, 0.98), rgba(5, 6, 8, 0.98));
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.section p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 720px;
}

.compact-list {
  margin: 0.85rem 0 0.85rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.compact-list li + li {
  margin-top: 0.2rem;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.playlist-card {
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  padding: 0.85rem 0.9rem 0.95rem;
  box-shadow: var(--shadow-soft);
}

.playlist-symbol {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--accent-emerald);
}

.playlist-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.playlist-card p {
  font-size: 0.86rem;
  margin: 0 0 0.6rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.pill {
  background: var(--surface);
  border-radius: 0.85rem;
  border: 1px solid var(--border-soft);
  padding: 0.8rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.pill h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.pill p {
  margin: 0;
  font-size: 0.86rem;
}

.note {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.link-card {
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  padding: 0.85rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.link-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.link-card p {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
}

.footnote {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 215, 0, 0.18);
  background: #050608;
  padding: 1.4rem 0 1.3rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.brand-mini {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--accent-gold), var(--accent-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #050608;
  margin-bottom: 0.5rem;
}

.footer-text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-meta .small {
  margin-top: 0.25rem;
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-panel {
    max-width: 360px;
  }
  .playlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pill-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero {
    padding-top: 1.8rem;
  }
  .section {
    padding: 1.8rem 0;
  }
  .playlist-grid,
  .pill-grid,
  .link-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-grid {
    flex-direction: column;
  }
  .footer-meta {
    text-align: left;
  }
}
