:root {
  --bg: #0f1014;
  --bg-elevated: #14151a;
  --panel: #1e1f24;
  --panel-2: #1a1b20;
  --border: #2a2b31;
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #e4e4e7;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --accent: #3b82f6;
  --accent-strong: #2563eb;
  --accent-dim: rgba(59, 130, 246, 0.14);
  --accent-glow: rgba(59, 130, 246, 0.28);
  --ok: #10b981;
  --on-accent: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 600;
  color: var(--text);
}

.bg-glow {
  position: fixed;
  inset: -20% auto auto 40%;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: drift 18s var(--ease) infinite alternate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  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: 64px 64px;
  mask-image: radial-gradient(ellipse at top, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@keyframes drift {
  from { transform: translate3d(-8%, -4%, 0) scale(1); }
  to { transform: translate3d(6%, 8%, 0) scale(1.08); }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(15, 16, 20, 0.82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--bg);
}

.brand-mark::before {
  width: 10px;
  height: 2px;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.brand-mark::after {
  width: 2px;
  height: 10px;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}

.brand-text {
  text-transform: lowercase;
}

.brand-accent {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: var(--accent-dim);
}

.nav-link.is-active {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 40px) clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1,
.section h2,
.about-layout h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 18px;
}

.lede {
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--accent-dim);
  border-color: rgba(59, 130, 246, 0.35);
}

.player-card {
  background: linear-gradient(180deg, #22232a 0%, var(--panel) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: rise 0.7s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ok);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.player-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--muted-2);
  font-weight: 500;
}

.player-body {
  display: grid;
  gap: 18px;
  padding: 18px 14px 14px;
  border-radius: var(--radius-sm);
  background: #121318;
  border: 1px solid var(--line-soft);
}

.player-meta .now-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.player-meta .now-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.player-meta .now-status {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-btn {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  transition: transform 0.18s var(--ease), background 0.18s ease;
}

.play-btn:hover {
  background: var(--accent-strong);
  transform: scale(1.04);
}

.play-btn svg {
  width: 22px;
  height: 22px;
}

.play-btn .icon-play {
  margin-left: 2px;
}

.play-btn .icon-pause {
  display: none;
}

.play-btn.is-playing .icon-play {
  display: none;
}

.play-btn.is-playing .icon-pause {
  display: block;
}

.volume-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mute-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.mute-btn:hover {
  background: var(--accent-dim);
  border-color: rgba(59, 130, 246, 0.35);
}

.mute-btn svg {
  width: 18px;
  height: 18px;
}

.mute-btn.is-muted .icon-vol,
.mute-btn:not(.is-muted) .icon-mute {
  display: none;
}

.volume {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
  height: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.live-pill.is-offline {
  color: var(--muted);
  background: rgba(161, 161, 170, 0.12);
  border-color: rgba(161, 161, 170, 0.28);
}

.live-pill.is-offline .live-dot {
  background: var(--muted-2);
  animation: none;
  box-shadow: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.section-alt {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, rgba(30, 31, 36, 0.55), rgba(20, 21, 26, 0.2));
  border-block: 1px solid var(--line-soft);
}

.section-alt > .section-head,
.section-alt > .listen-grid,
.section-alt > .request-form {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}

.section h2,
.about-layout h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  gap: 10px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s var(--ease);
}

.schedule-row:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(4px);
}

.schedule-row time {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.schedule-row h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 4px;
}

.schedule-row p {
  color: var(--muted);
  font-size: 0.92rem;
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.listen-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
}

.listen-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 16px;
}

.listen-icon svg {
  width: 22px;
  height: 22px;
}

.listen-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.listen-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.text-link:hover {
  text-decoration: underline;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.about-copy {
  margin-top: 14px;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-points li {
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--panel);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.point-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 650;
  margin-bottom: 4px;
}

.point-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.request-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--muted);
}

.optional {
  color: var(--muted-2);
  font-weight: 400;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.form-hint {
  color: var(--muted-2);
  font-size: 0.85rem;
}

.form-hint.is-ok {
  color: var(--ok);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 40px) 40px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.footer-brand .brand-text {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-meta a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .listen-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) - 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    border-radius: var(--radius-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-glow,
  .live-dot,
  .player-card {
    animation: none;
  }
  .btn:hover,
  .schedule-row:hover {
    transform: none;
  }
}
