:root {
  --bg: #FAFAF8;
  --bg-warm: #F4F0EB;
  --fg: #1A1A18;
  --accent: #E85D2B;
  --accent-dark: #C44D1E;
  --muted: #7A7570;
  --border: #E2DDD8;
  --card: #FFFFFF;
}

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

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;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px 80px;
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.07;
  pointer-events: none;
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.manifesto-headline em {
  font-style: normal;
  color: var(--accent);
}

.manifesto-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #B5B0A8;
  max-width: 560px;
  margin-bottom: 72px;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #7A7570;
  line-height: 1.4;
  max-width: 160px;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Offerings */
.offerings {
  padding: 96px 48px;
  background: var(--bg);
}

.offerings-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.offerings-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.offerings-header p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.offering-card {
  background: var(--card);
  padding: 48px;
  position: relative;
  border: 1px solid var(--border);
}

.offering-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 24px;
}

.offering-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}

.offering-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Process */
.process {
  padding: 96px 48px;
  background: var(--bg-warm);
}

.process-header {
  max-width: 560px;
  margin-bottom: 72px;
}

.process-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-header p {
  font-size: 22px;
  color: var(--fg);
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  width: 32px;
  height: 32px;
  border: 2px solid var(--fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  height: 64px;
  background: var(--border);
  margin-top: 8px;
}

.process-step:last-child .step-line { display: none; }

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

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Conviction */
.conviction {
  padding: 120px 48px;
  background: var(--fg);
}

.conviction-inner {
  max-width: 720px;
}

.conviction-icon {
  color: var(--accent);
  margin-bottom: 40px;
}

blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.conviction-sub {
  font-size: 16px;
  color: #8A8580;
  line-height: 1.7;
  max-width: 560px;
}

/* Footer */
.site-footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
}

.footer-meta p {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.footer-copy {
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .manifesto { padding: 72px 28px 64px; }
  .offerings { padding: 72px 28px; }
  .process { padding: 72px 28px; }
  .conviction { padding: 80px 28px; }
  .site-footer { padding: 40px 28px; }

  .offerings-grid { grid-template-columns: 1fr; }

  .stat-divider { display: none; }
  .manifesto-stats { gap: 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta p { text-align: left; }
}

@media (max-width: 480px) {
  .manifesto-headline { font-size: 44px; }
  .offering-card { padding: 32px 24px; }
  .step-content h3 { font-size: 18px; }
}