@font-face { font-family: 'Geist Variable'; font-weight: 100 900; font-display: swap; src: url(/fonts/geist-latin-wght-normal.woff2) format('woff2-variations'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family: 'Geist Variable'; font-weight: 100 900; font-display: swap; src: url(/fonts/geist-latin-ext-wght-normal.woff2) format('woff2-variations'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
:root {
  color-scheme: light;
  --page: #f9f9f7;
  --ink: #0b0b0b;
  --ink-2: #52514e;
  --muted: #898781;
  --border: rgba(11, 11, 11, 0.1);
  --accent: #2a78d6;
  --hero-to: #666666;
  font-family: 'Geist Variable', system-ui, sans-serif;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page: #000000;
    --ink: #ffffff;
    --ink-2: #c3c2b7;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #3987e5;
    --hero-to: #9b9b9b;
  }
}
* { box-sizing: border-box; }
body { margin: 0; font-size: 16px; line-height: 24px; }
main { max-width: 680px; margin: 0 auto; padding: 64px 24px 80px; }
nav, footer { display: flex; flex-wrap: wrap; gap: 16px; }
nav { margin-bottom: 48px; }
nav a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 500; }
nav img { width: 24px; height: 24px; border-radius: 6px; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 4px; transition: color 300ms cubic-bezier(0.32, 0.72, 0, 1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
h1 { font-size: 36px; line-height: 40px; letter-spacing: -0.03em; font-weight: 600; margin: 0 0 24px; text-wrap: balance; }
@media (min-width: 640px) { h1 { font-size: 48px; line-height: 1; letter-spacing: -0.04em; } }
.hero { background: linear-gradient(to right, var(--ink), var(--hero-to)); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2 { font-size: 20px; line-height: 28px; font-weight: 600; margin: 32px 0 8px; text-wrap: balance; }
p { margin: 0 0 16px; color: var(--ink-2); max-width: 65ch; text-wrap: pretty; }
.muted { color: var(--muted); font-size: 14px; line-height: 20px; }
footer { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 24px; font-size: 14px; line-height: 20px; }
