/* ===========================
   CUTSTACK — CUSTOM STYLES
   =========================== */

:root {
  --bg-primary: #080C09;
  --bg-secondary: #0D2B1A;
  --bg-card: #0F2E1C;
  --accent: #E8A927;
  --accent-dim: #B8841E;
  --text-primary: #F0EFE9;
  --text-secondary: #9CA397;
  --text-muted: #5C665A;
  --border: rgba(232, 169, 39, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-size: 20px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -2px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text-primary);
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(13, 43, 26, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(232, 169, 39, 0.05) 0%, transparent 60%),
    linear-gradient(160deg, #080C09 0%, #0A1A0E 50%, #080C09 100%);
}

.hero-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  right: -10%;
  height: 60%;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(232, 169, 39, 0.04) 0%, transparent 70%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 169, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 169, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

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

.headline-line { display: block; }

.headline-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-specs-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.spec-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(232, 169, 39, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 18px;
}

.spec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

/* ── VIBE ── */
.vibe {
  padding: 100px 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vibe-inner {
  max-width: 820px;
  margin: 0 auto;
}

.vibe-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.vibe-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.vibe-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  margin-bottom: 28px;
}

.vibe-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── SERVICES ── */
.services {
  padding: 100px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.service-card:hover {
  background: rgba(15, 46, 28, 0.8);
}

.service-card--main { grid-column: span 1; }

.service-card--wide { grid-column: span 2; }

.service-icon {
  width: 28px;
  height: 28px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.service-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.service-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-top: auto;
}

.service-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── SOUND SPECS ── */
.sound-specs {
  padding: 80px 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sound-specs .specs-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.specs-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.specs-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
}

.specs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(232, 169, 39, 0.08);
  gap: 24px;
}

.spec-key {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.spec-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* ── ARTIST SECTION ── */
.artist-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.artist-body {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 24px;
}

.artist-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.artist-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 64px;
}

.closing-manifesto {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-size: 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-sep { color: var(--border); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-specs-row { gap: 10px; }
  .services { padding: 60px 20px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .specs-grid { grid-template-columns: 1fr; }
  .artist-stats { flex-direction: column; gap: 32px; }
  .vibe { padding: 60px 20px; }
  .artist-section { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer { padding: 40px 20px; }
}

/* ===========================
   BEAT STORE STYLES
   =========================== */

/* Page shell */
.beat-store-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

.beat-store-header {
  padding: 0 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.beat-store-title span { color: var(--accent); font-style: italic; }

.beat-store-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
}

/* Grid */
.beats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

/* Beat card */
.beat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.beat-card:hover {
  border-color: rgba(232, 169, 39, 0.35);
  transform: translateY(-2px);
}

.beat-card-art {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.beat-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beat-card-art-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0D2B1A 0%, #0F2E1C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.beat-card-art-placeholder .wave-icon {
  font-size: 32px;
  color: var(--accent);
  opacity: 0.6;
}

.beat-waves {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.beat-wave-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.beat-card.is-playing .beat-wave-bar { opacity: 1; }

/* Player row */
.beat-player-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(8, 12, 9, 0.5);
  border-bottom: 1px solid var(--border);
}

.beat-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, background 0.15s;
  color: var(--bg-primary);
  font-size: 14px;
}

.beat-play-btn:hover { transform: scale(1.08); background: var(--accent-dim); }
.beat-play-btn:active { transform: scale(0.96); }

.beat-meta {
  flex: 1;
  min-width: 0;
}

.beat-title-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beat-tags-row {
  display: flex;
  gap: 8px;
  margin-top: 3px;
}

.beat-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(232, 169, 39, 0.06);
  padding: 2px 8px;
  border-radius: 3px;
}

.beat-bpm-key {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-display);
  white-space: nowrap;
}

.beat-duration {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
}

/* Progress bar */
.beat-progress-bar {
  height: 3px;
  background: rgba(232, 169, 39, 0.1);
  cursor: pointer;
  position: relative;
}

.beat-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* License row */
.beat-license-row {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beat-price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.beat-licenses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.license-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--font-body);
}

.license-btn:hover {
  background: rgba(232, 169, 39, 0.06);
  border-color: rgba(232, 169, 39, 0.3);
}

.license-btn.is-exclusive {
  grid-column: span 2;
  background: rgba(232, 169, 39, 0.08);
  border-color: rgba(232, 169, 39, 0.25);
}

.license-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 2px;
}

.license-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.license-desc {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  line-height: 1.4;
}

/* Checkout overlay */
.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 9, 0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.checkout-overlay.is-open {
  display: flex;
}

.checkout-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  position: relative;
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.checkout-close:hover { color: var(--text-primary); }

.checkout-beat-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.checkout-license-type {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.checkout-form { display: flex; flex-direction: column; gap: 14px; }

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-muted); }

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(232, 169, 39, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(232, 169, 39, 0.15);
  margin-top: 8px;
}

.checkout-total-label { font-size: 13px; color: var(--text-secondary); }
.checkout-total-amount { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--accent); }

.checkout-btn {
  width: 100%;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.5px;
}

.checkout-btn:hover { background: var(--accent-dim); }
.checkout-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.checkout-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 300;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 360px;
}

.toast.is-visible { display: flex; }
.toast-icon { color: var(--accent); font-size: 18px; }

/* Contact section */
.contact-section {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contact-detail-icon { color: var(--accent); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.select-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C665A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.submit-btn {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  margin-top: 4px;
}

.submit-btn:hover { background: var(--accent-dim); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

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

.success-content { max-width: 480px; }

.success-icon {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

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

.success-message {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.success-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.success-cta:hover { background: var(--accent-dim); }

/* Audio element (hidden) */
#beat-audio {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .beat-store-header { padding: 0 20px 32px; }
  .beats-grid { padding: 0 20px; grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; padding: 0 20px; margin-top: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .beat-licenses { grid-template-columns: 1fr; }
  .license-btn.is-exclusive { grid-column: span 1; }
  .checkout-modal { padding: 28px 24px; }
  .toast { bottom: 20px; right: 20px; left: 20px; max-width: none; }
}