:root {
  --bg: #030503;
  --panel: rgba(11, 15, 10, 0.88);
  --panel-solid: #0b0f0a;
  --text: #f7f8f3;
  --muted: #a7afa1;
  --green: #5dff16;
  --green-deep: #2aa900;
  --yellow: #ffc51a;
  --red: #ff161f;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 22px 75px rgba(0, 0, 0, 0.46);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); width: 100%; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(76, 255, 24, 0.08), transparent 28%),
    radial-gradient(circle at 20% 45%, rgba(255, 197, 26, 0.04), transparent 24%),
    linear-gradient(180deg, #020302 0%, #050805 54%, #020302 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body.modal-lock { overflow: hidden; }
button, a, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--green); color: #071002; }

.page-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .18; }
.orb-green { width: 330px; height: 330px; background: var(--green); right: -90px; top: 14%; animation: floatOrb 11s ease-in-out infinite; }
.orb-yellow { width: 240px; height: 240px; background: var(--yellow); left: -100px; top: 52%; animation: floatOrb 14s ease-in-out infinite reverse; }
.orb-red { width: 190px; height: 190px; background: var(--red); right: 18%; bottom: -90px; animation: floatOrb 13s ease-in-out infinite; }
.grid-glow {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent, #000 26%, #000 65%, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(4, 7, 4, 0.76);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  min-width: 50px;
  height: 44px;
  padding: 0 8px;
  border-radius: 12px;
  color: #061004;
  font-weight: 950;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--green), #b7ff13);
  box-shadow: 0 0 30px rgba(93,255,22,.22);
}
.brand-copy { display: grid; line-height: 1.05; gap: 4px; }
.brand-copy strong { font-size: 1rem; }
.brand-copy small { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.main-nav { justify-self: center; display: flex; align-items: center; gap: 26px; color: #c9cec5; font-size: .9rem; }
.main-nav a { transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--green); transform: translateY(-1px); }

.header-live-btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 17px;
  background: #f4f7ef;
  color: #081006;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-live-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(93,255,22,.18); }

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,22,31,.65);
  animation: pulseLive 1.6s infinite;
  flex: 0 0 auto;
}

.hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 110px);
  padding: 82px 0 70px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow, .mini-label {
  color: #d9dfd2;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow span { width: 26px; height: 2px; background: var(--green); box-shadow: 0 0 12px rgba(93,255,22,.8); }

.hero h1 {
  margin: 18px 0 22px;
  max-width: 690px;
  font-size: clamp(3.6rem, 8vw, 7.35rem);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 950;
}
.hero h1 em {
  display: block;
  margin-top: .14em;
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 34px rgba(93,255,22,.16);
}

.hero-lead { max-width: 625px; margin: 0; color: #c0c7ba; font-size: clamp(1.02rem, 1.4vw, 1.16rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-btn, .secondary-btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 900;
  font-size: .94rem;
  cursor: pointer;
}
.primary-btn {
  border: 0;
  color: #061003;
  background: linear-gradient(135deg, var(--green) 0%, #b8ff13 100%);
  box-shadow: 0 15px 40px rgba(93,255,22,.17);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(93,255,22,.26); filter: saturate(112%); }
.secondary-btn { border: 1px solid var(--line); background: rgba(255,255,255,.035); color: #f1f4ed; transition: border-color .2s ease, background .2s ease; }
.secondary-btn:hover { border-color: rgba(93,255,22,.45); background: rgba(93,255,22,.05); }

.play-icon, .modal-play-icon { display: inline-block; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }

.signal-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.signal-row > div {
  min-width: 0;
  padding: 15px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.028);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
}
.signal-icon {
  grid-row: 1 / 3;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: .65rem;
  font-weight: 950;
  border: 1px solid rgba(93,255,22,.24);
  background: rgba(93,255,22,.07);
}
.signal-row strong { font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.signal-row small { color: #8e9788; font-size: .68rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hero-visual { min-width: 0; }
.radio-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.03;
  display: grid;
  place-items: center;
}
.stage-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(93,255,22,.2); }
.ring-one { width: 94%; aspect-ratio: 1; animation: spinRing 18s linear infinite; border-style: dashed; opacity: .5; }
.ring-two { width: 78%; aspect-ratio: 1; border-color: rgba(255,197,26,.17); animation: spinRing 25s linear infinite reverse; }
.ring-one::before, .ring-two::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px rgba(93,255,22,.9); }
.ring-one::before { top: 12%; right: 13%; }
.ring-two::after { bottom: 6%; left: 22%; background: var(--yellow); box-shadow: 0 0 20px rgba(255,197,26,.65); }

.logo-frame {
  position: relative;
  z-index: 2;
  width: 88%;
  overflow: hidden;
  border-radius: 31px;
  border: 1px solid rgba(255,255,255,.12);
  background: #000;
  box-shadow: 0 32px 90px rgba(0,0,0,.48), 0 0 70px rgba(76,255,16,.09);
  transform: rotate(-2.1deg);
}
.logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(93,255,22,.08);
  pointer-events: none;
}
.logo-frame img { width: 100%; height: auto; }
.logo-shine {
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.12) 49%, transparent 58%);
  transform: translateX(-75%);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}

.now-card {
  position: absolute;
  z-index: 5;
  left: 1%;
  right: 3%;
  bottom: 2%;
  margin: 0 auto;
  max-width: 440px;
  padding: 18px 19px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(8,11,8,.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.now-status { display: flex; align-items: center; gap: 8px; color: #d4dacd; font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.now-card > strong { display: block; margin-top: 7px; font-size: 1.1rem; }
.now-card > small { color: #8f988a; font-size: .78rem; }

.equalizer { height: 30px; display: flex; align-items: flex-end; gap: 4px; margin-top: 14px; opacity: .5; }
.equalizer i { display: block; flex: 1; height: 4px; min-width: 3px; border-radius: 4px; background: linear-gradient(to top, var(--green), var(--yellow)); transform-origin: bottom; }
.equalizer.is-active i { animation: eq 820ms ease-in-out infinite alternate; }
.equalizer.is-active i:nth-child(2n) { animation-duration: 560ms; }
.equalizer.is-active i:nth-child(3n) { animation-duration: 1020ms; }
.equalizer.is-active i:nth-child(4n) { animation-delay: -250ms; }

.ticker { overflow: hidden; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(93,255,22,.035); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; color: #e7ebe2; font-size: .76rem; font-weight: 900; letter-spacing: .16em; white-space: nowrap; animation: ticker 26s linear infinite; }
.ticker b { color: var(--green); font-size: 1rem; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.features { padding: 110px 0 82px; }
.section-heading { max-width: 710px; margin-bottom: 38px; }
.section-heading > span { color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.section-heading h2, .apps-copy h2, .final-cta h2 { margin: 10px 0 14px; font-size: clamp(2.2rem, 5vw, 4.1rem); line-height: 1; letter-spacing: -.045em; }
.section-heading p, .apps-copy p { color: #9fa99a; font-size: 1rem; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 245px; padding: 27px; border-radius: 22px; border: 1px solid rgba(255,255,255,.085); background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.018)); position: relative; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.feature-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -65px; top: -65px; background: var(--green); filter: blur(35px); opacity: .08; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(93,255,22,.23); }
.feature-number { color: var(--green); font-size: .72rem; font-weight: 950; letter-spacing: .12em; }
.feature-card h3 { margin: 70px 0 10px; font-size: 1.22rem; }
.feature-card p { margin: 0; color: #969f91; font-size: .9rem; line-height: 1.7; }

.apps { padding: 30px 0 92px; }
.apps-panel {
  min-height: 390px;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 90% 20%, rgba(93,255,22,.12), transparent 28%),
    radial-gradient(circle at 70% 110%, rgba(255,197,26,.08), transparent 30%),
    #080b08;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow);
}
.apps-copy h2 { max-width: 640px; font-size: clamp(2.3rem, 4.8vw, 4rem); }
.apps-copy p { max-width: 610px; }
.store-buttons { display: grid; gap: 14px; }
.store-card {
  min-height: 90px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.store-card:hover, .store-card.has-link:hover { transform: translateX(5px); border-color: rgba(93,255,22,.32); background: rgba(93,255,22,.055); }
.store-icon { width: 51px; height: 51px; border-radius: 15px; display: grid; place-items: center; background: var(--green); color: #071004; }
.store-icon.apple { background: #f3f5f0; color: #050705; }
.store-icon svg { width: 28px; height: 28px; fill: currentColor; }
.store-card > span:last-child { display: grid; line-height: 1.1; gap: 4px; }
.store-card small { color: #929b8d; font-size: .75rem; }
.store-card strong { font-size: 1.15rem; }

.final-cta {
  margin-bottom: 90px;
  padding: 35px 38px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.final-cta > div > span { color: var(--red); font-size: .72rem; font-weight: 950; letter-spacing: .16em; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin-bottom: 0; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 120px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #899184;
  font-size: .78rem;
}
.site-footer > div { display: grid; gap: 2px; }
.site-footer strong { color: #e9ede4; font-size: .9rem; }
.site-footer p { margin: 0; }

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.welcome-modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 34px);
  overflow: auto;
  border-radius: 26px;
  padding: 18px 22px 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(12,16,11,.98), rgba(5,8,5,.98));
  box-shadow: 0 36px 110px rgba(0,0,0,.68), 0 0 90px rgba(93,255,22,.09);
  text-align: center;
  transform: translateY(16px) scale(.98);
  transition: transform .28s ease;
}
.welcome-modal.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-logo-wrap {
  width: min(260px, 62%);
  aspect-ratio: 16 / 9;
  margin: 0 auto 12px;
  padding: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle at top, rgba(93,255,22,.10), transparent 55%), #030603;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 12px 35px rgba(0,0,0,.28);
}
.modal-logo-wrap img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; border-radius: 14px; background: #000; }
.modal-glow { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(93,255,22,.045); }
.modal-close { position: absolute; z-index: 3; top: 28px; right: 32px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.55); color: white; font-size: 1.5rem; line-height: 1; cursor: pointer; backdrop-filter: blur(10px); }
.modal-live { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: #e7ebe3; font-size: .7rem; font-weight: 950; letter-spacing: .16em; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); }
.modal-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 13px rgba(255,22,31,.75); }
.modal-card h2 { margin: 9px 0 8px; font-size: clamp(1.8rem, 6vw, 2.55rem); line-height: 1.05; letter-spacing: -.04em; }
.modal-card > p { max-width: 470px; margin: 0 auto; color: #9ca597; font-size: .9rem; line-height: 1.6; }
.modal-play { width: 100%; margin-top: 20px; min-height: 70px; border: 0; border-radius: 17px; padding: 12px 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 15px; color: #071004; background: linear-gradient(135deg, var(--green), #c2ff19); box-shadow: 0 17px 45px rgba(93,255,22,.18); }
.modal-play > span:last-child { display: grid; text-align: left; line-height: 1.2; gap: 3px; }
.modal-play strong { font-size: .9rem; letter-spacing: .04em; }
.modal-play small { font-size: .71rem; color: rgba(5,15,2,.7); }
.modal-minimize { border: 0; background: transparent; color: #9ba496; cursor: pointer; margin-top: 13px; font-size: .78rem; padding: 6px 10px; }
.modal-card.is-offline .modal-live { color: #ffd9d9; border-color: rgba(255,22,31,.25); background: rgba(255,22,31,.09); }
.modal-card.is-offline .modal-live i { background: var(--red); box-shadow: 0 0 13px rgba(255,22,31,.75); }
.floating-player.is-offline .floating-accent { background: linear-gradient(var(--red), #ff8844); }
.floating-player.is-offline .player-main-btn { background: #2a1212; color: #ffd8d8; box-shadow: 0 0 28px rgba(255,22,31,.1); }
.floating-player.is-offline .player-topline { color: #ffcfca; }
.floating-player.is-offline .player-info small { color: #c99a96; }
.now-card.is-offline { border-color: rgba(255,22,31,.18); box-shadow: 0 32px 90px rgba(0,0,0,.48), 0 0 50px rgba(255,22,31,.07); }
.now-card.is-offline .now-status { color: #ffd5cf; }
.now-card.is-offline .equalizer { opacity: .18; }

.floating-player {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(760px, calc(100% - 28px));
  min-height: 76px;
  padding: 10px 14px 10px 12px;
  border-radius: 21px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(7,10,7,.91);
  box-shadow: 0 20px 70px rgba(0,0,0,.54), 0 0 55px rgba(93,255,22,.07);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  overflow: hidden;
}
.floating-player.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.floating-accent { position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(var(--green), var(--yellow), var(--red)); opacity: .9; }
.player-main-btn { width: 54px; height: 54px; border: 0; border-radius: 16px; background: var(--green); color: #061003; display: grid; place-items: center; cursor: pointer; box-shadow: 0 0 28px rgba(93,255,22,.16); }
.player-play-shape { display: block; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid currentColor; margin-left: 3px; }
.player-play-shape.is-pause { width: 13px; height: 17px; border: 0; margin: 0; background: linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64% 100%); }
.player-main-btn.is-loading .player-play-shape { width: 19px; height: 19px; margin: 0; border: 2px solid rgba(5,14,2,.2); border-top-color: currentColor; border-radius: 50%; animation: loader .8s linear infinite; }
.player-info { min-width: 0; line-height: 1.15; }
.player-topline { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; color: #b8c0b2; font-size: .62rem; letter-spacing: .16em; font-weight: 950; }
.player-info strong, .player-info small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-info strong { font-size: .94rem; }
.player-info small { margin-top: 4px; color: #7f897a; font-size: .69rem; }
.mini-equalizer { width: 50px; height: 34px; display: flex; gap: 3px; align-items: flex-end; opacity: .4; }
.mini-equalizer i { flex: 1; height: 5px; border-radius: 3px; background: var(--green); transform-origin: bottom; }
.mini-equalizer.is-active { opacity: 1; }
.mini-equalizer.is-active i { animation: eq 700ms ease-in-out infinite alternate; }
.mini-equalizer.is-active i:nth-child(2) { animation-duration: 430ms; }
.mini-equalizer.is-active i:nth-child(3) { animation-duration: 880ms; }
.mini-equalizer.is-active i:nth-child(4) { animation-duration: 560ms; }
.volume-wrap { display: flex; align-items: center; gap: 7px; }
.volume-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; background: rgba(255,255,255,.04); color: #cbd1c5; cursor: pointer; }
.volume-wrap input { width: 90px; accent-color: var(--green); cursor: pointer; }

.toast { position: fixed; z-index: 120; left: 50%; top: 24px; transform: translate(-50%, -20px); max-width: min(520px, calc(100% - 30px)); padding: 13px 16px; border-radius: 13px; border: 1px solid rgba(255,255,255,.12); background: #111510; color: #eef2e9; box-shadow: var(--shadow); font-size: .82rem; opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; text-align: center; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@keyframes pulseLive { 0% { box-shadow: 0 0 0 0 rgba(255,22,31,.55); } 70% { box-shadow: 0 0 0 8px rgba(255,22,31,0); } 100% { box-shadow: 0 0 0 0 rgba(255,22,31,0); } }
@keyframes floatOrb { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-18px,24px,0) scale(1.08); } }
@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes shine { 0%, 20% { transform: translateX(-75%); } 48%, 100% { transform: translateX(75%); } }
@keyframes eq { from { transform: scaleY(.15); } to { transform: scaleY(1); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes loader { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr; }
  .main-nav { display: none; }
  .header-live-btn { justify-self: end; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .signal-row { max-width: 700px; margin-inline: auto; margin-top: 36px; }
  .hero-visual { max-width: 720px; margin: 0 auto; width: 100%; }
  .radio-stage { aspect-ratio: 1.06 / 1; }
  .logo-frame { width: 78%; }
  .now-card { bottom: 0; }
  .apps-panel { grid-template-columns: 1fr; gap: 28px; }
}

/* Estabilizacion para moviles: evita que los efectos de fondo y las animaciones
   con transform hagan parecer que toda la pagina se desplaza. */
@media (max-width: 980px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .page-effects {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
    contain: layout paint;
  }

  .orb-green, .orb-yellow, .orb-red {
    animation: none;
    transform: none;
  }

  .ring-one, .ring-two {
    animation: none;
  }

  .reveal {
    transform: none;
    transition: opacity .45s ease;
  }

  .reveal.is-revealed {
    transform: none;
  }

  .welcome-modal {
    height: 100dvh;
  }

  .modal-card {
    max-height: calc(100dvh - 28px);
  }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; padding-left: 12px; min-height: 64px; border-radius: 18px; }
  .brand-mark { min-width: 45px; height: 40px; font-size: .88rem; }
  .brand-copy small { display: none; }
  .header-live-btn { padding: 11px 12px; font-size: .76rem; }
  .hero { width: calc(100% - 28px); padding: 56px 0 52px; gap: 34px; }
  .hero h1 { font-size: clamp(3.55rem, 18vw, 5.8rem); }
  .hero-lead { font-size: .96rem; }
  .signal-row { grid-template-columns: 1fr; max-width: 420px; }
  .signal-row > div { grid-template-columns: auto 1fr; }
  .radio-stage { aspect-ratio: .94 / 1; }
  .logo-frame { width: 94%; transform: rotate(-1deg); border-radius: 24px; }
  .ring-one { width: 110%; }
  .ring-two { width: 90%; }
  .now-card { left: 3%; right: 3%; padding: 15px; }
  .section-shell { width: calc(100% - 28px); }
  .features { padding-top: 84px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 210px; }
  .feature-card h3 { margin-top: 54px; }
  .apps-panel { padding: 28px 20px; border-radius: 24px; }
  .final-cta { align-items: flex-start; flex-direction: column; padding: 30px 6px; }
  .site-footer { width: calc(100% - 28px); align-items: flex-start; flex-direction: column; padding-bottom: 116px; }
  .floating-player { grid-template-columns: auto 1fr auto; gap: 10px; min-height: 72px; padding: 9px 10px; border-radius: 19px; }
  .mini-equalizer { display: none; }
  .volume-wrap input { display: none; }
  .volume-btn { width: 38px; height: 38px; }
  .player-main-btn { width: 52px; height: 52px; }
  .modal-card { padding: 14px 16px 21px; border-radius: 22px; }
  .modal-logo-wrap { width: min(220px, 68%); }
  .modal-close { top: 23px; right: 23px; }
}

@media (max-width: 430px) {
  .header-live-btn { width: 44px; height: 42px; padding: 0; font-size: 0; justify-content: center; }
  .header-live-btn .live-dot { width: 10px; height: 10px; }
  .brand-copy strong { font-size: .92rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .primary-btn, .secondary-btn { width: 100%; }
  .radio-stage { min-height: 410px; }
  .logo-frame { margin-top: -30px; }
  .now-card { bottom: 4px; }
  .apps-copy h2 { font-size: 2.25rem; }
  .store-card { min-height: 82px; }
  .floating-player { width: calc(100% - 16px); bottom: max(8px, env(safe-area-inset-bottom)); }
  .player-info strong { font-size: .85rem; }
  .player-info small { max-width: 165px; }
}

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