/* ── Reset & Base ──────────────────────────────────────────── */

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

:root {
  --color-text: #1e293b;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-warm: #f8fafc;
  --color-accent: #0f766e;
  --color-accent-light: #f0fdfa;
  --color-border: #e2e8f0;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --max-width: 720px;
}

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Layout ───────────────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ───────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-decoration: none;
}

.wordmark:hover {
  text-decoration: none;
}

.header-contact {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero .lede {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* ── Sections ─────────────────────────────────────────────── */

section {
  padding: 3.5rem 0;
}

section + section {
  border-top: 1px solid var(--color-border);
}

section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

section p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

section p:last-child {
  margin-bottom: 0;
}

/* ── Trust grid ───────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 540px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-card {
  background: var(--color-bg-warm);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.trust-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
  margin-top: 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Legal pages ──────────────────────────────────────────── */

.legal-page {
  padding: 4rem 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.coming-soon {
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── 404 ──────────────────────────────────────────────────── */

.not-found {
  padding: 6rem 0;
  text-align: center;
}

.not-found h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
