

:root {
  --paper: #ffffff;
  --ink: #000000;
  --ink-2: #1c1d20;
  --muted: #6b6b70;
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.16);
  --surface: #f6f6f7;
  --dark: #1c1d20;
  --dark-2: #26272b;

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

  --t-cap: 0.75rem;
  --t-sm: 0.875rem;
  --t-body: 1rem;
  --t-lead: 1.25rem;
  --t-h3: 1.5rem;
  --t-h2: 3rem;
  --t-h1: 4.5rem;

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

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

@media (max-width: 1000px) {
  :root { --t-h1: 2.75rem; --t-h2: 2rem; --t-h3: 1.25rem; --gap: 76px; --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.5;
  -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: 700; letter-spacing: -0.03em; line-height: 1.03; text-wrap: balance; }
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.02em; line-height: 1.2; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 3px; }
.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(--ink); color: var(--paper); 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--surface { background: var(--surface); }
.section--abyss { background: var(--dark); color: var(--paper); }
.section--abyss h1, .section--abyss h2, .section--abyss h3 { color: var(--paper); }
.on-light { background: var(--paper); color: var(--ink); }

.eyebrow { font-size: var(--t-sm); font-weight: 600; letter-spacing: 0.01em; color: var(--muted); margin-bottom: 16px; }
.section--abyss .eyebrow { color: rgba(255,255,255,0.62); }
.lede { font-size: var(--t-lead); line-height: 1.5; color: var(--muted); max-width: 52ch; }
.section--abyss .lede { color: rgba(255,255,255,0.72); }

.section-head { margin-bottom: 56px; }
.section-head h2 { max-width: 18ch; }
.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,1fr) minmax(0,1fr); gap: 56px; align-items: end; margin-bottom: 52px; }
.lead2col h2 { max-width: 15ch; }
@media (max-width: 900px) { .lead2col { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border: 1px solid transparent; border-radius: var(--r-pill);
  font-size: var(--t-body); font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: background-color 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease);
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: #2b2b2e; }
.btn--secondary { background: rgba(0,0,0,0.06); color: var(--ink); }
.btn--secondary:hover { background: rgba(0,0,0,0.1); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(0,0,0,0.05); }
.section--abyss .btn--primary { background: var(--paper); color: var(--ink); }
.section--abyss .btn--primary:hover { background: #eee; }
.section--abyss .btn--ghost { color: var(--paper); border-color: var(--line-dark); }
.section--abyss .btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--sm { padding: 9px 18px; font-size: var(--t-sm); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.announcement { background: var(--surface); font-size: var(--t-sm); color: var(--muted); text-align: center; padding: 10px var(--gutter); }
.announcement a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); }
.site-header.is-stuck { border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: var(--t-lead); font-weight: 700; letter-spacing: -0.03em; }
.brand__mark { width: 24px; height: 24px; border-radius: 6px; background: var(--ink); flex: none; position: relative; }
.brand__mark::after { content: ""; position: absolute; inset: 0; background: var(--paper); clip-path: polygon(30% 74%,30% 26%,58% 26%,70% 40%,58% 52%,72% 74%,56% 74%,44% 52%,44% 74%); }
.brand__logo { height: 24px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 24px; margin-inline: auto; font-size: var(--t-sm); font-weight: 500; }
.nav__links a { color: var(--ink); opacity: 0.72; }
.nav__links a:hover, .nav__links a[aria-current] { opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login { font-size: var(--t-sm); font-weight: 600; }
.nav__actions .btn--secondary { background: var(--ink); color: var(--paper); }
.nav__actions .btn--secondary:hover { background: #2b2b2e; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 20px; 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: 68px; 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); opacity: 1; }
}

.hero { position: relative; overflow: hidden; background: var(--dark); color: var(--paper); }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__bg--fallback { background: linear-gradient(160deg, #2a2b31 0%, #141519 100%); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,14,0.86) 0%, rgba(12,12,14,0.55) 46%, rgba(12,12,14,0.15) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { padding-block: 156px 120px; max-width: 620px; }
.hero h1 { color: var(--paper); margin-bottom: 20px; }
.hero__sub { font-size: var(--t-lead); line-height: 1.5; color: rgba(255,255,255,0.82); max-width: 44ch; }
.hero__sub:empty { display: none; }
.hero__cta { margin-top: 32px; }
.hero__controls { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero .btn--primary { background: var(--paper); color: var(--ink); }
.hero .btn--secondary { background: rgba(255,255,255,0.14); color: var(--paper); }
.email-cta { display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--r-pill); background: rgba(255,255,255,0.08); padding: 5px 5px 5px 6px; }
.email-cta input { width: 220px; background: transparent; border: 0; color: var(--paper); font: inherit; font-size: var(--t-sm); padding: 0 16px; }
.email-cta input::placeholder { color: rgba(255,255,255,0.55); }
.email-cta input:focus { outline: none; }
.hero__error { margin-top: 12px; font-size: var(--t-sm); color: #ffb4ab; min-height: 1.2em; }
.hero__legal { position: relative; z-index: 2; padding-bottom: 26px; }
.hero__legal p { font-size: var(--t-cap); color: rgba(255,255,255,0.6); max-width: 92ch; line-height: 1.55; }
@media (max-width: 900px) {
  .hero__inner { padding-block: 108px 76px; }
  .hero__scrim { background: linear-gradient(180deg, rgba(12,12,14,0.5) 0%, rgba(12,12,14,0.88) 60%); }
  .email-cta { width: 100%; } .email-cta input { flex: 1; width: auto; }
}

.showcase__h { max-width: 22ch; margin-bottom: 40px; }
.showcase__frame { border-radius: var(--r); overflow: hidden; background: var(--surface); }
.showcase__foot { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 32px; align-items: center; margin-top: 28px; }
.showcase__foot p { color: var(--muted); font-size: var(--t-sm); max-width: 70ch; }
@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: 28px; }
@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); }

.figure { position: relative; width: 100%; border-radius: var(--r-sm); overflow: hidden; background: var(--surface); 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 { aspect-ratio: 3/4; }
.figure--tall { aspect-ratio: 3/4; }
.section--abyss .figure { background: var(--dark-2); }
.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(70% 60% at 30% 28%, rgba(0,0,0,0.06), transparent 62%),
              radial-gradient(60% 70% at 74% 76%, rgba(0,0,0,0.05), 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(--surface); border-radius: var(--r); padding: 26px; }
.section--abyss .card { background: var(--dark-2); }
.cardgrid--plain .card { background: none; padding: 0; gap: 14px; }
.cardgrid--tiles .card { min-height: 200px; 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: 700; letter-spacing: -0.02em; }
.card__text { font-size: var(--t-sm); color: var(--muted); line-height: 1.6; }
.section--abyss .card__text { color: rgba(255,255,255,0.7); }
.card .figure { margin-bottom: 4px; }
.card__arrow { margin-top: auto; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 13px; }
.cardband { padding-block: 60px 70px; }
.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: 32px; } .split[data-flip="true"] .split__media { order: 0; } }
.split h2 { max-width: 16ch; }
.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: 600; margin-bottom: 4px; }
.section--abyss .split__list li { border-color: var(--line-dark); color: rgba(255,255,255,0.72); }
.section--abyss .split__list li strong { color: var(--paper); }
.split .btn-row { margin-top: 30px; }

.stats h2 { max-width: 18ch; margin-bottom: 44px; }
.stats__row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
@media (max-width: 980px) { .stats__row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .stats__row { grid-template-columns: 1fr; } }
.stats__item { padding: 28px 26px; background: var(--surface); border-radius: var(--r); min-height: 170px; display: flex; flex-direction: column; }
.section--abyss .stats__item { background: var(--dark-2); }
.stats__value { font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stats__label { margin-top: auto; padding-top: 20px; font-size: var(--t-sm); color: var(--muted); }
.section--abyss .stats__label { color: rgba(255,255,255,0.7); }
.stats__caption { margin-top: 22px; font-size: var(--t-cap); color: var(--muted); }

.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 40px; }
.logos__wall li { font-size: var(--t-lead); font-weight: 700; letter-spacing: -0.02em; color: rgba(0,0,0,0.45); }
.logos__wall li img { height: 28px; width: auto; }

.featurelist__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 64px; align-items: start; }
@media (max-width: 960px) { .featurelist__grid { grid-template-columns: 1fr; gap: 36px; } }
.featurelist h2 { max-width: 14ch; margin-bottom: 32px; }
.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); }
.section--abyss .frow { border-color: var(--line-dark); }
.frow__title { font-size: var(--t-h3); font-weight: 700; 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="false"]:hover { opacity: 0.8; }
.frow[aria-expanded="true"] .frow__body { grid-template-rows: 1fr; }
.acctpanel { background: var(--surface); border-radius: var(--r); padding: 24px 24px 12px; }
.section--abyss .acctpanel { background: var(--dark-2); }
.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(--muted); }
.acctpanel__total { font-size: var(--t-h3); font-weight: 700; letter-spacing: -0.03em; }
.acctpanel__row { display: grid; grid-template-columns: 24px 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: 22px; height: 22px; border-radius: 6px; background: rgba(0,0,0,0.08); }
.acctpanel__name { font-size: var(--t-sm); font-weight: 600; }
.acctpanel__meta { font-size: var(--t-cap); color: var(--muted); }
.acctpanel__amt { font-size: var(--t-sm); font-variant-numeric: tabular-nums; }
.acctpanel__caption { margin-top: 12px; font-size: var(--t-cap); color: var(--muted); }

.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 { position: relative; padding: 28px; background: var(--surface); border-radius: var(--r); min-height: 210px; display: flex; flex-direction: column; }
.section--abyss .step { background: var(--dark-2); }
.step__num { font-size: var(--t-sm); font-weight: 700; color: var(--muted); margin-bottom: 40px; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: var(--t-sm); color: var(--muted); line-height: 1.6; margin-top: auto; }
.section--abyss .step p { color: rgba(255,255,255,0.7); }

.statement { border-block: 1px solid var(--line); }
.statement p { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.24; max-width: 30ch; color: var(--muted); }
.statement strong { color: var(--ink); font-weight: 700; }
.section--abyss.statement p { color: rgba(255,255,255,0.6); }
.section--abyss.statement strong { color: var(--paper); }

.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(--surface); color: var(--ink); }
.qcard--accent { background: var(--ink); color: var(--paper); }
.qcard blockquote { margin: 0; font-size: var(--t-h3); font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; }
.qcard figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: var(--t-sm); }
.qcard__mark { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,0,0,0.14); flex: none; }
.qcard--accent .qcard__mark { background: rgba(255,255,255,0.22); }
.qcard__logo { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; flex: none; }
.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; } }
.faqsec h2 { max-width: 12ch; }
.qalist { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left; font-size: var(--t-body); font-weight: 600; }
.qa__mk { position: relative; width: 13px; height: 13px; 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 { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.qa__q[aria-expanded="true"] + .qa__a { grid-template-rows: 1fr; }

.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: 34px; } }
.proseband__col h3 { font-size: var(--t-lead); font-weight: 700; 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 { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.signup-sec { background: var(--dark); color: var(--paper); }
.signup { max-width: 560px; }
.signup__title { font-size: var(--t-h2); margin-bottom: 14px; color: var(--paper); }
.signup .lede { margin-bottom: 30px; color: rgba(255,255,255,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; }
.field { position: relative; }
.inp { width: 100%; padding: 15px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-sm); color: var(--paper); font: inherit; font-size: var(--t-sm); }
.inp::placeholder { color: rgba(255,255,255,0.5); }
.inp:focus { outline: none; border-color: rgba(255,255,255,0.55); }
.inp.err { border-color: #ff8f84; }
.field__err { margin: 7px 0 0 4px; font-size: var(--t-cap); color: #ffb4ab; }
.signup-form .btn--block { width: 100%; margin-top: 4px; background: var(--paper); color: var(--ink); }
.submit.busy { opacity: 0.6; pointer-events: none; }
.signup__note { font-size: var(--t-sm); color: rgba(255,255,255,0.72); }
.signup__legal { font-size: var(--t-cap); color: rgba(255,255,255,0.55); line-height: 1.6; }
.signup__legal a { color: rgba(255,255,255,0.85); 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: 18ch; 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: 64px; 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(--paper); color: var(--ink); 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; padding-top: 9px; padding-bottom: 9px; }

.phero { padding-block: 92px 52px; border-bottom: 1px solid var(--line); }
.phero h1 { font-size: var(--t-h2); max-width: 20ch; }
.phero .lede { margin-top: 18px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: var(--t-sm); color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--ink); }
.pbody { padding-block: 60px 88px; }
.pblock + .pblock { margin-top: 60px; }
.pblock > h2 { font-size: 1.75rem; max-width: 24ch; margin-bottom: 22px; }
.prose { max-width: 68ch; display: grid; gap: 16px; }
.prose p { color: var(--muted); line-height: 1.72; }
.prose a, .deflist a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.deflist { max-width: 74ch; border-top: 1px solid var(--line); }
.deflist li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.deflist strong { display: block; font-weight: 700; margin-bottom: 6px; }
.deflist span { color: var(--muted); font-size: var(--t-sm); line-height: 1.65; }
.steps { max-width: 76ch; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step__n { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-size: var(--t-cap); font-weight: 700; }
.steps strong { display: block; font-weight: 700; margin-bottom: 6px; }
.steps span { color: var(--muted); font-size: var(--t-sm); line-height: 1.65; }

.midpage { padding-block: 130px 110px; }
.midpage h1 { font-size: var(--t-h2); max-width: 18ch; }
.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 { color: var(--muted); }
.midpage__links a:hover { color: var(--ink); }
.midpage .btn-row { margin-top: 24px; }

.site-footer { background: var(--dark); color: rgba(255,255,255,0.78); padding-block: 64px 44px; 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: 700; color: var(--paper); margin-bottom: 14px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: rgba(255,255,255,0.7); }
.footer__col a:hover { color: var(--paper); }
.footer__meta { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; font-size: var(--t-cap); color: rgba(255,255,255,0.6); }
.footer__legal { margin-top: 26px; column-count: 2; column-gap: 40px; font-size: var(--t-cap); line-height: 1.6; color: rgba(255,255,255,0.52); }
.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 480ms var(--ease), transform 480ms 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; }
}

.section--paper { background: var(--paper); color: var(--ink); }

.section--abyss .panel h3, .section--abyss .qcard blockquote,
.section--abyss .panel p, .section--abyss .qcard figcaption { color: var(--ink); }
.section--abyss .panel p { color: var(--muted); }
.section--abyss .qcard--accent blockquote, .section--abyss .qcard--accent figcaption { color: var(--paper); }
