* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, strong { font-family: var(--font-display); }
h1, h2, h3, p { margin-top: 0; }
.shell { width: min(var(--shell), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; inset-inline-start: 16px; top: -80px; padding: 12px 18px; background: var(--ink); color: white; transition: top .2s; }
.skip-link:focus { top: 16px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-3px); }
.button--accent { background: var(--accent); color: white; box-shadow: 0 14px 34px rgba(11, 99, 246, .24); }
.button--accent:hover { background: var(--accent-dark); }
.button--outline { border-color: currentColor; background: transparent; }
.button--light { background: white; color: var(--ink); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 3px; background: currentColor; }
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
::selection { background: var(--accent); color: white; }
