:root {
  --ds-ink: #081722;
  --ds-ink-2: #0d2230;
  --ds-ink-3: #17313f;
  --ds-paper: #f3f6f4;
  --ds-white: #ffffff;
  --ds-mint: #62e6b6;
  --ds-mint-dark: #08795a;
  --ds-gold: #f5bb72;
  --ds-slate: #526570;
  --ds-line: #d8e0dc;
  --ds-line-dark: rgba(255, 255, 255, 0.14);
  --ds-shadow: 0 30px 80px rgba(7, 23, 34, 0.12);
  --ds-radius-sm: 12px;
  --ds-radius: 22px;
  --ds-radius-lg: 32px;
  --ds-shell: min(1180px, calc(100% - 40px));
  --ds-transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ds-white);
  color: var(--ds-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: inherit;
  font-weight: 670;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3.35rem, 7.7vw, 6.9rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

p {
  margin: 0 0 1.25rem;
}

.site-shell {
  width: var(--ds-shell);
  margin-inline: auto;
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

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

.section--dark {
  background: var(--ds-ink);
  color: var(--ds-white);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--ds-white);
  color: var(--ds-ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ds-ink);
  font-size: 1.22rem;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand__mark {
  width: 32px;
  height: 32px;
  color: var(--ds-mint-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.site-nav__list a,
.site-nav .menu a {
  color: #314854;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--ds-transition);
}

.site-nav__list a:hover,
.site-nav .menu a:hover,
.site-nav__list .current-menu-item > a,
.site-nav .menu .current-menu-item > a {
  color: var(--ds-mint-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ds-ink);
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform var(--ds-transition), opacity var(--ds-transition);
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before {
  position: absolute;
  top: -7px;
}

.nav-toggle__icon::after {
  position: absolute;
  top: 7px;
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ds-mint);
  border-radius: 999px;
  background: var(--ds-mint);
  color: var(--ds-ink);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: transform var(--ds-transition), box-shadow var(--ds-transition), background var(--ds-transition);
}

.button:hover {
  background: #78ecc2;
  box-shadow: 0 12px 36px rgba(98, 230, 182, 0.25);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--ds-white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.button--dark {
  border-color: var(--ds-ink);
  background: var(--ds-ink);
  color: var(--ds-white);
}

.button--dark:hover {
  background: var(--ds-ink-2);
  box-shadow: 0 12px 36px rgba(8, 23, 34, 0.2);
}

.button--full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ds-mint-dark);
  font-weight: 720;
  text-decoration: none;
}

.text-link span {
  transition: transform var(--ds-transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--ds-slate);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--mint {
  color: var(--ds-mint);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 0;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: 0;
  left: -15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 230, 182, 0.7), transparent);
  content: "";
}

.hero__glow {
  position: absolute;
  top: -26rem;
  right: -18rem;
  width: 54rem;
  height: 54rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 161, 120, 0.28), transparent 65%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.7rem;
  padding: 8px 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #c6d3d8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ds-mint);
  box-shadow: 0 0 0 5px rgba(98, 230, 182, 0.12);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 1.65rem;
  font-size: clamp(3.4rem, 6.5vw, 6.35rem);
}

.hero h1 em {
  color: var(--ds-mint);
  font-style: normal;
}

.hero__lede {
  max-width: 760px;
  margin-bottom: 2rem;
  color: #c2ced3;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.hero__note {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: #8296a1;
  font-size: 0.82rem;
}

.record-preview {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ds-radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.record-preview::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.record-preview__header,
.record-preview__footer,
.record-preview__amount,
.record-step {
  position: relative;
  z-index: 1;
}

.record-preview__header {
  display: flex;
  padding-bottom: 18px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--ds-line-dark);
}

.record-preview__header strong {
  display: block;
  margin-top: 4px;
  color: #f7fbf9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.record-preview__label {
  color: #8096a0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.record-preview__status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(98, 230, 182, 0.12);
  color: var(--ds-mint);
  font-size: 0.65rem;
  font-weight: 750;
}

.record-preview__amount {
  display: flex;
  padding: 21px 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.record-preview__amount span {
  color: #95a8b0;
  font-size: 0.78rem;
}

.record-preview__amount strong {
  color: var(--ds-white);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.record-preview__steps {
  display: grid;
  gap: 8px;
}

.record-step {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  padding: 12px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
}

.record-step__mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #78909b;
  font-size: 0.68rem;
  font-weight: 800;
}

.record-step--done .record-step__mark {
  border-color: rgba(98, 230, 182, 0.22);
  background: rgba(98, 230, 182, 0.14);
  color: var(--ds-mint);
}

.record-step strong,
.record-step small {
  display: block;
}

.record-step strong {
  color: #e6edeb;
  font-size: 0.73rem;
}

.record-step small,
.record-step time {
  color: #718891;
  font-size: 0.62rem;
}

.record-step time {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.record-preview__footer {
  display: flex;
  margin-top: 18px;
  padding-top: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--ds-line-dark);
  color: #6f858f;
  font-size: 0.62rem;
}

.record-preview__seal {
  color: var(--ds-gold);
  font-weight: 750;
}

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(4.5rem, 9vw, 8rem);
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ds-line-dark);
}

.proof-strip > div {
  display: flex;
  min-height: 110px;
  padding: 24px 26px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--ds-line-dark);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--ds-white);
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.proof-strip span {
  color: #78909a;
  font-size: 0.73rem;
}

.split-heading {
  display: grid;
  margin-bottom: 4.5rem;
  grid-template-columns: 0.42fr 1fr;
  gap: 40px;
}

.split-heading h2 {
  max-width: 850px;
}

.split-heading > div > p {
  max-width: 720px;
  color: var(--ds-slate);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ds-line);
  border-left: 1px solid var(--ds-line);
}

.feature-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--ds-line);
  border-bottom: 1px solid var(--ds-line);
  background: rgba(255, 255, 255, 0.45);
}

.feature-card__number {
  display: block;
  margin-bottom: 5.4rem;
  color: var(--ds-mint-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  margin: 0;
  color: var(--ds-slate);
  font-size: 0.9rem;
}

.product-section {
  background: var(--ds-white);
}

.product-panel {
  display: grid;
  padding: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 7vw, 7rem);
  border-radius: var(--ds-radius-lg);
  background: var(--ds-mint);
  box-shadow: var(--ds-shadow);
}

.product-panel__intro h2 {
  max-width: 630px;
  font-size: clamp(2.4rem, 4.7vw, 4.6rem);
}

.product-panel__intro > p:not(.eyebrow) {
  max-width: 580px;
  color: #214b3f;
  font-size: 1.04rem;
}

.product-panel .eyebrow {
  color: #276652;
}

.product-panel .text-link {
  color: var(--ds-ink);
}

.product-panel__data {
  padding: 28px;
  border: 1px solid rgba(8, 23, 34, 0.14);
  border-radius: var(--ds-radius);
  background: rgba(255, 255, 255, 0.38);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 18px;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 25px;
  border-bottom: 1px solid rgba(8, 23, 34, 0.1);
  font-size: 0.84rem;
  font-weight: 630;
}

.check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--ds-ink);
  color: var(--ds-mint);
  content: "✓";
  font-size: 0.57rem;
}

.fine-print {
  margin: 22px 0 0;
  color: #41695d;
  font-size: 0.72rem;
  line-height: 1.55;
}

.record-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.record-section h2 {
  max-width: 680px;
}

.record-section__grid > div:first-child > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 2rem;
  color: #a8bac2;
  font-size: 1.05rem;
}

.evidence-list {
  border-top: 1px solid var(--ds-line-dark);
}

.evidence-list > div {
  display: grid;
  min-height: 73px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ds-line-dark);
}

.evidence-list span {
  color: var(--ds-mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.evidence-list p {
  margin: 0;
  color: #d9e2e0;
  font-size: 0.92rem;
}

.definition-note {
  display: grid;
  margin-top: 5rem;
  padding: 24px 28px;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 24px;
  border: 1px solid rgba(245, 187, 114, 0.27);
  border-radius: var(--ds-radius-sm);
  background: rgba(245, 187, 114, 0.06);
}

.definition-note strong {
  color: var(--ds-gold);
  font-size: 0.82rem;
}

.definition-note p {
  margin: 0;
  color: #aebcc1;
  font-size: 0.83rem;
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ds-line);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--ds-line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 5rem;
  place-items: center;
  border: 1px solid var(--ds-line);
  border-radius: 50%;
  color: var(--ds-mint-dark);
  font-size: 0.73rem;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: var(--ds-slate);
  font-size: 0.84rem;
}

.limits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr;
  align-items: stretch;
  gap: 20px;
}

.limits-grid > div:first-child {
  padding-right: clamp(2rem, 5vw, 5rem);
}

.limits-card {
  padding: 30px;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius);
  background: var(--ds-white);
}

.limits-card__title {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.limits-card__title span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
}

.limits-card--yes .limits-card__title span {
  background: rgba(8, 121, 90, 0.1);
  color: var(--ds-mint-dark);
}

.limits-card--no .limits-card__title span {
  background: rgba(173, 84, 61, 0.1);
  color: #9b4c38;
}

.limits-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.limits-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ds-line);
  color: var(--ds-slate);
  font-size: 0.85rem;
}

.limits-card li:last-child {
  border-bottom: 0;
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.future-grid > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ds-slate);
  font-size: 1.02rem;
}

.category-stack {
  display: grid;
  gap: 11px;
}

.category-card {
  display: grid;
  min-height: 98px;
  padding: 19px 22px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-sm);
  background: var(--ds-paper);
}

.category-card span {
  color: var(--ds-slate);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card strong {
  font-size: 1rem;
}

.category-card small {
  grid-column: 2;
  color: var(--ds-slate);
  font-size: 0.72rem;
}

.category-card--active {
  border-color: var(--ds-ink);
  background: var(--ds-ink);
  color: var(--ds-white);
}

.category-card--active span,
.category-card--active small {
  color: var(--ds-mint);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-grid--archive {
  grid-template-columns: repeat(2, 1fr);
}

.resource-card {
  display: flex;
  min-height: 330px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius);
  background: var(--ds-white);
  transition: transform var(--ds-transition), box-shadow var(--ds-transition);
}

.resource-card:hover {
  box-shadow: 0 18px 50px rgba(8, 23, 34, 0.08);
  transform: translateY(-4px);
}

.resource-card__meta {
  color: var(--ds-slate);
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-card h2,
.resource-card h3 {
  margin-top: 1.7rem;
}

.resource-card h2 {
  font-size: 1.55rem;
}

.resource-card h3 a,
.resource-card h2 a {
  text-decoration: none;
}

.resource-card > p:not(.resource-card__meta) {
  color: var(--ds-slate);
  font-size: 0.88rem;
}

.resource-card .text-link {
  margin-top: auto;
  font-size: 0.84rem;
}

.founding-cta {
  background: var(--ds-ink);
  color: var(--ds-white);
}

.founding-cta__inner {
  display: grid;
  padding: clamp(2.2rem, 5vw, 4.7rem);
  grid-template-columns: 1fr 0.55fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  border: 1px solid rgba(98, 230, 182, 0.22);
  border-radius: var(--ds-radius-lg);
  background: linear-gradient(135deg, rgba(98, 230, 182, 0.1), rgba(98, 230, 182, 0.025));
}

.founding-cta h2 {
  max-width: 720px;
}

.founding-cta__inner > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  color: #aec0c7;
}

.founding-cta__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.founding-cta__action small {
  color: #7e939c;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.entry-hero,
.article-hero {
  position: relative;
  overflow: hidden;
}

.entry-hero::after,
.article-hero::after {
  position: absolute;
  top: -60%;
  right: -10%;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 230, 182, 0.16), transparent 67%);
  content: "";
}

.entry-hero__inner,
.article-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 11vw, 10rem) 0 clamp(5rem, 9vw, 8rem);
}

.entry-hero h1,
.article-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.entry-hero__lede,
.article-hero__lede {
  max-width: 780px;
  color: #b3c2c8;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.entry-content {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.article-hero__inner {
  width: min(920px, calc(100% - 40px));
}

.article-hero .eyebrow {
  display: inline-block;
  text-decoration: none;
}

.article-meta {
  margin-top: 2rem;
  color: #728a94;
  font-size: 0.78rem;
}

.article-layout {
  display: grid;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.article-aside {
  position: sticky;
  top: 110px;
}

.aside-card {
  padding: 25px;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius);
  background: var(--ds-paper);
}

.aside-card h2 {
  font-size: 1.55rem;
}

.aside-card > p:not(.eyebrow) {
  color: var(--ds-slate);
  font-size: 0.84rem;
}

.prose {
  font-size: 1.02rem;
}

.prose > * {
  max-width: 760px;
}

.prose > .alignwide {
  max-width: 1000px;
}

.prose h2 {
  margin-top: 2.25em;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.prose h3 {
  margin-top: 2em;
  font-size: 1.45rem;
}

.prose p,
.prose li {
  color: #334b57;
}

.prose ul,
.prose ol {
  margin: 1.25rem 0 1.8rem;
  padding-left: 1.4rem;
}

.prose li {
  margin-bottom: 0.55rem;
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.7rem;
  border-left: 4px solid var(--ds-mint-dark);
  background: var(--ds-paper);
  font-size: 1.12rem;
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.prose th,
.prose td {
  padding: 12px;
  border: 1px solid var(--ds-line);
  text-align: left;
}

.prose th {
  background: var(--ds-paper);
}

.prose .wp-block-button__link {
  border-radius: 999px;
  background: var(--ds-ink);
  color: var(--ds-white);
}

.prose .ds-intro {
  margin-bottom: 3rem;
  color: var(--ds-ink);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 520;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.ds-status-box,
.ds-callout {
  max-width: 100% !important;
  margin: 2.5rem 0 4rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--ds-radius);
}

.ds-status-box {
  border: 1px solid rgba(8, 121, 90, 0.22);
  background: rgba(98, 230, 182, 0.1);
}

.ds-status-box strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ds-mint-dark);
}

.ds-status-box p,
.ds-callout p {
  margin-bottom: 0.65rem;
}

.ds-status-box p:last-child,
.ds-callout p:last-child {
  margin-bottom: 0;
}

.ds-columns {
  display: grid;
  max-width: 100% !important;
  margin: 1.7rem 0 3rem;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ds-columns > * {
  margin: 0;
  padding: 24px 24px 24px 44px;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-sm);
  background: var(--ds-paper);
}

.ds-columns > div {
  padding-left: 24px;
}

.ds-columns h3 {
  margin-top: 0;
}

.ds-callout {
  border: 1px solid var(--ds-ink);
  background: var(--ds-ink);
  color: var(--ds-white);
}

.ds-callout h2 {
  margin-top: 0;
  color: var(--ds-white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.ds-callout p {
  color: #b5c4ca;
}

.ds-content-button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 0.7rem;
  padding: 0 20px;
  align-items: center;
  border-radius: 999px;
  background: var(--ds-mint);
  color: var(--ds-ink) !important;
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.ds-record-list {
  display: grid;
  max-width: 100% !important;
  margin: 2rem 0 4rem;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ds-line);
  border-left: 1px solid var(--ds-line);
}

.ds-record-list > div {
  padding: 24px;
  border-right: 1px solid var(--ds-line);
  border-bottom: 1px solid var(--ds-line);
}

.ds-record-list strong {
  color: var(--ds-mint-dark);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.ds-record-list p {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
}

.ds-calculator {
  max-width: 100% !important;
  margin: 2rem 0 3rem;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius);
  background: var(--ds-paper);
}

.ds-calculator__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ds-calculator label {
  display: flex;
  color: var(--ds-ink);
  font-size: 0.78rem;
  font-weight: 720;
  flex-direction: column;
  gap: 7px;
}

.ds-calculator label small {
  color: var(--ds-slate);
  font-weight: 500;
}

.ds-calculator input {
  width: 100%;
  height: 49px;
  padding: 0 13px;
  border: 1px solid #cbd6d1;
  border-radius: 9px;
  outline: 0;
  background: var(--ds-white);
  color: var(--ds-ink);
}

.ds-calculator input:focus {
  border-color: var(--ds-mint-dark);
  box-shadow: 0 0 0 3px rgba(8, 121, 90, 0.12);
}

.ds-calculator__error {
  min-height: 1.4em;
  margin: 16px 0 0;
  color: #9b382e !important;
  font-size: 0.76rem;
  font-weight: 650;
}

.ds-calculator__results {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ds-line);
  border-left: 1px solid var(--ds-line);
}

.ds-calculator__results > div {
  min-height: 90px;
  padding: 15px;
  border-right: 1px solid var(--ds-line);
  border-bottom: 1px solid var(--ds-line);
  background: var(--ds-white);
}

.ds-calculator__results span,
.ds-calculator__results strong {
  display: block;
}

.ds-calculator__results span {
  margin-bottom: 7px;
  color: var(--ds-slate);
  font-size: 0.66rem;
  line-height: 1.4;
}

.ds-calculator__results strong {
  color: var(--ds-ink);
  font-size: 0.9rem;
}

.ds-calculator__results .ds-calculator__primary {
  background: var(--ds-ink);
}

.ds-calculator__results .ds-calculator__primary span {
  color: #93a6ae;
}

.ds-calculator__results .ds-calculator__primary strong {
  color: var(--ds-mint);
  font-size: 1.05rem;
}

.ds-calculator__reset {
  margin-top: 18px;
  padding: 9px 14px;
  border: 1px solid var(--ds-line);
  border-radius: 999px;
  background: var(--ds-white);
  color: var(--ds-ink);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.pagination {
  margin-top: 3rem;
}

.error-page {
  min-height: 65vh;
}

.error-page h1 {
  max-width: 800px;
}

.site-footer {
  padding: 4.5rem 0 2.2rem;
  background: #051018;
  color: var(--ds-white);
}

.brand--footer {
  color: var(--ds-white);
}

.brand--footer .brand__mark {
  color: var(--ds-mint);
}

.site-footer__top {
  display: flex;
  padding-bottom: 2.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ds-line-dark);
}

.site-footer__line {
  margin: 0;
  color: #78909a;
  font-size: 0.9rem;
}

.site-footer__grid {
  display: grid;
  padding: 3.5rem 0;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 50px;
  border-bottom: 1px solid var(--ds-line-dark);
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__grid .eyebrow {
  margin-bottom: 10px;
  color: #59717c;
}

.site-footer__grid a {
  color: #b7c4c9;
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer__pending {
  color: #607680;
  font-size: 0.75rem;
}

.site-footer__grid a:hover {
  color: var(--ds-mint);
}

.site-footer__legal {
  display: flex;
  padding-top: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.site-footer__legal p {
  max-width: 770px;
  margin: 0;
  color: #607680;
  font-size: 0.68rem;
}

.site-footer__legal p:last-child {
  white-space: nowrap;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay,
.reveal--delay-1 {
  transition-delay: 90ms;
}

.reveal--delay-2 {
  transition-delay: 160ms;
}

.reveal--delay-3 {
  transition-delay: 230ms;
}

.reveal--delay-4 {
  transition-delay: 300ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav__list,
  .site-nav .menu {
    gap: 16px;
  }

  .site-nav__list a,
  .site-nav .menu a {
    font-size: 0.78rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 3rem;
  }

  .record-preview {
    padding: 18px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3) {
    border-right: 0;
  }

  .limits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .limits-grid > div:first-child {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    min-height: calc(100svh - 78px);
    max-height: calc(100svh - 78px);
    padding: 30px 20px 38px;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    border-top: 1px solid var(--ds-line);
    background: var(--ds-white);
  }

  .admin-bar .site-nav {
    inset-block-start: 124px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list,
  .site-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list li,
  .site-nav .menu li {
    border-bottom: 1px solid var(--ds-line);
  }

  .site-nav__list a,
  .site-nav .menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }

  .nav-open .nav-toggle__icon {
    background: transparent;
  }

  .nav-open .nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-open .nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .product-panel,
  .record-section__grid,
  .future-grid,
  .founding-cta__inner,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 800px;
  }

  .record-preview {
    max-width: 640px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--ds-line-dark);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .check-list--two-col {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-aside {
    position: static;
  }

  .aside-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  :root {
    --ds-shell: min(100% - 28px, 1180px);
  }

  .section {
    padding: 4.6rem 0;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .site-nav {
    inset-block-start: 70px;
    min-height: calc(100svh - 70px);
    max-height: calc(100svh - 70px);
  }

  .admin-bar .site-nav {
    inset-block-start: 116px;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .record-preview {
    padding: 15px;
    border-radius: 22px;
  }

  .record-preview__header,
  .record-preview__amount,
  .record-preview__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .record-preview__footer {
    display: flex;
  }

  .record-step {
    grid-template-columns: 28px 1fr;
  }

  .record-step time {
    display: none;
  }

  .proof-strip > div {
    min-height: 88px;
    padding: 16px;
  }

  .feature-grid,
  .process-grid,
  .limits-grid,
  .resource-grid,
  .resource-grid--archive,
  .site-footer__grid,
  .ds-columns,
  .ds-record-list,
  .ds-calculator__grid,
  .ds-calculator__results {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card__number,
  .process-step > span {
    margin-bottom: 2.7rem;
  }

  .product-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .product-panel__data {
    padding: 20px;
  }

  .definition-note,
  .category-card {
    grid-template-columns: 1fr;
  }

  .category-card {
    gap: 6px;
  }

  .category-card small {
    grid-column: auto;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ds-line);
  }

  .section-heading--row,
  .site-footer__top,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-card {
    min-height: 290px;
  }

  .site-footer__grid {
    gap: 36px;
  }

  .site-footer__legal p:last-child {
    white-space: normal;
  }
}
