:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --ink: #1a1a1a;
  --muted: #5c5c58;
  --primary: #1b4332;
  --line: #e4e4df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--primary);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.logo {
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  font-size: 0.95rem;
}

.hero {
  padding: 48px 20px 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin: 12px 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.features {
  margin-top: 32px;
  padding-left: 20px;
}

.muted {
  color: var(--muted);
}

.legal h2 {
  margin-top: 28px;
  font-size: 1.1rem;
}

.legal {
  padding: 32px 20px 64px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 32px;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
