/* === BASE === */
:root {
  --obsidian: #0D0D0F;
  --amber: #FFB800;
  --amber-dim: rgba(255, 184, 0, 0.15);
  --cream: #F5F0E8;
  --cream-dim: rgba(245, 240, 232, 0.6);
  --border: rgba(255, 184, 0, 0.12);
  --text-dim: rgba(245, 240, 232, 0.5);
}

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

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

/* === NAV === */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === MANIFESTO === */
.manifesto {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.06), transparent);
  height: 1px;
}
.geo-line-1 { top: 20%; left: 0; right: 0; }
.geo-line-2 { top: 50%; left: 0; right: 0; }
.geo-line-3 { top: 80%; left: 0; right: 0; }

.geo-block {
  position: absolute;
  border: 1px solid var(--border);
  background: transparent;
}
.geo-block-1 { width: 300px; height: 300px; top: -80px; right: -80px; transform: rotate(15deg); }
.geo-block-2 { width: 200px; height: 200px; bottom: -60px; left: -60px; transform: rotate(-10deg); }
.geo-block-3 { width: 140px; height: 140px; top: 30%; left: 8%; transform: rotate(5deg); background: var(--amber-dim); border-color: rgba(255,184,0,0.25); }

.manifesto-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}

.overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  font-weight: 500;
}

.headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  color: var(--cream);
}

.headline .accent {
  color: var(--amber);
}

.lede {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
  font-weight: 300;
}

/* Hero sub-headline */
.subtext {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  display: block;
  margin-top: 12px;
}

/* 3-bullet value prop */
.value-prop {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 0;
}

.value-prop li {
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
  text-align: left;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.value-prop li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 13px;
  top: 2px;
}

/* CTA */
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--obsidian);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: #ffc933;
  transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}

/* === SECTION SHARED === */
.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}

/* === THE VAULT === */
.vault {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}

.vault-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.vault-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--cream);
}

.vault-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.bundle-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.bundle-card-featured {
  border-color: rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.04);
}

.bundle-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--amber);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.bundle-icon {
  margin-bottom: 20px;
}

.bundle-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--cream);
}

.bundle-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bundle-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bundle-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--amber);
}

.bundle-format {
  font-size: 12px;
  color: var(--text-dim);
}

/* === STACK ORDER === */
.stack-order {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stack-order h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
  color: var(--cream);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: left;
  padding: 32px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  flex-shrink: 0;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--cream);
}

.step-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.outcomes-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--cream);
}

.outcomes-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

.outcomes-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.outcome-stat {
  padding: 28px;
  background: rgba(255,255,255,0.02);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--amber);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--cream);
}

.closing-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* === FOOTER === */
.site-footer {
  padding: 32px 40px;
}

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

.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--amber);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .topbar { padding: 16px 20px; }
  .manifesto { padding: 60px 20px; min-height: 80vh; }
  .vault { padding: 60px 20px; }
  .stack-order { padding: 60px 20px; }
  .outcomes { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .site-footer { padding: 24px 20px; }
  .steps { flex-direction: column; }
  .step-connector { width: 2px; height: 24px; background: linear-gradient(180deg, var(--amber), transparent); }
  .geo-block-1 { display: none; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
