:root {
  --bg: #020410;
  --bg-soft: #080b1a;
  --text: #ffffff;
  --muted: #c8c5d1;
  --line: rgba(255, 255, 255, 0.17);
  --line-strong: rgba(255, 255, 255, 0.24);
  --blue: #075dff;
  --violet: #7a2eff;
  --pink: #ff2d83;
  --success: #82f0c3;
  --error: #ff9aa9;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-glow: 0 0 42px rgba(255, 45, 131, 0.18), 0 0 62px rgba(7, 93, 255, 0.16);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 45, 131, 0.17), transparent 31rem),
    radial-gradient(circle at 20% 14%, rgba(7, 93, 255, 0.13), transparent 28rem),
    linear-gradient(145deg, #020410 0%, #050719 46%, #120613 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.45), transparent 70%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: #07101f;
  background: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.landing {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 112px);
  display: grid;
  place-items: center;
  padding: clamp(44px, 7vh, 86px) 24px 34px;
}

.ambient,
.radio-lines {
  position: fixed;
  z-index: -2;
  pointer-events: none;
}

.ambient-left {
  top: 12%;
  left: 11%;
  width: 21rem;
  height: 21rem;
  border-radius: 999px;
  background: rgba(7, 93, 255, 0.12);
  filter: blur(90px);
}

.ambient-right {
  right: 3%;
  bottom: 5%;
  width: min(38vw, 31rem);
  height: min(38vw, 31rem);
  border-radius: 999px;
  background: rgba(255, 45, 131, 0.15);
  filter: blur(96px);
}

.radio-lines {
  opacity: 0.52;
  mask-image: linear-gradient(35deg, #000 0%, rgba(0, 0, 0, 0.58) 42%, transparent 76%);
}

.radio-lines-left {
  left: -14rem;
  bottom: -17rem;
  width: 44rem;
  height: 35rem;
  border-radius: 50%;
  background: repeating-radial-gradient(ellipse at bottom left, transparent 0 23px, rgba(17, 68, 255, 0.28) 24px 27px);
  transform: rotate(10deg);
}

.radio-lines-right {
  right: -18rem;
  bottom: -20rem;
  width: 43rem;
  height: 34rem;
  border-radius: 50%;
  background: repeating-radial-gradient(ellipse at bottom right, transparent 0 26px, rgba(255, 45, 131, 0.14) 27px 29px);
  transform: rotate(-6deg);
}

.hero {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-mark {
  position: relative;
  z-index: 0;
  width: clamp(320px, 76vw, 880px);
  margin: 0 auto clamp(22px, 4vh, 34px);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  animation: logoIn 680ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms forwards;
}

.brand-mark::before {
  position: absolute;
  inset: -46% 64% -38% -8%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 28% 52%, rgba(7, 93, 255, 0.32), transparent 44%),
    radial-gradient(ellipse at 62% 48%, rgba(122, 46, 255, 0.2), transparent 50%),
    radial-gradient(ellipse at 92% 42%, rgba(255, 45, 131, 0.2), transparent 46%);
  filter: blur(32px);
  opacity: 0.52;
  content: "";
  animation: logoAura 5.4s ease-in-out 1s infinite;
}

.brand-music-notes {
  position: absolute;
  top: -14%;
  left: 1%;
  z-index: 4;
  width: 25%;
  height: 82%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.music-note {
  position: absolute;
  display: block;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.65vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 12px rgba(7, 93, 255, 0.48), 0 0 18px rgba(255, 45, 131, 0.36);
  transform: translate3d(0, 12px, 0) scale(0.78) rotate(-8deg);
}

.music-note-1 {
  left: 18%;
  bottom: 18%;
}

.music-note-2 {
  left: 46%;
  bottom: 44%;
}

.music-note-3 {
  left: 70%;
  bottom: 26%;
}

.brand-mark:hover .brand-music-notes,
.brand-mark.is-music-hover .brand-music-notes {
  opacity: 1;
}

.brand-mark:hover .music-note,
.brand-mark.is-music-hover .music-note {
  animation: musicNoteFloat 1.35s ease-out infinite;
}

.brand-mark:hover .music-note-2,
.brand-mark.is-music-hover .music-note-2 {
  animation-delay: 130ms;
}

.brand-mark:hover .music-note-3,
.brand-mark.is-music-hover .music-note-3 {
  animation-delay: 260ms;
}

.brand-equalizer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 27.6%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 16px rgba(7, 93, 255, 0.2)) drop-shadow(0 0 18px rgba(255, 45, 131, 0.16));
  pointer-events: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand-mark:hover .brand-equalizer,
.brand-mark.is-music-hover .brand-equalizer {
  filter: drop-shadow(0 0 22px rgba(7, 93, 255, 0.36)) drop-shadow(0 0 26px rgba(255, 45, 131, 0.28));
  transform: translateY(-2px) scale(1.025);
}

.eq-dot,
.eq-bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  will-change: transform, opacity, filter;
}

.eq-dot {
  transform-origin: center;
  animation: equalizerDot 1.25s ease-in-out infinite;
}

.eq-bar-1 {
  animation: equalizerBarOne 1.12s ease-in-out infinite;
}

.eq-bar-2 {
  animation: equalizerBarTwo 0.95s ease-in-out 80ms infinite;
}

.eq-bar-3 {
  animation: equalizerBarThree 1.04s ease-in-out 150ms infinite;
}

.brand-mark:hover .eq-dot,
.brand-mark.is-music-hover .eq-dot {
  animation-duration: 0.72s;
}

.brand-mark:hover .eq-bar-1,
.brand-mark.is-music-hover .eq-bar-1 {
  animation-duration: 0.62s;
}

.brand-mark:hover .eq-bar-2,
.brand-mark.is-music-hover .eq-bar-2 {
  animation-duration: 0.54s;
}

.brand-mark:hover .eq-bar-3,
.brand-mark.is-music-hover .eq-bar-3 {
  animation-duration: 0.58s;
}

.brand-orbit {
  position: absolute;
  inset: -34% 67% -24% -5%;
  z-index: -1;
  border-radius: 999px;
  background: repeating-radial-gradient(ellipse at center, transparent 0 28px, rgba(255, 255, 255, 0.08) 29px 30px);
  opacity: 0.18;
  transform: scale(0.9);
  animation: logoWaves 6s ease-in-out 900ms infinite;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 0 0 29.4%);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.status-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(42px, 7vh, 68px);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  color: #f2eff8;
  background:
    linear-gradient(rgba(6, 8, 20, 0.92), rgba(6, 8, 20, 0.92)) padding-box,
    linear-gradient(100deg, var(--blue), var(--violet), var(--pink)) border-box;
  box-shadow: 0 0 30px rgba(7, 93, 255, 0.11), 0 0 30px rgba(255, 45, 131, 0.12);
  font-size: 1.06rem;
  line-height: 1;
}

.status-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #7e3cff;
}

.status-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-copy {
  opacity: 0;
  transform: translateY(18px);
  animation: contentIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 360ms forwards;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 5.65rem;
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.42), 0 0 18px rgba(255, 255, 255, 0.08);
}

.hero-copy h1 .title-dot {
  color: var(--pink);
  text-shadow: 0 0 28px rgba(255, 45, 131, 0.62);
}

.hero-copy .hero-tagline {
  margin-top: 18px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.35;
}

.hero-copy p {
  max-width: 760px;
  margin: clamp(22px, 3.4vh, 32px) auto 0;
  color: var(--muted);
  font-size: 1.36rem;
  line-height: 1.65;
  text-wrap: balance;
}

.signup-form {
  width: min(100%, 840px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: stretch;
  gap: 0;
  margin: clamp(38px, 6vh, 56px) auto 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 5px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(16px);
  animation: contentIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 570ms forwards;
}

.email-field {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 76px;
  gap: 16px;
  padding: 0 28px;
}

.field-icon {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  color: #d5d4dc;
  opacity: 0.9;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.email-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  font-size: 1.12rem;
}

.email-field input::placeholder {
  color: rgba(236, 233, 242, 0.76);
}

.email-field:focus-within .field-icon {
  color: #ffffff;
}

.submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 76px;
  gap: 18px;
  border-radius: 20px;
  padding: 0 30px;
  color: #ffffff;
  background: linear-gradient(100deg, var(--blue) 0%, var(--violet) 49%, var(--pink) 100%);
  box-shadow: 0 16px 34px rgba(255, 45, 131, 0.22), 0 12px 26px rgba(7, 93, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 1.06rem;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.submit-button::after {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  pointer-events: none;
  content: "";
}

.submit-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.06);
  box-shadow: 0 20px 42px rgba(255, 45, 131, 0.3), 0 15px 32px rgba(7, 93, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  cursor: wait;
  filter: grayscale(0.2) brightness(0.82);
}

.submit-button svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.form-message {
  min-height: 1.6em;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: var(--error);
}

.signup-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 16px auto 0;
  color: rgba(239, 236, 246, 0.76);
  font-size: 1.05rem;
  line-height: 1.4;
}

.signup-note svg {
  width: 25px;
  height: 25px;
  color: rgba(255, 255, 255, 0.86);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.privacy-note {
  max-width: 620px;
  margin: 8px auto 0;
  color: rgba(239, 236, 246, 0.62);
  font-size: 0.94rem;
  line-height: 1.5;
}

.value-grid {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(30px, 5vh, 46px) auto 0;
  opacity: 0;
  transform: translateY(16px);
  animation: contentIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 720ms forwards;
}

.value-grid article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.value-grid article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(7, 93, 255, 0.45), rgba(255, 45, 131, 0.34));
  box-shadow: 0 0 24px rgba(122, 46, 255, 0.16);
}

.value-grid svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.value-grid h2 {
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.25;
}

.value-grid p {
  margin: 0;
  color: rgba(239, 236, 246, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.player-promo {
  position: relative;
  width: min(100%, 940px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: center;
  gap: 34px;
  margin: clamp(28px, 5vh, 42px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  padding: 28px;
  text-align: left;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 45, 131, 0.16), transparent 16rem),
    radial-gradient(circle at 18% 24%, rgba(7, 93, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(16px);
  animation: contentIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 820ms forwards;
}

.player-promo.is-featured {
  border-color: rgba(255, 45, 131, 0.18);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 45, 131, 0.2), transparent 16rem),
    radial-gradient(circle at 12% 18%, rgba(7, 93, 255, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 42px rgba(255, 45, 131, 0.13), 0 0 42px rgba(7, 93, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.player-promo::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(7, 93, 255, 0.42), transparent 32%, rgba(255, 45, 131, 0.38));
  opacity: 0.35;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.player-promo-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 45, 131, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  color: #ffd4e5;
  background: rgba(255, 45, 131, 0.08);
  font-size: 0.75rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.player-promo h2 {
  margin: 16px 0 0;
  max-width: 430px;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 820;
  line-height: 1.05;
  text-wrap: balance;
}

.player-promo p {
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(239, 236, 246, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.player-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 16px;
  padding: 15px 18px;
  color: #ffffff;
  background: linear-gradient(100deg, var(--blue), var(--violet), var(--pink));
  box-shadow: 0 12px 26px rgba(7, 93, 255, 0.22), 0 14px 30px rgba(255, 45, 131, 0.18);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.player-promo-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06) saturate(1.08);
  box-shadow: 0 16px 34px rgba(7, 93, 255, 0.28), 0 18px 36px rgba(255, 45, 131, 0.24);
}

.player-promo-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.player-live-demo {
  position: relative;
  justify-self: end;
  width: min(100%, 400px);
}

.player-live-demo::before {
  position: absolute;
  inset: -20px;
  border-radius: 38px;
  content: "";
  background: radial-gradient(circle at 24% 18%, rgba(7, 93, 255, 0.36), transparent 42%), radial-gradient(circle at 82% 20%, rgba(255, 45, 131, 0.3), transparent 46%);
  filter: blur(20px);
  opacity: 0.78;
}

.player-live-visual {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(7, 93, 255, 0.48), transparent 28%),
    radial-gradient(circle at 72% 14%, rgba(255, 45, 131, 0.26), transparent 30%),
    linear-gradient(150deg, #071125 0%, #02030a 78%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 36px rgba(122, 46, 255, 0.18);
}

.player-live-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.04);
  transition: opacity 260ms ease;
}

.player-live-cover.is-visible {
  opacity: 0.72;
}

.player-live-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(3, 5, 16, 0.2), rgba(3, 5, 16, 0.9));
}

.player-live-visual::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 64%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.player-live-onair,
.player-live-title,
.player-live-actions,
.player-live-logo {
  position: absolute;
  z-index: 2;
}

.player-live-onair {
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 45, 131, 0.25);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffd8e8;
  background: linear-gradient(135deg, rgba(7, 93, 255, 0.18), rgba(122, 46, 255, 0.15), rgba(255, 45, 131, 0.16));
  box-shadow: 0 0 18px rgba(122, 46, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.player-live-onair span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 131, 0.75);
  animation: livePulse 1.4s ease-in-out infinite;
}

.player-live-title {
  right: 24px;
  bottom: 82px;
  left: 24px;
  min-height: 54px;
  text-align: center;
}

.player-live-title strong,
.player-live-title small {
  display: block;
}

.player-live-title strong {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.05;
}

.player-live-title small {
  margin-top: 7px;
  color: rgba(239, 236, 246, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

.player-live-actions {
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.player-live-icon,
.player-live-play {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.player-live-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.player-live-icon:hover,
.player-live-icon:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.player-live-icon.is-copied {
  color: var(--success);
  background: rgba(130, 240, 195, 0.12);
}

.player-live-play {
  width: 56px;
  height: 56px;
  background: linear-gradient(100deg, var(--blue), var(--violet), var(--pink));
  box-shadow: 0 0 26px rgba(7, 93, 255, 0.26), 0 0 26px rgba(255, 45, 131, 0.18);
}

.player-live-play:hover,
.player-live-play:focus-visible {
  transform: translateY(-1px) scale(1.03);
}

.player-live-icon svg {
  width: 18px;
  height: 18px;
}

.player-live-play svg {
  width: 22px;
  height: 22px;
}

.player-live-icon svg,
.player-live-play svg {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.player-live-play-icon path,
.player-live-pause-icon path {
  fill: currentColor;
  stroke: none;
}

.player-live-pause-icon,
.player-live-demo.is-playing .player-live-play-icon {
  display: none;
}

.player-live-demo.is-playing .player-live-pause-icon {
  display: block;
}

.player-live-logo {
  right: 13px;
  bottom: 12px;
  display: inline-flex;
  align-items: end;
  gap: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-live-logo i {
  display: block;
  width: 3px;
  border-radius: 999px;
}

.player-live-logo i:nth-child(1) {
  height: 8px;
  background: var(--blue);
}

.player-live-logo i:nth-child(2) {
  height: 15px;
  background: var(--violet);
}

.player-live-logo i:nth-child(3) {
  height: 11px;
  background: var(--pink);
  margin-right: 4px;
}

.free-player-widget {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  max-width: 400px;
  border-radius: 28px;
  background: #02030a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(122, 46, 255, 0.16);
}

.free-player-cover,
.free-player-fallback,
.free-player-shade,
.free-player-bottom-shade,
.free-player-radioway-overlay {
  position: absolute;
  inset: 0;
}

.free-player-cover {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 260ms ease;
}

.free-player-cover.is-visible {
  opacity: 0.9;
  filter: saturate(1.04) contrast(1.02);
}

.free-player-cover.is-visible + .free-player-fallback {
  opacity: 0 !important;
  visibility: hidden;
}

.free-player-fallback {
  z-index: 0;
  background:
    radial-gradient(circle at 30% 32%, rgba(7, 93, 255, 0.44), transparent 26%),
    radial-gradient(circle at 75% 18%, rgba(255, 45, 131, 0.22), transparent 30%),
    linear-gradient(135deg, #071125 0%, #02030a 78%);
  transition: opacity 220ms ease;
}

.free-player-fallback-ring,
.free-player-fallback-glow,
.free-player-fallback-shadow,
.free-player-fallback-mic {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.free-player-fallback-ring {
  display: none;
  left: 10%;
  top: 16%;
  width: 32%;
  height: 54%;
  border: 1px solid rgba(7, 93, 255, 0.3);
  filter: blur(1px);
}

.free-player-fallback-glow {
  left: 26%;
  top: 27%;
  width: 24%;
  height: 44%;
  background: rgba(255, 45, 131, 0.18);
  filter: blur(24px);
}

.free-player-fallback-shadow {
  left: 15%;
  top: 22%;
  width: 16%;
  height: 38%;
  background: rgba(0, 0, 0, 0.35);
}

.free-player-fallback-mic {
  left: 28%;
  top: 33%;
  width: 10%;
  height: 28%;
  background: linear-gradient(180deg, #ff9d4d, #ff2d83);
  box-shadow: 0 0 24px rgba(255, 45, 131, 0.4);
  transform: rotate(-18deg);
}

.free-player-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(3, 5, 16, 0.08), rgba(3, 5, 16, 0.58));
}

.free-player-bottom-shade {
  top: auto;
  z-index: 1;
  height: 66%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.free-player-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 32px;
  text-align: center;
}

.free-player-track {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 220ms ease;
}

.player-live-demo.has-live-title .free-player-track {
  opacity: 1;
}

.free-player-track strong {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.04;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.free-player-track small {
  display: block;
  margin-top: 5px;
  color: rgba(226, 232, 240, 0.94);
  font-size: 0.9rem;
  font-weight: 650;
}

.free-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.free-player-round-button,
.free-player-main-button,
.free-player-share-close,
.free-player-social,
.free-player-share-copy,
.free-player-overlay-close,
.free-player-radioway-logo {
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.free-player-round-button,
.free-player-main-button {
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.free-player-round-button {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.86);
}

.free-player-round-button:hover,
.free-player-round-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.free-player-main-button {
  width: 56px;
  height: 56px;
  background: linear-gradient(110deg, var(--blue) 0%, var(--violet) 48%, var(--pink) 100%);
  box-shadow: 0 0 28px rgba(7, 93, 255, 0.32);
}

.free-player-main-button:hover,
.free-player-main-button:focus-visible {
  transform: scale(1.05);
}

.free-player-round-button svg,
.free-player-main-button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.free-player-main-button svg {
  width: 28px;
  height: 28px;
}

.free-player-play-icon path,
.free-player-pause-icon path {
  fill: currentColor;
  stroke: none;
}

.free-player-pause-icon,
.player-live-demo.is-playing .free-player-play-icon {
  display: none;
}

.player-live-demo.is-playing .free-player-pause-icon {
  display: block;
}

.free-player-share-panel {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  max-width: 292px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(31, 31, 34, 0.95);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.player-live-demo.is-sharing .free-player-share-panel {
  display: flex;
}

.player-live-demo.is-sharing .free-player-controls {
  display: none;
}

.free-player-share-close,
.free-player-social,
.free-player-share-copy {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.free-player-share-close {
  color: rgba(203, 213, 225, 0.88);
}

.free-player-share-close:hover,
.free-player-share-close:focus-visible,
.free-player-share-copy:hover,
.free-player-share-copy:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.free-player-social:hover,
.free-player-social:focus-visible {
  transform: scale(1.1);
}

.free-player-social.is-facebook {
  background: #1877f2;
}

.free-player-social.is-messenger {
  background: #7b3cff;
}

.free-player-social.is-whatsapp {
  background: #25d366;
}

.free-player-social.is-x {
  background: #1da1f2;
}

.free-player-share-close svg,
.free-player-social svg,
.free-player-share-copy svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.free-player-social svg {
  fill: currentColor;
  stroke: none;
}

.free-player-check-icon,
.free-player-share-copy.is-copied .free-player-copy-icon {
  display: none;
}

.free-player-share-copy.is-copied {
  color: var(--success);
}

.free-player-share-copy.is-copied .free-player-check-icon {
  display: block;
}

.free-player-radioway-logo {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 10;
  width: 92px;
  padding: 0;
  opacity: 0.9;
  filter: drop-shadow(0 0 16px rgba(7, 93, 255, 0.22)) drop-shadow(0 0 18px rgba(255, 45, 131, 0.16));
  transition: opacity 180ms ease, transform 180ms ease;
}

.free-player-radioway-logo:hover,
.free-player-radioway-logo:focus-visible {
  opacity: 1;
  outline: none;
  transform: translateY(-1px) scale(1.03);
}

.client-logo-mark {
  position: relative;
  display: block;
  width: 220px;
  max-width: min(56vw, 220px);
  aspect-ratio: 885 / 192;
  filter: drop-shadow(0 0 18px rgba(7, 93, 255, 0.18));
}

.free-player-radioway-logo .client-logo-mark {
  width: 92px;
  max-width: 92px;
  filter: none;
}

.client-logo-orbit {
  position: absolute;
  inset: -42% 68% -34% -10%;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  background: repeating-radial-gradient(ellipse at center, transparent 0 16px, rgba(255, 255, 255, 0.07) 17px 18px);
  opacity: 0.16;
  transform: scale(0.92);
  animation: clientLogoWaves 6s ease-in-out infinite;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
}

.free-player-radioway-logo .client-logo-orbit {
  display: none;
  inset: -48% 68% -38% -16%;
  opacity: 0.18;
}

.client-logo-equalizer {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 27.6%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(7, 93, 255, 0.24)) drop-shadow(0 0 18px rgba(255, 45, 131, 0.14));
  transition: filter 180ms ease, transform 180ms ease;
}

.free-player-radioway-logo .client-logo-equalizer {
  filter: drop-shadow(0 0 8px rgba(7, 93, 255, 0.32)) drop-shadow(0 0 10px rgba(255, 45, 131, 0.2));
}

.client-logo-wordmark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 29.4%);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
  object-fit: contain;
}

.free-player-radioway-logo .client-logo-wordmark {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.16));
}

.client-eq-dot,
.client-eq-bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  will-change: transform, opacity, filter;
}

.client-eq-dot {
  transform-origin: center;
  animation: clientEqualizerDot 1.25s ease-in-out infinite;
}

.client-eq-bar-1 {
  animation: clientEqualizerBarOne 1.12s ease-in-out infinite;
}

.client-eq-bar-2 {
  animation: clientEqualizerBarTwo 0.95s ease-in-out 80ms infinite;
}

.client-eq-bar-3 {
  animation: clientEqualizerBarThree 1.04s ease-in-out 150ms infinite;
}

.client-logo-mark:hover .client-logo-equalizer,
.client-logo-mark:focus-visible .client-logo-equalizer {
  filter: drop-shadow(0 0 22px rgba(7, 93, 255, 0.36)) drop-shadow(0 0 26px rgba(255, 45, 131, 0.28));
  transform: translateY(-1px) scale(1.025);
}

.client-logo-mark:hover .client-eq-dot,
.client-logo-mark:focus-visible .client-eq-dot {
  animation-duration: 0.72s;
}

.client-logo-mark:hover .client-eq-bar-1,
.client-logo-mark:focus-visible .client-eq-bar-1 {
  animation-duration: 0.62s;
}

.client-logo-mark:hover .client-eq-bar-2,
.client-logo-mark:focus-visible .client-eq-bar-2 {
  animation-duration: 0.54s;
}

.client-logo-mark:hover .client-eq-bar-3,
.client-logo-mark:focus-visible .client-eq-bar-3 {
  animation-duration: 0.58s;
}

.free-player-radioway-overlay {
  z-index: 30;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(2px);
}

.player-live-demo.is-radioway-open .free-player-radioway-overlay {
  display: flex;
}

.free-player-radioway-overlay p {
  max-width: 320px;
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.14;
}

.free-player-radioway-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  border-radius: 18px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(110deg, var(--blue) 0%, var(--violet) 48%, var(--pink) 100%);
  box-shadow: 0 0 28px rgba(7, 93, 255, 0.32);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.free-player-radioway-overlay a:hover,
.free-player-radioway-overlay a:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(255, 45, 131, 0.26);
}

.free-player-overlay-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease, background 180ms ease;
}

.free-player-overlay-close:hover,
.free-player-overlay-close:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.free-player-overlay-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.free-player-metadata-status,
.free-player-playback-status {
  position: absolute;
  z-index: 8;
  display: none;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.free-player-metadata-status {
  top: 12px;
  left: 12px;
  border: 1px solid rgba(255, 45, 131, 0.25);
  padding: 7px 13px;
  color: #ffe0ed;
  background: linear-gradient(135deg, rgba(7, 93, 255, 0.18), rgba(122, 46, 255, 0.14), rgba(255, 45, 131, 0.16));
  box-shadow: 0 0 18px rgba(122, 46, 255, 0.16), 0 0 18px rgba(255, 45, 131, 0.12);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.free-player-playback-status {
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.74rem;
}

.player-live-demo.has-metadata-status .free-player-metadata-status,
.player-live-demo.has-playback-status .free-player-playback-status {
  display: flex;
}

.free-player-metadata-status span,
.free-player-playback-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 131, 0.8);
}

.free-player-playback-status span {
  background: rgba(148, 163, 184, 0.95);
  box-shadow: none;
}

.player-live-demo.is-playing .free-player-playback-status span {
  background: var(--success);
  box-shadow: 0 0 12px rgba(130, 240, 195, 0.8);
}

.player-live-demo.is-error .free-player-playback-status span {
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 131, 0.75);
}

.free-player-metadata-status strong,
.free-player-playback-status strong {
  font: inherit;
  font-weight: 900;
}

.player-mini-preview {
  position: relative;
  justify-self: end;
  width: min(100%, 320px);
}

.player-mini-preview::before {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  content: "";
  background: radial-gradient(circle at 24% 18%, rgba(7, 93, 255, 0.34), transparent 42%), radial-gradient(circle at 82% 20%, rgba(255, 45, 131, 0.28), transparent 46%);
  filter: blur(18px);
  opacity: 0.7;
}

.player-mini-artwork {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(7, 93, 255, 0.48), transparent 28%),
    radial-gradient(circle at 72% 14%, rgba(255, 45, 131, 0.26), transparent 30%),
    linear-gradient(150deg, #071125 0%, #02030a 78%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), 0 0 36px rgba(122, 46, 255, 0.16);
}

.player-mini-artwork::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.74)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px);
  opacity: 0.72;
}

.player-mini-onair {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 45, 131, 0.25);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffd8e8;
  background: linear-gradient(135deg, rgba(7, 93, 255, 0.18), rgba(122, 46, 255, 0.15), rgba(255, 45, 131, 0.16));
  box-shadow: 0 0 18px rgba(122, 46, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.player-mini-onair span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 131, 0.75);
}

.player-mini-title {
  position: absolute;
  right: 22px;
  bottom: 72px;
  left: 22px;
  text-align: center;
}

.player-mini-title strong,
.player-mini-title small {
  display: block;
}

.player-mini-title strong {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.05;
}

.player-mini-title small {
  margin-top: 7px;
  color: rgba(239, 236, 246, 0.76);
  font-size: 0.86rem;
  font-weight: 650;
}

.player-mini-controls {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.player-mini-controls span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.player-mini-controls .player-mini-play {
  position: relative;
  width: 52px;
  height: 52px;
  background: linear-gradient(100deg, var(--blue), var(--violet), var(--pink));
  box-shadow: 0 0 26px rgba(7, 93, 255, 0.26), 0 0 26px rgba(255, 45, 131, 0.18);
}

.player-mini-controls .player-mini-play::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #ffffff;
  content: "";
  transform: translate(-50%, -50%);
}

.player-mini-logo {
  position: absolute;
  right: 13px;
  bottom: 12px;
  display: inline-flex;
  align-items: end;
  gap: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-mini-logo i {
  display: block;
  width: 3px;
  border-radius: 999px;
}

.player-mini-logo i:nth-child(1) {
  height: 8px;
  background: var(--blue);
}

.player-mini-logo i:nth-child(2) {
  height: 15px;
  background: var(--violet);
}

.player-mini-logo i:nth-child(3) {
  height: 11px;
  background: var(--pink);
  margin-right: 4px;
}

.site-footer {
  width: min(calc(100% - 48px), 980px);
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(239, 236, 246, 0.72);
  font-size: 1rem;
}

.site-footer a {
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(239, 236, 246, 0.78);
  background: rgba(255, 255, 255, 0.035);
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.065);
}

.social-links svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.site-footer a:focus-visible,
.submit-button:focus-visible,
.player-promo-button:focus-visible,
.player-live-icon:focus-visible,
.player-live-play:focus-visible,
.free-player-round-button:focus-visible,
.free-player-main-button:focus-visible,
.free-player-share-close:focus-visible,
.free-player-social:focus-visible,
.free-player-share-copy:focus-visible,
.free-player-overlay-close:focus-visible,
.email-field input:focus-visible,
.legal-content a:focus-visible,
.legal-logo:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-page {
  min-height: 100vh;
}

.legal-wrapper {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-logo {
  display: block;
  width: min(360px, 72vw);
  margin: 0 auto 42px;
}

.legal-logo img {
  width: 100%;
  height: auto;
}

.legal-content {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 54px);
  color: rgba(245, 243, 250, 0.84);
  background: rgba(7, 9, 22, 0.72);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(18px);
}

.legal-content h1,
.legal-content h2 {
  color: #ffffff;
  letter-spacing: 0;
}

.legal-content h1 {
  margin: 0 0 30px;
  font-size: 3.4rem;
  line-height: 1.05;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 1.2rem;
}

.legal-content p {
  margin: 0 0 14px;
  line-height: 1.75;
}

.legal-content .editable-text {
  white-space: pre-line;
}

.legal-content a {
  color: #ffffff;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-back {
  margin-top: 34px;
}

@media (pointer: fine) and (hover: hover) {
  html.radioway-cursor-enabled,
  html.radioway-cursor-enabled body,
  html.radioway-cursor-enabled a,
  html.radioway-cursor-enabled button {
    cursor: none;
  }

  html.radioway-cursor-enabled input {
    cursor: text;
  }

  .radioway-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 40px;
    height: 44px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: opacity 160ms ease, filter 180ms ease;
    will-change: transform;
    --cursor-tilt: 0deg;
    filter: drop-shadow(0 0 8px rgba(7, 93, 255, 0.2)) drop-shadow(0 0 16px rgba(255, 45, 131, 0.16));
  }

  .radioway-cursor.is-visible {
    opacity: 1;
  }

  .radioway-cursor.is-interactive {
    filter: drop-shadow(0 0 12px rgba(7, 93, 255, 0.28)) drop-shadow(0 0 24px rgba(255, 45, 131, 0.3));
  }

  .radioway-cursor svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    transition: transform 180ms ease;
  }

  .radioway-cursor.is-interactive svg {
    transform: scale(1.12) translateY(-1px);
  }

  .cursor-mic,
  .cursor-mic-glow {
    transform-box: fill-box;
    transform-origin: center;
  }

  .cursor-mic-glow {
    opacity: 0.5;
    animation: cursorMicGlow 2.4s ease-in-out infinite;
  }

  .cursor-mic {
    animation: cursorMicFloat 2.1s ease-in-out infinite;
  }

  .cursor-mic-head {
    transform-box: fill-box;
    transform-origin: center;
    animation: cursorMicHead 1.7s ease-in-out infinite;
  }

  .cursor-mic-shine,
  .cursor-mic-detail {
    fill: none;
    stroke: rgba(255, 255, 255, 0.62);
    stroke-linecap: round;
  }

  .cursor-mic-shine {
    stroke-width: 1.5;
    opacity: 0.72;
  }

  .cursor-mic-detail {
    stroke-width: 1.2;
    opacity: 0.44;
  }

  .cursor-mic-arc,
  .cursor-mic-stem,
  .cursor-mic-base {
    fill: none;
    stroke: url(#radiowayCursorGradient);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoAura {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.03);
  }
}

@keyframes equalizerDot {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes equalizerBarOne {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  42% {
    transform: scaleY(1.06);
  }

  68% {
    transform: scaleY(0.86);
  }
}

@keyframes equalizerBarTwo {
  0%,
  100% {
    transform: scaleY(0.86);
  }

  34% {
    transform: scaleY(1.04);
  }

  72% {
    transform: scaleY(0.64);
  }
}

@keyframes equalizerBarThree {
  0%,
  100% {
    transform: scaleY(0.62);
  }

  46% {
    transform: scaleY(0.98);
  }

  76% {
    transform: scaleY(0.78);
  }
}

@keyframes logoWaves {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.9);
  }

  48% {
    opacity: 0.26;
    transform: scale(1.03);
  }
}

@keyframes musicNoteFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.78) rotate(-8deg);
  }

  22% {
    opacity: 0.96;
  }

  100% {
    opacity: 0;
    transform: translate3d(10px, -34px, 0) scale(1.08) rotate(9deg);
  }
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes clientEqualizerDot {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes clientEqualizerBarOne {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  42% {
    transform: scaleY(1.06);
  }

  68% {
    transform: scaleY(0.86);
  }
}

@keyframes clientEqualizerBarTwo {
  0%,
  100% {
    transform: scaleY(0.86);
  }

  34% {
    transform: scaleY(1.04);
  }

  72% {
    transform: scaleY(0.64);
  }
}

@keyframes clientEqualizerBarThree {
  0%,
  100% {
    transform: scaleY(0.62);
  }

  46% {
    transform: scaleY(0.98);
  }

  76% {
    transform: scaleY(0.78);
  }
}

@keyframes clientLogoWaves {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.9);
  }

  48% {
    opacity: 0.25;
    transform: scale(1.03);
  }
}

@keyframes cursorMicGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.66;
    transform: scale(1.04);
  }
}

@keyframes cursorMicFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.6px);
  }
}

@keyframes cursorMicHead {
  0%,
  100% {
    transform: scaleY(0.96);
  }

  50% {
    transform: scaleY(1.03);
  }
}

@keyframes contentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .eq-dot,
  .eq-bar {
    transform: none !important;
  }

  .brand-music-notes {
    display: none;
  }
}

@media (max-width: 760px) {
  .landing {
    min-height: calc(100svh - 104px);
    padding: 38px 18px 28px;
  }

  .brand-mark {
    width: min(82vw, 430px);
    margin-bottom: 22px;
  }

  .status-badge {
    margin-bottom: 40px;
    padding: 12px 20px;
  }

  .hero-copy p {
    font-size: 1.1rem;
    line-height: 1.58;
  }

  .hero-copy .hero-tagline {
    font-size: 1rem;
  }

  .signup-form {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 34px;
    border-radius: 22px;
    padding: 6px;
  }

  .email-field {
    min-height: 66px;
    padding: 0 18px;
  }

  .submit-button {
    width: 100%;
    min-height: 66px;
    padding: 0 22px;
    border-radius: 18px;
  }

  .submit-button span {
    overflow-wrap: anywhere;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .value-grid article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0 14px;
    align-items: center;
    padding: 16px;
  }

  .value-grid article > span {
    grid-row: span 2;
  }

  .value-grid h2 {
    margin: 0 0 4px;
  }

  .player-promo {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 18px;
    padding: 18px;
    text-align: center;
  }

  .player-promo h2,
  .player-promo p {
    margin-right: auto;
    margin-left: auto;
  }

  .player-promo-button {
    width: 100%;
    max-width: 330px;
  }

  .player-live-demo,
  .player-mini-preview {
    justify-self: center;
    width: min(100%, 320px);
  }

  .player-live-demo::before {
    inset: -14px;
  }

  .player-live-visual {
    min-height: 230px;
  }

  .free-player-widget {
    height: 240px;
  }

  .free-player-track strong {
    font-size: 1.35rem;
  }

  .free-player-share-panel {
    gap: 10px;
    max-width: 280px;
    padding: 0 12px;
  }

  .radio-lines-left {
    left: -22rem;
  }

  .radio-lines-right {
    right: -25rem;
    opacity: 0.34;
  }

  .site-footer {
    width: min(calc(100% - 36px), 980px);
    min-height: 104px;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 24px 0;
    text-align: center;
  }

  .footer-separator {
    display: none;
  }

  .social-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .status-badge {
    font-size: 0.98rem;
  }

  .hero-copy h1 {
    font-size: 3.65rem;
  }

  .email-field input,
  .submit-button {
    font-size: 1rem;
  }

  .legal-content h1 {
    font-size: 2.65rem;
  }
}

@media (max-width: 430px) {
  .landing {
    padding-inline: 16px;
  }

  .hero-copy h1 {
    font-size: 2.625rem;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .signup-note {
    align-items: flex-start;
    gap: 10px;
    max-width: 280px;
  }

  .player-promo {
    padding: 16px;
  }

  .player-promo h2 {
    font-size: 1.55rem;
  }

  .player-live-visual,
  .player-mini-artwork {
    min-height: 205px;
  }

  .free-player-widget {
    height: 225px;
    border-radius: 24px;
  }

  .free-player-content {
    padding: 0 18px 28px;
  }

  .free-player-controls {
    gap: 18px;
  }

  .free-player-track strong {
    font-size: 1.2rem;
  }

  .free-player-share-panel {
    gap: 7px;
    height: 46px;
  }

  .free-player-share-close,
  .free-player-social,
  .free-player-share-copy {
    width: 30px;
    height: 30px;
  }

  .player-live-title {
    right: 18px;
    bottom: 78px;
    left: 18px;
  }

  .player-live-title strong {
    font-size: 1.35rem;
  }

  .player-live-actions {
    gap: 14px;
  }
}
