:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f5f0e8;
  --fg-muted: #8a8578;
  --gold: #d4a843;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --border: #222222;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

* { 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: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== WHAT ===== */
.what {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.what-inner {
  max-width: 900px;
  margin: 0 auto;
}

.what-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.what h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 700px;
}

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

.what-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 4px;
}

.what-icon {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.what-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.what-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

.what-answer {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.what-answer p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== STREAMS ===== */
.streams {
  padding: 100px 24px;
}

.streams-inner {
  max-width: 900px;
  margin: 0 auto;
}

.streams-header {
  margin-bottom: 60px;
}

.streams-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.stream-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.stream-item:first-child {
  border-top: 1px solid var(--border);
}

.stream-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 40px;
  padding-top: 2px;
}

.stream-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stream-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== CULTURE ===== */
.culture {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.culture-inner {
  max-width: 900px;
  margin: 0 auto;
}

.culture-block {
  margin-bottom: 64px;
}

.culture-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.culture-block p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
  font-weight: 300;
}

.culture-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.culture-closer {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 80px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-statement {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .culture-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .stream-item {
    gap: 20px;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px 40px;
  }

  .what, .streams, .culture {
    padding: 64px 20px;
  }

  .site-footer {
    padding: 60px 20px;
  }
}