/* Shared marketing-site base: design tokens, typography, header, footer.
   Page-specific styles live inline in each page. */

:root {
  --ink: #12251f;
  --muted: #53635d;
  --paper: #f4f1e8;
  --panel: #fffdf7;
  --line: #c6ccc3;
  --green: #174f3e;
  --green-2: #0d382b;
  --mint: #d9f56f;
  --mint-soft: #edf6d1;
  --amber: #f4bc59;
  --amber-soft: #fff0cf;
  --red: #9e3f2c;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
a { color: inherit; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.05em;
  text-decoration: none;
}
.brand small {
  margin-left: 12px;
  color: var(--muted);
  font: 400 .7rem/1 'DM Mono', monospace;
  letter-spacing: 0;
}
nav { display: flex; align-items: center; gap: 25px; }
nav a { font-size: .83rem; font-weight: 700; text-decoration: none; }
nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font: 400 .66rem/1.6 'DM Mono', monospace;
}
.site-footer a { color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .brand small { display: none; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
