:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --fg: #f0ede5;
  --fg-muted: rgba(240, 237, 229, 0.45);
  --accent: #c8f542;
  --accent-dim: rgba(200, 245, 66, 0.12);
  --border: rgba(240, 237, 229, 0.08);
  --pink: #e84b7a;
  --blue: #4b9fe8;
  --green: #42d474;
  --purple: #9b6be8;
  --sand: #c8b99a;
  --black: #1a1a1a;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-line { display: block; }
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
  font-weight: 300;
}

/* Hero Visual — abstract color panels */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.color-panel {
  height: 72px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.panel-pink { background: linear-gradient(135deg, #e84b7a 0%, #c03060 100%); }
.panel-blue { background: linear-gradient(135deg, #4b9fe8 0%, #2870b0 100%); }
.panel-green { background: linear-gradient(135deg, #42d474 0%, #1a9e4a 100%); }
.panel-purple { background: linear-gradient(135deg, #9b6be8 0%, #6b3eb0 100%); }
.panel-sand { background: linear-gradient(135deg, #c8b99a 0%, #a8956e 100%); }
.panel-black { background: linear-gradient(135deg, #2a2a2a 0%, #111 100%); }

.hero-stripe {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 180px;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.7;
}
.hero-stripe-2 { top: 180px; width: 120px; opacity: 0.4; }
.hero-stripe-3 { top: 340px; width: 90px; opacity: 0.2; }

/* Shared Section Elements */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.manifesto-label { margin-bottom: 28px; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  border: none;
}
.manifesto-quote::before { content: none; }

/* Pillars */
.pillars {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.pillars-header { max-width: 560px; margin-bottom: 64px; }
.pillars-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pillar {
  background: var(--bg-2);
  padding: 48px;
  transition: background 0.2s;
}
.pillar:hover { background: #191919; }
.pillar-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
}
.pillar-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Signal */
.signal {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.signal-inner { max-width: 1280px; margin: 0 auto; }
.signal-content { max-width: 560px; margin-bottom: 64px; }
.signal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.signal-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.signal-item {
  background: var(--bg-2);
  padding: 40px 32px;
  text-align: center;
}
.signal-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.signal-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Playbook */
.playbook {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.playbook-header { max-width: 560px; margin-bottom: 64px; }
.playbook-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.playbook-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.step-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 120px 48px;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 1280px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

/* Footer */
.footer {
  padding: 64px 48px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.footer-meta {
  font-size: 12px;
  color: rgba(240,237,229,0.25);
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-sep { opacity: 0.4; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero-inner {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-headline { font-size: 52px; }
  .hero-right { order: -1; }
  .hero-visual { height: 200px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-quote { font-size: 24px; }
  .pillars { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 32px 24px; }
  .signal { padding: 60px 24px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .playbook { padding: 60px 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
}