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

:root {
  --bg: #0e0e0e;
  --bg-2: #171717;
  --bg-3: #1f1f1f;
  --fg: #f0ede8;
  --fg-muted: #a09a90;
  --accent: #f5a623;
  --accent-dim: #c8861a;
  --border: rgba(240, 237, 232, 0.1);
}

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}
.stats-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-row { display: flex; flex-direction: column; padding: 1.25rem 0; }
.stat-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.75rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.stat-divider { height: 1px; background: var(--border); }

/* PROOF */
.proof { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-intro {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 3.5rem;
  max-width: 680px;
  line-height: 1.4;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.proof-item { background: var(--bg-2); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.proof-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.25rem;
  color: var(--accent);
  line-height: 1;
}
.proof-fact { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.4; }
.proof-bottom { font-size: 0.95rem; color: var(--fg-muted); }

/* PROCESS */
.process { padding: 6rem 2rem; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.process-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem;
  max-width: 600px;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem; padding: 2.5rem 0; border-top: 1px solid var(--border); align-items: start; }
.step-num { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.75rem; color: var(--accent); font-style: italic; line-height: 1; padding-top: 0.2rem; }
.step-title { font-size: 1.15rem; font-weight: 600; color: var(--fg); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }

/* PRICING */
.pricing { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  max-width: 500px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.plan { background: var(--bg); padding: 2.25rem 2rem; display: flex; flex-direction: column; }
.plan-featured { background: var(--bg-3); border-left: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.plan-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.plan-name { font-size: 1rem; font-weight: 600; color: var(--fg); }
.plan-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; background: rgba(245, 166, 35, 0.12); padding: 0.2rem 0.5rem; border-radius: 4px; }
.plan-price { font-family: 'Instrument Serif', Georgia, serif; font-size: 2.5rem; color: var(--fg); line-height: 1; margin-bottom: 1.75rem; }
.price-period { font-size: 1rem; color: var(--fg-muted); font-family: 'Instrument Sans', sans-serif; font-weight: 400; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 1.5rem; }
.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: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.plan-note { font-size: 0.8rem; color: var(--fg-muted); font-style: italic; }

/* MANIFESTO */
.manifesto { padding: 8rem 2rem; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-bar { width: 60px; height: 3px; background: var(--accent); margin-bottom: 2.5rem; }
.manifesto-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.manifesto-cta {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer { padding: 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.5rem; color: var(--fg); display: block; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-meta { font-size: 0.8rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .stats-card { padding: 1.75rem 1.5rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 60px 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .hero { padding: 5rem 1.25rem 3rem; }
  .proof, .process, .pricing, .manifesto { padding: 4rem 1.25rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}