:root {
  --bg: #0B1220;
  --bg-2: #111827;
  --fg: #F0EEE6;
  --fg-2: #9CA3AF;
  --accent: #E8B86D;
  --accent-dim: rgba(232, 184, 109, 0.12);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a3548; border-radius: 3px; }

/* ── Manifesto ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 80px 80px 80px;
  gap: 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,184,109,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,109,0.2), transparent);
}

.manifesto-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.7;
}

.manifesto-aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 0;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(232,184,109,0.2);
  padding-left: 20px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── Section shared ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 80px;
  background: var(--bg-2);
}

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

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding: 36px 32px;
  border-top: 1px solid rgba(240,238,230,0.08);
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover::before { opacity: 1; }

.step-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  font-style: italic;
}

.step-body h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ── Network ── */
.network {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.network-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.network-desc {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 440px;
}

.network-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  padding: 28px 0;
  border-bottom: 1px solid rgba(240,238,230,0.08);
}

.pillar:first-child { border-top: 1px solid rgba(240,238,230,0.08); }

.pillar h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ── For Founders ── */
.for-founders {
  padding: 100px 80px;
  background: var(--bg-2);
}

.for-founders-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.ff-card {
  padding: 48px;
  border: 1px solid rgba(232,184,109,0.15);
  border-radius: 2px;
  background: rgba(232,184,109,0.03);
}

.ff-icon {
  margin-bottom: 24px;
}

.ff-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.ff-card p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  padding: 120px 80px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(232,184,109,0.3));
}

.closing-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-inner > p {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ── Footer ── */
footer {
  padding: 48px 80px;
  border-top: 1px solid rgba(240,238,230,0.06);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 4px;
}

.footer-inner p {
  font-size: 13px;
  color: var(--fg-2);
}

.footer-links span {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 500;
}

/* ── Pricing ── */
.pricing-section {
  padding: 100px 80px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 900px;
}

.pricing-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-tier {
  padding: 40px 36px;
  border: 1px solid rgba(232,184,109,0.15);
  border-radius: 2px;
}

.pricing-tier.tier-featured {
  border-color: var(--accent);
  background: rgba(232,184,109,0.06);
}

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

.tier-detail {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-features li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 16px;
  position: relative;
}

.tier-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.pricing-note {
  font-size: 13px;
  color: var(--fg-2);
  border-top: 1px solid rgba(240,238,230,0.06);
  padding-top: 24px;
  max-width: 560px;
}

/* ── Apply CTA ── */
.apply-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.apply-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.apply-cta-btn:hover { opacity: 0.85; }

.apply-cta-secondary {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,238,230,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.apply-cta-secondary:hover { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .manifesto { padding: 60px 32px; flex-direction: column; }
  .manifesto-aside { flex-direction: row; border-left: none; border-top: 1px solid rgba(232,184,109,0.2); padding-top: 28px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .network { grid-template-columns: 1fr; padding: 80px 32px; gap: 48px; }
  .for-founders-inner { grid-template-columns: 1fr; }
  .how-it-works { padding: 80px 32px; }
  .for-founders { padding: 80px 32px; }
  .pricing-section { padding: 80px 32px; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .closing { padding: 80px 32px; }
  footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .manifesto-aside { flex-direction: column; }
}