@font-face {
  font-family: "Mona Sans";
  src: url("./assets/fonts/mona-sans-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --home-paper: #f8f6f2;
  --home-paper-muted: #f0ece7;
  --home-paper-raised: #fffdf9;
  --home-ink: #09090a;
  --home-ink-body: #222225;
  --home-ink-muted: #666268;
  --home-rule: rgba(9, 9, 10, 0.32);
  --home-rule-soft: rgba(9, 9, 10, 0.16);
  --home-carmine: #c8101e;
  --home-carmine-dark: #a90d18;
  --home-gold: #a97826;
  --home-card: #202122;
  --home-card-rule: rgba(255, 255, 255, 0.18);
  --home-card-muted: #c8c5c2;
  --home-white: #fffdfa;
  --home-font: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --home-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --home-shell: 1536px;
  --home-gutter: clamp(22px, 3.65vw, 56px);
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-color: var(--home-carmine) var(--home-paper-muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.home-page {
  margin: 0;
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: var(--home-font);
  font-size: 16px;
  font-variation-settings: "wdth" 100, "opsz" 14;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--home-carmine);
  color: var(--home-white);
}

* {
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--home-paper-muted);
}

::-webkit-scrollbar-thumb {
  background: var(--home-carmine);
  border: 2px solid var(--home-paper-muted);
}

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin: 0;
}

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

a {
  color: inherit;
}

a,
summary {
  text-underline-offset: 0.23em;
  text-decoration-thickness: 1px;
}

:focus-visible {
  outline: 2px solid var(--home-carmine);
  outline-offset: 4px;
}

.home-shell {
  width: min(100%, var(--home-shell));
  margin-inline: auto;
  padding-inline: var(--home-gutter);
}

.home-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--home-ink);
  color: var(--home-white);
  transform: translateY(-160%);
  transition: transform 180ms var(--home-ease);
}

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

.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, 0.97);
}

.home-header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--home-rule);
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--home-ink);
  text-decoration: none;
}

.home-brand-mark {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  object-fit: contain;
}

.home-brand-name {
  font-size: 27px;
  font-weight: 640;
  letter-spacing: -0.025em;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 42px);
  font-size: 16px;
  font-weight: 480;
}

.home-nav > a:not(.home-button),
.home-nav-dropdown > summary {
  color: var(--home-ink);
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.home-nav > a:not(.home-button):hover,
.home-nav-dropdown > summary:hover {
  color: var(--home-carmine);
}

.home-nav-dropdown {
  position: relative;
}

.home-nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding-block: 12px;
}

.home-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.home-nav-dropdown[open] > summary {
  color: var(--home-carmine);
}

.home-nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  width: min(390px, calc(100vw - 40px));
  padding: 8px 20px;
  background: var(--home-paper-raised);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20, 14, 12, 0.14);
}

.home-nav-panel a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--home-rule-soft);
  text-decoration: none;
}

.home-nav-panel a:last-child {
  border-bottom: 0;
}

.home-nav-panel strong,
.home-nav-panel span {
  display: block;
}

.home-nav-panel strong {
  font-size: 15px;
  font-weight: 650;
}

.home-nav-panel span {
  margin-top: 2px;
  color: var(--home-ink-muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-nav-panel a:hover strong {
  color: var(--home-carmine);
  text-decoration: underline;
}

.home-mobile-menu {
  display: none;
}

.home-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 24px;
  border: 1px solid var(--home-carmine);
  border-radius: 0;
  background: var(--home-carmine);
  color: var(--home-white);
  font-family: var(--home-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background 180ms var(--home-ease), border-color 180ms var(--home-ease), transform 180ms var(--home-ease), box-shadow 180ms var(--home-ease);
}

.home-button-small {
  min-height: 50px;
  min-width: 206px;
  padding: 13px 20px;
  font-size: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .home-button:hover {
    background: var(--home-carmine-dark);
    border-color: var(--home-carmine-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(168, 13, 24, 0.23);
  }
}

.home-button:active {
  transform: translateY(0) scale(0.985);
}

.home-icon,
.home-proof-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.home-icon {
  width: 19px;
  height: 19px;
}

.home-icon-arrow {
  -webkit-mask-image: url("./assets/icons/arrow-right.svg");
  mask-image: url("./assets/icons/arrow-right.svg");
  transition: transform 180ms var(--home-ease);
}

@media (hover: hover) and (pointer: fine) {
  a:hover > .home-icon-arrow {
    transform: translateX(3px);
  }
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--home-carmine);
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 520;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.home-text-link .home-icon {
  margin-left: 13px;
}

.home-text-link:hover {
  color: var(--home-carmine);
}

.home-text-link-light {
  color: var(--home-white);
  border-color: var(--home-carmine);
}

.home-hero {
  overflow: clip;
  padding-top: clamp(58px, 4.55vw, 70px);
  padding-bottom: 32px;
}

.home-hero > .home-shell {
  padding-inline: clamp(56px, 5.86vw, 90px);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: start;
  gap: clamp(64px, 8vw, 138px);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  margin-top: -10px;
}

.home-hero-copy h1 {
  max-width: 730px;
  font-size: clamp(60px, 6vw, 92px);
  font-weight: 560;
  font-variation-settings: "wdth" 108, "opsz" 72;
  letter-spacing: -0.04em;
  line-height: 0.99;
  text-wrap: balance;
}

.home-hero-copy h1 span {
  color: var(--home-carmine);
}

.home-hero-copy > p {
  max-width: 470px;
  margin-top: 34px;
  color: var(--home-ink-body);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.home-hero-actions .home-button {
  min-width: 250px;
}

.home-hero-proof {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 32px;
  padding-right: 20px;
}

.home-risk-card {
  position: relative;
  z-index: 2;
  width: min(100%, 462px);
  padding: 26px 30px 34px;
  border-radius: 16px;
  background: var(--home-card);
  color: var(--home-white);
  box-shadow: 0 18px 32px -16px rgba(0, 0, 0, 0.46);
}

.home-risk-head {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 28px;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
}

.home-risk-head strong,
.home-risk-head span {
  font-family: var(--home-mono);
  text-transform: uppercase;
}

.home-risk-head strong {
  font-size: 15px;
  letter-spacing: 0.06em;
}

.home-risk-head span {
  color: var(--home-card-muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.home-risk-head img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.home-risk-card dl > div {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--home-card-rule);
}

.home-risk-card dt {
  color: var(--home-card-muted);
  font-size: 15px;
}

.home-risk-card dd {
  margin: 0;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.home-term-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
}

.home-term-strip > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.home-proof-icon {
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
  background-color: var(--home-carmine);
  order: 0;
}

.home-proof-dollar {
  -webkit-mask-image: url("./assets/icons/circle-dollar-sign.svg");
  mask-image: url("./assets/icons/circle-dollar-sign.svg");
}

.home-proof-calendar {
  -webkit-mask-image: url("./assets/icons/calendar-days.svg");
  mask-image: url("./assets/icons/calendar-days.svg");
}

.home-proof-check {
  -webkit-mask-image: url("./assets/icons/circle-check.svg");
  mask-image: url("./assets/icons/circle-check.svg");
}

.home-term-strip > div + div {
  border-left: 1px solid var(--home-rule);
}

.home-term-strip dt {
  color: var(--home-ink-muted);
  font-size: 14px;
  order: 2;
}

.home-term-strip dd {
  color: var(--home-ink);
  font-size: clamp(21px, 1.7vw, 25px);
  font-weight: 640;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  order: 1;
}

.home-section {
  padding-block: clamp(96px, 10vw, 152px);
}

.home-section h2 {
  max-width: 760px;
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 560;
  font-variation-settings: "wdth" 94, "opsz" 64;
  letter-spacing: -0.038em;
  line-height: 0.99;
  text-wrap: balance;
}

.home-section-grid,
.home-inventory-grid,
.home-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(64px, 10vw, 160px);
}

.home-disclosure {
  background: var(--home-paper-muted);
}

.home-disclosure .home-section-title {
  padding-top: 38px;
}

.home-section-body,
.home-inventory-copy {
  align-self: end;
}

.home-section-lede,
.home-inventory-copy > p {
  max-width: 590px;
  color: var(--home-ink-body);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.55;
  text-wrap: pretty;
}

.home-ruled-list {
  margin-top: 38px;
}

.home-ruled-list > div {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--home-rule);
}

.home-ruled-list > div:last-child {
  border-bottom: 1px solid var(--home-rule);
}

.home-ruled-list dt {
  color: var(--home-ink-muted);
  font-size: 14px;
}

.home-ruled-list dd {
  font-size: 16px;
  font-weight: 600;
}

.home-capital {
  background: var(--home-card);
  color: var(--home-white);
}

.home-capital-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr) minmax(340px, 0.9fr);
  gap: clamp(54px, 6.5vw, 100px);
  align-items: start;
}

.home-capital h2 {
  max-width: 620px;
}

.home-capital-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.home-capital-copy p {
  color: #d5d1ce;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-capital-ledger > div {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--home-card-rule);
}

.home-capital-ledger > div:last-child {
  border-bottom: 1px solid var(--home-card-rule);
}

.home-capital-ledger dt {
  color: var(--home-card-muted);
  font-size: 14px;
}

.home-capital-ledger dd {
  font-size: 15px;
  font-weight: 620;
  text-align: right;
}

.home-method-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.home-method-intro > p {
  max-width: 470px;
  color: var(--home-ink-body);
  font-size: 20px;
  line-height: 1.55;
}

.home-steps {
  margin-top: 72px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--home-rule);
}

.home-steps li {
  min-height: 132px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--home-rule);
}

.home-steps li > span {
  align-self: start;
  padding-top: 31px;
  color: var(--home-carmine);
  font-family: var(--home-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.home-steps li > div {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(40px, 8vw, 124px);
  align-items: baseline;
}

.home-steps h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.home-steps p {
  max-width: 650px;
  color: var(--home-ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

.home-inventory {
  background: var(--home-paper-muted);
}

.home-inventory-copy .home-text-link {
  margin-top: 26px;
}

.home-faq-grid {
  align-items: start;
}

.home-faq h2 {
  max-width: 520px;
}

.home-faq-list {
  border-bottom: 1px solid var(--home-rule);
}

.home-faq-list details {
  border-top: 1px solid var(--home-rule);
}

.home-faq-list summary {
  min-height: 78px;
  display: list-item;
  padding: 24px 8px 22px 0;
  cursor: pointer;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 580;
  letter-spacing: -0.012em;
}

.home-faq-list summary::marker {
  color: var(--home-carmine);
}

.home-faq-list details[open] summary {
  color: var(--home-carmine);
}

.home-faq-list details p {
  max-width: 680px;
  padding: 0 44px 26px 0;
  color: var(--home-ink-muted);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-footer {
  background: var(--home-ink);
  color: var(--home-white);
}

.home-footer-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-brand-footer {
  color: var(--home-white);
  font-size: 17px;
  font-weight: 620;
}

.home-brand-footer img {
  width: 24px;
  height: 24px;
}

.home-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.home-footer nav a {
  color: #d5d1ce;
  font-size: 14px;
  text-decoration: underline;
}

.home-footer nav a:hover {
  color: var(--home-white);
}

@starting-style {
  .home-hero-copy > *,
  .home-risk-card {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }
}

.home-hero-copy > *,
.home-risk-card {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 680ms var(--home-ease), transform 680ms var(--home-ease), filter 680ms var(--home-ease);
}

.home-hero-copy > p {
  transition-delay: 90ms;
}

.home-hero-actions {
  transition-delay: 170ms;
}

.home-risk-card {
  transition-delay: 130ms;
}

@media (max-width: 1120px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 56px;
  }

  .home-capital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-capital-ledger {
    grid-column: 1 / -1;
  }

  .home-capital-ledger > div {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 981px) {
  .home-disclosure {
    padding-block: 38px 72px;
  }

  .home-disclosure > .home-shell {
    padding-inline: clamp(56px, 5.86vw, 90px);
  }

  .home-disclosure .home-section-grid {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 95px;
  }

  .home-disclosure h2 {
    font-size: clamp(48px, 4.1vw, 64px);
  }

  .home-disclosure .home-section-lede {
    max-width: 440px;
  }

  .home-disclosure .home-section-body {
    padding-top: 34px;
  }
}

@media (max-width: 980px) {
  .home-header-inner {
    min-height: 76px;
  }

  .home-nav > a,
  .home-nav > .home-nav-dropdown {
    display: none;
  }

  .home-mobile-menu {
    display: block;
    position: static;
  }

  .home-mobile-menu > summary {
    width: 48px;
    min-height: 44px;
    display: grid;
    place-items: center;
    list-style: none;
    padding: 10px 0 10px 12px;
    cursor: pointer;
  }

  .home-mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .home-menu-icon {
    width: 26px;
    height: 26px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .home-menu-icon path {
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 160ms var(--home-ease), transform 180ms var(--home-ease);
  }

  .home-mobile-menu[open] .home-menu-icon path:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .home-mobile-menu[open] .home-menu-icon path:nth-child(2) {
    opacity: 0;
  }

  .home-mobile-menu[open] .home-menu-icon path:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .home-mobile-panel {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 20px var(--home-gutter) 28px;
    background: var(--home-paper);
    border-bottom: 1px solid var(--home-rule);
  }

  .home-mobile-panel p {
    margin-bottom: 8px;
    color: var(--home-ink-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .home-mobile-panel > a:not(.home-button) {
    display: block;
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--home-rule-soft);
    font-size: 17px;
    text-decoration: none;
  }

  .home-mobile-rule {
    display: block;
    height: 18px;
  }

  .home-mobile-panel .home-button {
    width: 100%;
    margin-top: 22px;
  }

  .home-hero {
    padding-top: 54px;
  }

  .home-hero > .home-shell {
    padding-inline: var(--home-gutter);
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .home-hero-copy h1 {
    font-size: clamp(60px, 10vw, 84px);
  }

  .home-hero-copy {
    margin-top: 0;
  }

  .home-hero-proof {
    min-height: 390px;
    justify-content: flex-start;
    padding-right: 0;
  }

  .home-risk-card {
    width: min(100%, 560px);
  }

  .home-section-grid,
  .home-inventory-grid,
  .home-faq-grid,
  .home-method-intro {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .home-section-body,
  .home-inventory-copy {
    align-self: auto;
  }

  .home-steps li > div {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .home-brand {
    gap: 10px;
  }

  .home-brand-mark {
    width: 42px;
    height: 42px;
  }

  .home-brand-name {
    font-size: 23px;
  }

  .home-hero-copy h1 {
    font-size: clamp(48px, 12.5vw, 60px);
    font-variation-settings: "wdth" 96, "opsz" 60;
    letter-spacing: -0.038em;
    line-height: 1;
  }

  .home-hero-copy > p {
    margin-top: 26px;
    font-size: 18px;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .home-hero-actions .home-button {
    width: 100%;
    min-width: 0;
  }

  .home-text-link {
    align-self: flex-start;
  }

  .home-hero-proof {
    min-height: 370px;
    padding-top: 20px;
  }

  .home-risk-card {
    padding: 22px 20px 20px;
  }

  .home-risk-head {
    grid-template-columns: 1fr auto 24px;
    gap: 8px;
  }

  .home-risk-head img {
    width: 24px;
    height: 24px;
  }

  .home-risk-card dl > div {
    min-height: 58px;
  }

  .home-risk-card dt,
  .home-risk-card dd {
    font-size: 14px;
  }

  .home-term-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .home-term-strip > div {
    min-height: 94px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-areas:
      "icon value"
      "icon label";
    align-content: center;
    align-items: center;
    column-gap: 16px;
    row-gap: 2px;
    justify-items: start;
    padding-inline: 4px;
    text-align: left;
  }

  .home-term-strip .home-proof-icon {
    grid-area: icon;
    margin: 0;
  }

  .home-term-strip dt {
    grid-area: label;
  }

  .home-term-strip dd {
    grid-area: value;
  }

  .home-term-strip > div + div {
    border-top: 1px solid var(--home-rule);
    border-left: 0;
  }

  .home-section h2 {
    font-size: clamp(45px, 12vw, 58px);
  }

  .home-ruled-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 16px;
  }

  .home-capital-grid {
    grid-template-columns: 1fr;
  }

  .home-capital-ledger {
    grid-column: auto;
  }

  .home-capital-ledger > div {
    grid-template-columns: 1fr auto;
  }

  .home-steps {
    margin-top: 50px;
  }

  .home-steps li {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    padding-block: 24px;
    align-items: start;
  }

  .home-steps li > span {
    padding-top: 3px;
  }

  .home-steps li > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-steps h3 {
    font-size: 23px;
  }

  .home-faq-list summary {
    font-size: 19px;
  }

  .home-faq-list details p {
    padding-right: 12px;
  }

  .home-footer-inner {
    min-height: 0;
    padding-block: 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-footer nav {
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .home-risk-head span {
    display: none;
  }

  .home-risk-head {
    grid-template-columns: 1fr 24px;
  }

  .home-risk-card dl > div {
    gap: 12px;
  }

  .home-risk-card dd {
    max-width: 150px;
  }
}

@media (max-width: 350px) {
  .home-hero-copy h1 {
    font-size: 44px;
    font-variation-settings: "wdth" 88, "opsz" 52;
  }
}

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

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