:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DE;
  --fg: #1B4332;
  --fg-muted: #4A6B54;
  --accent: #C97D3A;
  --accent-light: #E8B876;
  --white: #FFFFFF;
  --border: #D4CFC4;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.nav-analytics-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}
.nav-analytics-link:hover {
  background: var(--accent);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 48px 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  font-weight: 300;
}
.hero-visual {
  position: relative;
  height: 320px;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  width: 220px;
  height: 220px;
  background: var(--accent);
  opacity: 0.15;
  top: 10px;
  right: 40px;
}
.hero-shape-2 {
  width: 160px;
  height: 160px;
  background: var(--fg);
  opacity: 0.08;
  bottom: 20px;
  right: 120px;
}
.hero-shape-3 {
  width: 100px;
  height: 100px;
  background: var(--accent-light);
  opacity: 0.25;
  top: 40px;
  right: 160px;
}
.hero-badge {
  position: absolute;
  bottom: 0;
  left: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--fg) 100%);
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 36px;
  border: none;
  padding: 0;
}
.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 48px;
}

/* Features */
.features {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.feature-card {
  padding: 0;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Process */
.process {
  padding: 100px 48px;
  background: var(--fg);
  border-bottom: 1px solid var(--fg);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process .section-label {
  color: var(--accent-light);
}
.process-steps {
  display: flex;
  gap: 64px;
}
.process-step {
  flex: 1;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 120px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 48px;
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .manifesto { padding: 72px 24px; }
  .manifesto-quote { font-size: 28px; }
  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 36px; }
  .process { padding: 72px 24px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}