:root {
  color-scheme: light dark;
  --background: #f8faf9;
  --text: #17201b;
  --muted: #5d6b63;
  --accent: #0b7f69;
  --surface: #ffffff;
  --border: #dfe7e2;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #101512;
    --text: #edf4ef;
    --muted: #a5b3ab;
    --accent: #5dd9bd;
    --surface: #151d19;
    --border: #2b3831;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 7vw, 3.25rem);
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 8px;
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

a {
  color: var(--accent);
  font-weight: 650;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.links a,
.button {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px 14px;
  text-decoration: none;
}
