:root {
  color-scheme: light;
  --ink: #f8fafc;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.62);
  --border: rgba(15, 23, 42, 0.12);
  --card: rgba(255, 255, 255, 0.9);
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk/space-grotesk-300.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk/space-grotesk-400.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk/space-grotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk/space-grotesk-600.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk/space-grotesk-700.woff2") format("woff2");
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--ink);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
header { border-bottom: 1px solid var(--border); background: var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.nav-links { display: flex; gap: 18px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.container { width: min(980px, 90vw); margin: 0 auto; }
main { padding: 64px 0 80px; }
h1 { font-size: clamp(2rem, 3.2vw, 2.8rem); margin: 0 0 12px; }
h2 { font-size: 1.1rem; margin: 28px 0 10px; }
p, li { color: var(--muted); line-height: 1.6; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; }
.list { display: grid; gap: 14px; }
.links { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center; font-size: 14px; }
footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 36px;
  font-size: 14px;
  color: var(--muted);
}
.logo-mark {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
