:root {
  color-scheme: light;
  --forest: #17251c;
  --forest-deep: #0f1d16;
  --forest-soft: #213329;
  --paper: #f6f2e9;
  --paper-deep: #e7e2d6;
  --canvas: #eee9dd;
  --ink: #17251c;
  --ink-soft: #455249;
  --gold: #d9a441;
  --gold-deep: #866214;
  --gold-pale: #e9c877;
  --positive: #1f6f4a;
  --alert: #b0442f;
  --display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --mono: "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(90rem, calc(100vw - 2.5rem));
  --page-narrow: min(72rem, calc(100vw - 2.5rem));
  --border-paper: color-mix(in srgb, var(--ink) 24%, transparent);
  --border-dark: color-mix(in srgb, var(--gold-pale) 35%, transparent);
  --shadow-paper: 0 1.75rem 5rem rgba(4, 15, 9, 0.28);
}

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

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-pale);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--forest);
  background: var(--paper);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  color: var(--paper);
  background: var(--forest);
  border-bottom: 1px solid var(--border-dark);
}

.site-header__inner {
  width: var(--page);
  min-height: 8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: block;
  flex: 0 0 auto;
  width: clamp(9.75rem, 17vw, 14.25rem);
}

.brand-link img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.7vw, 2.75rem);
  font-size: 0.98rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.button) {
  position: relative;
  padding-block: 0.75rem;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  min-width: 7.4rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  background: transparent;
  font: 600 1rem/1 var(--body);
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  width: 1.35rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button__lines {
  position: relative;
}

.menu-button__lines::before,
.menu-button__lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button__lines::before {
  top: -0.42rem;
}

.menu-button__lines::after {
  top: 0.42rem;
}

.button,
.text-link {
  min-height: 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.8rem 1.65rem;
  border: 1px solid var(--gold);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.button::after,
.text-link::after {
  content: "→";
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 400;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: var(--forest-deep);
  background: var(--gold);
}

.button--gold:hover {
  background: var(--gold-pale);
}

.button--outline {
  color: var(--gold-pale);
  background: transparent;
}

.button--outline:hover {
  color: var(--forest);
  background: var(--gold-pale);
}

.button--compact {
  min-height: 3.4rem;
  padding-inline: 1.3rem;
}

.text-link {
  min-height: 2.75rem;
  justify-content: flex-start;
  padding: 0.25rem 0;
  border-width: 0 0 1px;
  color: var(--gold-deep);
}

.hero,
.workflow,
.closing-cta,
.page-hero--dark {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 43%, rgba(217, 164, 65, 0.08), transparent 30rem),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
}

.hero::before,
.workflow::before,
.closing-cta::before,
.page-hero--dark::before {
  content: "";
  position: absolute;
  width: 54rem;
  aspect-ratio: 1;
  right: -11rem;
  bottom: -31rem;
  border: 1px solid rgba(217, 164, 65, 0.16);
  border-radius: 48% 52% 44% 56%;
  box-shadow:
    0 0 0 2rem rgba(217, 164, 65, 0.035),
    0 0 0 4rem rgba(217, 164, 65, 0.025),
    0 0 0 6rem rgba(217, 164, 65, 0.018);
  transform: rotate(-16deg);
  pointer-events: none;
}

.hero::after,
.workflow::after,
.closing-cta::after,
.page-hero--dark::after {
  content: "";
  position: absolute;
  width: min(66rem, 78vw);
  aspect-ratio: 1.58;
  right: -10rem;
  bottom: -7rem;
  background: url("/assets/guilloche.svg") center / contain no-repeat;
  opacity: 0.5;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero {
  min-height: calc(100svh - 8rem);
  border-bottom: 1px solid var(--border-dark);
}

.hero__inner {
  position: relative;
  width: var(--page);
  min-height: calc(100svh - 8rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(4.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 49rem;
}

.hero h1,
.section-title,
.page-hero h1,
.closing-cta h2,
.footer-wordmark,
.transition-card h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 7.4vw, 7.75rem);
}

.gold-period {
  color: var(--gold);
}

.hero__lede {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: color-mix(in srgb, var(--paper) 90%, transparent);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  z-index: 2;
  min-height: 34rem;
  display: grid;
  place-items: center;
}

.sample-note {
  position: absolute;
  top: 2.2rem;
  left: 0.75rem;
  color: var(--gold);
  font: 700 1rem/1 var(--mono);
  transform: rotate(-7deg);
}

.sample-note::after {
  content: "↘";
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1.6rem;
}

.receipt {
  position: relative;
  width: min(100%, 26rem);
  padding: 1.35rem 1.35rem 2.2rem;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 37, 28, 0.025) 1px, transparent 1px) 0 0 / 100% 1.35rem,
    var(--paper);
  border: 1px solid rgba(246, 242, 233, 0.8);
  box-shadow: var(--shadow-paper);
  transform: rotate(1.2deg);
}

.receipt::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -0.78rem;
  left: -1px;
  height: 0.85rem;
  background:
    linear-gradient(135deg, transparent 50%, var(--paper) 51%) 0 0 / 1.2rem 1rem repeat-x,
    linear-gradient(45deg, var(--paper) 49%, transparent 50%) 0 0 / 1.2rem 1rem repeat-x;
}

.receipt__head {
  padding: 1rem 0 1.35rem;
  display: grid;
  place-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border-paper);
  border-bottom: 0;
}

.receipt__mark {
  width: 3.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--forest);
}

.receipt__mark img {
  width: 2.8rem;
  height: 2.8rem;
}

.receipt__brand {
  color: var(--gold-deep);
  font: 700 0.65rem/1 var(--mono);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.receipt h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.receipt__row {
  padding: 1.2rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border: 1px solid var(--border-paper);
  border-bottom: 0;
}

.receipt__row:last-child {
  border-bottom: 1px solid var(--border-paper);
}

.receipt__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font: 700 0.7rem/1.2 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.receipt__value {
  font: 500 1.05rem/1.4 var(--mono);
}

.receipt__check {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold-deep);
  font-weight: 800;
}

.receipt__seal {
  width: 4.5rem;
  height: 4.5rem;
  align-self: center;
  opacity: 0.74;
}

.workflow {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.workflow::before {
  right: auto;
  left: -25rem;
  bottom: -35rem;
}

.workflow::after {
  right: auto;
  bottom: -13rem;
  left: -17rem;
  opacity: 0.4;
  transform: rotate(12deg);
}

.workflow__inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.workflow .section-title {
  max-width: 7ch;
  font-size: clamp(4rem, 6.5vw, 7rem);
}

.section-intro {
  max-width: 34rem;
  margin: 2rem 0 0;
  font-size: 1.18rem;
}

.workflow__steps {
  border-left: 1px solid var(--gold);
}

.workflow-step {
  position: relative;
  padding: 0.6rem 0 2.4rem 2.7rem;
  display: grid;
  grid-template-columns: 6.7rem 1fr;
  gap: 1.4rem;
}

.workflow-step + .workflow-step {
  padding-top: 2.4rem;
  border-top: 1px dotted var(--gold-deep);
}

.workflow-step::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: -0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
}

.workflow-step + .workflow-step::before {
  top: 2.95rem;
}

.workflow-step__number {
  color: var(--gold);
  font: 500 clamp(3rem, 5vw, 5rem)/0.9 var(--display);
}

.workflow-step h3 {
  margin: 0 0 0.55rem;
  font: 600 1.35rem/1.25 var(--mono);
}

.workflow-step p {
  max-width: 35rem;
  margin: 0;
  color: color-mix(in srgb, var(--paper) 84%, transparent);
  font-size: 1.05rem;
}

.trust-split {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(22rem, 0.75fr);
  background: var(--paper);
}

.trust-split__main,
.trust-split__aside {
  min-width: 0;
  padding: clamp(5rem, 8vw, 8rem) max(1.25rem, calc((100vw - min(90rem, calc(100vw - 2.5rem))) / 2));
}

.trust-split__main {
  padding-right: clamp(3rem, 7vw, 7rem);
  background:
    url("/assets/guilloche-seal.svg") right clamp(1rem, 5vw, 5rem) bottom -5rem / min(24rem, 33vw) auto no-repeat,
    var(--paper);
}

.trust-split__aside {
  position: relative;
  padding-left: clamp(3rem, 6vw, 6rem);
  color: var(--paper);
  background: var(--forest);
}

.trust-split__aside::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.7rem;
  width: 0.75rem;
  background:
    linear-gradient(135deg, var(--paper) 50%, transparent 51%) 0 0 / 0.75rem 1.1rem repeat-y,
    linear-gradient(45deg, transparent 49%, var(--forest) 50%) 0 0 / 0.75rem 1.1rem repeat-y;
}

.trust-split .section-title {
  max-width: 10ch;
  font-size: clamp(3.7rem, 6vw, 6.8rem);
  color: var(--ink);
}

.trust-split__aside .section-title {
  max-width: 8ch;
  color: var(--paper);
  font-size: clamp(3.2rem, 4.4vw, 5rem);
}

.trust-list {
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-paper);
}

.trust-list li {
  min-height: 4.7rem;
  padding: 1.05rem 0;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border-paper);
}

.trust-list__number {
  color: var(--gold-deep);
  font: 500 2rem/1 var(--display);
}

.trust-list__text {
  min-width: 0;
  overflow-wrap: anywhere;
  font: 500 0.98rem/1.55 var(--mono);
}

.trust-split__aside p {
  margin: 2.1rem 0;
  padding: 2rem 0;
  border-block: 1px dotted var(--gold-deep);
  color: color-mix(in srgb, var(--paper) 86%, transparent);
  font: 500 1rem/1.7 var(--mono);
}

.closing-cta {
  padding: clamp(6rem, 9vw, 9rem) 0;
  border-top: 1px solid var(--border-dark);
}

.closing-cta::after {
  right: auto;
  bottom: -10rem;
  left: -14rem;
  opacity: 0.36;
  transform: rotate(18deg);
}

.closing-cta__inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.62fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.closing-cta h2 {
  max-width: 12ch;
  font-size: clamp(4rem, 6.5vw, 7rem);
}

.closing-cta p {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: color-mix(in srgb, var(--paper) 88%, transparent);
  font: 500 1.08rem/1.7 var(--mono);
}

.closing-cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
}

.safety-note {
  margin-top: 1.5rem !important;
  color: var(--gold-pale) !important;
  font-size: 0.87rem !important;
}

.closing-seal {
  width: min(100%, 25rem);
  aspect-ratio: 0.78;
  margin-inline: auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-deep);
  box-shadow: var(--shadow-paper);
  transform: rotate(1deg);
}

.closing-seal__ring {
  width: 70%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 0 0.7rem transparent,
    0 0 0 calc(0.7rem + 1px) rgba(185, 138, 46, 0.45),
    0 0 0 1.35rem transparent,
    0 0 0 calc(1.35rem + 1px) rgba(185, 138, 46, 0.28);
}

.closing-seal__ring img {
  width: 48%;
}

.page-hero {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--border-paper);
}

.page-hero__inner,
.content-section__inner,
.bank-list,
.beta-steps,
.transition-shell {
  position: relative;
  z-index: 2;
  width: var(--page-narrow);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(4rem, 7vw, 7.25rem);
}

.page-hero__lede {
  max-width: 47rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
}

.page-hero--dark {
  border-bottom-color: var(--border-dark);
}

.page-hero--dark h1,
.page-hero--dark .page-hero__lede {
  color: var(--paper);
}

.content-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--paper);
}

.content-section--canvas {
  background: var(--canvas);
}

.content-section--dark {
  color: var(--paper);
  background: var(--forest);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
}

.content-block {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-deep);
}

.content-block__number,
.guide-status,
.beta-steps__number,
.page-kicker {
  color: var(--gold-deep);
  font: 700 0.76rem/1.3 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-block h2,
.bank-guide h2,
.beta-steps h2 {
  margin: 0.75rem 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.3vw, 3.5rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1;
}

.content-block p,
.bank-guide p,
.beta-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.content-section--dark .content-block p {
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}

.truth-note {
  margin-top: 3rem;
  padding: 1.5rem 0 0 2rem;
  border-top: 1px dotted var(--gold-deep);
  border-left: 1px solid var(--gold-deep);
  color: var(--ink-soft);
  font: 500 0.95rem/1.7 var(--mono);
}

.truth-note strong {
  color: var(--ink);
}

.bank-list {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.bank-guide {
  padding: 2.6rem 0;
  display: grid;
  grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--border-paper);
}

.bank-guide:last-child {
  border-bottom: 1px solid var(--border-paper);
}

.bank-guide h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.bank-guide__details {
  max-width: 39rem;
}

.bank-guide__details p + p {
  margin-top: 0.8rem;
}

.bank-guide__review {
  font: 500 0.84rem/1.6 var(--mono);
}

.bank-guide .text-link {
  white-space: nowrap;
}

.beta-steps {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.beta-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: beta;
}

.beta-steps li {
  counter-increment: beta;
  min-height: 6rem;
  padding: 1.65rem 0;
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: start;
  border-top: 1px solid var(--border-paper);
}

.beta-steps li::before {
  content: "0" counter(beta);
  color: var(--gold-deep);
  font: 500 2.5rem/1 var(--display);
}

.beta-steps li:last-child {
  border-bottom: 1px solid var(--border-paper);
}

.beta-steps h2 {
  margin-top: 0;
}

.beta-steps__actions {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.site-footer {
  color: var(--paper);
  background: var(--forest-deep);
  border-top: 1px solid var(--border-dark);
}

.site-footer__inner {
  width: var(--page);
  margin: 0 auto;
  padding: 4rem 0 1.5rem;
}

.site-footer__grid {
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: minmax(14rem, 1.2fr) repeat(2, minmax(9rem, 0.55fr));
  gap: 3rem;
}

.site-footer__brand {
  width: min(100%, 17rem);
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: var(--gold);
  font: 700 0.85rem/1.2 var(--mono);
  letter-spacing: 0.06em;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: color-mix(in srgb, var(--paper) 88%, transparent);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-pale);
  text-decoration: underline;
}

.site-footer__legal {
  margin: 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--border-dark);
  color: color-mix(in srgb, var(--paper) 64%, transparent);
  font-size: 0.85rem;
}

.transition-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 30%, rgba(217, 164, 65, 0.1), transparent 28rem),
    var(--forest);
}

.transition-shell {
  padding-block: 3rem;
}

.transition-card {
  max-width: 45rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-paper);
}

.transition-card .brand-link {
  width: 12rem;
  margin-bottom: 3rem;
}

.transition-card h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.transition-card p {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.transition-card .button {
  margin-top: 2rem;
}

.transition-card__note {
  font: 500 0.84rem/1.6 var(--mono);
}

@media (max-width: 74rem) {
  .site-header__inner {
    min-height: 7rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.7fr);
  }

  .trust-split {
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  }

  .bank-guide {
    grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1fr);
  }

  .bank-guide .text-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 58rem) {
  :root {
    --page: min(100% - 2rem, 48rem);
    --page-narrow: min(100% - 2rem, 48rem);
  }

  .site-header__inner {
    min-height: 6.5rem;
  }

  .brand-link {
    width: 10.5rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--paper);
    background: var(--forest-deep);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 1.5rem 3rem rgba(4, 15, 9, 0.28);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a:not(.button) {
    min-height: 3.3rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
  }

  .site-nav .button {
    margin-top: 1rem;
  }

  .hero__inner,
  .workflow__inner,
  .closing-cta__inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 4.5rem;
  }

  .hero::after,
  .workflow::after,
  .closing-cta::after,
  .page-hero--dark::after {
    width: 54rem;
    max-width: none;
    opacity: 0.32;
  }

  .hero__visual {
    min-height: 31rem;
  }

  .sample-note {
    left: 8%;
  }

  .workflow__inner {
    gap: 4rem;
  }

  .workflow .section-title {
    max-width: 10ch;
  }

  .trust-split {
    grid-template-columns: 1fr;
  }

  .trust-split__main,
  .trust-split__aside {
    width: 100%;
    max-width: 100vw;
    padding-right: max(1.25rem, calc((100vw - var(--page)) / 2));
    padding-left: max(1.25rem, calc((100vw - var(--page)) / 2));
  }

  .trust-split__main {
    background-size: min(22rem, 66vw) auto;
  }

  .trust-split__aside::before {
    display: none;
  }

  .closing-seal {
    width: min(78vw, 23rem);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 40rem) {
  .trust-split .section-title,
  .trust-split__aside .section-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-header__inner {
    min-height: 6rem;
  }

  .brand-link {
    width: 9.75rem;
  }

  .menu-button {
    min-width: 6.7rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .hero__lede {
    font-size: 1.08rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 28rem;
  }

  .receipt {
    width: min(92%, 24rem);
    padding: 1rem 1rem 1.8rem;
  }

  .workflow {
    padding-block: 5rem;
  }

  .workflow .section-title,
  .trust-split .section-title,
  .closing-cta h2,
  .page-hero h1 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .workflow__steps {
    border-left: 0;
  }

  .workflow-step,
  .workflow-step + .workflow-step {
    padding: 1.75rem 0;
    grid-template-columns: 4.2rem 1fr;
    border-top: 1px dotted var(--gold-deep);
  }

  .workflow-step::before {
    display: none;
  }

  .workflow-step__number {
    font-size: 3.2rem;
  }

  .workflow-step h3 {
    font-size: 1.08rem;
  }

  .trust-list li {
    grid-template-columns: 3.2rem 1fr;
  }

  .closing-cta__actions {
    display: grid;
  }

  .closing-cta__actions .button,
  .closing-cta__actions .text-link {
    width: 100%;
  }

  .bank-guide {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bank-guide .text-link {
    grid-column: auto;
  }

  .beta-steps li {
    grid-template-columns: 3.8rem 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@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;
  }
}
