:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-soft: #0c1422;
  --ink: #f6f7fb;
  --muted: #c0cce0;
  --line: rgba(246, 247, 251, 0.18);
  --gold: #f8c85f;
  --rust: #ff6c53;
  --teal: #4eb8b8;
  --forest: #204f54;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  --radio-bg-image: url("assets/radio-everest-bg-1672.webp");
  font-family: "Outfit", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  padding-bottom: 0;
  overflow-x: hidden;
}

body.has-floating-player {
  padding-bottom: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 30%, rgba(12, 40, 80, 0.3), transparent 54%),
    radial-gradient(circle at 78% 18%, rgba(37, 98, 178, 0.23), transparent 52%),
    linear-gradient(100deg, rgba(7, 11, 18, 0.62), rgba(7, 11, 18, 0.24), rgba(7, 11, 18, 0.68)),
    var(--radio-bg-image) center 24% / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.08), rgba(7, 11, 18, 0.84) 76%, var(--bg) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 68px);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  isolation: isolate;
  border-bottom: 1px solid rgba(246, 247, 251, 0.14);
  background:
    linear-gradient(90deg, rgba(248, 200, 95, 0.07), transparent 28%),
    rgba(6, 10, 18, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 200, 95, 0.3), transparent);
  pointer-events: none;
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.95;
  transform: translateY(-1px);
  outline: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.05;
}

.brand-name {
  font-weight: 800;
}

.brand-tagline {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  max-width: 100%;
}

.nav a,
.nav button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.link-button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(248, 200, 95, 0.32);
  border-radius: 6px;
  background: rgba(248, 200, 95, 0.1);
  color: var(--gold);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav a:hover,
.nav a:focus-visible,
.nav button:hover,
.nav button:focus-visible,
.link-button:hover,
.link-button:focus-visible {
  color: var(--ink);
  border-color: rgba(248, 200, 95, 0.24);
  background: rgba(248, 200, 95, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.nav a[aria-current="page"] {
  color: var(--gold);
  border-color: rgba(248, 200, 95, 0.4);
  background: linear-gradient(180deg, rgba(248, 200, 95, 0.16), rgba(248, 200, 95, 0.08));
  box-shadow: inset 0 -1px 0 rgba(248, 200, 95, 0.45);
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-switcher summary {
  min-height: 38px;
  min-width: 48px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(248, 200, 95, 0.32);
  border-radius: 999px;
  background: rgba(248, 200, 95, 0.1);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-switcher[open] summary {
  color: #071018;
  border-color: rgba(248, 200, 95, 0.88);
  background: var(--gold);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 25;
  min-width: 156px;
  max-height: min(60vh, 420px);
  padding: 6px;
  border: 1px solid rgba(248, 200, 95, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 26, 0.98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav .language-options a {
  width: 100%;
  min-height: 34px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

.nav .language-options a[aria-current="true"] {
  color: #071018;
  border-color: rgba(248, 200, 95, 0.88);
  background: var(--gold);
  box-shadow: none;
}

.nav .language-options a[aria-current="true"]::after {
  content: "✓";
  margin-left: 12px;
  font-weight: 900;
}

.language-suggestion {
  width: min(1120px, calc(100% - 32px));
  margin: 10px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(78, 184, 184, 0.28);
  border-radius: 8px;
  background: rgba(7, 17, 26, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.language-suggestion p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.language-suggestion strong {
  color: var(--ink);
}

.language-suggestion-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.language-suggestion a,
.language-suggestion button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(248, 200, 95, 0.28);
  border-radius: 6px;
  background: rgba(248, 200, 95, 0.1);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.language-suggestion button {
  border-color: rgba(246, 247, 251, 0.16);
  background: transparent;
  color: var(--muted);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 72px 0 58px;
}

.hero-integrated {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(246, 247, 251, 0.18);
  border-radius: 12px;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 14%, rgba(78, 184, 184, 0.2), transparent 36%),
    linear-gradient(120deg, rgba(5, 10, 20, 0.64), rgba(5, 10, 20, 0.86));
  backdrop-filter: blur(3px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-integrated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(248, 200, 95, 0.08), transparent 42%);
  pointer-events: none;
}

.hero-identity h1 {
  font-size: clamp(2.6rem, 8.4vw, 6.2rem);
  max-width: 680px;
  text-wrap: balance;
}

.hero-tagline {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(246, 247, 251, 0.92);
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-tagline strong {
  color: var(--gold);
}

.hero-identity .lead {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-identity {
  animation: riseIn 0.7s ease both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}

.button.primary {
  border-color: transparent;
  background: var(--gold);
  color: #1a140a;
  box-shadow: 0 14px 34px rgba(248, 200, 95, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.player-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(244, 189, 85, 0.08), transparent 44%),
    rgba(14, 15, 20, 0.9);
  box-shadow: var(--shadow);
}

.hero-integrated .player-panel {
  border: 1px solid rgba(246, 247, 251, 0.14);
  box-shadow: none;
  padding: 14px;
  background: rgba(8, 12, 20, 0.55);
  animation: riseIn 0.75s ease both;
}

.hero-player-slot {
  width: 100%;
  min-height: 260px;
}

.player-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}


.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
}

.live-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e8533d;
  box-shadow: 0 0 0 6px rgba(232, 83, 61, 0.16);
}

.custom-radio-player {
  overflow: hidden;
}

.radio-main {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 112px;
  gap: 16px;
  align-items: center;
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(244, 189, 85, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(181, 84, 53, 0.14), transparent 56%),
    rgba(255, 250, 240, 0.02);
}

.hero-integrated .radio-main {
  border-color: rgba(246, 247, 251, 0.16);
  background: rgba(246, 247, 251, 0.04);
}

.album-art {
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-radio-player.fallback-cover .album-art {
  display: grid;
  place-items: center;
  padding: 12px;
  background: linear-gradient(135deg, rgba(47, 154, 155, 0.24), rgba(244, 189, 85, 0.24));
}

.custom-radio-player.fallback-cover .album-art img {
  object-fit: contain;
}

.play-control {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #211811;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(248, 200, 95, 0.34);
}

.play-control:disabled {
  cursor: wait;
  opacity: 0.76;
}

.play-control:hover,
.play-control:focus-visible {
  outline: 3px solid rgba(248, 200, 95, 0.4);
  outline-offset: 4px;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

.is-playing .play-icon {
  width: 18px;
  height: 24px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 34%, transparent 34% 66%, currentColor 66% 100%);
}

.is-loading:not(.is-playing) .play-icon {
  width: 24px;
  height: 24px;
  margin-left: 0;
  border: 3px solid rgba(33, 24, 17, 0.24);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.track-area {
  min-width: 0;
}

.track-area strong,
.track-area span {
  display: block;
}

.on-air {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-area strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.track-area span:last-child {
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.live-meta {
  margin-top: 8px;
  color: #ffcf71;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.playbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.timecode {
  min-width: 38px;
  color: var(--muted);
  font-size: 0.79rem;
  font-variant-numeric: tabular-nums;
}

.playbar-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.16);
}

.playbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #63b4ff, #2f8cff);
  transition: width 0.35s ease;
}

.custom-radio-player.is-autodj .playbar-fill {
  background: linear-gradient(90deg, #63b4ff, #2f8cff);
}

.custom-radio-player.is-live .playbar-fill {
  width: 42%;
  background: linear-gradient(90deg, #ff9a6c, #ff6252);
  animation: liveBarMove 2s ease-in-out infinite;
}

@keyframes liveBarMove {
  0% { transform: translateX(-34%); }
  50% { transform: translateX(78%); }
  100% { transform: translateX(-34%); }
}

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


.radio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
}

.radio-controls label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.radio-controls input[type="range"] {
  width: 150px;
  accent-color: var(--gold);
}

.stream-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.stream-link:hover,
.stream-link:focus-visible {
  color: var(--gold);
}

.stream-fallback {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.stream-fallback a {
  color: var(--gold);
}

.global-player-shell {
  z-index: 80;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.global-player-shell.is-hero {
  position: static;
  width: 100%;
  padding: 0;
}

.global-player-shell.is-hero .section-inner {
  width: 100%;
  margin: 0;
}

.global-player {
  position: relative;
  border: 1px solid rgba(246, 247, 251, 0.22);
  background:
    linear-gradient(135deg, rgba(248, 200, 95, 0.08), transparent 45%),
    rgba(8, 12, 20, 0.95);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.global-player .radio-main {
  min-height: 108px;
}

.global-player .track-area strong {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.global-player .album-art {
  width: 90px;
}

.global-player-shell.is-floating {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 1100;
  margin: 0 auto;
  width: min(500px, calc(100% - 16px));
  padding: 0;
  background: none;
  backdrop-filter: none;
  will-change: transform, opacity;
}

.global-player-shell.is-floating .section-inner {
  width: 100%;
  margin: 0;
}

.global-player-shell.is-floating .global-player {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 7px 10px;
  border-radius: 999px;
  border-color: rgba(246, 247, 251, 0.2);
  background:
    linear-gradient(120deg, rgba(248, 200, 95, 0.1), transparent 46%),
    rgba(8, 12, 20, 0.95);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.global-player-shell.is-floating .player-label {
  display: none;
}

.global-player-shell.is-floating .radio-main {
  flex: 1;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 7px;
  padding: 0;
}

.global-player-shell.is-floating .play-control {
  width: 40px;
  height: 40px;
  box-shadow: 0 6px 14px rgba(248, 200, 95, 0.24);
}

.global-player-shell.is-floating .album-art {
  display: none;
}

.global-player-shell.is-floating .on-air {
  display: none;
}

.global-player-shell.is-floating .track-area strong {
  font-size: 0.92rem;
  line-height: 1.16;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-player-shell.is-floating .track-area span {
  display: none;
}

.global-player-shell.is-floating .playbar {
  display: none;
}

.global-player-shell.is-floating .timecode {
  display: none;
}

.global-player-shell.is-floating .radio-controls {
  margin: 0;
  padding: 0;
  border: 0;
}

.global-player-shell.is-floating .stream-link,
.global-player-shell.is-floating .stream-fallback {
  display: none;
}

.global-player-shell.is-floating .radio-controls label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 0;
}

.global-player-shell.is-floating .radio-controls label::before {
  content: "\1F50A";
  font-size: 0.84rem;
  line-height: 1;
  color: var(--muted);
}

.global-player-shell.is-floating .radio-controls input[type="range"] {
  width: 80px;
}

.global-player-shell.is-floating.is-morphing {
  pointer-events: none;
}

.global-player-shell.is-floating .global-player::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(248, 200, 95, 0.18);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.global-player-shell.is-floating.is-morphing .global-player::after {
  opacity: 1;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin-top: 24px;
}

.quick-info div {
  padding: 18px;
  background: rgba(25, 23, 27, 0.86);
}

.quick-info strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}

.quick-info span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 84px 0;
  background: transparent;
  position: relative;
}

.radio-intro {
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.62), rgba(7, 11, 18, 0.76));
  border-top: 1px solid rgba(246, 247, 251, 0.1);
  border-bottom: 1px solid rgba(246, 247, 251, 0.1);
}

.section.alt {
  background: rgba(12, 20, 34, 0.6);
  border-bottom: 1px solid rgba(246, 247, 251, 0.08);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

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

.contact-actions {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(246, 247, 251, 0.14);
  border-radius: 10px;
  background: rgba(8, 12, 20, 0.62);
}

.contact-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions-note {
  margin: 10px 2px 0;
  color: var(--muted);
}

.contact-actions-note a {
  color: var(--gold);
}

.station-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.story-intro {
  position: sticky;
  top: 94px;
}

.story-intro h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.03;
}

.story-intro p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 440px;
}

.story-flow {
  position: relative;
  display: grid;
  gap: 16px;
}

.story-flow::before {
  content: none;
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid rgba(246, 247, 251, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.story-step:hover {
  transform: translateX(5px);
  border-color: rgba(248, 200, 95, 0.35);
}

.story-step:not(:last-child)::after {
  content: none;
}

.story-num {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(248, 200, 95, 0.48);
  background: linear-gradient(140deg, rgba(248, 200, 95, 0.18), rgba(8, 12, 20, 0.44));
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.story-copy h3 {
  margin-top: 6px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.story-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.genre-orbit-wrap {
  margin-top: 8px;
}

.genre-orbit {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(246, 247, 251, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at center, rgba(248, 200, 95, 0.12), transparent 42%),
    linear-gradient(165deg, rgba(12, 20, 34, 0.78), rgba(8, 12, 20, 0.74));
  overflow: hidden;
}

.genre-orbit::before,
.genre-orbit::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px dashed rgba(246, 247, 251, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.genre-orbit::before {
  width: 260px;
  height: 260px;
}

.genre-orbit::after {
  width: 332px;
  height: 332px;
  border-color: rgba(78, 184, 184, 0.2);
}

.genre-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(320px, calc(100% - 56px));
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.genre-core strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.3rem, 3.5vw, 2.1rem);
  line-height: 1.08;
}

.genre-core p {
  margin: 10px 0 0;
  color: var(--muted);
}

.orbit-tag {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(246, 247, 251, 0.2);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 7px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  animation: orbitFloat 8s ease-in-out infinite;
}

.orbit-tag:hover,
.orbit-tag:focus-visible,
.orbit-tag.active {
  border-color: rgba(248, 200, 95, 0.64);
  background: rgba(248, 200, 95, 0.16);
  transform: scale(1.06);
  outline: none;
}

.orbit-1 { top: 16%; left: 18%; animation-delay: 0s; }
.orbit-2 { top: 9%; right: 20%; animation-delay: 0.5s; }
.orbit-3 { top: 46%; right: 8%; animation-delay: 1.1s; }
.orbit-4 { bottom: 12%; right: 26%; animation-delay: 1.7s; }
.orbit-5 { bottom: 8%; left: 20%; animation-delay: 2.4s; }
.orbit-6 { top: 46%; left: 6%; animation-delay: 3s; }

@keyframes orbitFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.genre-fallback {
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.music-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.music-band > div {
  min-height: 220px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(12, 20, 34, 0.76), rgba(8, 12, 20, 0.7));
  border: 1px solid rgba(246, 247, 251, 0.1);
  border-radius: 8px;
}

.music-band p {
  color: var(--muted);
}

.feature,
.schedule-item,
.contact-block {
  min-height: 180px;
  padding: 26px;
  background: var(--bg-soft);
}

.feature p,
.schedule-item p,
.contact-block p,
.text-page p,
.text-page li {
  color: var(--muted);
}

.text-cta {
  margin-top: 3rem;
  text-align: center;
}

.contact-form-wrap {
  margin-top: 24px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(246, 247, 251, 0.12);
  border-radius: 8px;
  background: rgba(9, 15, 25, 0.78);
}

.contact-form-wrap h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.contact-form-wrap p {
  margin-top: 0;
}

.form-success {
  margin: 0 0 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(86, 214, 120, 0.64);
  border-radius: 8px;
  background: rgba(86, 214, 120, 0.14);
  color: #e8ffed !important;
  font-weight: 700;
}

.form-success-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #56d678;
  color: #0b1b10;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.form-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 108, 83, 0.56);
  border-radius: 8px;
  background: rgba(255, 108, 83, 0.14);
  color: #ffe1db !important;
  font-weight: 700;
}

.form-error a {
  color: #ffd2c8;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 12px;
  align-items: start;
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 5px;
  font-weight: 700;
  color: var(--ink);
  min-width: 0;
}

.field-label {
  display: block;
  min-height: 1.35em;
  line-height: 1.25;
}

.field-hint {
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(246, 247, 251, 0.16);
  border-radius: 6px;
  background: rgba(7, 11, 18, 0.56);
  color: var(--ink);
  font: inherit;
  padding: 10px 11px;
  line-height: 1.35;
}

.contact-form input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  min-width: 0;
  cursor: pointer;
}

.file-upload-box {
  position: relative;
  min-height: 66px;
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(246, 247, 251, 0.16);
  border-radius: 6px;
  background: rgba(7, 11, 18, 0.5);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.file-upload-box:hover,
.file-upload-box:focus-within {
  border-color: rgba(248, 200, 95, 0.56);
  background: rgba(7, 11, 18, 0.62);
  box-shadow: 0 0 0 2px rgba(248, 200, 95, 0.1);
}

.file-upload-box.has-file {
  border-color: rgba(246, 247, 251, 0.24);
  background: rgba(7, 11, 18, 0.58);
}

.file-upload-box.is-staging {
  border-color: rgba(248, 200, 95, 0.42);
  background: rgba(248, 200, 95, 0.06);
}

.file-upload-box.is-staged {
  border-color: rgba(78, 184, 184, 0.42);
  background: rgba(78, 184, 184, 0.06);
  box-shadow: none;
}

.file-upload-box.file-too-large {
  border-color: rgba(255, 108, 83, 0.52);
  background: rgba(255, 108, 83, 0.07);
}

.file-upload-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding-left: 0;
}

.file-upload-copy strong,
.file-upload-copy span {
  overflow-wrap: anywhere;
}

.file-upload-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(248, 200, 95, 0.42);
  outline-offset: 1px;
  border-color: rgba(248, 200, 95, 0.66);
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 247, 251, 0.1);
  border-radius: 6px;
  background: rgba(7, 11, 18, 0.28);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(246, 247, 251, 0.84);
  line-height: 1.35;
}

.consent-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--gold);
  justify-self: start;
}

.consent-check span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.consent-check a {
  color: var(--gold);
}

.upload-progress {
  display: grid;
  gap: 8px;
  padding: 10px 0 2px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.upload-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.12);
}

.upload-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 0.2s ease;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.feature-accent {
  width: 42px;
  height: 4px;
  border-radius: 99px;
  margin-bottom: 18px;
  background: var(--gold);
}

.feature:nth-child(2) .feature-accent {
  background: var(--teal);
}

.feature:nth-child(3) .feature-accent {
  background: var(--rust);
}

.schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.schedule-time {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
}

.schedule-calendar {
  display: grid;
  gap: 12px;
  padding: 10px;
}

.schedule-day-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.schedule-day-tabs::-webkit-scrollbar {
  display: none;
}

.schedule-day-tab {
  flex-shrink: 0;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 247, 251, 0.18);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.7);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.schedule-day-tab:hover,
.schedule-day-tab:focus-visible {
  border-color: rgba(248, 200, 95, 0.36);
  color: var(--ink);
  outline: none;
}

.schedule-day-tab.is-active {
  border-color: rgba(248, 200, 95, 0.48);
  background: rgba(248, 200, 95, 0.14);
  color: var(--gold);
}

.schedule-day-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.schedule-item.is-now {
  border: 1px solid rgba(248, 200, 95, 0.4);
  box-shadow: inset 0 0 0 1px rgba(248, 200, 95, 0.26);
  background:
    linear-gradient(145deg, rgba(248, 200, 95, 0.12), rgba(12, 20, 34, 0.86)),
    var(--bg-soft);
}

.schedule-empty {
  grid-column: 1 / -1;
}

.mastering-page::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(78, 184, 184, 0.24), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(248, 200, 95, 0.18), transparent 36%),
    linear-gradient(110deg, rgba(7, 11, 18, 0.82), rgba(7, 11, 18, 0.58)),
    var(--radio-bg-image) center 24% / cover no-repeat;
}

.mastering-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.8vw, 44px) 0 clamp(88px, 9vw, 124px);
  border-bottom: 1px solid rgba(246, 247, 251, 0.1);
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(248, 200, 95, 0.12), transparent 26%),
    radial-gradient(circle at 50% 72%, rgba(78, 184, 184, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(10, 16, 27, 0.96), rgba(4, 7, 12, 0.99));
}

.mastering-hero::before,
.mastering-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mastering-hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(246, 247, 251, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(246, 247, 251, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 74%);
}

.mastering-hero::after {
  z-index: 1;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 18, 0.88));
}

.mastering-hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mastering-hero-grid > * {
  min-width: 0;
}

.mastering-hero-copy {
  max-width: 680px;
  margin: 0 auto;
}

.mastering-hero-copy h1 {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.mastering-hook {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mastering-hero-copy .lead {
  max-width: 580px;
  margin: 14px auto 0;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.42;
  color: rgba(246, 247, 251, 0.92);
  overflow-wrap: break-word;
}

.mastering-sublead {
  max-width: 590px;
  margin: 10px 0 0;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

.mastering-trial-note {
  max-width: 520px;
  margin: 8px 0 0;
  margin-inline: auto;
  color: rgba(246, 247, 251, 0.8);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 600;
}

.mastering-hero .hero-actions {
  justify-content: center;
  margin-top: 18px;
}

.mastering-hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(100%, 1160px);
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.48),
    0 0 58px rgba(78, 184, 184, 0.15);
  overflow: visible;
}

.mastering-hero-showcase::before {
  content: "";
  position: absolute;
  inset: auto 8% -26px;
  z-index: -1;
  height: 130px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(248, 200, 95, 0.12), transparent 58%),
    radial-gradient(circle at 65% 45%, rgba(78, 184, 184, 0.18), transparent 64%);
  filter: blur(22px);
  opacity: 0.9;
}

.mastering-hero-showcase img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(246, 247, 251, 0.16);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  image-rendering: auto;
}

.mastering-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(246, 247, 251, 0.16);
  border-radius: 8px;
  background: rgba(246, 247, 251, 0.16);
}

.mastering-facts div {
  padding: 15px;
  background: rgba(8, 13, 23, 0.82);
}

.mastering-facts dt {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mastering-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
}

.mastering-facts-inline {
  margin: 26px 0 0;
}

.mastering-format-panel,
.mastering-release-box,
.mastering-proof-grid article,
.mastering-steps article {
  border: 1px solid rgba(246, 247, 251, 0.12);
  border-radius: 8px;
  background: rgba(246, 247, 251, 0.045);
}

.mastering-release-box span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.mastering-band {
  padding: 70px 0;
  border-top: 1px solid rgba(246, 247, 251, 0.1);
  border-bottom: 1px solid rgba(246, 247, 251, 0.1);
  background: linear-gradient(90deg, rgba(248, 200, 95, 0.12), rgba(78, 184, 184, 0.1));
}

.mastering-band-head {
  margin-bottom: 24px;
}

.mastering-inside {
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.18), rgba(7, 11, 18, 0.46)),
    radial-gradient(circle at 78% 18%, rgba(78, 184, 184, 0.13), transparent 32%),
    rgba(7, 11, 18, 0.4);
}

.mastering-benefits-head {
  margin-top: 0;
}

.mastering-benefits-grid,
.mastering-trial-grid {
  display: grid;
  gap: 12px;
}

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

.mastering-benefits-grid article,
.mastering-trial-grid article {
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(246, 247, 251, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(248, 200, 95, 0.08), transparent 42%),
    rgba(8, 13, 23, 0.74);
}

.mastering-benefits-grid h3,
.mastering-trial-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  line-height: 1.2;
}

.mastering-benefits-grid p,
.mastering-trial-grid p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.mastering-split,
.mastering-guardrails,
.mastering-format-layout,
.mastering-download-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.mastering-split h2,
.mastering-guardrail-copy h2,
.mastering-format-layout h2,
.mastering-download-card h2 {
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 1.06;
  text-wrap: balance;
}

.mastering-copy-stack p,
.mastering-guardrail-copy p,
.mastering-format-layout p,
.mastering-download-card p,
.mastering-steps p,
.mastering-proof-grid p,
.mastering-format-panel p,
.mastering-release-box p {
  color: var(--muted);
  line-height: 1.65;
}

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

.mastering-steps article {
  min-height: 250px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(248, 200, 95, 0.08), transparent 38%),
    rgba(10, 16, 28, 0.72);
}

.mastering-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(248, 200, 95, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.mastering-steps h3,
.mastering-trial-grid h3,
.mastering-proof-grid h3,
.mastering-format-panel h3 {
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
  line-height: 1.2;
}

.mastering-trial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mastering-trial-grid article {
  min-height: 224px;
}

.mastering-trial-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(248, 200, 95, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.mastering-trial-cta {
  margin-top: 22px;
}

.mastering-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mastering-proof-grid article {
  min-height: 170px;
  padding: 22px;
  background: rgba(7, 11, 18, 0.38);
}

.mastering-proof-grid p,
.mastering-steps p,
.mastering-format-panel p,
.mastering-release-box p {
  font-size: 0.98rem;
}

.mastering-format-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(246, 247, 251, 0.12);
}

.mastering-format-panel div {
  padding: 22px;
  background: rgba(9, 15, 26, 0.84);
}

.mastering-download {
  padding: 84px 0 96px;
}

.mastering-download-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(248, 200, 95, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 18%, rgba(248, 200, 95, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(12, 20, 34, 0.9), rgba(7, 11, 18, 0.82));
  box-shadow: var(--shadow);
}

.mastering-trust {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 247, 251, 0.12);
  font-size: 0.95rem;
}

.mastering-release-box {
  padding: clamp(20px, 3vw, 28px);
  background: rgba(246, 247, 251, 0.055);
}

.mastering-release-box strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--gold);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.06;
}

.mastering-download-meta {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgba(246, 247, 251, 0.12);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.32);
}

.mastering-download-meta div {
  min-width: 0;
}

.mastering-download-meta dt {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mastering-download-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.mastering-download-meta code {
  color: rgba(246, 247, 251, 0.92);
  font-size: 0.78rem;
}

.mastering-hero-new {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 96px) 0 clamp(72px, 8vw, 104px);
  border-bottom: 1px solid rgba(246, 247, 251, 0.1);
  background:
    radial-gradient(circle at 74% 22%, rgba(78, 184, 184, 0.16), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(248, 200, 95, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(5, 9, 16, 0.7), rgba(7, 11, 18, 0.44));
}

.mastering-hero-new::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(7, 11, 18, 0.9)),
    var(--radio-bg-image) center bottom / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.mastering-hero-new-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}

.mastering-hero-new-copy h1 {
  max-width: 660px;
  font-size: clamp(2.75rem, 5vw, 4.45rem);
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
}

.mastering-hero-new-copy .lead {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.46rem);
  line-height: 1.45;
}

.mastering-hero-actions {
  margin-top: 30px;
}

.mastering-download-button {
  position: relative;
  min-height: 54px;
  padding-inline: 20px 22px;
}

.mastering-download-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-bottom: 2px solid currentColor;
}

.mastering-download-icon::before,
.mastering-download-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mastering-download-icon::before {
  top: 1px;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: currentColor;
}

.mastering-download-icon::after {
  top: 8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.mastering-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 900;
}

.mastering-microcopy span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(78, 184, 184, 0.58);
  border-radius: 50%;
  color: var(--teal);
  font-size: 0.8rem;
  line-height: 1;
}

.mastering-support-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.mastering-hero-media {
  position: relative;
  margin: 0;
  border-radius: 14px;
  isolation: isolate;
}

.mastering-hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 2% -8%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 50%, rgba(248, 200, 95, 0.16), transparent 58%),
    radial-gradient(circle at 62% 44%, rgba(78, 184, 184, 0.2), transparent 60%);
  filter: blur(28px);
}

.mastering-hero-media img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(246, 247, 251, 0.18);
  border-radius: 14px;
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.mastering-section {
  position: relative;
  padding: clamp(72px, 8vw, 96px) 0;
}

.mastering-problem {
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.38), rgba(12, 20, 34, 0.48));
  border-bottom: 1px solid rgba(246, 247, 251, 0.08);
}

.mastering-split-new,
.mastering-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: start;
}

.mastering-split-new h2,
.mastering-control-grid h2,
.mastering-centered-copy h2,
.mastering-honesty-card h2,
.mastering-final-card h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.mastering-copy-panel {
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(246, 247, 251, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(150deg, rgba(248, 200, 95, 0.08), transparent 46%),
    rgba(10, 16, 28, 0.7);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25);
}

.mastering-copy-panel p,
.mastering-centered-copy p,
.mastering-control-grid p,
.mastering-honesty-card p,
.mastering-final-card p,
.mastering-card p,
.mastering-profile-card p {
  color: var(--muted);
  line-height: 1.7;
}

.mastering-copy-panel p,
.mastering-centered-copy p,
.mastering-control-grid p,
.mastering-honesty-card p,
.mastering-final-card p {
  margin: 0;
  font-size: 1.05rem;
}

.mastering-mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mastering-mini-benefits span,
.mastering-target-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(78, 184, 184, 0.26);
  border-radius: 999px;
  background: rgba(78, 184, 184, 0.08);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.mastering-solution {
  background:
    radial-gradient(circle at 18% 22%, rgba(248, 200, 95, 0.1), transparent 26%),
    radial-gradient(circle at 80% 72%, rgba(78, 184, 184, 0.11), transparent 30%);
}

.mastering-centered-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mastering-centered-copy p {
  max-width: 720px;
  margin: 18px auto 0;
}

.mastering-section-head {
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.mastering-section-head h2 {
  max-width: 700px;
  font-size: clamp(2rem, 4.6vw, 3.65rem);
}

.mastering-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.mastering-card,
.mastering-profile-card {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 28px);
  border: 1px solid rgba(246, 247, 251, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(248, 200, 95, 0.075), transparent 42%),
    rgba(9, 15, 26, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.mastering-card h3,
.mastering-profile-card h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.8vw, 1.38rem);
  line-height: 1.22;
}

.mastering-card p,
.mastering-profile-card p {
  margin: 12px 0 0;
  font-size: 0.98rem;
}

.mastering-step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(248, 200, 95, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.mastering-profiles-section {
  background: rgba(12, 20, 34, 0.52);
  border-block: 1px solid rgba(246, 247, 251, 0.08);
}

.mastering-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.mastering-profile-card {
  position: relative;
  min-height: 156px;
  background:
    linear-gradient(150deg, rgba(78, 184, 184, 0.07), transparent 46%),
    rgba(246, 247, 251, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mastering-profile-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.mastering-profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 200, 95, 0.32);
  background:
    linear-gradient(150deg, rgba(248, 200, 95, 0.08), rgba(78, 184, 184, 0.06)),
    rgba(246, 247, 251, 0.06);
}

.mastering-control {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.54), rgba(7, 11, 18, 0.72)),
    radial-gradient(circle at 72% 18%, rgba(248, 200, 95, 0.1), transparent 28%);
}

.mastering-control-grid > div:first-child {
  max-width: 590px;
}

.mastering-control-grid > div:first-child > p:last-child {
  margin-top: 16px;
}

.mastering-highlight {
  margin-top: 22px;
  color: var(--ink) !important;
  font-size: clamp(1.18rem, 2vw, 1.45rem) !important;
  font-weight: 800;
  line-height: 1.45 !important;
}

.mastering-control-cards {
  display: grid;
  gap: 16px;
}

.mastering-control-cards .mastering-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  border-color: rgba(78, 184, 184, 0.22);
}

.mastering-ab-card {
  max-width: 940px;
  margin: clamp(26px, 4vw, 42px) auto 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(246, 247, 251, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 8%, rgba(248, 200, 95, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(9, 15, 26, 0.9), rgba(7, 11, 18, 0.82));
  box-shadow: var(--shadow);
}

.mastering-ab-track {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(246, 247, 251, 0.1);
  border-radius: 10px;
  background: rgba(246, 247, 251, 0.045);
}

.mastering-ab-track + .mastering-ab-switch + .mastering-ab-track {
  margin-top: 0;
}

.mastering-ab-track span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mastering-ab-track strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.mastering-ab-track-mastered {
  border-color: rgba(78, 184, 184, 0.26);
  background: rgba(78, 184, 184, 0.075);
}

.mastering-play-fake {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #1a140a;
  opacity: 1;
}

.mastering-play-fake span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.mastering-wave {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
}

.mastering-wave i {
  width: 100%;
  max-width: 28px;
  min-width: 6px;
  border-radius: 999px;
  background: rgba(248, 200, 95, 0.5);
}

.mastering-wave i:nth-child(1) { height: 22%; }
.mastering-wave i:nth-child(2) { height: 54%; }
.mastering-wave i:nth-child(3) { height: 36%; }
.mastering-wave i:nth-child(4) { height: 72%; }
.mastering-wave i:nth-child(5) { height: 44%; }
.mastering-wave i:nth-child(6) { height: 84%; }
.mastering-wave i:nth-child(7) { height: 52%; }
.mastering-wave i:nth-child(8) { height: 68%; }
.mastering-wave i:nth-child(9) { height: 34%; }
.mastering-wave i:nth-child(10) { height: 58%; }

.mastering-ab-track-mastered .mastering-wave i {
  background: rgba(78, 184, 184, 0.72);
}

.mastering-ab-switch {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 18px auto;
  border: 1px solid rgba(248, 200, 95, 0.5);
  border-radius: 50%;
  background: rgba(248, 200, 95, 0.12);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.mastering-target {
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.48), rgba(7, 11, 18, 0.38));
}

.mastering-target-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 850px;
  margin: 30px auto 0;
}

.mastering-honesty-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(248, 200, 95, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(248, 200, 95, 0.09), transparent 48%),
    rgba(9, 15, 26, 0.72);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25);
}

.mastering-honesty-card p:last-child {
  max-width: 760px;
  margin-top: 20px;
}

.mastering-final-cta {
  padding-top: clamp(70px, 8vw, 92px);
  padding-bottom: clamp(82px, 9vw, 112px);
}

.mastering-final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(248, 200, 95, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(7, 11, 18, 0.1), rgba(7, 11, 18, 0.86)),
    radial-gradient(circle at 88% 18%, rgba(78, 184, 184, 0.2), transparent 28%),
    var(--radio-bg-image) center 58% / cover no-repeat;
  box-shadow: var(--shadow);
}

.mastering-final-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.5), rgba(7, 11, 18, 0.18));
  pointer-events: none;
}

.mastering-final-card > * {
  position: relative;
  z-index: 1;
}

.mastering-final-card > img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(246, 247, 251, 0.18);
}

.mastering-final-card p {
  max-width: 620px;
  margin-top: 16px;
}

.mastering-final-card .button {
  margin-top: 28px;
}

.text-page {
  padding: clamp(48px, 6vw, 76px) 0 clamp(72px, 8vw, 96px);
  background: transparent;
}

.text-wrap {
  max-width: 920px;
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid rgba(246, 247, 251, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 10%, rgba(78, 184, 184, 0.12), transparent 32%),
    linear-gradient(160deg, rgba(9, 15, 26, 0.76), rgba(7, 11, 18, 0.7));
  backdrop-filter: blur(2px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.36);
}

.text-page h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  margin-bottom: 12px;
}

.text-page h2 {
  margin-top: clamp(30px, 4vw, 44px);
  font-size: clamp(1.55rem, 4vw, 2.4rem);
}

.text-page h3 {
  margin-top: 18px;
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
}

.text-page .lead {
  margin-top: 12px;
}

.text-page p {
  margin: 0 0 14px;
}

.text-page ul,
.text-page ol {
  margin: 10px 0 18px;
  padding-left: 22px;
}

.text-page li + li {
  margin-top: 7px;
}

.text-page section + section {
  margin-top: 22px;
}

.text-page a {
  color: var(--gold);
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(244, 189, 85, 0.36);
  border-radius: 8px;
  background: rgba(244, 189, 85, 0.08);
  color: var(--muted);
}

.site-footer {
  padding: clamp(30px, 5vw, 42px) 0;
  border-top: 1px solid rgba(246, 247, 251, 0.12);
  background: rgba(5, 10, 18, 0.88);
}

body.has-floating-player .site-footer {
  padding-bottom: clamp(92px, 8vw, 112px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer-links a,
.footer-links button {
  color: var(--muted);
}

.admin-link {
  border-color: rgba(78, 184, 184, 0.2);
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#klaro {
  --green1: #f8c85f;
  --green2: #f8c85f;
  --green3: #d09c2f;
  --blue1: #4eb8b8;
  --font-family: "Outfit", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
}

.klaro .cookie-notice:not(.cookie-modal-notice),
.klaro .cookie-modal {
  background: rgba(8, 12, 20, 0.97) !important;
  border-color: rgba(246, 247, 251, 0.18) !important;
  border-radius: 10px !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52) !important;
}

.klaro .cookie-notice:not(.cookie-modal-notice) {
  border: 1px solid rgba(248, 200, 95, 0.62) !important;
  background:
    linear-gradient(150deg, rgba(248, 200, 95, 0.14), rgba(8, 12, 20, 0.96) 42%),
    rgba(8, 12, 20, 0.98) !important;
  box-shadow:
    0 0 0 1px rgba(248, 200, 95, 0.24),
    0 22px 56px rgba(0, 0, 0, 0.6) !important;
}

.klaro .cookie-notice p,
.klaro .cookie-modal p,
.klaro .cookie-modal span {
  color: var(--muted) !important;
}

.klaro .cookie-notice:not(.cookie-modal-notice) p,
.klaro .cookie-notice:not(.cookie-modal-notice) span {
  color: var(--ink) !important;
}

.klaro .cm-btn {
  border-radius: 6px !important;
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cm-btn {
  font-weight: 800 !important;
  border: 1px solid rgba(246, 247, 251, 0.32) !important;
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cm-btn.cm-btn-success {
  border-color: transparent !important;
  background: var(--gold) !important;
  color: #1a140a !important;
}

.klaro .cookie-modal {
  position: fixed !important;
  inset: auto 20px 20px auto !important;
  width: min(460px, calc(100% - 24px)) !important;
  height: auto !important;
  max-height: min(78svh, 700px) !important;
  overflow: visible !important;
  z-index: 1200 !important;
}

.klaro .cookie-modal .cm-bg {
  display: none !important;
}

.klaro .cookie-modal .cm-modal.cm-klaro {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  max-height: min(78svh, 700px) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(248, 200, 95, 0.44) !important;
  box-shadow:
    0 0 0 1px rgba(248, 200, 95, 0.2),
    0 22px 54px rgba(0, 0, 0, 0.62) !important;
}

.klaro .cookie-modal .cm-modal .cm-body {
  max-height: min(52svh, 480px) !important;
  overflow: auto !important;
}

.modal-panel {
  width: min(620px, 100%);
  max-height: min(720px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #111012;
  box-shadow: var(--shadow);
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.choice input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.choice strong {
  display: block;
}

.choice span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  .header-inner .brand {
    align-self: auto;
    justify-content: flex-start;
  }

  .nav {
    display: flex;
    width: auto;
    padding-top: 0;
    border-top: 0;
    gap: 6px;
    overflow: visible;
  }

  .nav a,
  .nav button {
    width: auto;
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-integrated,
  .mastering-hero-grid,
  .mastering-split,
  .mastering-guardrails,
  .mastering-format-layout,
  .mastering-download-card,
  .content-grid,
  .story-layout,
  .music-band,
  .schedule,
  .schedule-day-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .story-intro {
    position: static;
  }

  .story-step {
    grid-template-columns: 56px minmax(0, 1fr);
    padding-right: 0;
  }

  .story-num {
    width: 56px;
    height: 56px;
  }

  .story-step:not(:last-child)::after {
    content: none;
  }

  .genre-orbit {
    min-height: 320px;
  }

  .hero-integrated {
    gap: 20px;
    padding: 20px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .mastering-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .mastering-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mastering-benefits-grid,
  .mastering-trial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  body.has-floating-player {
    padding-bottom: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --radio-bg-image: url("assets/radio-everest-bg-960.webp");
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .nav {
    display: none;
  }

  .site-header.nav-open .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(246, 247, 251, 0.1);
  }

  .site-header.nav-open .header-inner {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .site-header.nav-open .brand {
    align-self: center;
  }

  .site-header.nav-open .nav a,
  .site-header.nav-open .nav button {
    width: 100%;
  }

  .site-header.nav-open .language-switcher {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .language-switcher summary {
    width: 100%;
  }

  .site-header.nav-open .language-options {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .site-header.nav-open .language-options a {
    min-width: 0;
  }

  .language-suggestion {
    align-items: flex-start;
    flex-direction: column;
  }

  .language-suggestion-actions {
    width: 100%;
  }

  .language-suggestion a,
  .language-suggestion button {
    flex: 1 1 0;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero {
    padding: 30px 0 38px;
  }

  .section {
    padding: 62px 0;
  }

  .genre-orbit {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    overflow: visible;
  }

  .genre-orbit::before,
  .genre-orbit::after {
    display: none;
  }

  .genre-core {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    text-align: left;
    margin-bottom: 2px;
  }

  .genre-core strong {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .genre-core p {
    margin-top: 8px;
  }

  .orbit-tag {
    position: static;
    animation: none;
    transform: none !important;
  }

  .contact-actions-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mastering-facts,
  .mastering-proof-grid,
  .mastering-benefits-grid,
  .mastering-trial-grid {
    grid-template-columns: 1fr;
  }

  .mastering-hero-grid {
    display: flex;
  }

  .mastering-hero-copy,
  .mastering-hero-copy .lead {
    width: 100%;
    max-width: 520px;
  }

  .mastering-steps {
    grid-template-columns: 1fr;
  }

  .mastering-steps article {
    min-height: auto;
  }

  .mastering-benefits-grid article,
  .mastering-trial-grid article {
    min-height: auto;
  }

  .contact-actions-row .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .nav a,
  .nav button,
  .nav-toggle {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .site-header.nav-open .nav {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .player-panel,
  .feature,
  .music-band > div,
  .schedule-item,
  .contact-block,
  .modal-panel {
    padding: 18px;
  }

  .hero-integrated {
    padding: 16px;
    border-radius: 10px;
  }

  .genre-orbit {
    min-height: 286px;
  }

  .genre-core {
    width: calc(100% - 28px);
  }

  .orbit-tag {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .orbit-1 { top: 14%; left: 10%; }
  .orbit-2 { top: 10%; right: 10%; }
  .orbit-3 { top: 44%; right: 4%; }
  .orbit-4 { bottom: 11%; right: 11%; }
  .orbit-5 { bottom: 7%; left: 10%; }
  .orbit-6 { top: 44%; left: 4%; }

  .button {
    width: 100%;
  }

  .mastering-hero {
    padding-top: 30px;
    padding-bottom: 106px;
  }

  .mastering-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.5vw, 2.9rem);
    line-height: 1.06;
  }

  .mastering-hero-copy .lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .mastering-hero-showcase {
    width: 100%;
    margin-top: 18px;
    border-radius: 14px;
  }

  .mastering-hero-showcase img {
    max-height: none;
    border-radius: 14px;
  }

  .mastering-sublead,
  .mastering-trial-note,
  .mastering-benefits-grid p,
  .mastering-trial-grid p,
  .mastering-steps p,
  .mastering-proof-grid p,
  .mastering-format-panel p,
  .mastering-release-box p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .radio-main {
    grid-template-columns: 60px minmax(0, 1fr) 78px;
    gap: 10px;
  }

  .album-art {
    width: 78px;
  }

  .play-control {
    width: 60px;
    height: 60px;
  }

  .radio-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .radio-controls input[type="range"] {
    width: 170px;
  }

  .playbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  body.has-floating-player {
    padding-bottom: 0;
  }

  body.has-floating-player .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .global-player-shell {
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .global-player .radio-main {
    grid-template-columns: 60px minmax(0, 1fr) 74px;
    gap: 10px;
  }

  .global-player .album-art {
    width: 74px;
  }

  .global-player-shell.is-floating {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(440px, calc(100% - 12px));
  }

  .global-player-shell.is-floating .radio-main {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 7px;
  }

  .global-player-shell.is-floating .play-control {
    width: 38px;
    height: 38px;
  }

  .global-player-shell.is-floating .radio-controls input[type="range"] {
    width: 72px;
  }

  .klaro .cookie-modal {
    inset: auto 8px 8px 8px !important;
    width: auto !important;
    max-height: min(74svh, 620px) !important;
  }

  .klaro .cookie-modal .cm-modal.cm-klaro {
    max-height: min(74svh, 620px) !important;
  }
}

.blog-article {
  padding-top: 84px;
}

.section-inner.narrow {
  width: min(820px, calc(100% - 32px));
}

.blog-article h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.95;
}

.blog-article .lead {
  max-width: 760px;
  margin-top: 22px;
}

.rich-text {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.75;
}

.rich-text h2,
.rich-text h3 {
  margin: 22px 0 0;
  color: var(--ink);
  line-height: 1.08;
}

.rich-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.rich-text h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote {
  margin: 0;
}

.rich-text a {
  color: var(--gold);
  font-weight: 800;
}

.rich-text .blog-cta {
  padding: 18px 20px;
  border: 1px solid rgba(213, 167, 70, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(213, 167, 70, 0.12), rgba(13, 31, 43, 0.64));
  color: var(--ink);
  font-weight: 650;
}

.rich-text .blog-cta strong {
  color: var(--ink);
}

.rich-text .blog-cta a {
  display: inline-flex;
  margin-left: 4px;
}

.rich-text blockquote {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 400px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-inner {
    gap: 12px;
  }

  .text-wrap {
    padding: 16px;
  }

  .global-player-shell.is-floating {
    width: calc(100% - 10px);
  }

  .global-player-shell.is-floating .radio-controls input[type="range"] {
    width: 62px;
  }
}

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

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

  .orbit-tag {
    animation: none;
  }

  .genre-orbit::before,
  .genre-orbit::after {
    display: none;
  }

  .genre-orbit {
    min-height: auto;
    padding: 16px;
  }

  .genre-core {
    position: static;
    width: 100%;
    transform: none;
    text-align: left;
  }

  .orbit-tag {
    position: static;
    margin: 8px 6px 0 0;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .mastering-hero-new-grid,
  .mastering-split-new,
  .mastering-control-grid {
    grid-template-columns: 1fr;
  }

  .mastering-hero-new-copy,
  .mastering-control-grid > div:first-child {
    max-width: 720px;
  }

  .mastering-hero-media {
    width: min(100%, 780px);
  }

  .mastering-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .mastering-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mastering-section-head {
    display: block;
  }

  .mastering-section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 700px) {
  .mastering-hero-new {
    padding: 54px 0 64px;
  }

  .mastering-section {
    padding: 58px 0;
  }

  .mastering-hero-new-copy h1,
  .mastering-split-new h2,
  .mastering-control-grid h2,
  .mastering-centered-copy h2,
  .mastering-honesty-card h2,
  .mastering-final-card h2,
  .mastering-section-head h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.2rem);
  }

  .mastering-profile-grid,
  .mastering-step-grid,
  .mastering-control-cards {
    grid-template-columns: 1fr;
  }

  .mastering-ab-track {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .mastering-ab-track > div:first-child {
    grid-column: 1 / -1;
  }

  .mastering-wave {
    height: 58px;
  }

  .mastering-target-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .mastering-hero-new-grid {
    gap: 24px;
  }

  .mastering-hero-new-copy .lead,
  .mastering-support-copy,
  .mastering-copy-panel p,
  .mastering-centered-copy p,
  .mastering-control-grid p,
  .mastering-honesty-card p,
  .mastering-final-card p {
    font-size: 0.98rem;
  }

  .mastering-copy-panel,
  .mastering-card,
  .mastering-profile-card,
  .mastering-ab-card,
  .mastering-honesty-card,
  .mastering-final-card {
    border-radius: 10px;
  }

  .mastering-hero-media img {
    border-radius: 12px;
  }

  .mastering-final-card {
    grid-template-columns: 1fr;
  }

  .mastering-ab-track {
    padding: 14px;
    gap: 12px;
  }

  .mastering-wave {
    gap: 5px;
  }
}
