
:root {
  color-scheme: dark;
  --page: #07080b;
  --page-raised: #0d0f14;
  --surface: rgba(17, 19, 25, 0.86);
  --surface-strong: #151820;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --ink: #f7f8fa;
  --muted: #a3a8b4;
  --faint: #717784;
  --accent: #4ef2df;
  --accent-2: #5b8cff;
  --accent-rgb: 78, 242, 223;
  --accent-2-rgb: 91, 140, 255;
  --danger: #ff6f7d;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --display: "Syne", "Arial Black", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

.theme-now {
  --accent: #d9ff5c;
  --accent-2: #ff8f4e;
  --accent-rgb: 217, 255, 92;
  --accent-2-rgb: 255, 143, 78;
}

.theme-editorial {
  --accent: #d6b4ff;
  --accent-2: #ff8fb6;
  --accent-rgb: 214, 180, 255;
  --accent-2-rgb: 255, 143, 182;
}

.theme-focus {
  --accent: #7cf5c5;
  --accent-2: #5da8ff;
  --accent-rgb: 124, 245, 197;
  --accent-2-rgb: 93, 168, 255;
}

.theme-worship {
  --accent: #ffc96b;
  --accent-2: #b89cff;
  --accent-rgb: 255, 201, 107;
  --accent-2-rgb: 184, 156, 255;
}

.theme-app {
  --accent: #ff68d4;
  --accent-2: #56ddff;
  --accent-rgb: 255, 104, 212;
  --accent-2-rgb: 86, 221, 255;
}

.theme-training {
  --accent: #ff5b45;
  --accent-2: #ffe14f;
  --accent-rgb: 255, 91, 69;
  --accent-2-rgb: 255, 225, 79;
}

.theme-training-br {
  --accent: #6df286;
  --accent-2: #ffd94a;
  --accent-rgb: 109, 242, 134;
  --accent-2-rgb: 255, 217, 74;
}

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

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--accent);
  color: #050607;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.aurora {
  position: fixed;
  z-index: -3;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.11;
  filter: blur(90px);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.aurora-a {
  top: 12vh;
  right: -120px;
  background: var(--accent);
}

.aurora-b {
  bottom: 4vh;
  left: -180px;
  background: var(--accent-2);
  animation-delay: -7s;
  animation-duration: 20s;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.section-shell,
.site-header {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  margin-top: 14px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 9, 13, 0.76);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(var(--accent-rgb), 0.25);
  background: rgba(8, 9, 13, 0.93);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.7);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 20px rgba(var(--accent-rgb), 0.08);
}

.brand-name {
  max-width: 310px;
  overflow: hidden;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a,
.footer-links a {
  transition: color 150ms ease;
}

.site-header nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(420px, 0.93fr);
  align-items: center;
  min-height: calc(100vh - 98px);
  padding-block: 80px 100px;
  gap: clamp(36px, 6vw, 100px);
}

.eyebrow,
.feature-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero h1 {
  max-width: 880px;
  margin: 24px 0 26px;
  font-family: var(--display);
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
  text-shadow: 0 0 36px rgba(var(--accent-rgb), 0.2);
}

.hero-description {
  max-width: 720px;
  margin: 0;
  color: #c5c9d1;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #060708;
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(var(--accent-rgb), 0.34);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.07);
}

.button-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #060708;
  box-shadow: 0 0 0 0 rgba(6, 7, 8, 0.35);
  animation: buttonPulse 2s ease-out infinite;
}

.hero-promise {
  margin: 20px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 50px 0 0;
}

.hero-stats div {
  min-width: 130px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.055);
  box-shadow:
    inset 0 0 80px rgba(var(--accent-rgb), 0.08),
    0 0 140px rgba(var(--accent-2-rgb), 0.07);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  content: "";
}

.orbit-one {
  inset: 7%;
}

.orbit-two {
  inset: 20%;
  border-style: dashed;
  border-color: rgba(var(--accent-2-rgb), 0.32);
  animation-direction: reverse;
  animation-duration: 19s;
}

.orbit-two::after {
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent-2);
}

.orbit-three {
  inset: 32%;
  animation-duration: 12s;
}

.signal-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 34%;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 50%;
  background: #0a0c10;
  box-shadow:
    inset 0 0 44px rgba(var(--accent-rgb), 0.11),
    0 0 60px rgba(var(--accent-rgb), 0.12);
}

.signal-core strong {
  font-family: var(--display);
  color: var(--accent);
  font-size: clamp(32px, 5vw, 62px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.signal-core small {
  margin-top: 8px;
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.signal-live {
  position: absolute;
  top: -28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--page);
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.frequency {
  position: absolute;
  z-index: 2;
  display: flex;
  height: 70px;
  align-items: center;
  gap: 5px;
}

.frequency i {
  display: block;
  width: 2px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  animation: equalize 1.25s ease-in-out infinite alternate;
}

.frequency i:nth-child(2n) { animation-delay: -0.7s; }
.frequency i:nth-child(3n) { animation-delay: -0.35s; }
.frequency i:nth-child(4n) { animation-duration: 0.85s; }

.frequency-a {
  top: 6%;
  right: 19%;
  transform: rotate(25deg);
}

.frequency-b {
  bottom: 8%;
  left: 14%;
  transform: rotate(-34deg);
}

.floating-label {
  position: absolute;
  z-index: 4;
  max-width: 170px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 9, 13, 0.78);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.label-one {
  top: 24%;
  left: -1%;
}

.label-two {
  right: -1%;
  bottom: 25%;
}

.radio-section,
.experience-section {
  padding-block: 110px;
}

.radio-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2,
.final-cta h2 {
  max-width: 760px;
  margin: 17px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.station-card {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.station-card::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  opacity: 0;
  filter: blur(28px);
  transition: opacity 180ms ease;
}

.station-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.055);
}

.station-card.is-active {
  border-color: rgba(var(--accent-rgb), 0.8);
  background: rgba(var(--accent-rgb), 0.085);
}

.station-card.is-active::after {
  opacity: 0.22;
}

.station-symbol {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
}

.station-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 6px;
}

.station-copy strong {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.2;
}

.station-copy small {
  color: var(--faint);
  font-size: 11px;
  line-height: 1.45;
}

.station-arrow {
  color: var(--faint);
  font-size: 12px;
}

.listening-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(300px, 0.68fr);
  gap: 18px;
}

.player-card,
.session-card,
.catalog-block,
.feature-card,
.final-cta {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.player-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.player-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.player-topline > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: livePulse 1.8s ease-in-out infinite;
}

.favorite-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 21px;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.favorite-button:hover,
.favorite-button[aria-pressed="true"] {
  border-color: rgba(var(--accent-rgb), 0.6);
  background: rgba(var(--accent-rgb), 0.09);
  color: var(--accent);
}

.now-playing {
  display: grid;
  grid-template-columns: minmax(190px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.artwork-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.artwork-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.artwork-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.player-card.is-playing .artwork-wrap img {
  transform: scale(1.035);
}

.artwork-scan {
  position: absolute;
  inset: -50% 0 auto;
  height: 35%;
  background: rgba(var(--accent-rgb), 0.07);
  transform: skewY(-10deg);
  animation: artworkScan 6s linear infinite;
}

.track-station {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.track-copy h3 {
  margin: 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(25px, 3.5vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-overflow: ellipsis;
}

.track-copy > p:not(.track-station) {
  margin: 8px 0 0;
  color: var(--muted);
}

.track-progress {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  font-size: 10px;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  appearance: none;
  border: 2px solid var(--page);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.55);
}

input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid var(--page);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.55);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.player-controls > button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.player-controls > button:hover {
  transform: scale(1.06);
  border-color: rgba(var(--accent-rgb), 0.5);
  color: var(--accent);
}

.player-controls .play-button {
  width: 54px;
  height: 54px;
  border-color: var(--accent);
  background: var(--accent);
  color: #050607;
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.23);
}

.player-controls .play-button:hover {
  color: #050607;
}

.volume-control {
  display: flex;
  max-width: 124px;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--faint);
}

.volume-control input {
  width: 88px;
}

.dna-panel {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dna-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dna-heading small {
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}

.dna-grid > div {
  display: grid;
  grid-template-columns: 70px 1fr 26px;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 9px;
  text-transform: uppercase;
}

.dna-grid b {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
}

.dna-grid i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
  transition: width 600ms cubic-bezier(.2,.8,.2,1);
}

.dna-grid output {
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.sleep-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sleep-row > div {
  display: flex;
  gap: 5px;
}

.sleep-option {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.sleep-option:hover,
.sleep-option.is-active {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
}

.session-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.session-card h3 {
  margin: 16px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.session-card > p:not(.feature-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.session-orbit {
  position: absolute;
  top: -85px;
  right: -85px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
}

.session-orbit::before,
.session-orbit::after {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(var(--accent-rgb), 0.14);
  border-radius: inherit;
  content: "";
}

.session-orbit::after {
  inset: 46px;
  border-style: solid;
}

.timer-face {
  display: grid;
  width: min(220px, 78%);
  aspect-ratio: 1;
  place-items: center;
  align-self: center;
  margin: 34px auto;
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.035);
  box-shadow:
    inset 0 0 40px rgba(var(--accent-rgb), 0.06),
    0 0 50px rgba(var(--accent-rgb), 0.05);
}

.timer-face > div {
  display: grid;
  text-align: center;
}

#timer-display {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.055em;
}

#timer-phase {
  margin-top: 2px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.timer-controls {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
  margin-top: auto;
}

.timer-controls .button {
  min-height: 46px;
  padding-inline: 12px;
  font-size: 12px;
}

.session-cycles {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.session-cycles i {
  width: 22px;
  height: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
}

.session-cycles i.is-active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
}

.catalog-block {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.catalog-heading h3 {
  margin: 8px 0 2px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.catalog-heading p:not(.feature-kicker) {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.catalog-pager {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-pager button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}

.catalog-pager button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.catalog-pager button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

#catalog-page {
  min-width: 86px;
  color: var(--faint);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.track-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  cursor: pointer;
  text-align: left;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.track-card:hover,
.track-card.is-current {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.06);
}

.track-card img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--surface-strong);
  object-fit: cover;
}

.track-card-copy {
  min-width: 0;
}

.track-card strong,
.track-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-card strong {
  font-family: var(--display);
  font-size: 12px;
}

.track-card small {
  margin-top: 3px;
  color: var(--faint);
  font-size: 10px;
}

.track-card .track-energy {
  position: absolute;
  right: 8px;
  bottom: 7px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
}

.track-skeleton {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(105deg, rgba(255,255,255,.025) 20%, rgba(255,255,255,.07) 40%, rgba(255,255,255,.025) 60%);
  background-size: 220% 100%;
  animation: skeleton 1.5s linear infinite;
}

.local-note {
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 10px;
  text-align: right;
}

.experience-section {
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card::before {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 28px rgba(var(--accent-rgb), 0.025),
    0 0 0 56px rgba(var(--accent-rgb), 0.018);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.43);
}

.feature-index {
  margin-bottom: 70px;
  color: rgba(var(--accent-rgb), 0.27);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.feature-card h3 {
  max-width: 310px;
  margin: 13px 0 12px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.feature-card > p:not(.feature-kicker) {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-card a {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  transition: color 150ms ease;
}

.feature-card a:hover {
  color: var(--accent);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.final-cta h2 {
  max-width: 810px;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta .button {
  position: relative;
  z-index: 2;
  min-width: 240px;
}

.final-light {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.11;
  filter: blur(80px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 60px;
  align-items: start;
  padding-block: 50px 36px;
  border-top: 1px solid var(--line);
}

.site-footer > div:first-child p {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: #515661;
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 16px;
  transform: translateY(24px);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 12px;
  background: rgba(9, 10, 14, 0.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  color: var(--ink);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(.2,.75,.2,1), opacity 700ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.feature-card:nth-child(2) {
  transition-delay: 80ms;
}

.feature-card:nth-child(3) {
  transition-delay: 160ms;
}

.station-detail-page {
  min-height: 100vh;
}

.station-detail-hero {
  min-height: min(780px, 86vh);
}

.station-detail-hero .hero-copy {
  max-width: 760px;
}

.station-detail-hero h1 {
  font-size: clamp(52px, 5.4vw, 76px);
  letter-spacing: -.05em;
}

.station-detail-hero .hero-description {
  max-width: 660px;
}

.station-guide-grid .feature-card {
  min-height: 330px;
}

.moment-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.moment-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.moment-list li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), .6);
  content: "";
}

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

.simple-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.simple-page main {
  max-width: 650px;
  text-align: center;
}

.simple-page main > p {
  margin: 30px 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.simple-page h1 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 78px);
  letter-spacing: -.05em;
}

@keyframes drift {
  from { transform: translate3d(-4%, -4%, 0) scale(.9); }
  to { transform: translate3d(8%, 8%, 0) scale(1.12); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes equalize {
  from { height: 9px; opacity: .42; }
  to { height: 48px; opacity: 1; }
}

@keyframes buttonPulse {
  70% { box-shadow: 0 0 0 8px rgba(6, 7, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 7, 8, 0); }
}

@keyframes livePulse {
  50% { opacity: .45; transform: scale(.75); }
}

@keyframes artworkScan {
  from { transform: translateY(-30%) skewY(-10deg); }
  to { transform: translateY(500%) skewY(-10deg); }
}

@keyframes skeleton {
  to { background-position-x: -220%; }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
  }

  .hero h1 {
    font-size: clamp(52px, 8.2vw, 82px);
  }

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

  .station-card:nth-child(4),
  .station-card:nth-child(5) {
    min-height: 120px;
  }

  .listening-layout {
    grid-template-columns: 1fr;
  }

  .session-card {
    min-height: 380px;
  }

  .timer-face {
    width: 190px;
  }

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

@media (max-width: 820px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .header-cta span:first-child {
    display: none;
  }

  .header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 82px 70px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    width: min(100%, 500px);
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .station-card {
    min-height: 128px;
  }

  .now-playing {
    grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 300px;
  }

  .feature-index {
    margin-bottom: 40px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header {
    width: calc(100% - 22px);
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    max-width: 185px;
    font-size: 11px;
  }

  .header-cta {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-block: 70px 60px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(46px, 15.5vw, 70px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 38px;
  }

  .hero-stats div {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-stats dt {
    font-size: 17px;
  }

  .hero-stats dd {
    font-size: 8px;
    line-height: 1.3;
  }

  .hero-visual {
    width: 112%;
    margin-left: -6%;
  }

  .floating-label {
    font-size: 8px;
  }

  .radio-section,
  .experience-section {
    padding-block: 76px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .section-heading > p {
    font-size: 15px;
  }

  .station-grid {
    display: flex;
    width: calc(100vw - 11px);
    margin-right: -11px;
    padding-right: 11px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .station-grid::-webkit-scrollbar {
    display: none;
  }

  .station-card,
  .station-card:nth-child(4),
  .station-card:nth-child(5) {
    min-width: 230px;
    min-height: 120px;
    scroll-snap-align: start;
  }

  .player-card,
  .session-card,
  .catalog-block {
    padding: 18px;
    border-radius: 24px;
  }

  .now-playing {
    grid-template-columns: 1fr;
  }

  .artwork-wrap {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .track-copy {
    text-align: center;
  }

  .track-progress {
    text-align: left;
  }

  .player-controls {
    justify-content: center;
  }

  .volume-control {
    display: none;
  }

  .dna-grid {
    grid-template-columns: 1fr;
  }

  .sleep-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .sleep-row > div {
    width: 100%;
  }

  .sleep-option {
    flex: 1;
    padding-inline: 5px;
  }

  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .local-note {
    text-align: left;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card a {
    right: 24px;
    left: 24px;
  }

  .final-cta {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
