:root {
  --bg: #FAF8F3;
  --bg-dark: #1a1510;
  --bg-card: #F2EDE4;
  --fg: #1a1510;
  --fg-light: #6b5f52;
  --fg-muted: #9e9082;
  --accent: #D63A2A;
  --accent-dark: #b02f22;
  --gold: #B8842A;
  --cream: #FAF8F3;
  --border: #e5ddd0;
}

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

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

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: #f0e8de;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* RECORD VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.record-stack {
  position: relative;
  width: 280px;
  height: 280px;
}
.record {
  position: absolute;
  border-radius: 50%;
}
.record-outer {
  width: 280px;
  height: 280px;
  background: repeating-radial-gradient(
    circle at center,
    #1a1510 0px,
    #1a1510 28px,
    #2c2018 28px,
    #2c2018 30px
  );
  box-shadow: 0 20px 60px rgba(26,21,16,0.25);
}
.record-mid {
  width: 200px;
  height: 200px;
  top: 40px;
  left: 40px;
  background: #1a1510;
}
.record-inner {
  width: 80px;
  height: 80px;
  top: 100px;
  left: 100px;
  background: var(--accent);
}
.record-label {
  position: absolute;
  top: 90px;
  left: 90px;
  width: 100px;
  height: 100px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.label-text {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--fg);
}
.label-sub {
  font-size: 9px;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ALERT BUBBLE */
.alert-bubble {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: white;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(214,58,42,0.15);
  max-width: 260px;
  animation: pulse-alert 3s ease-in-out infinite;
}
@keyframes pulse-alert {
  0%, 100% { box-shadow: 0 8px 32px rgba(214,58,42,0.15); }
  50% { box-shadow: 0 8px 48px rgba(214,58,42,0.3); }
}
.alert-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.alert-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.alert-detail {
  font-size: 12px;
  color: var(--fg-light);
  line-height: 1.4;
  margin-top: 2px;
}

/* MARKETPLACES */
.marketplaces {
  background: var(--bg-dark);
  padding: 32px 40px;
}
.marketplaces-inner { max-width: 1200px; margin: 0 auto; }
.marketplaces-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  text-align: center;
}
.marketplaces-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.marketplace-chip {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.marketplace-chip:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: var(--cream);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.features-header p {
  font-size: 17px;
  color: var(--fg-light);
  max-width: 480px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: #f8f4ee; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: #f0e8de;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg);
}
.how-it-works-inner { max-width: 900px; margin: 0 auto; }
.how-header {
  text-align: center;
  margin-bottom: 72px;
}
.how-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--fg);
  margin-bottom: 12px;
}
.how-header p {
  font-size: 17px;
  color: var(--fg-light);
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  position: relative;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: -40px;
}

/* SPOTIFY BANNER */
.spotify-banner {
  background: var(--bg-dark);
  color: white;
  padding: 100px 40px;
}
.spotify-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,185,84,0.15);
  color: #1DB954;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 28px;
}
.spotify-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}
.spotify-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.spotify-note {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.4) !important;
}

/* PLAYLIST CARD */
.playlist-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}
.playlist-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.playlist-cover {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.playlist-name {
  font-weight: 600;
  font-size: 15px;
  color: white;
}
.playlist-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.vinyl-items { display: flex; flex-direction: column; gap: 14px; }
.vinyl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.vinyl-item-icon { flex-shrink: 0; }
.vinyl-item span:first-of-type { flex: 1; }
.vinyl-price {
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 13px;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--accent);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}
.closing-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 60px;
  padding: 16px 32px;
}
.closing-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
}
.closing-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 8px;
}
.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-social {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}
.footer-social:hover {
  color: rgba(255,255,255,0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 300px; }
  .record-stack { width: 220px; height: 220px; }
  .record-outer { width: 220px; height: 220px; }
  .record-mid { width: 160px; height: 160px; top: 30px; left: 30px; }
  .record-inner { width: 60px; height: 60px; top: 80px; left: 80px; }
  .record-label { top: 70px; left: 70px; width: 80px; height: 80px; }
  .label-text { font-size: 9px; }
  .label-sub { font-size: 7px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; }
  .spotify-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
}