:root {
  color-scheme: dark;
  --bg: #05060c;
  --bg-soft: #0b0d18;
  --panel: #101321;
  --panel-2: #15192b;
  --text: #f7f8ff;
  --muted: #b8bfd6;
  --subtle: #77809b;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff3fb9;
  --violet: #8a5cff;
  --cyan: #18d7ff;
  --blue: #3f80ff;
  --green: #56f0ba;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --glass: rgba(255, 255, 255, 0.052);
  --glass-strong: rgba(255, 255, 255, 0.075);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 34px 96px rgba(0, 0, 0, 0.46);
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 63, 185, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(24, 215, 255, 0.20), transparent 25rem),
    linear-gradient(180deg, #03040a 0%, var(--bg) 52%, #070914 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: clip;
}

::selection {
  background: rgba(255, 225, 47, 0.28);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 225, 47, 0.92);
  outline-offset: 4px;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.1rem;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(255, 63, 185, 0.38);
  transition: transform 260ms var(--ease-premium), box-shadow 260ms var(--ease-premium);
}

.brand:hover .brand-icon {
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 0 34px rgba(255, 63, 185, 0.48), 0 0 26px rgba(24, 215, 255, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 220ms var(--ease-premium);
}

.nav a:hover,
.nav a:focus-visible {
  transform: translateY(-1px);
}

.nav a::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(from var(--nav-ring-angle, 0deg), #ffe12f, #18d7ff, #8a5cff, #ff3fb9, #56f0ba, #ffe12f);
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(5, 6, 12, 0.92);
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.site-footer a:hover {
  color: var(--text);
}

.nav a:hover::before,
.nav a:hover::after,
.nav a:focus-visible::before,
.nav a:focus-visible::after {
  opacity: 1;
}

.nav a:hover::before,
.nav a:focus-visible::before {
  animation: navRainbowChase 900ms linear infinite;
}

@property --nav-ring-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes navRainbowChase {
  to { --nav-ring-angle: 360deg; }
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms ease,
    background 220ms ease;
}

.header-cta,
.button.primary {
  background: #050505;
  color: #ffe12f;
  border-color: rgba(255, 225, 47, 0.72);
  box-shadow: 0 14px 38px rgba(255, 225, 47, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 47, 0.9);
  box-shadow: 0 18px 46px rgba(255, 225, 47, 0.22), 0 0 0 5px rgba(255, 225, 47, 0.06);
}

.header-cta:active,
.button:active {
  transform: translateY(0) scale(0.985);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.072);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 5vw, 58px);
  padding: 42px 0 72px;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.91;
  margin: 0;
  max-width: 720px;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
  max-width: 650px;
  margin: 28px 0 0;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.availability {
  color: var(--subtle);
  margin-top: 20px;
  font-size: 0.95rem;
}

.maker-note {
  color: #ffe12f;
  margin: 12px 0 0;
  font-weight: 800;
}

.phone-stage {
  min-height: 760px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.live-listening-panel {
  width: min(100%, 610px);
  padding: 18px;
  border: 1px solid rgba(255, 225, 47, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(138, 92, 255, 0.18), rgba(24, 215, 255, 0.10));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  z-index: 4;
  backdrop-filter: blur(22px) saturate(1.14);
  -webkit-backdrop-filter: blur(22px) saturate(1.14);
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), border-color 320ms ease;
}

.live-listening-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 225, 47, 0.34);
  box-shadow: var(--shadow-deep), 0 0 70px rgba(138, 92, 255, 0.12);
}

.live-listening-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.live-listening-heading span {
  color: #ffe12f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-listening-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.02;
}

.live-listening-heading a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid rgba(255, 225, 47, 0.55);
  border-radius: 12px;
  color: #ffe12f;
  background: rgba(5, 5, 5, 0.58);
  font-weight: 900;
  font-size: 0.86rem;
  transition: transform 200ms var(--ease-premium), background 200ms ease, border-color 200ms ease;
}

.live-listening-heading a:hover,
.live-listening-heading a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 225, 47, 0.86);
  background: rgba(5, 5, 5, 0.72);
}

.live-listening-panel p {
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.94rem;
}

.live-feed-window {
  position: relative;
  max-height: 210px;
  overflow: hidden;
  border-radius: 16px;
}

.live-feed-window::before,
.live-feed-window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 2;
  pointer-events: none;
}

.live-feed-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(19, 16, 35, 0.96), rgba(19, 16, 35, 0));
}

.live-feed-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(12, 12, 22, 0.96), rgba(12, 12, 22, 0));
}

.live-feed-list {
  display: grid;
  gap: 10px;
  animation: liveFeedScroll 90s linear infinite;
}

.live-listening-panel:hover .live-feed-list {
  animation-play-state: paused;
}

.live-feed-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(5, 6, 12, 0.55);
  transition: transform 220ms var(--ease-premium), background 220ms ease, border-color 220ms ease;
}

.live-feed-item:hover {
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(5, 6, 12, 0.72);
}

.live-feed-item img {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  object-fit: cover;
  background: #090b12;
}

.live-feed-item strong,
.live-feed-item span,
.live-feed-item small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-feed-item strong {
  font-size: 0.94rem;
}

.live-feed-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.live-feed-item small {
  margin-top: 4px;
  color: #ffe12f;
  font-size: 0.74rem;
  font-weight: 800;
}

@keyframes liveFeedScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.phone-stack {
  width: 100%;
  min-height: 582px;
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  width: 285px;
  height: 582px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  background: linear-gradient(145deg, #1f2436, #05060b 42%, #020308);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 9px #080910;
  padding: 16px;
  position: relative;
  transform-origin: center;
  transition: transform 360ms var(--ease-premium), box-shadow 360ms var(--ease-premium), border-color 360ms ease;
}

.phone-main:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-deep), inset 0 0 0 9px #080910;
}

.phone-main {
  z-index: 3;
}

.phone-side {
  position: absolute;
  transform: scale(0.86) rotate(-8deg) translateX(-220px);
  opacity: 0.82;
  z-index: 2;
}

.phone-side.right {
  transform: scale(0.84) rotate(8deg) translateX(226px);
  z-index: 1;
}

.phone-bar {
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #03040a;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.app-screen {
  width: 100%;
  height: 100%;
  border-radius: 31px;
  background: linear-gradient(180deg, #15182a 0%, #070911 100%);
  padding: 54px 18px 18px;
  overflow: hidden;
}

.phone-shot {
  width: calc(100% + 36px);
  height: calc(100% + 72px);
  margin: -54px -18px -18px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.screen-title {
  margin: 0 0 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.artwork {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.app-screen h2 {
  margin: 22px 0 4px;
  font-size: 1.4rem;
}

.app-screen p {
  color: var(--muted);
}

.progress {
  margin-top: 28px;
  height: 5px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.controls span,
.controls strong {
  display: block;
  border-radius: 50%;
  background: white;
}

.controls span {
  width: 34px;
  height: 34px;
  opacity: 0.75;
}

.controls strong {
  width: 58px;
  height: 58px;
}

.avatar-row {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
}

.avatar-row span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
}

.message-line {
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.message-line.short {
  width: 78%;
}

.message-line.tiny {
  width: 58%;
}

.voice {
  text-align: center;
}

.voice-ring {
  width: 126px;
  height: 126px;
  margin: 44px auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #060712 30%, transparent 31%),
    conic-gradient(from 20deg, var(--pink), var(--violet), var(--cyan), var(--pink));
  box-shadow: 0 0 50px rgba(255, 63, 185, 0.35);
}

.voice-chip {
  margin: 12px auto;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

.apple-praise,
.feature-grid,
.sections,
.screens-section,
.top-hit-section,
.musickraze-section,
.web-app-section,
.deep-dive,
.cta-band,
.legal-preview,
.site-footer,
.legal-page {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.apple-praise {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 38px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(255, 63, 185, 0.12), rgba(24, 215, 255, 0.08));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
}

.apple-praise h2,
.detail-card h2,
.legal-preview h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.apple-praise p,
.detail-card p,
.legal-preview p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
  text-wrap: pretty;
}

.apple-music-required {
  display: grid;
  gap: 18px;
}

.apple-music-badge {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 225, 47, 0.42);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.48);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, background 220ms ease;
}

.apple-music-badge:hover,
.apple-music-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 47, 0.76);
  background: rgba(5, 5, 5, 0.64);
}

.apple-music-badge img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 18px;
}

.apple-music-badge span {
  color: #ffe12f;
  font-weight: 800;
  line-height: 1.35;
}

.musickraze-section {
  padding: 78px 0 12px;
}

.musickraze-section .section-heading,
.web-app-section .section-heading {
  max-width: 900px;
}

.web-app-section {
  padding: 78px 0 12px;
}

.web-app-section .section-heading a {
  color: #ffe12f;
  font-weight: 800;
}

.musickraze-shot,
.web-app-shot {
  display: block;
  border: 1px solid rgba(255, 225, 47, 0.22);
  border-radius: 22px;
  overflow: hidden;
  background: #070914;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transition: transform 300ms var(--ease-premium), box-shadow 300ms var(--ease-premium), border-color 300ms ease;
}

.web-app-shot {
  border-color: rgba(138, 92, 255, 0.42);
}

.musickraze-shot:hover,
.web-app-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 225, 47, 0.36);
  box-shadow: var(--shadow-deep);
}

.musickraze-shot img,
.web-app-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.addon-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 225, 47, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 240ms var(--ease-premium), background 240ms ease, border-color 240ms ease;
}

.addon-callout:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 47, 0.34);
  background: rgba(255, 255, 255, 0.058);
}

.addon-callout h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.addon-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 72px 0 24px;
}

.feature-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  transition: transform 260ms var(--ease-premium), box-shadow 260ms var(--ease-premium), border-color 260ms ease, background 260ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.feature-icon::before {
  font-size: 1.15rem;
  font-weight: 900;
}

.feature-icon.apple::before { content: "AM"; }
.feature-icon.cyan::before { content: "AI"; }
.feature-icon.green::before { content: "ID"; }
.feature-icon.blue::before { content: "DM"; }
.feature-icon.pink::before { content: "BB"; }
.feature-icon.rose::before { content: "LV"; }

.feature-icon.apple { background: linear-gradient(135deg, #fb4b5f, #ff7a4c); }
.feature-icon.cyan { background: linear-gradient(135deg, var(--cyan), var(--violet)); }
.feature-icon.green { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.feature-icon.blue { background: linear-gradient(135deg, #3f80ff, #18d7ff); }
.feature-icon.pink { background: linear-gradient(135deg, var(--pink), var(--violet)); }
.feature-icon.rose { background: linear-gradient(135deg, #ff4f78, #ff3fb9); }

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-wrap: balance;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.screens-section {
  padding: 78px 0 12px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p,
.cta-band p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.08rem;
  margin: 18px 0 0;
  max-width: 760px;
  text-wrap: pretty;
}

.gallery-shell {
  position: relative;
  margin-inline: calc((100vw - min(1180px, 100vw - 32px)) / -2);
  padding: 20px max(16px, calc((100vw - 1180px) / 2)) 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 12, 0.96), transparent 12%, transparent 88%, rgba(5, 6, 12, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  contain: paint;
}

.gallery-shell::before,
.gallery-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: max(40px, calc((100vw - 1180px) / 2 + 80px));
  z-index: 2;
  pointer-events: none;
}

.gallery-shell::before {
  left: 0;
  background: linear-gradient(90deg, #05060c, rgba(5, 6, 12, 0));
}

.gallery-shell::after {
  right: 0;
  background: linear-gradient(270deg, #05060c, rgba(5, 6, 12, 0));
}

.screenshot-gallery {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(16px, calc((100vw - 1180px) / 2));
  padding: 6px 0 24px;
  scrollbar-color: rgba(255, 225, 47, 0.72) rgba(255, 255, 255, 0.08);
}

.screenshot-gallery::-webkit-scrollbar {
  height: 10px;
}

.screenshot-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.screenshot-gallery::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ffe12f, var(--cyan));
  border-radius: 999px;
}

.screenshot-gallery figure {
  flex: 0 0 clamp(238px, 24vw, 312px);
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: #090b12;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 0 10px rgba(255, 255, 255, 0.035);
  transition: transform 280ms var(--ease-premium), box-shadow 280ms var(--ease-premium), border-color 280ms ease;
}

.screenshot-gallery figure:hover img {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 0 10px rgba(255, 255, 255, 0.045);
}

.screenshot-gallery figcaption {
  min-height: 3.9em;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
  padding: 15px 6px 0;
}

.top-hit-section {
  padding: 46px 0 18px;
}

.top-hit-copy span {
  display: inline-flex;
  color: #ffe12f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-hit-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.top-hit-copy p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 1.02rem;
  text-wrap: pretty;
}

.top-hit-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(164px, 188px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 12px 4px 22px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(255, 225, 47, 0.64) rgba(255, 255, 255, 0.08);
}

.top-hit-rail::-webkit-scrollbar {
  height: 8px;
}

.top-hit-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.top-hit-rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ffe12f, var(--pink), var(--cyan));
  border-radius: 999px;
}

.top-hit-card {
  scroll-snap-align: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  transition: transform 260ms var(--ease-premium), border-color 260ms ease, box-shadow 260ms var(--ease-premium);
}

.top-hit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 225, 47, 0.28);
  box-shadow: var(--shadow-soft), 0 0 48px rgba(255, 63, 185, 0.1);
}

.hit-art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 18px 36px rgba(0, 0, 0, 0.26);
}

.hit-art::before,
.hit-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hit-art::before {
  width: 84%;
  height: 84%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 58%);
  transform: translate(18%, -18%);
}

.hit-art::after {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.11);
}

.hit-art span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.45rem;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hit-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hit-art:has(img)::before {
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.28));
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  transform: none;
  z-index: 2;
}

.hit-one .hit-art { background: linear-gradient(135deg, #ff3fb9, #8a5cff 52%, #18d7ff); }
.hit-two .hit-art { background: linear-gradient(135deg, #ffe12f, #ff7a4c 48%, #ff3fb9); }
.hit-three .hit-art { background: linear-gradient(135deg, #18d7ff, #3f80ff 52%, #8a5cff); }
.hit-four .hit-art { background: linear-gradient(135deg, #8a5cff, #ff3fb9 48%, #ffe12f); }
.hit-five .hit-art { background: linear-gradient(135deg, #56f0ba, #18d7ff 48%, #3f80ff); }

.hit-meta {
  min-width: 0;
  padding: 13px 2px 2px;
}

.hit-meta small,
.hit-meta strong,
.hit-meta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hit-meta small {
  color: #ffe12f;
  font-size: 0.74rem;
  font-weight: 900;
}

.hit-meta strong {
  margin-top: 6px;
  color: var(--text);
  font-size: 1rem;
}

.hit-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.sections {
  display: grid;
  gap: 18px;
  padding: 34px 0 74px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  align-items: center;
  gap: 34px;
  min-height: 330px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(21, 25, 43, 0.94), rgba(10, 12, 22, 0.94));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transition: transform 280ms var(--ease-premium), box-shadow 280ms var(--ease-premium), border-color 280ms ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-deep);
}

.detail-card.split {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
}

.detail-card ul,
.legal-page ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.legal-page li {
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
}

.detail-card li::before,
.legal-page li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0;
  top: 0.72em;
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.22);
}

.mini-player img {
  width: 78px;
  height: 78px;
  border-radius: 20px;
}

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

.mini-player span {
  color: var(--muted);
  margin-top: 6px;
}

.wave-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(24, 215, 255, 0.2) 10% 11%, transparent 11% 20%),
    linear-gradient(135deg, rgba(24, 215, 255, 0.14), rgba(255, 63, 185, 0.12));
}

.concierge-panel {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.concierge-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.compact {
  margin-top: 24px;
}

.deep-dive {
  padding: 18px 0 84px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 24px;
  transition: transform 240ms var(--ease-premium), background 240ms ease, border-color 240ms ease, box-shadow 240ms var(--ease-premium);
}

.detail-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.062);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.detail-grid h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.detail-grid p {
  color: var(--muted);
  margin: 0;
  line-height: 1.58;
  font-size: 0.96rem;
}

.cta-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 63, 185, 0.16), rgba(24, 215, 255, 0.12)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.cta-icon {
  width: 86px;
  height: 86px;
  border-radius: 23px;
  box-shadow: 0 0 34px rgba(255, 63, 185, 0.32);
}

.legal-preview {
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.legal-preview p {
  max-width: 680px;
  margin: 18px auto 0;
}

.legal-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.legal-links a {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  transition: transform 200ms var(--ease-premium), color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  color: var(--subtle);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
}

.screens-section,
.musickraze-section,
.web-app-section,
.deep-dive,
.legal-preview {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.legal-page {
  padding: 42px 0 90px;
  max-width: 900px;
}

.legal-page h2 {
  margin: 38px 0 12px;
  font-size: 1.5rem;
}

.legal-page .back-link {
  color: var(--cyan);
  display: inline-block;
  margin-bottom: 30px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .apple-praise,
  .detail-card,
  .detail-card.split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
    align-items: start;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone-side {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .screenshot-gallery {
    gap: 22px;
  }

  .top-hit-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-hit-copy p {
    max-width: 680px;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    padding: 16px 0;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero,
  .apple-praise,
  .feature-grid,
  .sections,
  .screens-section,
  .top-hit-section,
  .musickraze-section,
  .web-app-section,
  .deep-dive,
  .cta-band,
  .legal-preview,
  .site-footer,
  .legal-page {
    width: min(100% - 24px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.6rem);
    line-height: 0.94;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-stage {
    min-height: auto;
  }

  .live-listening-panel {
    padding: 16px;
  }

  .live-listening-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .live-listening-heading a {
    text-align: center;
  }

  .phone-stack {
    min-height: 500px;
    overflow: hidden;
  }

  .addon-callout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .phone {
    width: 245px;
    height: 500px;
  }

  .apple-praise,
  .detail-card {
    padding: 26px;
    border-radius: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-gallery {
    gap: 18px;
    scroll-padding-inline: 14px;
  }

  .gallery-shell {
    margin-inline: -12px;
    padding-inline: 14px;
  }

  .screenshot-gallery figure {
    flex-basis: min(74vw, 292px);
  }

  .top-hit-section {
    padding-top: 34px;
  }

  .top-hit-rail {
    grid-auto-columns: minmax(150px, 72vw);
    padding-bottom: 18px;
  }

  .cta-band {
    padding: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

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

  .live-feed-list {
    animation: none;
  }
}
