:root {
  --bg: #f7f7f6;
  --surface: #fff;
  --surface-soft: #f1f1ef;
  --ink: #0a0a0a;
  --muted: #6b6b69;
  --faint: #8a8a88;
  --line: #e8e8e6;
  --accent: oklch(0.6 0.15 38);
  --accent-dark: oklch(0.56 0.15 38);
  --good: #1f7a45;
  --radius: 12px;
  --font: Geist, system-ui, sans-serif;
}
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-dark); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 12px; background: var(--ink); color: white; }
.skip-link:focus { top: 12px; }
/* Match the original homepage: 1320px content width plus 28px gutters. */
.site-width { box-sizing: content-box; max-width: 1320px; margin: 0 auto; padding: 14px 28px; }
.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.nav-shell { display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; flex: none; }
.brand img { display: block; flex: none; }
.site-nav { display: flex; gap: 26px; font-size: 15px; flex-wrap: wrap; }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 7px; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex: none; font-size: 15px; }
.sign-in-link { padding: 7px 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; background: var(--ink); color: #fff; font-size: 15px; line-height: 1.3; cursor: pointer; }
.button:hover { background: #2a2a2a; color: #fff; }
.button.secondary { border-color: #e3e3e1; background: #fafaf9; color: var(--ink); }
.button.secondary:hover { background: #fff; }
.button.full { width: 100%; }
.nav-actions .button { padding: 7px 14px; line-height: normal; border: 0; }
.site-footer { border-top: 1px solid var(--line); }
.footer-shell { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-block: 22px; font-size: 13.5px; color: var(--faint); }
.footer-shell nav { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.footer-shell a { color: var(--faint); }
.footer-shell a:hover { color: var(--accent-dark); }
@media (max-width: 900px) {
  .nav-shell { flex-wrap: wrap; gap: 18px; }
  .site-nav { order: 3; width: 100%; gap: 14px 24px; }
}
@media (max-width: 500px) {
  .site-width { padding-inline: 18px; }
  .nav-shell { gap: 14px 8px; }
  .nav-actions { gap: 0; }
  .sign-in-link { padding-inline: 8px; }
  .footer-shell nav { margin-left: 0; }
}
