:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7f4;
  color: #12201b;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f7f4 0%, #eaf3f2 100%);
}

.static-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0f766e;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-top: 34px;
}

p,
li {
  max-width: 70ch;
  color: #38524c;
  line-height: 1.72;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

a {
  color: #0f6b65;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #0b1413;
    color: #edf5f2;
  }

  body {
    background: linear-gradient(180deg, #0b1413 0%, #101f22 100%);
  }

  p,
  li {
    color: #b6c9c4;
  }

  a {
    color: #5eead4;
  }
}
