:root {
  --bg: #F8F4EF;
  --fg: #1B3D2F;
  --accent: #F4A261;
  --accent2: #C97B3A;
  --muted: #7A9B8A;
  --card-bg: #FFFFFF;
  --border: #D4C9BC;
  --dim: #B8C4BC;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Figtree', system-ui, sans-serif;
}

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

html { font-size: 16px; }

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

/* Navbar */
.navbar {
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
.navbar-inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.navbar-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.navbar-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 60px 40px 80px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Directory stack */
.directory-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dir-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(27, 61, 47, 0.08);
  border: 1.5px solid var(--border);
}
.dir-card.dimmed {
  opacity: 0.5;
  background: var(--bg);
}
.dir-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.dir-card-dot.dimmed {
  background: var(--dim);
}
.dir-card-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.dir-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #F8F4EF;
  line-height: 1.6;
  font-style: italic;
}

/* Features */
.features {
  padding: 80px 40px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-heading {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.feature {}
.feature-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.feature-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* How it works */
.howitworks {
  padding: 80px 40px;
  background: #EDE8E1;
}
.hiw-heading {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 48px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
}
.hiw-step-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.hiw-step-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.hiw-step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 100px 40px;
}
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .navbar, .hero, .manifesto, .features, .howitworks, .closing { padding-left: 20px; padding-right: 20px; }
}