:root {
  --bg:           #0e0f12;
  --surface:      #16181f;
  --surface-alt:   #1d2029;
  --border:        #2a2d3a;
  --text:          #f0ece4;
  --text-muted:    #8a8d9b;
  --gold:          #c9a55a;
  --gold-dim:      rgba(201, 165, 90, 0.15);
  --teal:          #4db6a8;
  --teal-dim:      rgba(77, 182, 168, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 6vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -100px; left: -150px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}

/* ── Manifesto ────────────────────────────── */
.manifesto {
  padding: 100px 6vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 40px;
  position: relative;
}
.manifesto-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold-dim);
  position: absolute;
  top: -2rem;
  left: -1.5rem;
  font-family: 'Playfair Display', serif;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── Tiers ────────────────────────────────── */
.tiers {
  padding: 100px 6vw;
}
.tiers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 60px;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 600px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.tier-card {
  padding: 40px 36px;
  position: relative;
  background: var(--surface);
  border-right: 1px solid var(--border);
}
.tier-card:last-child { border-right: none; }

.tier-card-ecosystem {
  background: var(--surface-alt);
  box-shadow: 0 0 40px rgba(77,182,168,0.07);
}

.tier-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--teal);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tier-tier {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.tier-card-basic .tier-tier { color: var(--text-muted); }
.tier-card-premium .tier-tier { color: var(--gold); }

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.tier-card-ecosystem .tier-features li::before { background: rgba(77,182,168,0.2); border-color: var(--teal); }
.tier-card-premium .tier-features li::before { background: rgba(201,165,90,0.3); border-color: var(--gold); }

.tiers-note {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ── Process ──────────────────────────────── */
.process {
  padding: 100px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1100px; margin: 0 auto; }

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

.step {
  padding-right: 32px;
  position: relative;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: 16px;
  right: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

/* ── Closing ──────────────────────────────── */
.closing {
  padding: 120px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, var(--teal-dim) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.closing-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 48px;
}
.closing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Footer ───────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 6vw;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 100px 6vw 80px; }
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-sep { display: none; }
  .stat { padding-right: 0; }

  .tier-grid {
    grid-template-columns: 1fr;
  }
  .tier-card { border-right: none; border-bottom: 1px solid var(--border); }
  .tier-card:last-child { border-bottom: none; }

  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-meta { align-items: flex-start; }
}
