:root {
  --bg: #0F172A;
  --bg-alt: #FAFAF9;
  --fg: #F8FAFC;
  --fg-muted: #94A3B8;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --slate: #1E293B;
  --border: rgba(148, 163, 184, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── NAV ── */
.nav {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.amber { color: var(--amber); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 4rem 5rem;
  min-height: 100vh;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1rem;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}
.stat-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  max-width: 100px;
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.content-flow {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.source-block {
  text-align: center;
  padding: 1.5rem;
  background: rgba(245, 158, 11, 0.06);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.source-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.source-icon {
  color: var(--amber);
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.source-type {
  font-size: 0.875rem;
  color: var(--fg);
  font-weight: 500;
}
.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--fg-muted);
  margin: 0.5rem 0;
}
.outlet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.outlet-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.outlet-chip svg { flex-shrink: 0; color: var(--amber); }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--amber);
  color: var(--bg);
  padding: 6rem 4rem;
}
.manifesto-inner {
  max-width: 680px;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 1.25rem;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 1.5rem;
}
.manifesto-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.manifesto-body em { font-style: normal; font-weight: 600; color: var(--bg); }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(15, 23, 42, 0.2);
  position: relative;
  padding-left: 1.5rem;
}
.quote-mark {
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(15, 23, 42, 0.2);
  font-family: Georgia, serif;
}
.manifesto-aside {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 2rem;
}
.manifesto-stat { text-align: right; }
.m-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg);
  line-height: 1;
}
.m-stat-text {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.65);
  max-width: 220px;
  text-align: right;
  margin-top: 0.5rem;
}

/* ── PROCESS ── */
.process {
  background: var(--bg-alt);
  color: var(--bg);
  padding: 6rem 4rem;
}
.process-header {
  margin-bottom: 4rem;
  max-width: 600px;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bg);
}
.section-sub {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.6);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg);
  color: var(--fg);
  padding: 6rem 4rem;
}
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing-header .section-headline { color: var(--fg); }
.pricing-header .section-sub { color: var(--fg-muted); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.plan {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}
.plan-featured {
  background: linear-gradient(160deg, rgba(245,158,11,0.12), rgba(245,158,11,0.04));
  border-color: rgba(245, 158, 11, 0.3);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.plan-price span { font-size: 1.2rem; font-weight: 400; color: var(--fg-muted); }
.plan-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* ── CLOSING ── */
.closing {
  background: var(--amber);
  padding: 7rem 4rem;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(15, 23, 42, 0.75);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  color: var(--fg-muted);
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .hero-visual { order: -1; }
  .content-flow { max-width: 100%; }
  .manifesto { padding: 5rem 2rem; }
  .manifesto-aside { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem; }
  .process { padding: 5rem 2rem; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-sep { display: none; }
  .stat { flex-direction: row; align-items: center; gap: 0.75rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-desc { max-width: 200px; }
  .outlet-grid { grid-template-columns: 1fr; }
  .plan-price { font-size: 2.2rem; }
}