:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --bg-dark: #1C1430;
  --fg: #1A1025;
  --fg-muted: #6B5E7A;
  --accent: #E8533A;
  --accent-warm: #FF8B6B;
  --purple: #4A2C8A;
  --purple-light: #7B5FB8;
  --gold: #D4A84B;
  --border: #E0D8CC;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.02em;
}
.site-nav {
  display: flex;
  gap: 32px;
}
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 100px 40px 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* MAGAZINE MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.magazine-mock {
  position: relative;
  display: flex;
  align-items: center;
}
.mock-spine {
  width: 12px;
  height: 260px;
  background: var(--accent);
  border-radius: 2px 0 0 2px;
  flex-shrink: 0;
}
.mock-cover {
  width: 200px;
  height: 260px;
  background: var(--purple);
  border-radius: 0 4px 4px 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 8px 8px 32px rgba(74, 44, 138, 0.25);
}
.mock-cover-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.mock-cover-issue {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-align: center;
  margin: auto 0;
}
.mock-cover-featured {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.mock-cover-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
}
.mock-rings {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ring {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
}

/* STATS */
.stats-row {
  background: var(--purple);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat {
  text-align: center;
  flex: 1;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* PLATFORM */
.platform {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 16, 37, 0.08);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.platform-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.platform-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}
.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bg-alt);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ARTISTS */
.artists {
  padding: 100px 40px;
  background: var(--purple);
}
.artists-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.artists .section-label { color: var(--accent-warm); }
.artists .section-headline { color: var(--white); }
.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.artist-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
}
.artist-card:hover { background: rgba(255,255,255,0.12); }
.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.artist-type {
  font-size: 0.75rem;
  color: var(--accent-warm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.artist-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.artists-footer {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg-dark);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.closing-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.closing-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
}
.closing-visual {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.globe-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(74, 44, 138, 0.4);
  border: 1px solid rgba(232, 83, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
}

/* FOOTER */
.site-footer {
  padding: 32px 40px;
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 2px;
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .magazine-mock { transform: scale(0.85); }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-inner { flex-direction: column; text-align: center; }
  .closing-text p { max-width: 100%; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .site-nav { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 40px; }
  .stats-row, .platform, .features, .artists, .closing { padding: 60px 20px; }
  .platform-grid { grid-template-columns: 1fr; }
  .artist-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 16px 20px; }
}