@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,500;0,600;0,700;0,800;1,600&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=IBM+Plex+Mono:wght@500;600&display=swap");

:root {
  --cloud: #f3f5f8;
  --cloud-deep: #e6e9ef;
  --white: #ffffff;
  --ink: #211a2c;
  --muted: #665f70;
  --mulberry: #65345f;
  --mulberry-dark: #482143;
  --mulberry-soft: #eadde8;
  --teal: #2f6870;
  --teal-dark: #204c53;
  --teal-soft: #dcebed;
  --brass: #c79a3b;
  --line: #d8dbe3;
  --danger: #9b2f3f;
  --display: "Chivo", "Arial Narrow", Arial, sans-serif;
  --body: "DM Sans", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --shell: 1180px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button,
.button,
.email-link,
.nav-link {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

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

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

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(243, 245, 248, .96);
  border-bottom: 1px solid var(--line);
}

.service-note {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .01em;
}

.service-note .shell {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-note strong {
  color: var(--teal-dark);
  font-weight: 600;
}

.nav {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 13px 8px 8px;
  border: 5px solid var(--mulberry);
  border-right: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 16px;
  height: 7px;
  background: var(--teal);
  box-shadow: 8px 0 0 var(--brass);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-link[aria-current="page"],
.nav-link:hover {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-out), opacity 120ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  background: var(--mulberry);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 120ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "↗";
  font-family: var(--mono);
  font-size: .95em;
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.compact {
  min-height: 44px;
  padding: 10px 15px;
  font-size: .9rem;
}

.button:active,
.email-link:active {
  transform: scale(.98);
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 58px;
  padding-block: 70px 74px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 7px;
  background: var(--mulberry);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: hero-copy-in 520ms var(--ease-out) both;
}

.hero-kicker,
.section-label,
.page-kicker {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  font-weight: 800;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 650;
}

.hero h1 em {
  display: block;
  color: var(--mulberry);
  font-style: normal;
}

.hero-lede,
.page-lede {
  max-width: 660px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-fineprint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.hero-fineprint::before {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 7px;
  background: var(--brass);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: relative;
  min-width: 0;
  animation: hero-media-in 620ms 70ms var(--ease-out) both;
}

.hero-picture {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--cloud-deep);
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.settlement-slip {
  position: absolute;
  right: -22px;
  bottom: -36px;
  width: min(390px, 88%);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--mulberry-soft);
}

.slip-head,
.slip-row,
.slip-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.slip-head {
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.slip-row {
  color: var(--muted);
  font-size: .84rem;
}

.slip-row b {
  color: var(--ink);
  font-family: var(--mono);
  font-size: .78rem;
}

.slip-total {
  border: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status::before {
  width: 7px;
  height: 7px;
  background: var(--brass);
  border-radius: 50%;
  content: "";
}

.ledger-band {
  border-block: 1px solid var(--ink);
  background: var(--white);
}

.ledger-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.ledger-intro strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -.03em;
}

.ledger-intro p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.ledger-row {
  display: grid;
  min-height: 88px;
  grid-template-columns: 180px 1fr 240px;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.ledger-row:last-child {
  border-bottom: 0;
}

.ledger-code {
  color: var(--mulberry);
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 600;
}

.ledger-row strong {
  font-family: var(--display);
  font-size: 1.05rem;
}

.ledger-row span:last-child {
  color: var(--muted);
  font-size: .9rem;
}

.section {
  padding-block: 112px;
}

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

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

.section.mulberry-soft {
  background: var(--mulberry-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.section-heading p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.ink .section-label {
  color: #91c1c6;
}

.ink .section-heading p,
.ink .muted {
  color: #c9c4d0;
}

.operations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.operation {
  min-width: 0;
  padding: 34px 32px 38px 0;
}

.operation + .operation {
  padding-left: 32px;
  border-left: 1px solid var(--ink);
}

.operation-code {
  display: block;
  margin-bottom: 48px;
  color: var(--mulberry);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
}

.operation p {
  margin: 18px 0 0;
  color: var(--muted);
}

.method-spread {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 76px;
  align-items: start;
}

.method-lede {
  position: sticky;
  top: 24px;
}

.method-lede p {
  max-width: 520px;
  color: #c9c4d0;
}

.method-list {
  border-top: 1px solid #4b4455;
}

.method-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding-block: 30px;
  border-bottom: 1px solid #4b4455;
}

.method-item span {
  color: var(--brass);
  font-family: var(--mono);
  font-size: .74rem;
}

.method-item p {
  margin: 10px 0 0;
  color: #c9c4d0;
}

.commercial-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
  gap: 82px;
  align-items: start;
}

.commercial-copy {
  position: sticky;
  top: 28px;
}

.commercial-copy p {
  color: var(--muted);
}

.commercial-lines {
  border-top: 1px solid var(--ink);
}

.commercial-line {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}

.commercial-line strong {
  font-family: var(--display);
}

.commercial-line span {
  color: var(--muted);
}

.onboarding {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
}

.onboarding article {
  min-height: 310px;
  padding: 28px;
  background: var(--white);
}

.onboarding article + article {
  border-left: 1px solid var(--ink);
}

.onboarding span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 68px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: .76rem;
}

.onboarding p {
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.faq-aside p {
  max-width: 420px;
  color: var(--muted);
}

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

details[data-faq] {
  border-bottom: 1px solid var(--ink);
}

details[data-faq] summary {
  position: relative;
  min-height: 76px;
  padding: 23px 58px 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 650;
}

details[data-faq] summary::-webkit-details-marker {
  display: none;
}

details[data-faq] summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  width: 32px;
  height: 32px;
  background: var(--mulberry-soft);
  color: var(--mulberry-dark);
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
  line-height: 32px;
  text-align: center;
  transition: transform 180ms var(--ease-out), background-color 160ms ease;
}

details[data-faq][open] summary::after {
  transform: rotate(45deg);
  background: var(--teal-soft);
}

details[data-faq] p {
  max-width: 780px;
  margin: 0;
  padding: 0 58px 26px 0;
  color: var(--muted);
}

.closing {
  padding-block: 72px;
  background: var(--teal);
  color: var(--white);
}

.closing .shell {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 42px;
}

.closing h2 {
  max-width: 790px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

.closing .button {
  background: var(--white);
  color: var(--teal-dark);
}

.page-hero {
  padding-block: 92px 82px;
  border-bottom: 1px solid var(--ink);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 72px;
}

.page-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 90px;
}

.detail-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  border-top: 1px solid var(--ink);
}

.detail-nav a {
  display: block;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
}

.detail-nav a:hover {
  color: var(--mulberry);
}

.detail-content section + section {
  margin-top: 78px;
  padding-top: 78px;
  border-top: 1px solid var(--line);
}

.detail-content h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.detail-content h3 {
  margin-top: 34px;
}

.detail-content p,
.detail-content li {
  max-width: 790px;
  color: var(--muted);
}

.detail-content ul {
  padding-left: 22px;
}

.notice {
  margin: 36px 0;
  padding: 24px 26px;
  background: var(--teal-soft);
  border-left: 5px solid var(--teal);
}

.notice strong {
  display: block;
  color: var(--teal-dark);
}

.notice p {
  margin: 8px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.contact-route {
  min-height: 280px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-route span {
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: .72rem;
}

.contact-route h2 {
  margin-top: 44px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.contact-route p {
  max-width: 520px;
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 12px;
  color: var(--mulberry);
  font-family: var(--mono);
  font-size: .86rem;
  font-weight: 600;
  text-underline-offset: 4px;
  transition: transform 120ms var(--ease-out), color 160ms ease;
}

.legal-prose {
  max-width: 820px;
}

.legal-prose h2 {
  margin-top: 58px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.legal-prose h3 {
  margin-top: 34px;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose a {
  color: var(--mulberry);
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .6fr);
  gap: 52px;
  padding-block: 68px;
}

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

.footer-main .brand-mark {
  border-color: var(--white);
}

.footer-main p {
  max-width: 370px;
  color: #bcb6c4;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #8ebdc2;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  min-height: 44px;
  padding: 9px 0;
  color: #d8d3dc;
  text-decoration: none;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid #4b4455;
  color: #a8a1ad;
  font-family: var(--mono);
  font-size: .7rem;
}

.footer-legal p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 70px 20px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--mulberry);
  font-family: var(--mono);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: .8;
}

.not-found h1 {
  margin-top: 34px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.not-found p {
  max-width: 550px;
  margin: 20px auto 28px;
  color: var(--muted);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes hero-media-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: var(--mulberry-dark);
  }

  .button.secondary:hover {
    border-color: var(--mulberry);
    background: var(--mulberry-soft);
  }

  .closing .button:hover {
    background: var(--cloud);
  }

  .email-link:hover {
    color: var(--teal-dark);
  }

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

@media (max-width: 1040px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 64px 90px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-media {
    width: min(800px, 94%);
    margin-left: auto;
  }

  .hero-picture img {
    object-position: 58% center;
  }

  .hero-picture {
    aspect-ratio: 16 / 9;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-spread,
  .commercial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .method-lede,
  .commercial-copy {
    position: static;
  }

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

  .onboarding article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .onboarding article:nth-child(4) {
    border-top: 1px solid var(--ink);
  }

  .page-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0 22px;
  }

  .detail-nav a {
    min-width: 180px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .nav > .button {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 112px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    border: 1px solid var(--ink);
    box-shadow: 8px 8px 0 var(--mulberry-soft);
    transform: translateY(-6px) scale(.98);
    transform-origin: top right;
    transition: opacity 140ms ease, transform 180ms var(--ease-out), visibility 0s linear 180ms;
  }

  .nav-menu[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .ledger-row {
    grid-template-columns: 120px 1fr;
    gap: 22px;
    padding-block: 18px;
  }

  .ledger-row span:last-child {
    grid-column: 2;
  }

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

  .operation {
    padding: 30px 0;
  }

  .operation + .operation {
    padding-left: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .operation-code {
    margin-bottom: 26px;
  }

  .commercial-grid {
    gap: 50px;
  }

  .closing .shell {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-legal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .service-note .shell {
    min-height: 42px;
  }

  .service-note span:last-child {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav-menu {
    top: 110px;
    right: 14px;
    left: 14px;
  }

  .brand {
    font-size: .9rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    gap: 42px;
    padding-block: 50px 80px;
  }

  .hero::before {
    width: 4px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .page-actions .button {
    width: 100%;
  }

  .hero-media {
    width: 100%;
  }

  .hero-picture {
    clip-path: polygon(0 0, 88% 0, 100% 14%, 100% 100%, 0 100%);
  }

  .hero-picture img {
    object-position: 68% center;
  }

  .hero-picture {
    aspect-ratio: 4 / 5;
  }

  .settlement-slip {
    right: -4px;
    bottom: -42px;
    width: 92%;
  }

  .slip-row:nth-of-type(3) {
    display: none;
  }

  .ledger-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ledger-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 20px;
  }

  .ledger-row span:last-child {
    grid-column: 1;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .method-item {
    grid-template-columns: 44px 1fr;
  }

  .commercial-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .onboarding article + article,
  .onboarding article:nth-child(3),
  .onboarding article:nth-child(4) {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .onboarding article {
    min-height: 250px;
  }

  .onboarding span {
    margin-bottom: 46px;
  }

  .page-hero {
    padding-block: 64px 60px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .detail-grid {
    gap: 54px;
  }

  .detail-nav {
    display: grid;
  }

  .contact-route {
    min-height: 0;
    padding: 28px 22px;
  }

  .contact-route h2 {
    margin-top: 34px;
  }

  .email-link {
    font-size: .78rem;
    overflow-wrap: anywhere;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 54px;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }
}

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

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