:root {
  --bg: #06151d;
  --bg-2: #081e29;
  --surface: rgba(10, 32, 43, .68);
  --surface-solid: #0b202a;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .19);
  --text: #f4f8f9;
  --muted: #8ea4ad;
  --coral: #ff5547;
  --coral-2: #ff826d;
  --cyan: #38d6e8;
  --violet: #7659ff;
  --green: #5cffb0;
  --shadow: 0 36px 100px rgba(0, 0, 0, .42);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--coral); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; fill: currentColor; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: #fff; color: #000; border-radius: 12px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.shell { width: var(--shell); margin: 0 auto; }
.section { position: relative; padding: 120px 0; }
.kicker, .eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 800; color: var(--cyan); }
.kicker { display: inline-block; margin-bottom: 18px; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(92,255,176,.08), 0 0 22px rgba(92,255,176,.7); animation: livePulse 1.8s infinite; }

.ambient { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.ambient__orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .16; }
.ambient__orb--one { width: 680px; height: 680px; right: -240px; top: -180px; background: var(--violet); animation: driftOne 16s ease-in-out infinite alternate; }
.ambient__orb--two { width: 540px; height: 540px; left: -180px; top: 42%; background: var(--cyan); animation: driftTwo 18s ease-in-out infinite alternate; }
.ambient__orb--three { width: 460px; height: 460px; right: 24%; bottom: -280px; background: var(--coral); animation: driftOne 20s ease-in-out infinite alternate-reverse; }
.ambient__grid { position: absolute; inset: 0; opacity: .13; 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: 84px 84px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
.ambient__noise { position: absolute; inset: 0; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); }

.site-header { position: fixed; left: 0; right: 0; top: 0; z-index: 50; padding: 18px 0; transition: transform .45s var(--ease), background .35s, border-color .35s, padding .35s; border-bottom: 1px solid transparent; }
.header-scrolled .site-header { padding: 10px 0; background: rgba(6,21,29,.82); backdrop-filter: blur(22px); border-color: var(--line); }
.header-hidden .site-header { transform: translateY(-110%); }
.site-header__inner { height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 190px; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 28px rgba(255,85,71,.16); }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-size: 14px; letter-spacing: .04em; }
.brand small { margin-top: 7px; color: var(--muted); font-size: 9px; letter-spacing: .24em; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { position: relative; color: #b7c6cb; font-size: 13px; font-weight: 650; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--coral); transition: right .3s var(--ease); }
.nav a:hover { color: #fff; }
.nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 190px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.055); border: 1px solid var(--line); cursor: pointer; transition: background .25s, transform .25s, border-color .25s; }
.icon-button svg { width: 17px; }
.icon-button:hover { background: rgba(255,255,255,.11); border-color: var(--line-strong); transform: translateY(-2px); }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 1px; margin: 6px auto; background: #fff; transition: transform .3s, margin .3s; }

.button { display: inline-flex; min-height: 54px; padding: 0 24px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .02em; cursor: pointer; transition: transform .28s var(--ease), box-shadow .28s, background .28s, border-color .28s; }
.button:hover { transform: translateY(-3px); }
.button--small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--coral), #ff6a4f); box-shadow: 0 16px 38px rgba(255,85,71,.24), inset 0 1px rgba(255,255,255,.26); }
.button--primary:hover { box-shadow: 0 22px 52px rgba(255,85,71,.35), inset 0 1px rgba(255,255,255,.26); }
.button--ghost { background: rgba(255,255,255,.055); border-color: var(--line); backdrop-filter: blur(14px); }
.button--ghost:hover { background: rgba(255,255,255,.10); border-color: var(--line-strong); }
.play-symbol { position: relative; display: inline-block; width: 12px; height: 14px; }
.play-symbol::before { content: ""; position: absolute; left: 2px; top: 1px; border-left: 10px solid currentColor; border-top: 6px solid transparent; border-bottom: 6px solid transparent; transition: all .2s; }
.is-playing .play-symbol::before { left: 1px; top: 1px; width: 9px; height: 12px; border: 0; background: linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64%); }

.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 150px; padding-bottom: 110px; overflow: hidden; }
.hero__word { position: absolute; top: 17%; left: -2%; font-weight: 950; font-size: clamp(170px, 24vw, 430px); line-height: .72; letter-spacing: -.085em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055); user-select: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .9fr); gap: 80px; align-items: center; }
.hero__copy { padding-top: 32px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 28px; color: #a8bdc4; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(56px, 6.3vw, 104px); line-height: .91; letter-spacing: -.075em; font-weight: 850; }
.hero h1 em { color: var(--coral); font-style: normal; text-shadow: 0 0 44px rgba(255,85,71,.14); }
.hero__lead { max-width: 650px; margin: 32px 0 0; color: #a8b9bf; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.72; }
.hero__actions { display: flex; gap: 12px; margin-top: 36px; }
.proof { display: flex; gap: 30px; margin-top: 54px; }
.proof div { display: flex; flex-direction: column; gap: 6px; }
.proof strong { font-size: 22px; letter-spacing: -.03em; }
.proof span { color: var(--muted); font-size: 11px; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: #6f858d; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; }
.scroll-cue span { width: 24px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; position: relative; }
.scroll-cue span::after { content: ""; width: 3px; height: 7px; border-radius: 4px; background: var(--coral); position: absolute; left: 50%; top: 7px; transform: translateX(-50%); animation: scrollDot 2s infinite; }

.player-stage { position: relative; perspective: 1200px; }
.player-glow { position: absolute; inset: 16% 8% 5%; background: radial-gradient(circle, rgba(56,214,232,.24), transparent 55%), radial-gradient(circle at 70% 25%, rgba(118,89,255,.22), transparent 43%); filter: blur(45px); }
.player-card { position: relative; padding: 18px; background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.16); border-radius: 36px; box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.16); backdrop-filter: blur(28px); transform: rotateY(-2deg) rotateX(1deg); }
.player-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.13), transparent 22% 73%, rgba(56,214,232,.06)); }
.station-tabs { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 6px; margin-bottom: 16px; border-radius: 18px; background: rgba(0,0,0,.22); }
.station-tab { padding: 12px 8px; border: 0; border-radius: 13px; background: transparent; color: #8399a1; font-size: 10px; letter-spacing: .12em; font-weight: 900; cursor: pointer; transition: all .25s; }
.station-tab.is-active { color: #fff; background: rgba(255,255,255,.1); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.cover-wrap { position: relative; isolation: isolate; aspect-ratio: 1; border-radius: 25px; overflow: hidden; background: #0b1b22; }
.track-cover { width: 100%; height: 100%; object-fit: cover; transition: transform 10s linear, filter .6s; }
.is-playing .track-cover { transform: scale(1.055); }
.cover-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,11,15,.5), transparent 55%), linear-gradient(135deg, rgba(255,85,71,.06), rgba(56,214,232,.04)); pointer-events: none; }
.cover-rings { position: absolute; z-index: 2; inset: 8%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; opacity: 0; transform: scale(.8); transition: opacity .5s, transform .5s; }
.cover-rings::before, .cover-rings::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.cover-rings::before { inset: 12%; }.cover-rings::after { inset: 25%; }
.is-playing .cover-rings { opacity: 1; transform: scale(1); animation: slowRotate 18s linear infinite; }
.cover-play { position: absolute; z-index: 3; left: 50%; top: 50%; width: 76px; height: 76px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(5,20,27,.58); backdrop-filter: blur(16px); display: grid; place-items: center; cursor: pointer; transition: transform .25s, background .25s; box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.cover-play:hover { transform: translate(-50%,-50%) scale(1.08); background: rgba(255,85,71,.82); }
.now-playing { padding: 24px 8px 18px; }
.now-playing__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: #8499a1; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.now-playing__meta span:first-child { display: flex; align-items: center; gap: 9px; }
.quality { padding: 6px 9px; border-radius: 8px; color: #b6c8ce; background: rgba(255,255,255,.06); }
.now-playing h2 { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: clamp(20px, 2.25vw, 30px); letter-spacing: -.04em; }
.now-playing p { margin: 7px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #94a9b0; font-size: 13px; }
.equalizer { height: 42px; padding: 0 8px 9px; display: flex; align-items: flex-end; gap: 4px; }
.equalizer span { flex: 1; min-width: 2px; height: 14%; border-radius: 5px; background: linear-gradient(to top, var(--coral), #ff8d72); opacity: .45; transform-origin: bottom; }
.is-playing .equalizer span { opacity: 1; animation: eq .82s var(--ease) infinite alternate; }
.equalizer span:nth-child(3n) { animation-duration: .56s; }.equalizer span:nth-child(4n) { animation-duration: 1.02s; }.equalizer span:nth-child(5n) { animation-duration: .68s; }
.player-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 8px 5px; border-top: 1px solid var(--line); }
.listeners { display: grid; grid-template-columns: 20px auto; column-gap: 7px; align-items: center; }
.listeners svg { width: 18px; color: var(--cyan); grid-row: 1 / 3; }
.listeners b { font-size: 13px; }.listeners span { color: #71878f; font-size: 9px; }
.volume { display: flex; align-items: center; gap: 9px; }
.volume svg { width: 17px; color: #738990; }
.volume input { width: 88px; accent-color: var(--coral); cursor: pointer; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-heading h2, .manifesto h2, .apps h2, .support h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); line-height: .98; letter-spacing: -.06em; }
.section-heading > p { max-width: 400px; color: var(--muted); line-height: 1.7; }
.text-link { color: #a9bac0; font-size: 12px; font-weight: 750; padding-bottom: 8px; border-bottom: 1px solid var(--line-strong); }
.text-link span { color: var(--coral); margin-left: 8px; }

.tracks { border-top: 1px solid var(--line); background: linear-gradient(to bottom, rgba(255,255,255,.015), transparent); }
.track-list { border-top: 1px solid var(--line); }
.track-row { position: relative; display: grid; grid-template-columns: 54px 58px minmax(0,1fr) 72px 28px; gap: 18px; align-items: center; min-height: 92px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s; animation: rowIn .5s both; animation-delay: calc(var(--i, 0) * 55ms); }
.track-row:hover { padding-left: 14px; padding-right: 14px; background: rgba(255,255,255,.025); }
.track-row__number { color: #50656d; font-size: 10px; letter-spacing: .1em; }
.track-row img { width: 52px; height: 52px; object-fit: cover; border-radius: 13px; background: var(--surface-solid); }
.track-row__name { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.track-row__name b, .track-row__name small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-row__name b { font-size: 15px; }.track-row__name small { color: var(--muted); font-size: 11px; }
.track-row__time { color: #71878f; font-size: 11px; text-align: right; }
.track-row__arrow { color: var(--coral); opacity: 0; transform: translate(-8px,8px); transition: all .25s; }
.track-row:hover .track-row__arrow { opacity: 1; transform: translate(0,0); }
.skeleton { min-height: 92px; overflow: hidden; }
.skeleton::after { content: ""; position: absolute; inset: 18px 0; background: linear-gradient(90deg, rgba(255,255,255,.025), rgba(255,255,255,.07), rgba(255,255,255,.025)); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 16px; }

.manifesto { overflow: hidden; border-top: 1px solid var(--line); }
.manifesto__grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 100px; }
.manifesto__visual { min-height: 560px; display: grid; place-items: center; }
.portal { width: min(440px, 90vw); aspect-ratio: 1; position: relative; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at center, rgba(255,85,71,.16), transparent 31%), conic-gradient(from 20deg, rgba(56,214,232,.1), rgba(118,89,255,.35), rgba(255,85,71,.48), rgba(56,214,232,.1)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.13), 0 0 100px rgba(118,89,255,.14); animation: slowRotate 24s linear infinite; }
.portal::before { content: ""; position: absolute; inset: 9%; border-radius: 50%; background: var(--bg); box-shadow: inset 0 0 80px rgba(56,214,232,.09); }
.portal::after { content: ""; position: absolute; inset: 29%; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 36px rgba(255,85,71,.12); }
.portal span { position: absolute; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; }
.portal span:nth-child(1) { inset: 17%; }.portal span:nth-child(2) { inset: 23%; }.portal span:nth-child(3) { inset: 35%; }
.portal b { position: relative; z-index: 2; font-size: 56px; letter-spacing: -.06em; animation: slowRotate 24s linear infinite reverse; }
.manifesto__copy p, .apps__copy > p, .support p { margin: 30px 0 0; color: #9bafb6; font-size: 17px; line-height: 1.75; }
.genre-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.genre-cloud span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; color: #a8bac0; font-size: 11px; background: rgba(255,255,255,.025); }

.apps { overflow: hidden; background: radial-gradient(circle at 72% 48%, rgba(255,85,71,.08), transparent 25%), linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); border-top: 1px solid var(--line); }
.apps__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.apps__copy { max-width: 560px; }
.store-buttons { display: flex; gap: 12px; margin-top: 34px; }
.store-button { min-width: 188px; height: 60px; padding: 0 18px; display: flex; align-items: center; gap: 12px; border-radius: 15px; border: 1px solid var(--line); background: rgba(255,255,255,.055); transition: transform .25s, background .25s, border-color .25s; }
.store-button:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); border-color: var(--line-strong); }
.store-button svg { width: 27px; }.store-button span { display: flex; flex-direction: column; line-height: 1; }
.store-button small { color: var(--muted); font-size: 9px; }.store-button b { margin-top: 6px; font-size: 16px; }
.app-rating { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.app-rating strong { font-size: 22px; }.app-rating span { color: #ffb547; letter-spacing: .08em; }.app-rating small { color: var(--muted); }
.phone-stage { min-height: 680px; position: relative; display: grid; place-items: center; }
.phone-orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; animation: slowRotate 18s linear infinite; }
.phone-orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 24px var(--coral); top: 12%; left: 18%; }
.phone-orbit--one { width: 580px; height: 580px; }.phone-orbit--two { width: 430px; height: 430px; animation-direction: reverse; animation-duration: 14s; }
.phone-orbit--two::after { background: var(--cyan); box-shadow: 0 0 24px var(--cyan); top: 75%; left: 81%; }
.phone { position: relative; z-index: 2; width: 302px; min-height: 610px; padding: 17px 17px 27px; border: 1px solid rgba(255,255,255,.24); border-radius: 43px; background: linear-gradient(160deg, rgba(16,48,61,.95), rgba(4,17,23,.96)); box-shadow: 0 46px 100px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.18); transform: rotate(5deg); }
.phone::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255,255,255,.08); border-radius: 37px; pointer-events: none; }
.phone__top { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.phone__top span, .phone__top i { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.05); }
.phone__top b { font-size: 9px; letter-spacing: .14em; }
.phone > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 25px; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.phone > small { display: block; margin-top: 22px; color: var(--coral); font-size: 8px; letter-spacing: .16em; font-weight: 850; }
.phone > strong { display: block; margin-top: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 18px; }
.phone > span { display: block; margin-top: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted); font-size: 11px; }
.phone-wave { display: flex; gap: 4px; align-items: center; justify-content: center; height: 50px; margin-top: 12px; }
.phone-wave i { width: 3px; height: 20%; background: linear-gradient(to top, var(--coral), var(--coral-2)); border-radius: 4px; }
.is-playing .phone-wave i { animation: eq .7s infinite alternate; }.phone-wave i:nth-child(2n) { animation-duration: .48s; }.phone-wave i:nth-child(3n) { animation-duration: .92s; }
.phone-play { position: absolute; left: 50%; bottom: 27px; transform: translateX(-50%); width: 58px; height: 58px; border-radius: 50%; border: 0; background: var(--coral); display: grid; place-items: center; cursor: pointer; box-shadow: 0 14px 32px rgba(255,85,71,.35); }

.community { border-top: 1px solid var(--line); }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.social-card { position: relative; min-height: 270px; padding: 28px; display: flex; align-items: end; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.social-card::before { content: ""; position: absolute; width: 300px; height: 300px; right: -90px; top: -120px; border-radius: 50%; filter: blur(10px); opacity: .22; transition: transform .45s var(--ease), opacity .35s; }
.social-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); box-shadow: 0 32px 70px rgba(0,0,0,.22); }
.social-card:hover::before { transform: scale(1.2); opacity: .35; }
.social-card--telegram::before { background: #2aabee; }.social-card--vk::before { background: #2688eb; }.social-card--youtube::before { background: #ff0033; }.social-card--max::before { background: #7354ff; }
.social-card__icon { position: absolute; left: 28px; top: 28px; min-width: 46px; height: 46px; padding: 0 10px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); font-size: 11px; font-weight: 900; letter-spacing: .05em; }
.social-card__arrow { position: absolute; right: 28px; top: 28px; color: rgba(255,255,255,.45); font-size: 23px; transition: transform .3s, color .3s; }
.social-card:hover .social-card__arrow { color: #fff; transform: translate(4px,-4px); }
.social-card div { position: relative; z-index: 2; }
.social-card small { color: #80959d; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.social-card h3 { margin: 10px 0 9px; font-size: 23px; letter-spacing: -.035em; }
.social-card p { margin: 0; color: #8fa4ac; font-size: 12px; line-height: 1.55; }

.support { padding-top: 30px; padding-bottom: 140px; }
.support__card { position: relative; overflow: hidden; min-height: 510px; padding: 84px; border: 1px solid rgba(255,255,255,.15); border-radius: 40px; background: linear-gradient(135deg, rgba(255,85,71,.15), rgba(118,89,255,.1) 44%, rgba(56,214,232,.07)); box-shadow: inset 0 1px rgba(255,255,255,.13); }
.support__card h2 { max-width: 680px; }.support__card p { max-width: 660px; }
.support__card .button { margin-top: 34px; }
.support__rings { position: absolute; right: -120px; top: -130px; width: 640px; height: 640px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.support__rings i { position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.support__rings i:nth-child(1) { inset: 12%; }.support__rings i:nth-child(2) { inset: 26%; }.support__rings i:nth-child(3) { inset: 40%; box-shadow: 0 0 90px rgba(255,85,71,.18); }

.footer { padding: 64px 0 116px; border-top: 1px solid var(--line); background: rgba(0,0,0,.1); }
.footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 40px; }
.brand--footer img { width: 54px; height: 54px; }.brand--footer b { font-size: 16px; }
.footer__top p { color: var(--muted); line-height: 1.7; font-size: 13px; }
.footer__links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 22px; color: #a6b8be; font-size: 12px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line); color: #5e737b; font-size: 10px; letter-spacing: .06em; }

.dock { position: fixed; z-index: 45; left: 50%; bottom: max(18px, env(safe-area-inset-bottom)); width: min(760px, calc(100% - 28px)); min-height: 72px; padding: 10px 14px; display: grid; grid-template-columns: minmax(0,1fr) 52px 130px auto 42px; gap: 15px; align-items: center; border-radius: 24px; background: rgba(7,27,36,.88); border: 1px solid rgba(255,255,255,.17); backdrop-filter: blur(24px); box-shadow: 0 26px 70px rgba(0,0,0,.4); opacity: 0; transform: translate(-50%, 150%); pointer-events: none; transition: opacity .45s, transform .55s var(--ease); }
.dock.is-visible { opacity: 1; transform: translate(-50%,0); pointer-events: auto; }
.dock__track { min-width: 0; display: flex; align-items: center; gap: 12px; }
.dock__track img { width: 48px; height: 48px; object-fit: cover; border-radius: 13px; }
.dock__track div { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.dock__track b, .dock__track span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock__track b { font-size: 12px; }.dock__track span { color: var(--muted); font-size: 9px; }
.dock__play { width: 52px; height: 52px; border: 0; border-radius: 50%; background: var(--coral); display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 26px rgba(255,85,71,.28); }
.dock__wave { display: flex; align-items: center; gap: 3px; height: 30px; }
.dock__wave i { flex: 1; height: 15%; background: linear-gradient(to top, var(--coral), var(--cyan)); border-radius: 3px; opacity: .35; }
.is-playing .dock__wave i { opacity: .9; animation: eq .75s infinite alternate; }.dock__wave i:nth-child(2n) { animation-duration: .52s; }.dock__wave i:nth-child(3n) { animation-duration: .96s; }
.dock__live { display: flex; align-items: center; gap: 8px; color: #899da4; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.dock .icon-button { width: 38px; height: 38px; }

.share-dialog { width: min(600px, calc(100% - 28px)); padding: 46px; color: var(--text); border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: rgba(7,27,36,.96); backdrop-filter: blur(30px); box-shadow: 0 45px 120px rgba(0,0,0,.65); }
.share-dialog::backdrop { background: rgba(0,9,13,.7); backdrop-filter: blur(8px); }
.share-dialog__close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.04); cursor: pointer; font-size: 22px; }
.share-dialog h2 { margin: 0 0 30px; font-size: clamp(32px, 5vw, 54px); line-height: 1; letter-spacing: -.055em; }
.share-options { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.share-options a, .share-options button { min-width: 0; padding: 18px 8px; display: flex; flex-direction: column; align-items: center; gap: 9px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: #fff; cursor: pointer; transition: background .25s, transform .25s; }
.share-options a:hover, .share-options button:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.share-options b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.08); font-size: 10px; }
.share-options span { color: #9aadb4; font-size: 9px; }
.copy-status { min-height: 20px; margin-top: 16px; color: var(--green); text-align: center; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes livePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.7); opacity: .55; } }
@keyframes driftOne { to { transform: translate(-80px,90px) scale(1.12); } }
@keyframes driftTwo { to { transform: translate(110px,-70px) scale(.9); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,14px); } }
@keyframes slowRotate { to { transform: rotate(360deg); } }
@keyframes eq { from { height: 12%; } to { height: 92%; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes rowIn { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 32px, 940px); }
  .nav { gap: 22px; }
  .header-actions, .brand { min-width: auto; }
  .hero__grid { grid-template-columns: 1fr 420px; gap: 45px; }
  .hero h1 { font-size: clamp(54px, 7vw, 78px); }
  .proof { gap: 18px; }
  .manifesto__grid, .apps__grid { gap: 55px; }
  .phone-stage { transform: scale(.92); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 88px 0; }
  .nav { position: fixed; inset: 75px 14px auto; padding: 24px; display: flex; flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid var(--line); border-radius: 22px; background: rgba(6,21,29,.97); backdrop-filter: blur(22px); opacity: 0; transform: translateY(-16px); pointer-events: none; transition: opacity .28s, transform .28s; }
  .nav a { padding: 15px; font-size: 16px; }.nav a::after { display: none; }
  .menu-open .nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .menu-button { display: block; }.menu-open .menu-button span:first-child { transform: rotate(45deg); margin-bottom: -7px; }.menu-open .menu-button span:last-child { transform: rotate(-45deg); }
  .header-actions .button { display: none; }
  .hero { min-height: auto; padding-top: 128px; }
  .hero__grid { grid-template-columns: 1fr; gap: 54px; }
  .hero__copy { text-align: center; padding-top: 0; }
  .eyebrow, .hero__actions, .proof { justify-content: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .player-stage { width: min(520px, 100%); margin: auto; }
  .scroll-cue { display: none; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading > p { margin: -18px 0 0; }
  .manifesto__grid, .apps__grid { grid-template-columns: 1fr; }
  .manifesto__visual { min-height: 440px; order: 2; }
  .manifesto__copy { order: 1; }
  .apps__copy { text-align: center; margin: auto; }
  .store-buttons, .app-rating { justify-content: center; }
  .phone-stage { min-height: 640px; }
  .social-grid { grid-template-columns: 1fr; }
  .support__card { padding: 58px 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; }.footer__links { grid-column: 1 / -1; justify-content: flex-start; }
  .dock { grid-template-columns: minmax(0,1fr) 50px auto 38px; }.dock__wave { display: none; }
}

@media (max-width: 560px) {
  .site-header { padding: 10px 0; }
  .brand img { width: 42px; height: 42px; }.brand b { font-size: 12px; }.brand small { font-size: 8px; }
  .hero { padding-top: 112px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(49px, 15vw, 69px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { flex-direction: column; }.hero__actions .button { width: 100%; }
  .proof { gap: 0; justify-content: space-between; }.proof strong { font-size: 18px; }.proof span { font-size: 9px; }
  .player-card { padding: 11px; border-radius: 28px; }.cover-wrap { border-radius: 21px; }.cover-play { width: 65px; height: 65px; }
  .station-tab { font-size: 8px; padding: 11px 5px; }
  .now-playing { padding: 20px 4px 14px; }.now-playing h2 { font-size: 22px; }
  .player-footer { padding-left: 4px; padding-right: 4px; }.volume input { width: 62px; }
  .section-heading h2, .manifesto h2, .apps h2, .support h2 { font-size: clamp(40px, 12vw, 56px); }
  .track-row { grid-template-columns: 42px minmax(0,1fr) 50px; gap: 12px; min-height: 80px; }.track-row__number, .track-row__arrow { display: none; }.track-row img { width: 42px; height: 42px; }.track-row__time { font-size: 9px; }
  .manifesto__visual { min-height: 330px; }.portal { width: 310px; }.portal b { font-size: 42px; }
  .manifesto__copy p, .apps__copy > p, .support p { font-size: 15px; }
  .store-buttons { flex-direction: column; }.store-button { width: 100%; }
  .phone-stage { min-height: 580px; transform: scale(.83); margin: -50px 0; }.phone-orbit--one { width: 520px; height: 520px; }
  .social-card { min-height: 240px; padding: 23px; }.social-card__icon { left: 23px; top: 23px; }.social-card__arrow { right: 23px; top: 23px; }
  .support { padding-bottom: 100px; }.support__card { min-height: 520px; border-radius: 28px; }.support__rings { opacity: .45; }
  .footer__top { grid-template-columns: 1fr; }.footer__links { grid-column: auto; }.footer__bottom { flex-direction: column; }
  .dock { bottom: max(8px, env(safe-area-inset-bottom)); min-height: 64px; padding: 8px 10px; grid-template-columns: minmax(0,1fr) 46px 34px; gap: 9px; border-radius: 20px; }.dock__track img { width: 42px; height: 42px; }.dock__play { width: 46px; height: 46px; }.dock__live { display: none; }.dock .icon-button { width: 34px; height: 34px; }
  .share-dialog { padding: 42px 20px 26px; }.share-options { grid-template-columns: repeat(2,1fr); }
}

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

/* ===== Premium accessibility + live audio update ===== */
.header-hidden .site-header { transform: none !important; }
.site-header { padding: 20px 0; }
.site-header__inner { transition: height .35s var(--ease); }
.header-scrolled .site-header { padding: 7px 0; background: rgba(4,18,25,.58); border-color: rgba(255,255,255,.09); backdrop-filter: blur(28px) saturate(145%); box-shadow: 0 14px 45px rgba(0,0,0,.16); }
.header-scrolled .site-header__inner { height: 48px; }
.brand img { transition: width .35s var(--ease), height .35s var(--ease), transform .35s var(--ease); }
.header-scrolled .brand img { width: 40px; height: 40px; transform: rotate(-3deg); }
.header-scrolled .brand small { margin-top: 4px; }
.nav { gap: clamp(24px, 2.4vw, 42px); }
.nav a { font-size: 16px; font-weight: 760; color: #d4e0e4; letter-spacing: .01em; transition: color .25s, font-size .35s var(--ease); }
.header-scrolled .nav a { font-size: 14px; }
.kicker, .eyebrow { font-size: 13px; letter-spacing: .17em; }
.button { font-size: 15px; }
.button--small { font-size: 13px; }
.station-tab { font-size: 12px; }
.now-playing__meta { font-size: 11px; }
.now-playing p { font-size: 15px; }
.listeners b { font-size: 15px; }
.listeners span { font-size: 11px; }
.text-link { font-size: 14px; }

.visualizer-shell { position: relative; min-height: 94px; margin: 2px 0 6px; overflow: hidden; border-radius: 18px; border: 1px solid rgba(255,255,255,.08); background: radial-gradient(circle at 50% 110%, rgba(255,85,71,.18), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.08)); }
.visualizer-shell::before { content: ""; position: absolute; inset: 50% 0 auto; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent, rgba(56,214,232,.18), rgba(255,255,255,.22), rgba(255,85,71,.14), transparent); pointer-events: none; }
.visualizer-shell::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(5,9,12,.48), transparent 12%, transparent 88%, rgba(5,9,12,.48)), linear-gradient(180deg, rgba(255,255,255,.025), transparent 38%, rgba(0,0,0,.12)); pointer-events: none; }
.player-visualizer { position: relative; z-index: 1; display: block; width: 100% !important; height: 94px !important; opacity: .98; filter: saturate(1.22) contrast(1.04) drop-shadow(0 0 14px rgba(56,214,232,.18)); }

.track-row { grid-template-columns: 58px 66px minmax(0,1fr) 82px 30px; min-height: 104px; }
.track-row img { width: 60px; height: 60px; }
.track-row__number { font-size: 12px; }
.track-row__name { gap: 7px; }
.track-row__name b { font-size: 19px; font-weight: 790; }
.track-row__name small { font-size: 14px; color: #9fb1b8; }
.track-row__time { font-size: 14px; color: #91a5ac; }

.telegram-feed { margin-bottom: 24px; padding: 30px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(42,171,238,.09), rgba(255,255,255,.025) 44%, rgba(118,89,255,.06)); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.telegram-feed__top { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.telegram-feed__top h3 { margin: 8px 0 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.045em; }
.telegram-posts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.telegram-post { min-width: 0; min-height: 230px; padding: 20px; display: flex; flex-direction: column; border-radius: 22px; border: 1px solid rgba(255,255,255,.09); background: rgba(3,18,25,.58); transition: transform .3s var(--ease), border-color .3s, background .3s; }
.telegram-post:hover { transform: translateY(-5px); border-color: rgba(42,171,238,.38); background: rgba(8,29,39,.78); }
.telegram-post__media { width: 100%; aspect-ratio: 16/9; margin-bottom: 16px; object-fit: cover; border-radius: 15px; background: linear-gradient(135deg, rgba(42,171,238,.16), rgba(118,89,255,.13)); }
.telegram-post__channel { display: flex; align-items: center; gap: 9px; color: #68c6f4; font-size: 12px; font-weight: 850; letter-spacing: .04em; }
.telegram-post__channel img { width: 22px; height: 22px; }
.telegram-post__text { margin: 15px 0 20px; color: #d4e1e5; font-size: 15px; line-height: 1.58; overflow-wrap: anywhere; }
.telegram-post__meta { margin-top: auto; display: flex; justify-content: space-between; gap: 12px; color: #789099; font-size: 12px; }
.telegram-post--skeleton { min-height: 250px; background: linear-gradient(110deg, rgba(255,255,255,.025) 20%, rgba(255,255,255,.075) 40%, rgba(255,255,255,.025) 60%); background-size: 250% 100%; animation: shimmer 1.6s linear infinite; }
.telegram-feed__note { margin: 18px 0 0; color: #718891; font-size: 12px; }

.social-card { min-height: 290px; }
.social-card__icon { width: 64px; height: 64px; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: transparent; box-shadow: 0 14px 32px rgba(0,0,0,.2); }
.social-card__icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.social-card small { font-size: 11px; }
.social-card h3 { font-size: 27px; }
.social-card p { max-width: 440px; font-size: 15px; line-height: 1.6; }

.dock { width: min(920px, calc(100% - 28px)); grid-template-columns: minmax(0,1fr) 52px minmax(160px,230px) auto 42px; }
.dock__track b { font-size: 14px; }
.dock__track span { font-size: 11px; }
.dock__visualizer { height: 46px; min-width: 0; overflow: hidden; border-radius: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); }
.dock-visualizer { display: block; width: 100% !important; height: 46px !important; opacity: .98; filter: saturate(1.18) contrast(1.04); }
.dock__live { font-size: 10px; }

.my-player-engine { position: fixed !important; left: -10000px !important; top: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.my-player-template { display: none !important; }

@media (max-width: 1050px) {
  .nav a { font-size: 15px; }
  .telegram-posts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .telegram-post:nth-child(3) { display: none; }
}

@media (max-width: 820px) {
  .header-scrolled .site-header { background: rgba(4,18,25,.78); }
  .nav a, .header-scrolled .nav a { font-size: 18px; }
  .dock { grid-template-columns: minmax(0,1fr) 50px minmax(100px,150px) 38px; }
  .dock__live { display: none; }
  .telegram-feed { padding: 22px; }
  .telegram-feed__top { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .kicker, .eyebrow { font-size: 11px; }
  .station-tab { font-size: 10px; }
  .visualizer-shell { min-height: 78px; }
  .player-visualizer { height: 78px !important; }
  .track-row { grid-template-columns: 48px minmax(0,1fr) 58px; min-height: 92px; }
  .track-row img { width: 48px; height: 48px; }
  .track-row__name b { font-size: 16px; }
  .track-row__name small { font-size: 13px; }
  .track-row__time { font-size: 12px; }
  .telegram-feed { padding: 18px; border-radius: 24px; }
  .telegram-posts { grid-template-columns: 1fr; }
  .telegram-post:nth-child(2), .telegram-post:nth-child(3) { display: none; }
  .telegram-post { min-height: 220px; }
  .social-card__icon { width: 58px; height: 58px; left: 22px; top: 22px; }
  .social-card h3 { font-size: 24px; }
  .social-card p { font-size: 14px; }
  .dock { grid-template-columns: minmax(0,1fr) 46px 72px; }
  .dock__visualizer { display: block; height: 40px; }
  .dock-visualizer { height: 40px !important; }
  .dock .icon-button { display: none; }
}

/* ===== V3: reliable player, compact hero, kinetic premium background ===== */
.ambient__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
}

.brand {
  position: relative;
  min-width: 248px;
  gap: 16px;
  isolation: isolate;
}
.brand::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translateY(-50%);
  border-radius: 25px;
  background: radial-gradient(circle, rgba(255,85,71,.28), rgba(118,89,255,.09) 48%, transparent 72%);
  filter: blur(11px);
  opacity: .9;
  z-index: -1;
}
.brand img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 14px 38px rgba(0,0,0,.32), 0 0 34px rgba(255,85,71,.14), inset 0 1px rgba(255,255,255,.12);
}
.brand b {
  font-size: 19px;
  letter-spacing: .055em;
  text-shadow: 0 0 24px rgba(255,255,255,.08);
}
.brand small {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .28em;
}
.site-header { padding: 12px 0; }
.site-header__inner { height: 72px; }
.header-scrolled .site-header { padding: 6px 0; }
.header-scrolled .site-header__inner { height: 56px; }
.header-scrolled .brand img { width: 50px; height: 50px; flex-basis: 50px; }
.header-scrolled .brand::before { width: 66px; height: 66px; }
.header-scrolled .brand b { font-size: 16px; }
.header-scrolled .brand small { font-size: 9px; }

.hero {
  min-height: 100svh;
  padding-top: 108px;
  padding-bottom: 48px;
  align-items: center;
}
.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
  gap: clamp(42px, 6vw, 84px);
}
.hero__copy { padding-top: 8px; }
.hero h1 { font-size: clamp(54px, 5.8vw, 88px); }
.hero__lead { margin-top: 24px; font-size: clamp(15px, 1.12vw, 18px); line-height: 1.62; }
.hero__actions { margin-top: 28px; }
.proof { margin-top: 34px; }
.scroll-cue { bottom: 12px; }

.hero__kinetic {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.hero__kinetic-word {
  position: absolute;
  display: block;
  font-weight: 950;
  line-height: .72;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.065);
  text-shadow: 0 0 65px rgba(56,214,232,.025);
  will-change: transform, opacity, filter;
}
.hero__kinetic-word--deep {
  top: 18%;
  left: -3%;
  font-size: clamp(165px, 23vw, 405px);
  animation: kineticDeep 18s ease-in-out infinite alternate;
}
.hero__kinetic-word--vibe {
  right: -7%;
  top: 59%;
  font-size: clamp(92px, 14vw, 235px);
  -webkit-text-stroke-color: rgba(255,85,71,.07);
  animation: kineticVibe 22s ease-in-out infinite alternate-reverse;
}
.hero__kinetic-word--fm {
  left: 43%;
  top: 8%;
  font-size: clamp(72px, 9vw, 150px);
  -webkit-text-stroke-color: rgba(118,89,255,.075);
  animation: kineticFm 16s ease-in-out infinite alternate;
}

.player-stage {
  width: 100%;
  max-width: 410px;
  justify-self: end;
}
.player-card {
  padding: 14px;
  border-radius: 31px;
  transform: rotateY(-1.2deg) rotateX(.5deg);
}
.player-card__brandline {
  position: relative;
  z-index: 2;
  min-height: 38px;
  padding: 3px 4px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9eb0b7;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 850;
}
.player-card__station { display: flex; align-items: center; gap: 10px; color: #f2f7f8; }
.player-card__station .live-dot { width: 6px; height: 6px; }
.player-card__tag { white-space: nowrap; color: #7f969e; }
.cover-wrap {
  aspect-ratio: 1.2;
  max-height: 314px;
  border-radius: 23px;
}
.track-cover { object-position: center; }
.now-playing { padding: 17px 5px 12px; }
.now-playing__meta { margin-bottom: 10px; }
.now-playing h2 { font-size: clamp(20px, 2vw, 27px); }
.now-playing p { margin-top: 5px; }
.stream-state { display: inline-flex; align-items: center; gap: 8px; }
.stream-state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7e9299;
  box-shadow: 0 0 0 4px rgba(126,146,153,.08);
}
.stream-state[data-mode="live"]::before { background: var(--green); box-shadow: 0 0 0 4px rgba(92,255,176,.09), 0 0 18px rgba(92,255,176,.6); }
.stream-state[data-mode="connecting"]::before { background: var(--cyan); animation: livePulse 1s infinite; }
.stream-state[data-mode="error"]::before { background: var(--coral); }
.visualizer-shell { min-height: 72px; margin-top: 0; border-radius: 15px; }
.player-visualizer { height: 72px !important; }
.visualizer-label { top: 8px; font-size: 8px; }
.player-footer { padding-top: 12px; padding-bottom: 2px; }

.my-player-engine {
  position: fixed !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 240px !important;
  height: 80px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes kineticDeep {
  0% { transform: translate3d(-2%, 0, 0) scale(.96); opacity: .72; filter: blur(0); }
  45% { transform: translate3d(4%, -2%, 0) scale(1.035); opacity: .92; filter: blur(.15px); }
  100% { transform: translate3d(1%, 3%, 0) scale(1.08); opacity: .62; filter: blur(.5px); }
}
@keyframes kineticVibe {
  0% { transform: translate3d(2%, 0, 0) scale(.9) rotate(-2deg); opacity: .35; }
  55% { transform: translate3d(-7%, -5%, 0) scale(1.06) rotate(.5deg); opacity: .67; }
  100% { transform: translate3d(-2%, 3%, 0) scale(1.15) rotate(2deg); opacity: .42; }
}
@keyframes kineticFm {
  0% { transform: translate3d(0, -6%, 0) scale(.9); opacity: .28; }
  50% { transform: translate3d(18%, 8%, 0) scale(1.08); opacity: .57; }
  100% { transform: translate3d(3%, 22%, 0) scale(.98); opacity: .32; }
}

@media (min-width: 821px) and (max-height: 820px) {
  .site-header { padding: 7px 0; }
  .site-header__inner { height: 58px; }
  .brand img { width: 54px; height: 54px; flex-basis: 54px; }
  .brand::before { width: 70px; height: 70px; }
  .brand b { font-size: 16px; }
  .brand small { font-size: 8px; }
  .hero { padding-top: 82px; padding-bottom: 28px; }
  .hero h1 { font-size: clamp(50px, 5.4vw, 76px); }
  .hero__lead { margin-top: 18px; line-height: 1.5; }
  .hero__actions { margin-top: 20px; }
  .proof { margin-top: 22px; }
  .cover-wrap { max-height: 250px; }
  .now-playing { padding-top: 13px; padding-bottom: 9px; }
  .visualizer-shell { min-height: 58px; }
  .player-visualizer { height: 58px !important; }
  .scroll-cue { display: none; }
}

@media (max-width: 1050px) {
  .brand { min-width: auto; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(335px, 390px); gap: 38px; }
  .player-stage { max-width: 390px; }
}

@media (max-width: 820px) {
  .site-header { padding: 8px 0; }
  .site-header__inner { height: 62px; }
  .brand img { width: 56px; height: 56px; flex-basis: 56px; }
  .brand b { font-size: 16px; }
  .brand small { font-size: 9px; }
  .header-scrolled .brand img { width: 46px; height: 46px; flex-basis: 46px; }
  .nav { inset: 78px 14px auto; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .player-stage { max-width: 500px; justify-self: center; }
  .cover-wrap { max-height: none; }
  .hero__kinetic-word--deep { top: 11%; left: -18%; }
  .hero__kinetic-word--vibe { top: 48%; right: -22%; }
  .hero__kinetic-word--fm { left: 58%; top: 4%; }
}

@media (max-width: 560px) {
  .brand { gap: 10px; }
  .brand::before { left: -7px; width: 60px; height: 60px; }
  .brand img { width: 48px; height: 48px; flex-basis: 48px; border-radius: 14px; }
  .brand b { font-size: 14px; }
  .brand small { margin-top: 5px; font-size: 8px; letter-spacing: .2em; }
  .header-scrolled .brand img { width: 42px; height: 42px; flex-basis: 42px; }
  .hero { padding-top: 108px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .player-card__brandline { font-size: 9px; }
  .player-card__tag { display: none; }
  .cover-wrap { aspect-ratio: 1.08; }
  .visualizer-shell { min-height: 66px; }
  .player-visualizer { height: 66px !important; }
  .hero__kinetic-word--deep { font-size: clamp(130px, 49vw, 220px); }
  .hero__kinetic-word--vibe { font-size: clamp(80px, 31vw, 150px); }
  .hero__kinetic-word--fm { font-size: clamp(62px, 22vw, 100px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__kinetic-word { animation: none !important; }
  .ambient__particles { display: none; }
}
