:root {
  --bg: #FAF8F5;
  --fg: #1A1917;
  --muted: #8A8580;
  --accent: #C95D2A;
  --accent-light: #F4EAE3;
  --surface: #F0EDE8;
  --border: #E0DCD5;
}

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

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

/* ── NAV ── */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: baseline; gap: 12px; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline { font-size: 13px; color: var(--muted); }

/* ── HERO ── */
.hero {
  padding: 80px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 440px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-card--01 { border-left: 3px solid #3DAA6E; }
.hero-card--02 { border-left: 3px solid #E8A030; }
.hero-card--03 { border-left: 3px solid #4A7FBF; }
.card-label { font-weight: 600; font-size: 14px; }
.card-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* ── PRINCIPLES ── */
.principles { background: var(--fg); color: var(--bg); padding: 96px 48px; }
.principles .section-label { color: #C95D2A; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.principle-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: #C95D2A;
  margin-bottom: 16px;
  line-height: 1;
}
.principle h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}
.principle p { font-size: 15px; line-height: 1.7; color: #A8A49E; }

/* ── PIPELINE ── */
.pipeline { padding: 80px 48px; background: var(--bg); }
.pipeline-inner { max-width: 900px; }
.pipeline-row { display: flex; flex-direction: column; gap: 0; }
.pipeline-product {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.pipeline-product:first-child { border-top: 1px solid var(--border); }
.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-dot--live { background: #3DAA6E; }
.product-dot--growing { background: #4A7FBF; }
.product-dot--queued { background: var(--muted); }
.product-name { font-weight: 600; font-size: 16px; display: block; }
.product-status { font-size: 13px; color: var(--muted); }
.pipeline-meta {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PROCESS ── */
.process { padding: 80px 48px; background: var(--surface); }
.process-inner { max-width: 900px; }
.process-steps { display: flex; flex-direction: column; gap: 48px; }
.step { display: flex; align-items: flex-start; gap: 28px; }
.step-marker { flex-shrink: 0; width: 40px; }
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-content p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── MANIFESTO ── */
.manifesto { padding: 96px 48px; background: var(--fg); color: var(--bg); }
.manifesto-inner { max-width: 900px; }
.manifesto-quote {
  margin-bottom: 48px;
  padding-left: 32px;
  border-left: 3px solid #C95D2A;
}
.manifesto-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--bg);
  margin-bottom: 16px;
}
.manifesto-quote cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto-body p { font-size: 16px; line-height: 1.75; color: #A8A49E; margin-bottom: 20px; }
.manifesto-body p:last-child { margin-bottom: 0; }

/* ── CLOSING ── */
.closing { padding: 96px 48px; background: var(--accent); }
.closing-inner { max-width: 700px; }
.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing p { font-size: 18px; color: rgba(255,255,255,0.75); }

/* ── FOOTER ── */
.footer { padding: 28px 48px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: baseline; gap: 12px; }
.footer-brand { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; }
.footer-meta { font-size: 12px; color: var(--muted); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 48px; }
  .hero-visual { order: -1; }
  .principles { padding: 64px 24px; }
  .principles-grid { grid-template-columns: 1fr; gap: 36px; }
  .pipeline, .process, .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer, .nav { padding-left: 24px; padding-right: 24px; }
  .pipeline-meta { flex-direction: column; gap: 8px; }
  .nav-tagline { display: none; }
}