:root {
  --bg: #0f0f0f;
  --surface: #181818;
  --fg: #f0ede6;
  --muted: #7a756e;
  --accent: #c8f740;
  --accent-dim: rgba(200, 247, 64, 0.12);
  --border: rgba(240, 237, 230, 0.08);
}

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

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

h1, h2, h3, blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 60px;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
}

.hero-text {
  max-width: 560px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  color: var(--fg);
  margin-bottom: 28px;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  font-weight: 300;
}

/* Orb */
.hero-orb {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 60px rgba(200, 247, 64, 0.35), 0 0 120px rgba(200, 247, 64, 0.15);
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 247, 64, 0.2);
}

.orb-ring-1 { width: 140px; height: 140px; }
.orb-ring-2 { width: 200px; height: 200px; border-color: rgba(200, 247, 64, 0.12); }
.orb-ring-3 { width: 260px; height: 260px; border-color: rgba(200, 247, 64, 0.07); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--fg);
  display: block;
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 100px 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

blockquote {
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 28px;
}

.manifesto-sub {
  color: var(--muted);
  font-size: 15px;
}

/* ─── PILLARS ─── */
.pillars {
  padding: 100px 8vw;
}

.pillars-inner { max-width: 1100px; margin: 0 auto; }

.pillars-header {
  margin-bottom: 64px;
}

.pillars-header h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  max-width: 500px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--bg);
  padding: 48px 40px;
}

.pillar-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.pillar h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--fg);
}

.pillar p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── OUTCOMES ─── */
.outcomes {
  padding: 80px 8vw;
  background: var(--surface);
}

.outcomes-inner { max-width: 1100px; margin: 0 auto; }

.outcomes-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

.outcomes-row {
  display: flex;
  gap: 80px;
}

.outcome {}

.outcome-stat {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 14px;
}

.outcome-stat span {
  font-size: 36px;
  color: var(--accent);
  font-style: italic;
}

.outcome-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.5;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 8vw 120px;
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.6;
}

/* ─── EMAIL CAPTURE ─── */
.email-capture {
  margin-bottom: 56px;
  text-align: center;
}
.email-capture-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.email-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.email-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s;
}
.email-form input::placeholder { color: var(--muted); }
.email-form input:focus { border-color: var(--accent); }
.email-form button {
  background: var(--accent);
  color: #0f0f0f;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.email-form button:hover { opacity: 0.88; }
.email-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.form-message { font-size: 13px; min-height: 18px; }
.form-message.success { color: var(--accent); }
.form-message.error { color: #f74040; }

/* ─── FOOTER ─── */
footer {
  padding: 40px 8vw;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; }
  .hero-orb { width: 180px; height: 180px; }
  .orb-ring-1 { width: 90px; height: 90px; }
  .orb-ring-2 { width: 130px; height: 130px; }
  .orb-ring-3 { width: 170px; height: 170px; }
  .orb-core { width: 50px; height: 50px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .outcomes-row { flex-direction: column; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  h1 { font-size: 40px; }
  .email-form { flex-direction: column; }
}