:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ece4;
  --fg-muted: #8a847a;
  --gold: #c9a84c;
  --gold-light: #e4c96a;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --accent-hair: #d4a373;
  --accent-products: #b48ead;
  --accent-music: #81a1c1;
  --accent-content: #a3be8c;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.gold { color: var(--gold); }
.gold-text { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero-lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

/* ===== STREAMS ===== */
.streams {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.streams-header h2,
.features-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.streams-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.stream-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 12px;
  padding: var(--space-md);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stream-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stream-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.stream-hair .stream-icon { background: rgba(212, 163, 115, 0.15); color: var(--accent-hair); }
.stream-products .stream-icon { background: rgba(180, 142, 173, 0.15); color: var(--accent-products); }
.stream-music .stream-icon { background: rgba(129, 161, 193, 0.15); color: var(--accent-music); }
.stream-content .stream-icon { background: rgba(163, 190, 140, 0.15); color: var(--accent-content); }

.stream-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.stream-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

.feature-row:first-child {
  border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.feature-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  min-width: 40px;
  padding-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 550px;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-elevated);
  margin-top: var(--space-lg);
}

.philosophy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.philosophy blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--fg);
  margin: var(--space-md) auto;
  max-width: 750px;
  border: none;
  padding: 0;
}

.philosophy-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
}

.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-sep {
  margin: 0 0.75rem;
  opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: var(--space-lg) var(--space-sm); }
  .streams, .features { padding: var(--space-lg) var(--space-sm); }
  .streams-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .stat-divider { width: 40px; height: 1px; }
  .feature-row { flex-direction: column; gap: var(--space-xs); }
  .feature-number { min-width: auto; }
  .philosophy { padding: var(--space-lg) var(--space-sm); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .stream-card { padding: var(--space-sm); }
}