:root {
  --bg: #FDFAF6;
  --surface: #F4EFE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E07A3D;
  --accent-light: #F5E6D8;
  --border: #E2D9CE;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Header */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.site-header nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-signup {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  max-width: 480px;
}
.hero-signup input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}
.hero-signup input:focus { border-color: var(--accent); }
.hero-signup button {
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.hero-signup button:hover { opacity: 0.88; }
.hero-ornament {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 80px; height: 80px; }
.ring-2 { width: 120px; height: 120px; border-style: dashed; }
.ring-3 { width: 160px; height: 160px; }
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg);
}
.stat-label { font-size: 0.8125rem; color: var(--fg-muted); }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

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

/* Mission */
.mission {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.mission-content { max-width: 680px; }
.mission-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
}
.mission-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Domains */
.domains {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.domain-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.domain-card:hover { background: var(--surface); }
.domain-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.domain-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--fg);
}
.domain-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Approach */
.approach {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}
.approach-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.process-track {
  display: flex;
  align-items: center;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.step-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
}
.process-step span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  white-space: nowrap;
}
.process-connector {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 24px;
}

/* Closing */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark-sm {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-left: 12px;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .site-header nav { display: none; }
  .hero { padding: 60px 20px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-ornament { display: none; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .domains-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; gap: 48px; }
  .mission, .domains, .approach, .closing { padding: 48px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
}