

:root {
  --paper: #ffffff;
  --ink: #121214;
  --muted: #454749;
  --faint: #7a7c7f;
  --line: rgba(18, 18, 20, 0.12);
  --green: #9ceb6c;
  --green-d: #8ad655;
  --green-deep: #163300;
  --sand: #f5f5e6;
  --sand-2: #efeee0;
  --blue-soft: #a0dfe4;
  --pink-soft: #ffc7bd;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-cap: 0.75rem;
  --t-sm: 0.9375rem;
  --t-body: 1.0625rem;
  --t-lead: 1.25rem;
  --t-h3: 1.5rem;
  --t-h2: 3.25rem;
  --t-h1: 5rem;

  --r: 20px;
  --r-sm: 12px;
  --r-pill: 999px;

  --wrap: 1180px;
  --gutter: 24px;
  --gap: 112px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 1000px) {
  :root { --t-h1: 2.75rem; --t-h2: 2rem; --gap: 72px; --gutter: 20px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: var(--t-body); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; text-wrap: balance; }
h1 { font-size: var(--t-h1); text-transform: uppercase; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.02em; line-height: 1.18; }

:focus-visible { outline: 3px solid var(--green-deep); outline-offset: 2px; border-radius: 4px; }
.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; }
.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 100; background: var(--green); color: var(--ink); padding: 12px 20px; border-radius: var(--r-pill); }
.skip-link:focus { left: 16px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--gap); }
.section--tight { padding-block: calc(var(--gap) * 0.5); }
.section--paper { background: var(--paper); }
.section--surface, .section--sand { background: var(--sand); }
.section--green { background: var(--green); }
.section--abyss { background: var(--green-deep); color: var(--paper); }
.section--abyss h1, .section--abyss h2, .section--abyss h3 { color: var(--green); }
.on-light { background: var(--sand); color: var(--ink); }

.eyebrow { font-size: var(--t-sm); font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.section--abyss .eyebrow { color: rgba(255,255,255,0.7); }
.lede { font-size: var(--t-lead); line-height: 1.5; color: var(--muted); max-width: 50ch; }
.section--abyss .lede { color: rgba(255,255,255,0.82); }
.section-head { margin-bottom: 52px; }
.section-head h2 { max-width: 16ch; }
.section-head--center { text-align: center; }
.section-head--center h2, .section-head--center .lede { margin-inline: auto; }
.lead2col { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); gap: 52px; align-items: end; margin-bottom: 48px; }
@media (max-width: 900px) { .lead2col { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border: 2px solid transparent; border-radius: var(--r-pill); font-size: var(--t-sm); font-weight: 700; cursor: pointer; white-space: nowrap; transition: background-color 150ms var(--ease), border-color 150ms var(--ease), color 150ms var(--ease); }
.btn--primary { background: var(--green); color: var(--ink); }
.btn--primary:hover { background: var(--green-d); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: rgba(18,18,20,0.06); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(18,18,20,0.05); }
.section--abyss .btn--secondary, .section--abyss .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,0.5); }
.section--green .btn--primary { background: var(--ink); color: var(--green); }
.btn--sm { padding: 9px 20px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.announcement { background: var(--sand); font-size: var(--t-sm); text-align: center; padding: 11px var(--gutter); }
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 30; background: var(--paper); }
.site-header.is-stuck { border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 26px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.05em; }
.brand__mark { width: 26px; height: 26px; border-radius: 7px; background: var(--green); flex: none; position: relative; }
.brand__mark::after { content: ""; position: absolute; inset: 0; background: var(--ink); clip-path: polygon(22% 34%,40% 34%,50% 56%,60% 34%,78% 34%,56% 70%,44% 70%); }
.brand__logo { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 24px; margin-inline: auto; font-size: var(--t-sm); font-weight: 600; }
.nav__links a:hover, .nav__links a[aria-current] { text-decoration: underline; text-underline-offset: 4px; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login { font-size: var(--t-sm); font-weight: 700; }
.nav__actions .btn--secondary { background: var(--green); color: var(--ink); border-color: transparent; }
.nav__actions .btn--secondary:hover { background: var(--green-d); }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
@media (max-width: 980px) {
  .nav__links { display: none; } .nav__toggle { display: block; order: 3; } .nav__login { display: none; }
  .nav__links.is-open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 2px; padding: 18px var(--gutter) 26px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav__links.is-open a { padding: 11px 0; font-size: var(--t-lead); }
}

.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__bg--fallback { background: radial-gradient(90% 70% at 50% 110%, #e7fbd8 0%, var(--paper) 62%); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.92) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { padding-block: 90px 84px; text-align: center; max-width: 900px; margin-inline: auto; }
.hero h1 { margin-bottom: 22px; }
.hero__sub { font-size: var(--t-lead); color: var(--muted); max-width: 46ch; margin-inline: auto; }
.hero__sub:empty { display: none; }
.hero__cta { margin-top: 30px; }
.hero__controls { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.email-cta { display: flex; align-items: stretch; border: 2px solid var(--ink); border-radius: var(--r-pill); background: var(--paper); padding: 4px 4px 4px 6px; }
.email-cta input { width: 220px; background: transparent; border: 0; font: inherit; font-size: var(--t-sm); padding: 0 16px; }
.email-cta input::placeholder { color: var(--faint); }
.email-cta input:focus { outline: none; }
.hero__error { margin-top: 12px; font-size: var(--t-sm); color: #c0392b; min-height: 1.2em; }
.hero__legal { position: relative; z-index: 2; padding-bottom: 26px; }
.hero__legal p { font-size: var(--t-cap); color: var(--faint); max-width: 92ch; margin-inline: auto; text-align: center; line-height: 1.55; }
@media (max-width: 900px) { .hero__inner { padding-block: 56px 52px; } .email-cta { width: 100%; } .email-cta input { flex: 1; width: auto; } }

.figure { position: relative; width: 100%; border-radius: var(--r); overflow: hidden; background: var(--sand-2); aspect-ratio: 16/9; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--wide { aspect-ratio: 16/8; } .figure--square { aspect-ratio: 1/1; }
.figure--portrait, .figure--tall { aspect-ratio: 3/4; }
.figure--mist::after, .figure--orb::after, .figure--grid::after, .figure--ridge::after, .figure--halo::after, .figure--arc::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(66% 60% at 32% 30%, rgba(156,235,108,0.5), transparent 62%),
              radial-gradient(56% 66% at 74% 76%, rgba(18,18,20,0.06), transparent 64%);
}

.cardgrid { display: grid; gap: 20px; }
.cardgrid[data-cols="2"] { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cardgrid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cardgrid[data-cols="4"] { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 980px) { .cardgrid[data-cols="3"], .cardgrid[data-cols="4"] { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 660px) { .cardgrid[data-cols="2"], .cardgrid[data-cols="3"], .cardgrid[data-cols="4"] { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; gap: 14px; background: var(--sand); border-radius: var(--r); padding: 28px; }
.cardgrid--plain .card { background: none; padding: 0; }
.cardgrid--tiles .card { min-height: 210px; position: relative; }
.cardgrid--tiles .card .eyebrow { position: absolute; top: 22px; right: 24px; margin: 0; }
.cardgrid--tiles .card__title { margin-top: auto; }
.card__title { font-size: var(--t-h3); font-weight: 800; letter-spacing: -0.025em; }
.card__text { font-size: var(--t-sm); color: var(--muted); line-height: 1.55; }
.card__arrow { margin-top: auto; width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: 14px; }
.cardband { padding-block: 60px 72px; }
.cards--banded { padding-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 72px; align-items: center; }
.split[data-flip="true"] .split__media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } .split[data-flip="true"] .split__media { order: 0; } }
.split h2 { max-width: 14ch; }
.split__list { margin-top: 26px; }
.split__list li { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: var(--t-body); color: var(--muted); }
.split__list li strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 4px; }
.section--abyss .split__list li { border-color: rgba(255,255,255,0.24); color: rgba(255,255,255,0.82); }
.section--abyss .split__list li strong { color: var(--paper); }
.split .btn-row { margin-top: 30px; }

.stats h2 { max-width: 16ch; margin-bottom: 44px; }
.stats__row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
@media (max-width: 860px) { .stats__row { grid-template-columns: 1fr; } }
.stats__item { padding: 30px 28px; background: var(--paper); border-radius: var(--r); min-height: 180px; display: flex; flex-direction: column; }
.section--paper .stats__item { background: var(--sand); }
.stats__value { font-size: 3.25rem; font-weight: 800; letter-spacing: -0.045em; line-height: 1; }
.stats__label { margin-top: auto; padding-top: 20px; font-size: var(--t-sm); color: var(--muted); }
.stats__caption { margin-top: 22px; font-size: var(--t-cap); color: var(--faint); }

.logos__cap { font-size: var(--t-sm); color: var(--muted); margin-bottom: 22px; }
.logos__wall { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.logos__wall li img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.logos__wall li { font-size: var(--t-lead); font-weight: 700; color: var(--faint); }

.featurelist__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; align-items: start; }
@media (max-width: 960px) { .featurelist__grid { grid-template-columns: 1fr; gap: 34px; } }
.featurelist h2 { max-width: 13ch; margin-bottom: 30px; }
.frow { display: block; width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid var(--line); padding: 20px 0; cursor: pointer; transition: opacity 160ms var(--ease); }
.frow__title { font-size: var(--t-h3); font-weight: 800; letter-spacing: -0.02em; }
.frow__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 260ms var(--ease); }
.frow__body > span { overflow: hidden; }
.frow__p { display: block; padding-top: 10px; font-size: var(--t-sm); color: var(--muted); max-width: 48ch; line-height: 1.6; }
.frow[aria-expanded="false"] { opacity: 0.5; }
.frow[aria-expanded="true"] .frow__body { grid-template-rows: 1fr; }
.acctpanel { background: var(--sand); border-radius: var(--r); padding: 24px 24px 12px; }
.acctpanel__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.acctpanel__label { font-size: var(--t-cap); text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); }
.acctpanel__total { font-size: var(--t-h3); font-weight: 800; }
.acctpanel__row { display: grid; grid-template-columns: 26px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.acctpanel__row:last-child { border-bottom: 0; }
.acctpanel__chip { width: 24px; height: 24px; border-radius: 50%; background: var(--green); }
.acctpanel__name { font-size: var(--t-sm); font-weight: 700; }
.acctpanel__meta { font-size: var(--t-cap); color: var(--faint); }
.acctpanel__amt { font-size: var(--t-sm); font-variant-numeric: tabular-nums; font-weight: 700; }
.acctpanel__caption { margin-top: 12px; font-size: var(--t-cap); color: var(--faint); }

.process__row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
@media (max-width: 900px) { .process__row { grid-template-columns: 1fr; } }
.step { padding: 28px; background: var(--sand); border-radius: var(--r); min-height: 200px; display: flex; flex-direction: column; }
.section--green .step { background: var(--paper); }
.step__num { width: 34px; height: 34px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: var(--t-sm); font-weight: 800; margin-bottom: 30px; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: var(--t-sm); color: var(--muted); line-height: 1.6; margin-top: auto; }
.statement p { font-size: clamp(1.75rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; text-transform: uppercase; max-width: 22ch; color: var(--green); }
.statement strong { display: block; margin-top: 22px; font-size: var(--t-lead); font-weight: 500; text-transform: none; letter-spacing: -0.01em; line-height: 1.5; color: rgba(255,255,255,0.86); }
.qcards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
@media (max-width: 860px) { .qcards { grid-template-columns: 1fr; } }
.qcard { margin: 0; padding: 30px; border-radius: var(--r); display: flex; flex-direction: column; gap: 26px; min-height: 280px; background: var(--blue-soft); }
.qcard--accent { background: var(--pink-soft); }
.qcard blockquote { margin: 0; font-size: var(--t-h3); font-weight: 700; letter-spacing: -0.02em; line-height: 1.32; }
.qcard figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: var(--t-sm); }
.qcard__mark { width: 34px; height: 34px; border-radius: 50%; background: rgba(18,18,20,0.16); flex: none; }
.qcard__logo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.qcard figcaption strong { display: block; font-weight: 700; }
.faqsec__grid { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,1.2fr); gap: 60px; align-items: start; }
@media (max-width: 900px) { .faqsec__grid { grid-template-columns: 1fr; gap: 28px; } }
.qalist { border-top: 2px solid var(--ink); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left; font-size: var(--t-body); font-weight: 700; }
.qa__mk { position: relative; width: 14px; height: 14px; flex: none; }
.qa__mk::before, .qa__mk::after { content: ""; position: absolute; inset: 50% 0 auto 0; height: 2px; background: var(--ink); transition: transform 200ms var(--ease); }
.qa__mk::after { transform: rotate(90deg); }
.qa__q[aria-expanded="true"] .qa__mk::after { transform: rotate(0deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 260ms var(--ease); }
.qa__a > div { overflow: hidden; }
.qa__a p { font-size: var(--t-sm); color: var(--muted); line-height: 1.65; padding-bottom: 22px; max-width: 62ch; }
.qa__a a { text-decoration: underline; text-underline-offset: 3px; }
.qa__q[aria-expanded="true"] + .qa__a { grid-template-rows: 1fr; }

.showcase__h { max-width: 18ch; margin-bottom: 40px; }
.showcase__frame { border-radius: var(--r); overflow: hidden; background: var(--sand); }
.showcase__foot { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 30px; align-items: center; margin-top: 26px; }
.showcase__foot p { color: var(--muted); font-size: var(--t-sm); max-width: 68ch; }
@media (max-width: 780px) { .showcase__foot { grid-template-columns: 1fr; gap: 18px; } }
.notegrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px 28px; margin-top: 26px; }
@media (max-width: 900px) { .notegrid { grid-template-columns: 1fr; } }
.notegrid li { font-size: var(--t-sm); color: var(--muted); padding-top: 14px; border-top: 1px solid var(--line); }
.proseband__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 44px 60px; }
@media (max-width: 860px) { .proseband__grid { grid-template-columns: 1fr; gap: 32px; } }
.proseband__col h3 { font-size: var(--t-lead); margin-bottom: 12px; }
.proseband__col p { color: var(--muted); font-size: var(--t-sm); line-height: 1.7; max-width: 52ch; }
.proseband__col p + p { margin-top: 12px; }
.proseband__col a { text-decoration: underline; text-underline-offset: 3px; }

.signup-sec { background: var(--green); }
.signup { max-width: 560px; }
.signup__title { font-size: var(--t-h2); margin-bottom: 14px; }
.signup .lede { margin-bottom: 30px; color: rgba(18,18,20,0.72); }
.signup-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.field--wide, .signup-form .btn, .signup__note, .signup__legal { grid-column: 1 / -1; }
.inp { width: 100%; padding: 16px 18px; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-sm); font: inherit; font-size: var(--t-sm); }
.inp::placeholder { color: var(--faint); }
.inp:focus { outline: none; border-color: var(--green-deep); }
.inp.err { border-color: #c0392b; }
.field__err { margin: 7px 0 0 4px; font-size: var(--t-cap); color: #a32b1c; }
.signup-form .btn--block { width: 100%; margin-top: 4px; background: var(--ink); color: var(--green); }
.submit.busy { opacity: 0.6; pointer-events: none; }
.signup__note { font-size: var(--t-sm); color: rgba(18,18,20,0.75); }
.signup__legal { font-size: var(--t-cap); color: rgba(18,18,20,0.62); line-height: 1.6; }
.signup__legal a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .signup-form { grid-template-columns: 1fr; } }

.finalcta { text-align: center; }
.finalcta h2 { max-width: 16ch; margin-inline: auto; }
.finalcta .lede { margin: 18px auto 0; text-align: center; }
.finalcta .btn-row { justify-content: center; margin-top: 30px; }
.panels { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 60px; text-align: left; }
@media (max-width: 900px) { .panels { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .panels { grid-template-columns: 1fr; } }
.panel { background: var(--sand); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.panel h3 { font-size: var(--t-h3); }
.panel p { font-size: var(--t-sm); color: var(--muted); }
.panel .btn { align-self: flex-start; margin-top: auto; }

.phero { padding-block: 84px 50px; border-bottom: 1px solid var(--line); }
.phero h1 { font-size: var(--t-h2); text-transform: none; max-width: 18ch; }
.phero .lede { margin-top: 18px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: var(--t-sm); color: var(--faint); margin-bottom: 18px; }
.pbody { padding-block: 58px 84px; }
.pblock + .pblock { margin-top: 58px; }
.pblock > h2 { font-size: 1.875rem; max-width: 22ch; margin-bottom: 22px; }
.prose { max-width: 68ch; display: grid; gap: 16px; }
.prose p { color: var(--muted); line-height: 1.72; }
.prose a, .deflist a { text-decoration: underline; text-underline-offset: 3px; }
.deflist { max-width: 74ch; border-top: 2px solid var(--ink); }
.deflist li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.deflist strong { display: block; font-weight: 800; margin-bottom: 6px; }
.deflist span { color: var(--muted); font-size: var(--t-sm); line-height: 1.65; }
.steps { max-width: 76ch; border-top: 2px solid var(--ink); }
.steps li { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step__n { width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: var(--t-cap); font-weight: 800; }
.steps strong { display: block; font-weight: 800; margin-bottom: 6px; }
.steps span { color: var(--muted); font-size: var(--t-sm); line-height: 1.65; }
.midpage { padding-block: 124px 104px; }
.midpage h1 { font-size: var(--t-h2); text-transform: none; max-width: 16ch; }
.midpage .lede { margin-top: 18px; }
.midpage__note { margin-top: 16px; font-size: var(--t-sm); color: var(--muted); }
.midpage__links { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 26px 0 6px; font-size: var(--t-sm); }
.midpage__links a { text-decoration: underline; text-underline-offset: 3px; }
.midpage .btn-row { margin-top: 24px; }

.site-footer { background: var(--sand); padding-block: 60px 42px; font-size: var(--t-sm); }
.footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 34px 24px; }
@media (max-width: 780px) { .footer__cols { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.footer__col h4 { font-size: var(--t-sm); font-weight: 800; margin-bottom: 14px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--muted); }
.footer__col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer__meta { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; font-size: var(--t-cap); color: var(--faint); }
.footer__legal { margin-top: 26px; column-count: 2; column-gap: 40px; font-size: var(--t-cap); line-height: 1.6; color: var(--faint); }
.footer__legal p { margin-bottom: 12px; break-inside: avoid; }
@media (max-width: 780px) { .footer__legal { column-count: 1; } }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 460ms var(--ease), transform 460ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; }
}
