/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-alt: #0f0f0f;
  --fg: #f5f5f5;
  --fg-muted: rgba(245,245,245,0.55);
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.15);
  --violet: #7c3aed;
  --violet-dim: rgba(124,58,237,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  background: rgba(8,8,8,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__wave {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  opacity: 0.12;
}

.hero__wave--1 {
  width: 600px;
  height: 600px;
  bottom: -100px;
  right: -80px;
  animation: pulse-wave 6s ease-in-out infinite;
}

.hero__wave--2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -20px;
  opacity: 0.08;
  animation: pulse-wave 6s ease-in-out infinite 1.5s;
}

.hero__wave--3 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  right: 60px;
  opacity: 0.06;
  border-color: var(--violet);
  animation: pulse-wave 6s ease-in-out infinite 3s;
}

@keyframes pulse-wave {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.05); opacity: 0.2; }
}

.hero__glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  background: var(--amber-dim);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero__title--accent {
  color: var(--amber);
}

.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

.hero__stat:first-child { padding-left: 0; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 120px;
  line-height: 1.4;
}

.hero__stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  margin: 0 32px 0 0;
}

/* === SERVICES === */
.services {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 100px 32px;
}

.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services__header {
  margin-bottom: 64px;
}

.services__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 400px;
}

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

.service-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card--sync::before { background: var(--amber); }
.service-card--lease::before { background: var(--violet); }
.service-card--audio::before { background: #10b981; }

.service-card__icon {
  margin-bottom: 24px;
  color: var(--amber);
}

.service-card--lease .service-card__icon { color: var(--violet); }
.service-card--audio .service-card__icon { color: #10b981; }

.service-card__num {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}

.service-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-card__fee {
  font-size: 12px;
  color: var(--fg-muted);
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  display: inline-block;
}

/* === PROOF === */
.proof {
  padding: 100px 32px;
  background: var(--bg);
}

.proof__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.proof__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.proof__item {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: border-color 0.3s;
}

.proof__item:hover { border-color: rgba(245,158,11,0.3); }

.proof__figure {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 12px;
  line-height: 1;
}

.proof__caption {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* === WHYSTACK === */
.whystack {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.whystack__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whystack__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
}

.whystack__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.whystack__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.whystack__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gap-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.gap-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateX(4px);
}

.gap-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet-dim);
  border-radius: 10px;
  color: var(--violet);
}

.gap-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gap-card__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.closing__bg-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.closing__sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
}

.closing__quote {
  padding: 28px 36px;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: inline-block;
}

.closing__quote blockquote {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.closing__quote cite {
  font-size: 12px;
  color: var(--amber);
  font-style: normal;
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  padding: 48px 32px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer__meta p {
  font-size: 13px;
  color: rgba(245,245,245,0.3);
  font-weight: 300;
}

/* === LEAD CAPTURE === */
.lead-capture {
  margin-bottom: 56px;
}

.lead-capture__prompt {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.lead-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.lead-form__input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--fg);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.lead-form__input::placeholder { color: rgba(245,245,245,0.4); }
.lead-form__input:focus { border-color: var(--amber); }

.lead-form__btn {
  padding: 14px 28px;
  background: var(--amber);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.lead-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.3);
}

.lead-success {
  max-width: 460px;
  margin: 0 auto;
  padding: 16px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  color: #6ee7b7;
  font-size: 15px;
  font-weight: 500;
}

.lead-error {
  max-width: 460px;
  margin: 12px auto 0;
  padding: 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .whystack__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero__title { letter-spacing: -1px; }
  .hero__stat { padding: 0 20px 0 0; }
  .hero__stat-sep { margin: 0 20px 0 0; }
  .services, .proof, .whystack, .closing { padding: 72px 24px; }
  .services__grid { gap: 16px; }
  .proof__grid { grid-template-columns: 1fr; gap: 16px; }
  .footer__inner { flex-direction: column; }
  .nav { padding: 16px 24px; }
  .service-card { padding: 28px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 44px; }
  .hero__stat-num { font-size: 28px; }
  .hero__stats { gap: 16px; }
  .hero__stat-sep { display: none; }
  .hero__stat { padding: 0; }
}

/* ============================================
   BEAT STOREFRONT
   ============================================ */

/* Beat Store Page */
.store-page {
  min-height: 100vh;
  padding: 120px 32px 80px;
}

.store-page__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.store-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.store-page__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  background: var(--amber-dim);
}

.store-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.store-page__sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* Beat Card */
.beat-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
  margin-bottom: 48px;
}

.beat-card:hover {
  border-color: rgba(245,158,11,0.3);
}

/* Waveform Player */
.player {
  position: relative;
  background: var(--bg);
  padding: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.player__waveform {
  position: relative;
  height: 80px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  margin-bottom: 20px;
}

.player__waveform canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player__waveform-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.player__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(245,158,11,0.3);
}

.player__play-btn:hover { transform: scale(1.08); }
.player__play-btn.playing { background: var(--amber-dim); border: 2px solid var(--amber); }

.player__play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--bg);
}

.player__time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  font-family: 'Space Mono', monospace;
}

/* Beat Meta */
.beat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  flex-wrap: wrap;
}

.beat-meta__info { flex: 1; }

.beat-meta__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.beat-meta__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.beat-meta__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 4px 10px;
  background: var(--amber-dim);
  border-radius: 100px;
}

.beat-meta__tag--bpm,
.beat-meta__tag--key {
  color: var(--fg-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.beat-meta__price-from {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: right;
}

.beat-meta__price-from span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--amber);
  display: block;
}

/* License Tiers */
.licenses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0 32px 32px;
}

.license-card {
  background: var(--bg);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.license-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.12);
}

.license-card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.2);
}

.license-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 100px;
}

.license-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.license-card__format {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.license-card__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 16px;
  line-height: 1;
}

.license-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.license-card__features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.license-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 3px;
}

/* Checkout Form */
.checkout-form {
  margin-top: 12px;
}

.checkout-form__email {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.checkout-form__email::placeholder { color: rgba(245,245,245,0.35); }
.checkout-form__email:focus { border-color: var(--amber); }

.checkout-form__btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: var(--amber);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.checkout-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.3);
}

/* Payment Success */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.success-page__inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-page__icon {
  width: 80px;
  height: 80px;
  background: rgba(245,158,11,0.12);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-page__icon svg { width: 36px; height: 36px; stroke: var(--amber); fill: none; stroke-width: 2; }

.success-page__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.success-page__sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 40px;
}

.success-page__download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.success-page__download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

.success-page__email-note {
  font-size: 13px;
  color: rgba(245,245,245,0.4);
}

/* Download Page */
.download-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.download-page__inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.download-page__beat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.download-page__license {
  font-size: 14px;
  color: var(--amber);
  margin-bottom: 40px;
}

.download-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}

.download-page__btn:hover { transform: translateY(-2px); }

/* Store empty state */
.store-empty {
  text-align: center;
  padding: 80px 32px;
  color: var(--fg-muted);
}

.store-empty__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.store-empty__sub { font-size: 15px; font-weight: 300; }

/* Error banner */
.error-banner {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #fca5a5;
}

/* Responsive store */
@media (max-width: 768px) {
  .store-page { padding: 100px 20px 60px; }
  .licenses { grid-template-columns: 1fr; padding: 0 20px 20px; }
  .beat-meta { padding: 20px; }
  .player { padding: 24px; }
  .beat-meta__title { font-size: 22px; }
  .beat-meta__price-from { text-align: left; }
}