:root {
  --ink: #171815;
  --ink-2: #272923;
  --paper: #f7f7f2;
  --white: #ffffff;
  --line: #dedfd7;
  --muted: #66685f;
  --green: #1e6f50;
  --green-dark: #15523b;
  --acid: #d8ff79;
  --acid-strong: #c9f45f;
  --soft-green: #eaf4ec;
  --danger: #b63d3d;
  --warning: #9a6612;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(20, 22, 18, .11);
  --shell: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body { margin: 0; min-width: 320px; font-family: var(--font); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
body.locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: min(calc(100% - 36px), var(--shell)); margin-inline: auto; }
.section-pad { padding-block: 84px; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 1000; padding: 12px 18px; border-radius: 8px; background: var(--ink); color: #fff; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 21px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 750; font-size: .92rem; line-height: 1.1; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(30,111,80,.3); outline-offset: 3px; }
.button[disabled] { opacity: .55; cursor: wait; transform: none; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: #000; }
.button-accent { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button-accent:hover { background: var(--acid-strong); }
.button-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button-outline:hover { color: #fff; background: var(--ink); }
.button-light-outline { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }
.button-light-outline:hover { border-color: #fff; }
.button-small { min-height: 42px; padding: 11px 17px; font-size: .8rem; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--green); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.section-heading h2 { max-width: 780px; margin-bottom: 22px; font-size: clamp(2.15rem, 5vw, 4.5rem); font-weight: 740; line-height: .98; letter-spacing: -.055em; }
.section-heading h2 em, h1 em { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.section-heading > p:not(.eyebrow) { max-width: 640px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.section-heading.centered { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 50px; }
.section-heading.light { color: #fff; }
.section-heading.light h2 em { color: var(--acid); }
.section-heading.light > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.section-heading.light .eyebrow { color: var(--acid); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section-pad { padding-block: 68px; }
  .button { width: 100%; min-height: 54px; }
  .section-heading h2 { font-size: clamp(2.25rem, 11.5vw, 3.45rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
