:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --fg: #f0ece4;
  --fg-muted: #9b958a;
  --accent: #c9a55c;
  --accent-dim: rgba(201, 165, 92, 0.12);
  --border: rgba(240, 236, 228, 0.08);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  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;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.hero-tagline strong {
  color: var(--fg);
  font-weight: 500;
}

/* Hero right */
.hero-stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-item {
  padding: 20px 0;
}
.stat-item:first-child { padding-top: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-divider {
  height: 1px;
  background: var(--border);
}

/* SECTION LABELS */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* SYSTEM */
.system {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.system-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.system-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.system-intro {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.system-card {
  background: var(--surface);
  padding: 32px 28px;
}
.card-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.system-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.system-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.niches-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.niches-body {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.niche-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: var(--bg);
}

/* Ideal client box */
.ideal-client-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.ideal-header {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ideal-list, .avoid-list {
  list-style: none;
  padding: 0;
}
.ideal-list li, .avoid-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.ideal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.avoid-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.4;
}
.ideal-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.avoid-header {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-bottom: 16px;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin: 24px 0 32px;
  max-width: 720px;
}
.manifesto-quote em {
  color: var(--accent);
  font-style: normal;
}
.manifesto-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 64px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.mstat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.mstat-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero, .system, .niches, .manifesto, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { display: none; }
  .system-grid {
    grid-template-columns: 1fr 1fr;
  }
  .niches-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-note {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .system-grid {
    grid-template-columns: 1fr;
  }
}