:root {
  --bg: #07090f;
  --surface: #10131c;
  --surface-2: #151925;
  --surface-3: #1a2030;
  --text: #f7f8fb;
  --muted: #9da5b5;
  --line: rgba(255,255,255,.09);
  --accent: #8dff57;
  --accent-2: #65e82f;
  --violet: #8a6cff;
  --orange: #ff9f43;
  --danger: #ff5c72;
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(117,84,255,.14), transparent 35%),
    linear-gradient(180deg, #07090f 0%, #090c14 50%, #07090f 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.player-open { padding-bottom: 104px; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: currentColor; }
[hidden] { display: none !important; }

.ambient {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { top: 10%; left: -180px; background: var(--violet); }
.ambient-two { top: 60%; right: -180px; background: var(--accent); opacity: .08; }

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7,9,15,.76);
  backdrop-filter: blur(20px) saturate(140%);
}
.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: #11151d;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09), 0 10px 25px rgba(0,0,0,.25);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: "Syne", sans-serif; font-size: 18px; letter-spacing: -.03em; }
.brand-copy small { color: var(--muted); font-size: 10px; margin-top: 5px; text-transform: uppercase; letter-spacing: .16em; }
.desktop-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.desktop-nav a { color: #c7cbd5; font-size: 14px; font-weight: 700; transition: .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu-button { display: none; }
.mobile-menu {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16,19,28,.96);
  box-shadow: var(--shadow);
}
.mobile-menu a { display: block; padding: 13px 14px; border-radius: 12px; color: #d7dbe5; font-weight: 700; }
.mobile-menu a:hover { background: rgba(255,255,255,.05); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-small { min-height: 42px; padding-inline: 17px; border-radius: 13px; }
.button-primary { color: #091007; background: var(--accent); box-shadow: 0 12px 36px rgba(141,255,87,.18); }
.button-primary:hover { background: #a2ff77; box-shadow: 0 16px 44px rgba(141,255,87,.26); }
.button-outline { color: var(--text); background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.14); }
.button-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.button-ghost { color: var(--text); background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.1); }
.button-ghost:hover { background: rgba(255,255,255,.08); }

.hero {
  min-height: 690px;
  padding: 88px 0 74px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 62px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c8ced9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(141,255,87,.1), 0 0 18px rgba(141,255,87,.8);
  animation: pulseDot 1.8s infinite;
}
.hero h1 {
  max-width: 720px;
  margin: 22px 0 22px;
  font-family: "Syne", sans-serif;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--accent); }
.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #aab1bf;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.hero-proof p { margin: 0; color: #8f98a8; font-size: 13px; }
.hero-proof strong { color: var(--text); }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #0c1209;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
}
.avatar-stack span:first-child { margin-left: 0; background: #ffbf66; }
.avatar-stack span:nth-child(2) { background: #9f8aff; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.signal-ring {
  position: absolute;
  border: 1px solid rgba(141,255,87,.1);
  border-radius: 50%;
  animation: ringFloat 7s ease-in-out infinite;
}
.ring-one { width: 480px; height: 480px; }
.ring-two { width: 380px; height: 380px; animation-delay: -2s; border-color: rgba(138,108,255,.15); }
.glass-card {
  background: linear-gradient(145deg, rgba(27,32,46,.94), rgba(12,15,23,.96));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 40px 120px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
}
.featured-player {
  position: relative;
  z-index: 2;
  width: min(390px, 86vw);
  padding: 22px;
  border-radius: 34px;
  transform: rotate(1.5deg);
}
.featured-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.status-pill, .quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-pill { color: #cfffba; background: rgba(141,255,87,.1); border: 1px solid rgba(141,255,87,.16); }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.quality-pill { color: #c4b8ff; background: rgba(138,108,255,.1); }
.featured-art-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 26px;
  background: #0f131c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
}
.featured-art-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.48));
  pointer-events: none;
}
.featured-art-shell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.featured-player:hover .featured-art-shell img { transform: scale(1.035); }
.featured-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0b1108;
  background: var(--accent);
  box-shadow: 0 15px 35px rgba(0,0,0,.35);
  cursor: pointer;
  transition: .2s ease;
}
.featured-play:hover { transform: scale(1.06); background: #a7ff80; }
.featured-play svg { width: 26px; height: 26px; }
.pause-icon { display: none; }
.is-playing .play-icon { display: none; }
.is-playing .pause-icon { display: block; }
.featured-meta { padding: 19px 4px 7px; }
.featured-meta p { margin: 0 0 6px; color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.featured-meta h2 { margin: 0; font-family: "Syne", sans-serif; font-size: 25px; letter-spacing: -.035em; }
.featured-meta span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.waveform { height: 38px; display: flex; align-items: center; gap: 5px; padding: 5px 3px 0; }
.waveform i { width: 3px; height: 10px; border-radius: 999px; background: linear-gradient(180deg, var(--accent), rgba(141,255,87,.18)); animation: wave 1.2s ease-in-out infinite; animation-play-state: paused; }
.is-playing .waveform i { animation-play-state: running; }
.waveform i:nth-child(2n) { height: 20px; animation-delay: -.2s; }
.waveform i:nth-child(3n) { height: 28px; animation-delay: -.55s; }
.waveform i:nth-child(5n) { height: 14px; animation-delay: -.8s; }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 174px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  background: rgba(18,22,32,.9);
  box-shadow: 0 22px 55px rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
}
.floating-card-one { left: -24px; top: 84px; animation: float 5s ease-in-out infinite; }
.floating-card-two { right: -12px; bottom: 82px; animation: float 5s ease-in-out infinite -2.2s; }
.floating-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: #0e140a; background: var(--accent); font-weight: 900; }
.floating-card-two .floating-icon { color: white; background: var(--violet); }
.floating-card div { display: grid; }
.floating-card strong { font-size: 11px; }
.floating-card small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { display: grid; justify-items: center; gap: 6px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { font-family: "Syne", sans-serif; font-size: 26px; letter-spacing: -.04em; }
.trust-grid span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.discover { padding: 105px 0 118px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.section-kicker { color: var(--accent); }
.section-heading h2 {
  margin: 10px 0 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-heading p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.centered-heading { justify-content: center; text-align: center; }
.centered-heading p { margin-inline: auto; }
.discover-tools { width: min(390px, 100%); }
.search-box {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  transition: .2s ease;
}
.search-box:focus-within { border-color: rgba(141,255,87,.4); box-shadow: 0 0 0 4px rgba(141,255,87,.06); }
.search-box svg { width: 20px; color: #828b9c; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 13px; }
.search-box input::placeholder { color: #747c8b; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-chip {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #9ea7b7;
  background: rgba(255,255,255,.025);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.filter-chip:hover { color: var(--text); border-color: rgba(255,255,255,.18); }
.filter-chip.active { color: #10140d; border-color: var(--accent); background: var(--accent); }
.station-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.station-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(21,25,37,.96), rgba(13,16,24,.96));
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.station-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.16); box-shadow: 0 28px 65px rgba(0,0,0,.32); }
.station-image {
  position: relative;
  aspect-ratio: 1.65;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #28304a, #11151f 70%);
}
.station-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.58)); }
.station-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.station-card:hover .station-image img { transform: scale(1.05); }
.station-live-badge { position: absolute; z-index: 2; top: 13px; left: 13px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border-radius: 999px; color: #d6ffc3; background: rgba(7,10,12,.65); border: 1px solid rgba(141,255,87,.2); backdrop-filter: blur(8px); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.station-live-badge i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 9px var(--accent); }
.station-card-play {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #0c1109;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  cursor: pointer;
  transition: .2s ease;
}
.station-card-play:hover { transform: scale(1.08); background: #a6ff80; }
.station-card-play svg { width: 21px; height: 21px; }
.station-card-content { padding: 18px 18px 19px; }
.station-card-title-row { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.station-card h3 { min-width: 0; margin: 0; overflow: hidden; color: #f4f6fa; font-size: 16px; line-height: 1.35; white-space: nowrap; text-overflow: ellipsis; }
.station-card-description { min-height: 38px; margin: 9px 0 14px; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: #8992a1; font-size: 11px; line-height: 1.65; }
.station-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.station-tags span { max-width: 46%; overflow: hidden; padding: 6px 8px; border-radius: 8px; color: #aeb5c2; background: rgba(255,255,255,.045); font-size: 9px; font-weight: 800; white-space: nowrap; text-overflow: ellipsis; }
.station-card.active { border-color: rgba(141,255,87,.38); box-shadow: 0 25px 70px rgba(141,255,87,.08); }
.station-card.active .station-card-play { box-shadow: 0 0 0 7px rgba(141,255,87,.12), 0 12px 28px rgba(0,0,0,.35); }
.station-skeleton { min-height: 310px; border-radius: 23px; background: linear-gradient(100deg, rgba(255,255,255,.025) 20%, rgba(255,255,255,.07) 40%, rgba(255,255,255,.025) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.empty-state { padding: 75px 20px; text-align: center; border: 1px dashed rgba(255,255,255,.12); border-radius: 24px; }
.empty-icon { width: 58px; height: 58px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 18px; color: var(--accent); background: rgba(141,255,87,.08); font-size: 25px; }
.empty-state h3 { margin: 0 0 8px; }
.empty-state p { margin: 0; color: var(--muted); font-size: 13px; }
.grid-footer { display: flex; justify-content: center; margin-top: 32px; }

.feature-section { padding: 108px 0 118px; border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent); }
.feature-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; margin-top: 48px; }
.feature-card {
  min-height: 300px;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(20,24,35,.96), rgba(12,15,22,.96));
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.feature-card-large { grid-row: span 2; min-height: 620px; display: flex; flex-direction: column; background: radial-gradient(circle at 80% 15%, rgba(141,255,87,.1), transparent 32%), linear-gradient(145deg, rgba(22,27,39,.98), rgba(11,14,21,.98)); }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 27px; border-radius: 15px; color: #0b1108; background: var(--accent); }
.feature-icon svg { width: 25px; height: 25px; }
.feature-card > span { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.feature-card h3 { max-width: 500px; margin: 12px 0 12px; font-family: "Syne", sans-serif; font-size: 28px; letter-spacing: -.04em; line-height: 1.08; }
.feature-card-large h3 { font-size: clamp(36px, 5vw, 52px); }
.feature-card p { max-width: 530px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.mini-player-visual { margin-top: auto; min-height: 130px; display: flex; align-items: center; gap: 16px; padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 22px; background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.mini-cover { width: 72px; height: 72px; flex: 0 0 auto; overflow: hidden; border-radius: 18px; }
.mini-cover img { width: 100%; height: 100%; object-fit: cover; }
.mini-lines { flex: 1; display: grid; gap: 10px; }
.mini-lines i { display: block; height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); }
.mini-lines i:first-child { width: 72%; background: rgba(255,255,255,.15); }
.mini-button { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: #0b1108; background: var(--accent); }

.app-section { padding: 118px 0; }
.app-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  padding: 70px 76px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 80% 40%, rgba(141,255,87,.15), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(138,108,255,.14), transparent 32%),
    linear-gradient(145deg, #171b28, #0d1018);
  box-shadow: var(--shadow);
}
.app-copy { position: relative; z-index: 2; }
.app-copy h2 { margin: 12px 0 18px; font-family: "Syne", sans-serif; font-size: clamp(42px, 5vw, 66px); line-height: .98; letter-spacing: -.06em; }
.app-copy > p { max-width: 500px; margin: 0; color: #a7afbd; font-size: 15px; line-height: 1.75; }
.app-copy ul { display: grid; gap: 12px; margin: 27px 0 31px; padding: 0; list-style: none; }
.app-copy li { color: #d6dae2; font-size: 13px; font-weight: 700; }
.app-copy li span { width: 23px; height: 23px; display: inline-grid; place-items: center; margin-right: 10px; border-radius: 50%; color: #0b1108; background: var(--accent); font-size: 11px; }
.play-store-badge { width: fit-content; display: flex; align-items: center; gap: 12px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: #050608; transition: .2s ease; }
.play-store-badge:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); }
.play-store-badge svg { width: 30px; height: 30px; }
.play-store-badge span { display: grid; line-height: 1; }
.play-store-badge small { font-size: 8px; letter-spacing: .08em; }
.play-store-badge strong { margin-top: 4px; font-size: 18px; }
.phone-stage { position: relative; min-height: 500px; display: grid; place-items: center; }
.phone-glow { position: absolute; width: 330px; height: 330px; border-radius: 50%; background: var(--accent); filter: blur(100px); opacity: .12; }
.phone { position: relative; z-index: 2; width: 268px; height: 530px; padding: 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 41px; background: #05070b; box-shadow: 0 45px 90px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.035); transform: rotate(6deg); }
.phone-speaker { position: absolute; z-index: 3; top: 18px; left: 50%; width: 80px; height: 23px; transform: translateX(-50%); border-radius: 999px; background: #030407; }
.phone-screen { width: 100%; height: 100%; overflow: hidden; padding: 19px 18px; border-radius: 33px; text-align: center; background: radial-gradient(circle at 50% 20%, rgba(138,108,255,.16), transparent 30%), linear-gradient(180deg, #111522, #080a10); }
.phone-status { display: flex; justify-content: space-between; padding: 0 7px; color: #c9ced8; font-size: 8px; }
.phone-brand { display: flex; align-items: center; gap: 7px; margin-top: 24px; text-align: left; }
.phone-brand img { width: 27px; height: 27px; border-radius: 8px; }
.phone-brand span { font-family: "Syne", sans-serif; font-size: 11px; font-weight: 800; }
.phone-screen > p { margin: 26px 0 12px; color: var(--accent); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.phone-art { width: 190px; height: 190px; margin-inline: auto; overflow: hidden; border-radius: 24px; box-shadow: 0 22px 48px rgba(0,0,0,.4); }
.phone-art img { width: 100%; height: 100%; object-fit: cover; }
.phone-screen h3 { margin: 19px 0 4px; overflow: hidden; font-family: "Syne", sans-serif; font-size: 17px; white-space: nowrap; text-overflow: ellipsis; }
.phone-screen > span { color: var(--muted); font-size: 8px; }
.phone-wave { height: 38px; margin: 16px 0 10px; display: flex; justify-content: center; align-items: center; gap: 4px; }
.phone-wave i { width: 3px; height: 12px; border-radius: 99px; background: var(--accent); opacity: .72; }
.phone-wave i:nth-child(2n) { height: 25px; }
.phone-wave i:nth-child(3n) { height: 18px; }
.phone-controls { display: flex; align-items: center; justify-content: center; gap: 28px; }
.phone-controls b { color: #98a0af; font-size: 23px; }
.phone-controls strong { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #0b1108; background: var(--accent); font-size: 15px; }

.site-footer { padding: 72px 0 26px; border-top: 1px solid var(--line); background: #06080d; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 46px; }
.footer-brand p { max-width: 390px; margin: 21px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.footer-grid h3 { margin: 0 0 18px; color: #e9ebf0; font-size: 12px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(.footer-brand) a { margin: 0 0 11px; color: #878f9e; font-size: 11px; transition: .2s ease; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--text); }
.footer-bottom { margin-top: 55px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #646c79; font-size: 10px; }

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 122px;
  max-width: calc(100% - 30px);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  color: #e9edf3;
  background: rgba(20,24,34,.95);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 700;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.toast.visible { transform: translate(-50%, 0); opacity: 1; }
.toast.error { border-color: rgba(255,92,114,.25); color: #ffc2cb; }

.bottom-player {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(980px, calc(100% - 28px));
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 23px;
  background: rgba(14,17,25,.94);
  box-shadow: 0 25px 80px rgba(0,0,0,.6);
  backdrop-filter: blur(24px) saturate(150%);
  animation: playerUp .35s ease both;
}
.player-inner { min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 11px 17px; }
.player-station { min-width: 0; display: flex; align-items: center; gap: 12px; }
.player-station img { width: 55px; height: 55px; flex: 0 0 auto; object-fit: cover; border-radius: 15px; background: #171b24; }
.player-station div { min-width: 0; display: grid; }
.player-station strong, .player-station span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.player-station strong { font-size: 13px; }
.player-station span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.player-controls { display: flex; align-items: center; gap: 9px; }
.player-control { display: grid; place-items: center; border: 0; border-radius: 50%; cursor: pointer; transition: .2s ease; }
.player-control:hover { transform: scale(1.06); }
.player-control svg { width: 20px; height: 20px; }
.main-control { width: 51px; height: 51px; color: #0b1108; background: var(--accent); }
.secondary-control { width: 38px; height: 38px; color: #c5cad4; background: rgba(255,255,255,.055); }
.player-live { justify-self: end; display: flex; align-items: center; gap: 7px; color: #959dab; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.player-live span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.player-progress { height: 2px; background: rgba(255,255,255,.05); }
.player-progress i { display: block; width: 0; height: 100%; background: var(--accent); }
.bottom-player.loading .player-progress i { animation: loadingLine 1.2s infinite; }

.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 13px; color: white; background: rgba(255,255,255,.04); }
.mobile-menu-button span { width: 18px; height: 2px; display: block; margin: 4px auto; border-radius: 3px; background: currentColor; transition: .2s ease; }
.mobile-menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-button.open span:nth-child(2) { opacity: 0; }
.mobile-menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@keyframes pulseDot { 50% { box-shadow: 0 0 0 9px rgba(141,255,87,.04), 0 0 18px rgba(141,255,87,.8); } }
@keyframes ringFloat { 50% { transform: scale(1.04) rotate(4deg); opacity: .5; } }
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes wave { 0%,100% { transform: scaleY(.45); opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes playerUp { from { opacity: 0; transform: translate(-50%, 25px); } }
@keyframes loadingLine { 0% { width: 0; margin-left: 0; } 50% { width: 55%; margin-left: 20%; } 100% { width: 0; margin-left: 100%; } }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero h1 { font-size: clamp(52px, 7vw, 72px); }
  .floating-card-one { left: -5px; }
  .floating-card-two { right: -5px; }
  .station-grid { grid-template-columns: repeat(2, 1fr); }
  .app-panel { padding: 60px 45px; }
}

@media (max-width: 820px) {
  .desktop-nav, .desktop-download { display: none; }
  .mobile-menu-button { display: block; }
  .hero { min-height: auto; padding-top: 70px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-lead { max-width: 620px; }
  .hero-visual { min-height: 570px; }
  .floating-card-one { left: 4%; }
  .floating-card-two { right: 4%; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .discover-tools { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-row: auto; min-height: 520px; }
  .app-panel { min-height: auto; grid-template-columns: 1fr; padding: 58px 40px 30px; }
  .app-copy { text-align: center; }
  .app-copy > p { margin-inline: auto; }
  .app-copy ul { width: fit-content; margin-inline: auto; text-align: left; }
  .play-store-badge { margin-inline: auto; }
  .phone-stage { margin-top: 42px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body.player-open { padding-bottom: 118px; }
  .section-shell, .nav-shell, .mobile-menu { width: min(100% - 28px, 1180px); }
  .nav-shell { min-height: 69px; }
  .brand-mark { width: 39px; height: 39px; border-radius: 12px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .hero { padding: 56px 0 60px; gap: 40px; }
  .hero h1 { margin-top: 18px; font-size: clamp(47px, 15vw, 64px); }
  .hero-lead { font-size: 15px; line-height: 1.7; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 475px; }
  .featured-player { width: min(340px, 94vw); padding: 17px; border-radius: 28px; }
  .featured-art-shell { border-radius: 22px; }
  .featured-play { width: 52px; height: 52px; }
  .signal-ring { display: none; }
  .floating-card { min-width: 145px; padding: 10px; }
  .floating-card-one { top: 25px; left: -4px; }
  .floating-card-two { right: -5px; bottom: 28px; }
  .floating-icon { width: 30px; height: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }
  .trust-grid > div { min-height: 72px; border-right: 0; }
  .discover { padding: 80px 0 90px; }
  .section-heading h2 { font-size: 39px; }
  .station-grid { grid-template-columns: 1fr; }
  .station-image { aspect-ratio: 1.85; }
  .feature-section { padding: 82px 0 90px; }
  .feature-card { min-height: auto; padding: 24px; }
  .feature-card-large { min-height: 475px; }
  .mini-player-visual { padding: 16px; }
  .mini-cover { width: 58px; height: 58px; }
  .app-section { padding: 85px 0; }
  .app-panel { padding: 46px 22px 18px; border-radius: 28px; }
  .app-copy h2 { font-size: 43px; }
  .phone-stage { min-height: 460px; transform: scale(.88); margin: 0 -35px -18px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .player-inner { grid-template-columns: 1fr auto; min-height: 87px; padding: 10px 12px; }
  .player-live { display: none; }
  .player-station img { width: 50px; height: 50px; border-radius: 14px; }
  .secondary-control:first-child { display: none; }
}

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