:root {
  --purple: #9d22d8;
  --purple-dark: #5c13a8;
  --blue: #079bdd;
  --cyan: #28d1ff;
  --pink: #f13daf;
  --orange: #ff6a22;
  --ink: #111225;
  --muted: #686b80;
  --card: rgba(255,255,255,.82);
  --white: #fff;
  --shadow: 0 28px 70px rgba(38, 12, 73, .18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(241,61,175,.12), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(7,155,221,.14), transparent 24%),
    linear-gradient(180deg, #fff 0%, #faf7ff 54%, #f4fbff 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  padding-bottom: 106px;
}

body.modal-open { overflow: hidden; }
button, a, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
img { display: block; max-width: 100%; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; }

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .22;
  pointer-events: none;
  z-index: -3;
}
.orb-one { background: var(--pink); left: -180px; top: 18vh; }
.orb-two { background: var(--blue); right: -210px; top: 46vh; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .08;
  background-image: radial-gradient(rgba(30,20,55,.34) .6px, transparent .6px);
  background-size: 6px 6px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

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

.site-header {
  width: min(1220px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px 12px 12px;
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 16px 45px rgba(41,19,81,.11);
  backdrop-filter: blur(18px) saturate(150%);
  border-radius: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 14px; box-shadow: 0 7px 18px rgba(109,26,181,.2); }
.brand span { display: grid; gap: 1px; line-height: 1.05; }
.brand strong { font-size: .98rem; letter-spacing: .02em; }
.brand small { color: var(--muted); font-size: .68rem; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav > a { padding: 10px 12px; border-radius: 12px; font-weight: 700; font-size: .9rem; color: #4d4f62; transition: .25s ease; }
.nav > a:hover { background: #f4ecfb; color: var(--purple); }
.nav-live, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink) 58%, var(--orange));
  box-shadow: 0 10px 28px rgba(157,34,216,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.nav-live { padding: 11px 15px; border-radius: 14px; font-weight: 800; }
.nav-live:hover, .primary-btn:hover, .modal-play:hover { transform: translateY(-2px); filter: saturate(110%); box-shadow: 0 16px 36px rgba(157,34,216,.32); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.55); animation: pulse 1.8s infinite; flex: 0 0 auto; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 48px;
  padding-block: 90px 70px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(157,34,216,.08);
  border: 1px solid rgba(157,34,216,.1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.eyebrow .live-dot { background: var(--pink); box-shadow: 0 0 0 0 rgba(241,61,175,.4); }
.hero h1, .section-heading h2, .about-copy h2, .apps-copy h2, .cta h2 {
  margin: 18px 0 16px;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3rem, 6.2vw, 6.3rem); max-width: 760px; }
.hero h1 span {
  background: linear-gradient(90deg, var(--purple), var(--blue) 54%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p { max-width: 640px; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.primary-btn { min-height: 54px; padding: 0 22px; border-radius: 16px; font-weight: 900; }
.primary-btn svg { font-size: 1.25rem; }
.ghost-btn { display: inline-flex; align-items: center; min-height: 54px; padding: 0 19px; border-radius: 16px; font-weight: 800; color: #4d4f62; background: rgba(255,255,255,.74); border: 1px solid rgba(81,57,113,.1); transition: .2s ease; }
.ghost-btn:hover { background: #fff; color: var(--purple); box-shadow: 0 12px 30px rgba(40,20,70,.1); }
.hero-badges { margin-top: 31px; display: grid; gap: 9px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.hero-badges > div { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-badge { padding: 7px 10px; border-radius: 999px; background: #fff; border: 1px solid rgba(60,28,96,.08); color: #34364a; box-shadow: 0 5px 16px rgba(44,19,78,.06); }

.hero-visual { min-height: 540px; position: relative; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 40deg, rgba(7,155,221,.4), rgba(241,61,175,.5), rgba(157,34,216,.4), rgba(255,106,34,.35), rgba(7,155,221,.4));
  filter: blur(1px);
  animation: spin 18s linear infinite;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  box-shadow: inset 0 0 70px rgba(157,34,216,.07), 0 30px 90px rgba(93,25,148,.2);
}
.hero-ring { position: absolute; z-index: 0; border: 1px solid rgba(157,34,216,.2); border-radius: 50%; animation: breathe 4.5s ease-in-out infinite; }
.ring-one { width: 93%; aspect-ratio: 1; }
.ring-two { width: 106%; aspect-ratio: 1; animation-delay: -2s; }
.main-logo-card { width: min(72%, 410px); aspect-ratio: 1; position: relative; z-index: 2; background: #fff; padding: 16px; border-radius: 32%; transform: rotate(-3deg); box-shadow: 0 35px 70px rgba(59,25,99,.22); animation: float 5.5s ease-in-out infinite; }
.main-logo-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 29%; }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 12px 15px; border-radius: 16px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 16px 35px rgba(51,24,86,.16); backdrop-filter: blur(12px); font-weight: 900; }
.chip-live { left: 0; top: 25%; color: var(--purple); }
.chip-live .live-dot { background: var(--pink); box-shadow: 0 0 0 0 rgba(241,61,175,.45); }
.chip-music { right: 0; bottom: 23%; color: #37394d; }

.equalizer { display: flex; align-items: center; justify-content: center; gap: 3px; height: 26px; }
.equalizer i { width: 3px; height: 45%; border-radius: 3px; background: currentColor; animation: eq 1s ease-in-out infinite alternate; }
.equalizer i:nth-child(2) { animation-delay: -.35s; height: 90%; }
.equalizer i:nth-child(3) { animation-delay: -.7s; height: 55%; }
.equalizer i:nth-child(4) { animation-delay: -.2s; height: 78%; }
.equalizer i:nth-child(5) { animation-delay: -.55s; height: 38%; }
.equalizer i:nth-child(6) { animation-delay: -.1s; height: 68%; }
.equalizer i:nth-child(7) { animation-delay: -.8s; height: 52%; }
.equalizer.tiny { height: 17px; color: var(--blue); }
.equalizer.tiny i { width: 2px; }

.signal-strip { overflow: hidden; border-block: 1px solid rgba(78,38,115,.08); background: rgba(255,255,255,.58); backdrop-filter: blur(8px); }
.signal-track { width: max-content; display: flex; align-items: center; gap: 22px; padding: 16px 0; animation: marquee 28s linear infinite; color: #56586b; font-size: .82rem; font-weight: 900; letter-spacing: .08em; }
.signal-track i { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--blue)); }

.about { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: center; padding-block: 110px; }
.poster-frame { position: relative; padding: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.92); border-radius: var(--radius-xl); box-shadow: var(--shadow); transform: rotate(-2deg); }
.poster-frame::after { content: ""; position: absolute; inset: 12px -12px -12px 12px; border-radius: inherit; background: linear-gradient(135deg, var(--pink), var(--blue)); z-index: -1; opacity: .28; filter: blur(2px); }
.poster-frame img { width: 100%; aspect-ratio: 1.025/1; object-fit: cover; border-radius: 22px; }
.section-tag { display: inline-block; color: var(--purple); font-weight: 900; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.about-copy h2, .section-heading h2, .apps-copy h2, .cta h2 { font-size: clamp(2.25rem, 4.3vw, 4.6rem); }
.about-copy > p, .section-heading p, .apps-copy > p, .cta p { color: var(--muted); line-height: 1.7; font-size: 1.04rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 28px; }
.feature-grid article { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(84,45,120,.08); box-shadow: 0 12px 28px rgba(48,22,78,.06); }
.feature-grid strong { display: block; margin-bottom: 6px; font-size: .98rem; }
.feature-grid span { color: var(--muted); font-size: .88rem; line-height: 1.55; }

.hosts { padding-block: 110px; background: linear-gradient(180deg, rgba(247,240,252,.72), rgba(236,249,255,.72)); border-block: 1px solid rgba(90,44,127,.06); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 15px; }
.hosts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.host-card { border-radius: var(--radius-xl); overflow: hidden; background: #fff; border: 1px solid rgba(80,40,116,.08); box-shadow: var(--shadow); }
.host-image { position: relative; min-height: 600px; height: 100%; }
.host-image img { width: 100%; height: 100%; object-fit: cover; }
.host-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,12,42,.9), transparent 54%); }
.host-label { position: absolute; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.host-label small { opacity: .75; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.host-label h3 { margin: 5px 0 0; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.04em; }
.host-meta { padding: 22px 24px 25px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: #f8ebff; color: var(--purple); font-size: .75rem; font-weight: 900; }
.pill .live-dot { background: var(--pink); box-shadow: 0 0 0 0 rgba(241,61,175,.4); }
.host-meta p { color: var(--muted); margin: 12px 0 0; line-height: 1.6; }
.poster-card { position: relative; background: #f735b3; min-height: 100%; }
.poster-card > img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; }
.poster-overlay { position: absolute; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 13px; padding: 10px 10px 10px 15px; border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: 0 14px 38px rgba(34,12,61,.22); backdrop-filter: blur(12px); font-weight: 900; }
.round-play { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--purple), var(--pink)); cursor: pointer; }
.round-play svg { font-size: 1.2rem; }

.apps { padding-block: 115px; }
.apps-card { min-height: 620px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; padding: 62px; position: relative; overflow: hidden; border-radius: 46px; color: #fff; background: linear-gradient(135deg, #4f0a9f 0%, #941cc9 37%, #f13daf 72%, #ff6a22 118%); box-shadow: 0 36px 85px rgba(89,20,151,.28); }
.apps-card::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; right: -90px; top: -100px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025); }
.apps-copy { position: relative; z-index: 2; }
.section-tag.light { color: rgba(255,255,255,.78); }
.apps-copy > p { color: rgba(255,255,255,.76); max-width: 630px; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.store-badge { min-width: 200px; display: flex; align-items: center; gap: 11px; padding: 12px 16px; border-radius: 17px; background: #fff; color: #15162a; box-shadow: 0 14px 34px rgba(33,8,62,.2); transition: .2s ease; }
.store-badge:hover { transform: translateY(-3px); }
.store-badge.disabled { opacity: .75; cursor: default; }
.store-badge svg { width: 29px; height: 29px; }
.store-badge span { display: grid; line-height: 1.05; }
.store-badge small { color: #77798b; font-size: .65rem; }
.store-badge strong { margin-top: 2px; font-size: 1.13rem; }
.link-note { display: block; margin-top: 13px; color: rgba(255,255,255,.62); }
.link-note code { color: #fff; }
.phone-mockup { width: min(330px, 84%); aspect-ratio: .52/1; justify-self: center; position: relative; z-index: 2; padding: 12px; border-radius: 48px; background: #0d0e18; box-shadow: 0 35px 80px rgba(24,3,54,.4); transform: rotate(4deg); }
.phone-notch { position: absolute; z-index: 4; left: 50%; top: 18px; transform: translateX(-50%); width: 36%; height: 25px; border-radius: 999px; background: #08080d; }
.phone-screen { height: 100%; border-radius: 38px; overflow: hidden; padding: 82px 22px 30px; display: flex; flex-direction: column; align-items: center; text-align: center; background: linear-gradient(180deg, #fff 0 42%, #f8ecff 42% 100%); color: var(--ink); }
.phone-screen img { width: 76%; aspect-ratio: 1; object-fit: cover; border-radius: 26px; box-shadow: 0 18px 35px rgba(76,22,122,.16); }
.phone-now { margin-top: 28px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.phone-screen strong { margin-top: 6px; font-size: 1.35rem; }
.phone-eq { margin-top: 18px; color: var(--purple); }
.phone-play { margin-top: 22px; width: 63px; height: 63px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 14px 28px rgba(157,34,216,.25); }
.phone-play svg { font-size: 1.6rem; }

.cta { margin-bottom: 110px; display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 42px 46px; border-radius: 34px; background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.94); box-shadow: var(--shadow); }
.cta h2 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.7rem); }
.cta p { margin: 0; }
.light-btn { flex: 0 0 auto; }
footer { border-top: 1px solid rgba(73,39,103,.08); background: rgba(255,255,255,.58); }
.footer-inner { width: min(1180px, calc(100% - 40px)); margin: auto; min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.footer-brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 15px; }
.footer-brand div { display: grid; }
.footer-brand span { color: var(--muted); font-size: .78rem; }
.footer-inner p { font-size: .82rem; }

.player-shell {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(890px, calc(100% - 28px));
  min-height: 78px;
  padding: 10px 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 58px minmax(190px,1fr) 72px 58px minmax(120px,190px) 42px;
  align-items: center;
  gap: 12px;
  color: #fff;
  border-radius: 24px;
  background: rgba(20,12,35,.92);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 22px 55px rgba(25,7,42,.36);
  backdrop-filter: blur(18px) saturate(140%);
  transition: .32s cubic-bezier(.2,.8,.2,1);
}
.player-art { width: 58px; height: 58px; position: relative; }
.player-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 17px; }
.player-live-dot { position: absolute; right: -3px; bottom: -3px; width: 14px; height: 14px; border-radius: 50%; background: #ff375f; border: 3px solid #17101f; }
.player-info { min-width: 0; display: grid; line-height: 1.15; }
.player-info small { color: #fe78c5; font-size: .69rem; font-weight: 800; }
.player-info strong { margin-top: 4px; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-info span { margin-top: 3px; color: #aaa4b5; font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-eq { color: #fe78c5; opacity: .28; }
.player-shell.playing .player-eq { opacity: 1; }
.player-shell:not(.playing) .player-eq i { animation-play-state: paused; }
.player-play { width: 51px; height: 51px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 9px 22px rgba(241,61,175,.25); }
.player-play svg { grid-area: 1/1; font-size: 1.36rem; }
.player-play .icon-pause { display: none; }
.player-shell.playing .player-play .icon-play { display: none; }
.player-shell.playing .player-play .icon-pause { display: block; }
.volume-wrap { display: flex; align-items: center; gap: 8px; }
.volume-wrap svg { flex: 0 0 18px; color: #a9a4b3; }
.volume-wrap input { width: 100%; accent-color: var(--pink); }
.player-minimize, .player-expand { cursor: pointer; color: #fff; background: rgba(255,255,255,.08); border-radius: 12px; display: grid; place-items: center; }
.player-minimize { width: 38px; height: 38px; }
.player-expand { display: none; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); }
.player-shell.minimized { left: auto; right: 18px; transform: none; width: 68px; min-height: 68px; grid-template-columns: 1fr; padding: 8px; border-radius: 999px; }
.player-shell.minimized > :not(.player-expand) { display: none; }
.player-shell.minimized .player-expand { display: grid; }
.player-shell.minimized.playing .player-expand svg path { d: path("M6 5h4v14H6zm8 0h4v14h-4z"); }

.listen-modal { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; padding: 20px; }
.listen-modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(14,8,25,.68); backdrop-filter: blur(13px); }
.modal-card { width: min(520px, 100%); position: relative; overflow: hidden; padding: 34px; border-radius: 34px; text-align: center; background: rgba(255,255,255,.96); box-shadow: 0 34px 100px rgba(20,6,36,.38); animation: modalIn .35s cubic-bezier(.2,.8,.2,1); }
.modal-glow { position: absolute; width: 270px; height: 270px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--blue)); filter: blur(65px); opacity: .17; top: -140px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.modal-close { position: absolute; right: 18px; top: 18px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: #5d5f70; background: #f2edf5; }
.modal-close svg { fill: none; stroke: currentColor; stroke-width: 2; }
.modal-logo { width: 150px; height: 150px; margin: 6px auto 18px; object-fit: cover; border-radius: 32px; box-shadow: 0 20px 42px rgba(70,22,113,.15); }
.eyebrow.centered { margin-inline: auto; }
.modal-card h2 { margin: 16px 0 10px; font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -.04em; }
.modal-card > p { margin: 0 auto; max-width: 410px; color: var(--muted); line-height: 1.6; }
.modal-play { width: 100%; margin-top: 24px; min-height: 74px; padding: 10px 16px 10px 12px; border-radius: 21px; display: flex; align-items: center; gap: 14px; text-align: left; cursor: pointer; color: #fff; background: linear-gradient(135deg, var(--purple), var(--pink) 62%, var(--orange)); box-shadow: 0 18px 38px rgba(157,34,216,.26); transition: .2s ease; }
.modal-play-icon { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.16); }
.modal-play-icon svg { font-size: 1.5rem; }
.modal-play > span:last-child { display: grid; gap: 3px; }
.modal-play strong { font-size: 1rem; }
.modal-play small { color: rgba(255,255,255,.76); }
.modal-secondary { margin-top: 12px; padding: 11px 16px; border-radius: 13px; cursor: pointer; color: #5b5d70; background: transparent; font-weight: 800; }
.modal-secondary:hover { background: #f4eef7; }
.modal-help { margin-top: 16px; padding-top: 15px; border-top: 1px solid #eee6f1; color: #8b8794; font-size: .76rem; line-height: 1.5; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(241,61,175,0); } 100% { box-shadow: 0 0 0 0 rgba(241,61,175,0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-13px); } }
@keyframes breathe { 0%,100% { transform: scale(.98); opacity: .38; } 50% { transform: scale(1.025); opacity: .12; } }
@keyframes eq { from { transform: scaleY(.42); } to { transform: scaleY(1.08); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .nav > a { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 65px; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-badges > div { justify-content: center; }
  .hero-badges { justify-items: center; }
  .hero-visual { min-height: 520px; max-width: 650px; width: 100%; margin-inline: auto; }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about-art { max-width: 580px; margin-inline: auto; }
  .hosts-grid { gap: 18px; }
  .apps-card { grid-template-columns: 1fr; text-align: center; padding: 54px 35px; }
  .apps-copy > p { margin-inline: auto; }
  .store-buttons { justify-content: center; }
  .phone-mockup { width: 290px; }
  .cta { align-items: flex-start; flex-direction: column; }
  .player-shell { grid-template-columns: 54px minmax(150px,1fr) 54px 42px; }
  .player-eq, .volume-wrap { display: none; }
}

@media (max-width: 720px) {
  body { padding-bottom: 90px; }
  .section-shell { width: min(100% - 26px, 1180px); }
  .site-header { width: calc(100% - 20px); margin-top: 10px; top: 8px; border-radius: 19px; }
  .brand img { width: 43px; height: 43px; border-radius: 12px; }
  .brand small { display: none; }
  .nav-live { font-size: 0; width: 43px; height: 43px; padding: 0; border-radius: 13px; }
  .nav-live .live-dot { width: 11px; height: 11px; }
  .hero { gap: 15px; padding-block: 52px 54px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  .hero-copy > p { font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .primary-btn, .ghost-btn { width: 100%; }
  .hero-visual { min-height: 420px; }
  .main-logo-card { width: 69%; padding: 10px; border-radius: 29%; }
  .chip-live { left: 1%; top: 18%; }
  .chip-music { right: 1%; bottom: 18%; }
  .floating-chip { padding: 9px 11px; border-radius: 13px; font-size: .78rem; }
  .about, .hosts, .apps { padding-block: 78px; }
  .about { gap: 42px; }
  .about-copy h2, .section-heading h2, .apps-copy h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .feature-grid { grid-template-columns: 1fr; }
  .hosts-grid { grid-template-columns: 1fr; }
  .host-image { min-height: 560px; }
  .poster-card > img { min-height: 0; }
  .apps-card { min-height: 0; border-radius: 30px; padding: 42px 22px 48px; }
  .store-buttons { flex-direction: column; }
  .store-badge { width: 100%; justify-content: center; }
  .phone-mockup { width: min(280px, 82vw); margin-top: 16px; }
  .cta { margin-bottom: 75px; padding: 30px 24px; border-radius: 27px; }
  .footer-inner { min-height: 175px; flex-direction: column; justify-content: center; text-align: center; }
  .footer-brand { flex-direction: column; }
  .player-shell:not(.minimized) { bottom: max(8px, env(safe-area-inset-bottom)); width: calc(100% - 16px); grid-template-columns: 48px 1fr 50px 36px; gap: 8px; padding: 8px; border-radius: 20px; }
  .player-art { width: 48px; height: 48px; }
  .player-info span { display: none; }
  .player-play { width: 46px; height: 46px; }
  .player-minimize { width: 34px; height: 34px; }
  .player-shell.minimized { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); }
  .modal-card { padding: 30px 20px 24px; border-radius: 28px; }
  .modal-logo { width: 124px; height: 124px; }
}

@media (max-width: 430px) {
  .brand strong { font-size: .86rem; }
  .eyebrow { font-size: .68rem; }
  .hero-visual { min-height: 350px; }
  .floating-chip { font-size: .7rem; }
  .host-image { min-height: 470px; }
  .host-label { left: 20px; bottom: 20px; }
  .host-meta { padding: 18px; }
  .poster-overlay { right: 12px; bottom: 12px; }
  .poster-overlay > span { display: none; }
}

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