:root {
  --ink: #16170F;
  --ink-soft: #6E7163;
  --faint: #A9AC9C;
  --line: #EAEBE3;
  --panel: #F5F6F0;
  --card: #FFFFFF;
  --canvas: #FBFBF8;
  --lime: #C7F24B;
  --lime-deep: #A6D02A;
  --ink-elev: #1F2116;
  --on-dark-hi: #FFFFFF;
  --on-dark: rgba(255, 255, 255, .74);
  --on-dark-faint: rgba(255, 255, 255, .58);
  --hairline-dark: rgba(255, 255, 255, .12);
  --fill-dark: rgba(255, 255, 255, .06);
    --r-shell: 32px;
    --r-pill: 999px;
    --r-cta: 10px;
    --h-cta: 2.875rem;
  --h-field: 3rem;
  --shadow-nav: 0 10px 30px -10px rgba(20, 22, 14, .22);
  --shadow-shell: 0 30px 70px -30px rgba(20, 22, 14, .5);
  --dur-fast: 180ms;
  --dur: 420ms;
  --dur-slow: 700ms;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --nav-h: 4.25rem;
  --foot-blob-o: .035;
  --foot-blob-top: 12rem;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lime); color: var(--ink); }

:where(a, button):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.display {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .94;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--lime);
  padding: .6rem 1rem;
  font-weight: 700;
  font-size: .875rem;
}
.skip:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-shell {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: .85rem 1.25rem 0;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  height: var(--nav-h);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem 0 1rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: transparent;
  transition:
    max-width var(--dur-slow) var(--ease),
    height var(--dur) var(--ease),
    padding var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease);
}
.nav.is-stuck {
  --nav-h: 3.35rem;
  max-width: 46rem;
  padding-left: .7rem;
  padding-right: .4rem;
  background: color-mix(in srgb, var(--canvas) 78%, transparent);
  border-color: color-mix(in srgb, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-nav);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
}
.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  display: block;
}
.nav.is-stuck .brand-mark { width: 1.9rem; height: 1.9rem; border-radius: 9px; }
.wordmark { font-size: 1.3rem; }
  .nav.is-stuck .wordmark { font-size: 1.1rem; }
  .nav-slot { width: 11.5rem; flex: none; }
  .brand-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: inherit;
    text-decoration: none;
  }

  .link-quiet {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.link-quiet:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(.98); }
.btn--ink {
  background: var(--ink);
  color: var(--lime);
  height: 2.6rem;
  padding: 0 1.05rem 0 1.2rem;
  font-size: .875rem;
}
.btn--ink:hover { background: var(--lime); color: var(--ink); }
.nav.is-stuck .btn--ink { height: 2.35rem; }
.btn--lime {
  background: var(--lime);
  color: var(--ink);
  height: var(--h-cta);
  padding: 0 1.35rem;
  border: 0;
  border-radius: var(--r-cta);
  font: inherit;
  font-size: .875rem;
  font-weight: 700;
}
.btn--lime:hover { background: var(--lime-deep); transform: translateY(-2px); }

.site-foot {
  padding: 0 .75rem .75rem;
}
@media (min-width: 640px) {
  .site-foot { padding: 0 1.25rem 1.25rem; }
}
.foot {
  position: relative;
  overflow: hidden;
  max-width: 64rem;
  margin-inline: auto;
  padding: 3.5rem 1.5rem 2rem;
  border-radius: var(--r-shell);
  background: var(--ink);
  color: var(--on-dark-hi);
  box-shadow: var(--shadow-shell);
}
@media (min-width: 640px) {
  .foot { padding-inline: 3rem; }
}
.foot::before {
  content: "";
  position: absolute;
  top: var(--foot-blob-top);
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: var(--lime);
  opacity: var(--foot-blob-o);
  pointer-events: none;
}
.foot > * { position: relative; z-index: 1; }
.foot .link-quiet { color: var(--on-dark); }
.foot .link-quiet:hover { color: var(--lime); }
.foot :where(a, button):focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.foot-top {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .foot-top { grid-template-columns: 1.15fr .85fr; }
}
.foot-lede {
  margin: 1rem 0 0;
  max-width: 24rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-dark);
}
.news {
  margin-top: 2rem;
  max-width: 28rem;
}
.news p { margin: 0; font-size: .875rem; font-weight: 600; }
.news-row {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (min-width: 640px) {
  .news-row { flex-direction: row; align-items: center; }
}
.field {
  box-sizing: border-box;
  min-width: 0;
  flex: 1 0 auto;
  height: var(--h-field);
  min-height: var(--h-field);
  border: 0;
  border-radius: var(--r-pill);
  background: var(--fill-dark);
  padding: 0 1.15rem;
  color: var(--on-dark-hi);
  font: inherit;
  font-size: .9375rem;
  font-weight: 600;
  line-height: normal;
  outline: none;
}
.field::placeholder { color: var(--on-dark-faint); }
.field:focus-visible { box-shadow: 0 0 0 2px var(--lime); }
.btn--lime.news-submit {
  height: 3rem;
  border-radius: var(--r-pill);
  padding-inline: 1.25rem;
  flex-shrink: 0;
}
.foot-navs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .foot-navs { gap: 2.5rem; }
}
.foot-nav h2 {
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.foot-nav ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .625rem;
  font-size: .875rem;
  font-weight: 600;
}
.foot-base {
  margin-top: 3rem;
  border-top: 1px solid var(--hairline-dark);
  padding-top: 1.5rem;
}
.foot-note {
  margin: 0;
  max-width: 48rem;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-dark-faint);
}
.foot-copy {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .75rem;
  color: var(--on-dark-faint);
}
.foot-copy p { margin: 0; font-weight: 400; }
.display-foot { font-size: 1.25rem; }

.legal-hero {
  max-width: 42rem;
  margin-inline: auto;
  padding: 8.5rem 1.25rem 2.5rem;
}
.legal-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin: .75rem 0 0;
}
.legal-kicker {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}
.legal-meta {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
}

.prose {
  max-width: 42rem;
  margin-inline: auto;
  padding: 0 1.25rem 4rem;
  font-size: 1.0125rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
}
.prose > :first-child { margin-top: 0; }
.prose h2 {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 2.4rem 0 .85rem;
}
.prose h3 {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.05rem;
  margin: 1.6rem 0 .5rem;
}
.prose p, .prose ul, .prose ol { margin: 0 0 1rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin: .28rem 0; }
.prose a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}
.prose a:hover { color: color-mix(in srgb, var(--ink) 70%, var(--lime)); }
.prose strong { font-weight: 800; }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}
.prose .table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: .9rem;
}
.prose th, .prose td {
  text-align: left;
  vertical-align: top;
  padding: .65rem .7rem;
  border-bottom: 1px solid var(--line);
}
.prose th {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--panel);
}
.prose .callout {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  margin: 0 0 1.5rem;
}
.prose .callout p:last-child { margin-bottom: 0; }
.prose code {
  font-size: .88em;
  font-weight: 700;
  background: var(--panel);
  padding: .1em .35em;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .nav-slot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav { transition: none; }
}
