:root {
  --blue: #2875e8;
  --blue-accessible: #1961ca;
  --ink: #1a1818;
  --graphite: #2d2d2f;
  --grey: #565557;
  --paper: #dddce1;
  --white: #f8f8f6;
  --focus: #ffdd57;
  --shell: min(1240px, calc(100% - 64px));
}

@font-face {
  font-family: "DSN Archivo";
  src: url("../fonts/archivo-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 90px;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
}

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

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

.design-switcher {
  position: relative;
  z-index: 40;
  display: flex;
  min-height: 38px;
  padding: 6px 24px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.design-switcher a {
  color: inherit;
  text-decoration: none;
}

.design-switcher a[aria-current="page"] {
  border-bottom: 2px solid currentColor;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  min-height: 74px;
  isolation: isolate;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 24, 24, 0.18);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 170px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.primary-nav a {
  position: relative;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 180ms ease-out, transform 180ms ease-out;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue-accessible);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  min-height: 44px;
  padding: 12px 18px;
  background: var(--blue-accessible);
  color: #fff;
  transition: background-color 180ms ease-out, transform 180ms ease-out;
}

.primary-nav .nav-cta:hover {
  transform: translateY(-3px);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  gap: 10px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-lines {
  display: grid;
  width: 18px;
  gap: 4px;
}

.menu-lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 160ms ease-out;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  color: inherit;
  font-weight: 780;
  line-height: 1.1;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 180ms ease-out, color 180ms ease-out, letter-spacing 180ms ease-out, transform 180ms ease-out;
}

.button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  opacity: 0.55;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  letter-spacing: 0.015em;
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--blue-accessible);
  color: #fff;
}

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

.button span {
  display: none;
}

.hero {
  min-height: calc(100dvh - 112px);
}

.hero-grid {
  width: 100%;
  margin-inline: auto;
}

.hero-copy {
  width: var(--shell);
  margin-inline: auto;
}

.hero-copy h1,
.section-heading h2,
.prose-grid h2,
.closing-copy h2 {
  margin: 0;
  font-family: "DSN Archivo", sans-serif;
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(3.2rem, 6.6vw, 6rem);
}

.hero-lede {
  max-width: 38ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

.hero-media {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 1900 / 1419;
  overflow: hidden;
  background: var(--ink);
}

.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchored to the top of the frame so the box strapline is never cropped. */
  object-position: center top;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  transform-origin: center top;
  will-change: transform;
}

/* Tablet and up the photograph becomes the hero itself rather than a band
   beneath the copy: full-bleed, with the type set into the open space on the
   left of the frame over a scrim. The picture overscans 6% above the frame,
   which is the headroom the parallax travels through. */
/* Desktop shows the whole standing figure, boots included. At 3:2 the frame is
   only ~12% shorter than the photograph, and the crop is taken off the empty
   wall above his head rather than off his feet. That 12% is also the slack the
   parallax travels through. */
@media (min-width: 721px) {
  .hero-media {
    aspect-ratio: 3 / 2;
    max-height: none;
  }

  .hero-media picture {
    inset: 0;
  }

  .hero-media img {
    object-position: center 84%;
  }
}

.hero-media figcaption,
.portrait-card figcaption {
  font-size: 0.76rem;
  font-weight: 700;
}

.section,
.opening-section,
.closing-section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-heading {
  max-width: 950px;
  margin-bottom: clamp(42px, 6vw, 80px);
}

.section-heading h2,
.prose-grid h2,
.closing-copy h2 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.section-heading > p {
  max-width: 68ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.how-heading-row {
  display: grid;
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: 32px clamp(42px, 6vw, 84px);
}

.how-heading-row .section-heading {
  margin-bottom: 0;
}

.process-tabs {
  display: grid;
  align-self: start;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-tabs button {
  min-height: 48px;
  margin-bottom: -1px;
  padding: 10px 12px 13px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: border-color 180ms ease-out, color 180ms ease-out;
}

.process-tabs button:hover {
  border-bottom-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: #fff;
}

.process-tabs button[aria-selected="true"] {
  border-bottom-color: #fff;
  background: transparent;
  color: #fff;
}

.process-tabs button:focus-visible {
  position: relative;
  z-index: 2;
  border-bottom-width: 5px;
  outline: 0;
}

.process-panel[hidden] {
  display: none;
}

.prose-grid,
.editorial-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 112px);
}

.prose {
  max-width: 72ch;
}

.prose p {
  margin: 0 0 1.2em;
}

.large-prose {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.pull-quote {
  margin-top: 42px !important;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 760;
  line-height: 1.18;
}

.portrait-card {
  margin: 0;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.portrait-card figcaption {
  display: flex;
  padding-top: 12px;
  justify-content: space-between;
  gap: 20px;
}

.income-row {
  display: grid;
  padding: 44px 0;
  border-top: 1px solid currentColor;
  grid-template-columns: 110px minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  transition: background-color 220ms ease-out;
}

.income-row:hover {
  background: rgba(40, 117, 232, 0.07);
}

.income-row .income-number {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.income-row:hover .income-number {
  transform: translateX(10px);
}

.income-number {
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.income-title > p,
.fit-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.income-title h3,
.steps h3,
.tier h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.05;
}

.income-copy p {
  max-width: 68ch;
  margin: 0 0 1em;
}

.section-action {
  padding-top: 34px;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps li {
  display: grid;
  min-height: 220px;
  padding: 30px;
  border-top: 1px solid currentColor;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  transition: background-color 220ms ease-out, transform 220ms ease-out;
}

/* Applies once the four per-step panels replace the single strip. */
.steps li:has(.step-figure) {
  align-content: start;
  padding: 0;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0;
}

.step-figure {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: transparent;
  place-items: center;
}

/* Give unlike source canvases one consistent stage, then calibrate their
   optical footprints without cropping or distorting the supplied artwork. */
.step-figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--step-art-scale, 0.84));
  transform-origin: center;
}

.step-figure--materials {
  --step-art-scale: 0.84;
}

.step-figure--posting {
  --step-art-scale: 0.84;
}

.step-figure--scan {
  --step-art-scale: 0.78;
}

.step-figure--confirmation {
  --step-art-scale: 0.8;
}

.step-figure--commercial-02,
.step-figure--commercial-03,
.step-figure--commercial-04,
.step-figure--depot-02,
.step-figure--depot-03,
.step-figure--depot-04 {
  --step-art-scale: 0.82;
}

.step-body {
  display: grid;
  padding: 28px 30px 34px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
}

.step-body > div {
  min-width: 0;
}

.steps li:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
}

.process-panel--households .steps li:not(:first-child),
.process-panel--commercial .steps li:not(:first-child),
.process-panel--depot .steps li:not(:first-child) {
  background: #0e4ca8;
}

.process-panel--households .steps li:not(:first-child):hover,
.process-panel--commercial .steps li:not(:first-child):hover,
.process-panel--depot .steps li:not(:first-child):hover {
  background: rgba(255, 255, 255, 0.09);
}

.process-panel:not(.process-panel--households):not([hidden]) .steps li:not(:first-child) {
  animation: process-card-enter 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-panel:not(.process-panel--households):not([hidden]) .steps li:nth-child(3) {
  animation-delay: 45ms;
}

.process-panel:not(.process-panel--households):not([hidden]) .steps li:nth-child(4) {
  animation-delay: 90ms;
}

@keyframes process-card-enter {
  from {
    opacity: 0.5;
    clip-path: inset(0 0 8% 0);
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

.steps li:nth-child(odd) {
  border-right: 1px solid currentColor;
}

.step-number {
  font-weight: 800;
  transition: color 180ms ease-out, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.steps li:hover .step-number {
  transform: translateY(-5px) scale(1.08);
}

.steps p {
  max-width: 48ch;
  margin: 14px 0 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fit-media {
  display: grid;
  margin-bottom: clamp(36px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  border-top: 10px solid var(--blue);
}

.fit-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fit-media-wide {
  aspect-ratio: 16 / 9;
}

.fit-media-square {
  aspect-ratio: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.fit-card {
  padding: clamp(32px, 5vw, 64px);
}

.fit-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.fit-card li {
  margin-bottom: 18px;
}

.tier-stack {
  display: grid;
  border-top: 1px solid currentColor;
}

.tier {
  display: grid;
  padding: 34px 0;
  align-items: center;
  border-bottom: 1px solid currentColor;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr) 210px;
  gap: clamp(28px, 5vw, 72px);
}

.tier-name {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.tier-name > span {
  font-weight: 800;
}

.tier > p {
  max-width: 68ch;
  margin: 0;
}

.tier > a {
  display: inline-flex;
  min-height: 44px;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  background: var(--blue-accessible);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
}

.tier > a span {
  display: none;
}

.tier-includes {
  max-width: 72ch;
  margin: 28px 0 0;
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(50px, 9vw, 130px);
}

.faq-list details {
  border-top: 1px solid currentColor;
}

.faq-list details:last-child {
  border-bottom: 1px solid currentColor;
}

.faq-list summary {
  padding: 22px 36px 22px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  transform: translateX(0);
  transition: color 180ms ease-out, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list summary:hover {
  transform: translateX(12px);
  color: var(--blue-accessible);
}

.faq-list details p {
  max-width: 68ch;
  margin: 0;
  padding: 0 36px 24px 0;
}

.closing-section {
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.closing-media {
  position: absolute;
  inset: 0;
}

.closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-copy {
  position: relative;
  z-index: 2;
}

.closing-copy p {
  max-width: 50ch;
  margin: 22px 0 28px;
}

.site-footer {
  padding: clamp(56px, 7vw, 92px) 0 0;
  border-top: 10px solid var(--blue-accessible);
}

.footer-inner {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(44px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.footer-mark {
  width: 245px;
  max-width: 100%;
}

.footer-strapline {
  max-width: 26ch;
  margin: 24px 0 0;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.footer-cta {
  display: inline-flex;
  min-height: 48px;
  margin-top: 30px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 780;
  text-decoration: none;
  transition: background-color 180ms ease-out, transform 180ms ease-out;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  transform: translateY(-3px);
  background: var(--blue-accessible);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-column-label {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-column li + li {
  margin-top: 12px;
}

.footer-column a {
  position: relative;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-baseline {
  display: flex;
  padding: 22px 0 30px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 32px;
  border-top: 1px solid rgba(26, 24, 24, 0.24);
  font-size: 0.78rem;
}

.footer-baseline p {
  margin: 0;
}

.footer-registered {
  color: var(--grey);
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .how-heading-row {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-tabs {
    max-width: 460px;
  }

  .primary-nav {
    position: absolute;
    z-index: 60;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 100%);
    padding: 14px 20px 24px;
    align-items: stretch;
    gap: 0;
    background: var(--nav-panel, var(--white));
    color: var(--nav-panel-ink, var(--ink));
    border-top: 1px solid rgba(26, 24, 24, 0.18);
    border-bottom: 3px solid var(--blue-accessible);
    box-shadow: 0 22px 40px -24px rgba(26, 24, 24, 0.55);
    overflow-y: auto;
    flex-direction: column;
  }

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

  .primary-nav a:not(.nav-cta) {
    display: flex;
    min-height: 52px;
    padding: 4px 0;
    align-items: center;
    border-bottom: 1px solid rgba(26, 24, 24, 0.14);
    font-size: 1rem;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 18px;
    justify-content: center;
  }

  .primary-nav .nav-cta:hover {
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .income-row,
  .tier {
    grid-template-columns: 80px 1fr;
  }

  .income-copy,
  .tier > p,
  .tier > a {
    grid-column: 2;
  }

  .tier > a {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-behavior: auto;
    scroll-padding-top: 82px;
  }

  .design-switcher {
    justify-content: center;
  }

  .site-header,
  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 142px;
  }

  .primary-nav {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .section,
  .opening-section,
  .closing-section {
    padding: 72px 0;
  }

  .how-heading-row {
    margin-bottom: 42px;
    gap: 24px;
  }

  .process-tabs {
    max-width: none;
  }

  .process-tabs button {
    min-height: 48px;
    padding: 11px 8px;
    font-size: 0.9rem;
  }

  .section-heading h2,
  .prose-grid h2,
  .closing-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .prose-grid,
  .editorial-layout,
  .faq-layout,
  .fit-grid,
  .fit-media {
    grid-template-columns: 1fr;
  }

  /* Both crops are the same courier, so stacking them reads as a duplicate.
     Needs the descendant selector to outrank `.fit-media img`. */
  .fit-media img.fit-media-square {
    display: none;
  }

  .fit-media img.fit-media-wide {
    aspect-ratio: 4 / 3;
    object-position: center 28%;
  }

  .editorial-layout,
  .prose-grid,
  .faq-layout {
    gap: 42px;
  }

  .income-row,
  .tier {
    padding: 30px 0;
    grid-template-columns: 54px 1fr;
    gap: 14px 18px;
  }

  .income-number {
    font-size: 2rem;
  }

  .income-copy,
  .tier > p,
  .tier > a {
    grid-column: 1 / -1;
  }

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

  .steps li,
  .steps li:nth-child(odd) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
  }

  .steps li:has(.step-figure) {
    padding: 0;
  }

  .step-body {
    padding: 24px 16px 30px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .step-figure {
    margin-inline: -16px;
  }

  .fit-card {
    padding: 34px 24px;
  }

  .closing-section {
    min-height: 610px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-mark {
    width: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .process-panel .steps li {
    animation: none !important;
  }
}

/* Selected Option A additions: calculator and pricing. */

.calculator-section {
  background: var(--ink);
  color: #fff;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.calculator-intro {
  position: sticky;
  top: 28px;
}

.calculator-intro h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.calculator-panel {
  border-top: 12px solid var(--blue);
  background: var(--white);
  color: var(--ink);
}

.calculator-summary {
  display: grid;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
  grid-template-columns: minmax(0, 1.18fr) minmax(190px, 0.62fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
}

.calculator-total {
  min-width: 0;
}

.projection-tabs {
  display: flex;
  width: fit-content;
  margin: 0 0 clamp(28px, 3.6vw, 42px);
  border-bottom: 1px solid rgba(26, 24, 24, 0.3);
  gap: clamp(24px, 3vw, 38px);
}

.projection-tabs button {
  position: relative;
  min-height: 44px;
  padding: 0 0 11px;
  border: 0;
  background: transparent;
  color: rgba(26, 24, 24, 0.65);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease;
}

.projection-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 3px;
  background: var(--blue-accessible);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.projection-tabs button:hover,
.projection-tabs button[aria-pressed="true"] {
  color: var(--ink);
}

.projection-tabs button[aria-pressed="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.projection-tabs button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.calculator-total span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
}

.calculator-total strong {
  display: block;
  margin-top: 10px;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 790;
  line-height: 0.85;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.calculator-fee-summary {
  display: grid;
  margin: 0;
  min-width: 0;
}

.calculator-fee-summary div {
  padding: 0 0 20px;
}

.calculator-fee-summary div + div {
  padding: 20px 0 0;
  border-top: 1px solid rgba(26, 24, 24, 0.28);
}

.calculator-fee-summary dt {
  font-size: 0.78rem;
  font-weight: 750;
}

.calculator-fee-summary dd {
  margin: 7px 0 0;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 780;
  line-height: 0.95;
  white-space: nowrap;
}

.calculator-after-fee dt {
  font-size: 0.86rem;
  font-weight: 800;
}

.calculator-after-fee dd {
  color: var(--blue-accessible);
  font-size: clamp(2.8rem, 4.8vw, 4.35rem);
}

@media (min-width: 1161px) {
  .calculator-summary {
    grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.7fr);
    gap: clamp(28px, 2.8vw, 40px);
  }

  .calculator-total strong {
    font-size: clamp(3.6rem, 4.5vw, 5rem);
  }

  .calculator-fee-summary dd {
    font-size: clamp(1.65rem, 1.9vw, 1.95rem);
  }

  .calculator-after-fee dd {
    font-size: clamp(2.55rem, 3.1vw, 3rem);
  }
}

.calculator-total strong[data-pulse],
.calculator-after-fee dd[data-pulse] {
  animation: dsn-total-pulse 240ms ease-out;
}

@keyframes dsn-total-pulse {
  50% { transform: translateY(-2px); color: var(--blue-accessible); }
}

.process-illustration {
  margin: 0 0 52px;
  border-top: 10px solid var(--ink);
  background: var(--white);
  overflow: hidden;
}

/* The strip is one continuous composition: never crop it, or panels vanish. */
.process-illustration img {
  width: 100%;
  height: auto;
  aspect-ratio: 2688 / 1024;
  object-fit: contain;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.12fr 0.98fr;
  align-items: stretch;
  border: 1px solid rgba(26, 24, 24, 0.3);
}

.price-plan {
  position: relative;
  display: grid;
  min-height: 540px;
  padding: clamp(26px, 3.2vw, 44px);
  align-content: start;
  border-right: 1px solid rgba(26, 24, 24, 0.3);
  grid-template-rows: auto auto 1fr auto;
  transition: border-color 180ms ease-out, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-plan:hover {
  z-index: 2;
  transform: translateY(-7px);
}

.price-plan:last-child {
  border-right: 0;
}

.price-plan-featured {
  background: var(--blue-accessible);
  color: #fff;
}

.popular-marker {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-plan-team {
  background: var(--paper);
}

.price-plan h3 {
  margin: 0;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-plan div > p {
  min-height: 48px;
  margin: 18px 0 0;
}

.plan-price {
  display: flex;
  margin: 20px 0 30px;
  align-items: baseline;
  gap: 10px;
}

.plan-price strong {
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: 700;
}

.price-plan ul {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.price-plan li {
  padding: 13px 0;
  border-top: 1px solid currentColor;
  font-size: 0.9rem;
}

.price-plan a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  padding: 13px 18px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 780;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.price-plan a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-plan a:hover,
.price-plan a:focus-visible {
  transform: translateY(-3px);
}

.price-plan a:hover::after,
.price-plan a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.price-plan-featured a {
  background: var(--white);
  color: var(--ink);
}

.comparison-wrap {
  margin-top: 54px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: left;
}

.comparison-table caption {
  padding: 0 0 20px;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 780;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(26, 24, 24, 0.28);
}

.comparison-table thead th {
  background: var(--ink);
  color: #fff;
}

.comparison-table thead th:not(:first-child),
.comparison-table tbody td {
  text-align: center;
}

.comparison-table thead th:nth-child(3) {
  background: var(--blue-accessible);
}

.comparison-table tbody th {
  width: 38%;
}

.comparison-table tbody td:nth-child(3) {
  background: rgba(25, 97, 202, 0.08);
}

.comparison-mark {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  color: var(--ink);
  place-items: center;
}

.comparison-mark::before {
  width: 7px;
  height: 13px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.comparison-table tbody td:nth-child(3) .comparison-mark {
  color: var(--blue-accessible);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 640ms cubic-bezier(0.16, 1, 0.3, 1), transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready [data-flow] {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-flow="right"] {
  transform: translateX(38px);
}

.motion-ready [data-flow].is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready [data-sequence] > * {
  opacity: 0;
  clip-path: inset(0 0 14% 0);
  transform: translateY(28px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), clip-path 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-sequence].is-visible > * {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

.motion-ready [data-sequence] > :nth-child(2) { transition-delay: 70ms; }
.motion-ready [data-sequence] > :nth-child(3) { transition-delay: 140ms; }
.motion-ready [data-sequence] > :nth-child(4) { transition-delay: 210ms; }

.motion-ready [data-aperture] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-aperture].is-visible {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 1160px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-intro {
    position: static;
  }

  .calculator-intro h2 {
    max-width: 16ch;
  }
}

@media (max-width: 960px) {

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

  .price-plan {
    min-height: 500px;
  }

  .price-plan:nth-child(2) {
    border-right: 0;
  }

  .price-plan-team {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid rgba(26, 24, 24, 0.3);
  }
}

@media (max-width: 720px) {
  .hero-media picture {
    inset: 0;
  }

  .hero-media img {
    transform: none !important;
    will-change: auto;
  }

  .calculator-summary {
    grid-template-columns: 1fr;
  }

  .calculator-fee-summary {
    padding: 24px 0 0;
    border-top: 1px solid rgba(26, 24, 24, 0.28);
  }

  .calculator-total strong {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .projection-tabs {
    width: 100%;
    gap: 14px;
    justify-content: space-between;
  }

  .projection-tabs button {
    font-size: 0.75rem;
  }

  .process-illustration {
    margin-inline: -16px;
    border-top-width: 8px;
  }

  /* The simplified five-feature comparison fits as a real matrix on phones;
     keep plan headers visible and remove the former stacked-card conversion. */
  .comparison-wrap {
    margin-top: 38px;
    overflow-x: visible;
  }

  .comparison-table {
    display: table;
    min-width: 0;
  }

  .comparison-table thead {
    display: table-header-group;
  }

  .comparison-table caption {
    padding-bottom: 16px;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .comparison-table tbody {
    display: table-row-group;
  }

  .comparison-table tr {
    display: table-row;
    margin: 0;
    border: 0;
  }

  .comparison-table tbody th {
    display: table-cell;
    width: 43%;
    padding: 14px 8px;
    background: transparent;
    color: var(--ink);
    font-size: clamp(0.78rem, 3.3vw, 0.9rem);
    line-height: 1.25;
    vertical-align: middle;
  }

  .comparison-table td {
    display: table-cell;
    width: 19%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(26, 24, 24, 0.28);
    font-size: 0.85rem;
    text-align: center;
    vertical-align: middle;
  }

  .comparison-table thead th {
    padding: 13px 4px;
    font-size: clamp(0.7rem, 3vw, 0.82rem);
    text-align: center;
  }

  .comparison-table td::before {
    content: none;
  }

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

  .price-plan,
  .price-plan:nth-child(2),
  .price-plan:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(26, 24, 24, 0.3);
    grid-column: auto;
  }

  .price-plan:last-child {
    border-bottom: 0;
  }

  .price-plan div > p {
    min-height: auto;
  }
}

/* Secondary pages: contact, terms, privacy, cookies, franchise information. */

.page-head {
  padding: clamp(56px, 7vw, 104px) 0 clamp(40px, 5vw, 68px);
  background: var(--white);
  border-bottom: 10px solid var(--blue-accessible);
}

.page-eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-head h1 {
  max-width: 16ch;
  margin: 0;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.page-lede {
  max-width: 54ch;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.45;
}

.page-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(200px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(44px, 7vw, 110px);
}

.page-contents {
  position: sticky;
  top: 102px;
}

.page-contents-label {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-contents ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: contents;
}

.page-contents li {
  counter-increment: contents;
}

.page-contents li + li {
  margin-top: 12px;
}

.page-contents a {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.page-contents a::before {
  display: inline-block;
  width: 2.2em;
  content: counter(contents, decimal-leading-zero);
  color: var(--blue-accessible);
  font-weight: 850;
}

.page-contents a:hover {
  text-decoration: underline;
}

.page-notice {
  margin: 0 0 44px;
  padding: 18px 22px;
  border-left: 6px solid var(--blue-accessible);
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 650;
}

.page-section + .page-section {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid rgba(26, 24, 24, 0.24);
}

.page-section h2 {
  max-width: 22ch;
  margin: 0 0 20px;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-section p {
  max-width: 68ch;
  margin: 0 0 1.1em;
}

/* Without this the min-content width of a wide prose table inflates the grid
   track, pushing the column past the viewport instead of scrolling in place. */
.page-prose {
  min-width: 0;
}

.page-updated {
  margin: 20px 0 0;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-subheading {
  max-width: 34ch;
  margin: 34px 0 16px;
  font-family: "DSN Archivo", sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-section > .page-subheading:first-of-type {
  margin-top: 0;
}

.prose-list,
.prose-steps {
  max-width: 68ch;
  margin: 0 0 1.4em;
  padding-left: 0;
  list-style: none;
}

.prose-list > li,
.prose-steps > li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.prose-list > li + li,
.prose-steps > li + li {
  margin-top: 12px;
}

.prose-list > li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 4px;
  width: 9px;
  height: 9px;
  background: var(--blue-accessible);
}

.prose-steps {
  counter-reset: prose-step;
}

.prose-steps > li {
  counter-increment: prose-step;
  padding-left: 38px;
}

.prose-steps > li::before {
  content: counter(prose-step);
  position: absolute;
  top: 0.1em;
  left: 0;
  font-family: "DSN Archivo", sans-serif;
  font-size: 0.86rem;
  font-weight: 850;
  color: var(--blue-accessible);
}

.prose-table-wrap {
  max-width: 100%;
  margin: 0 0 1.6em;
  overflow-x: auto;
}

.prose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}

.prose-table caption {
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

.prose-table th,
.prose-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(26, 24, 24, 0.24);
  vertical-align: top;
}

.prose-table thead th {
  background: var(--ink);
  color: var(--white);
  border-bottom: none;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.prose-table tbody th {
  font-weight: 750;
}

.prose-table tbody tr:nth-child(even) {
  background: var(--paper);
}

.prose-definitions {
  max-width: 68ch;
  margin: 0 0 1.4em;
}

.prose-definitions dt {
  margin-top: 22px;
  font-family: "DSN Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.prose-definitions dt:first-child {
  margin-top: 0;
}

.prose-definitions dd {
  margin: 6px 0 0;
  line-height: 1.5;
}

.page-section-cta {
  margin-top: 6px;
}

.page-section .page-section-cta {
  color: #fff;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(44px, 7vw, 100px);
}

.contact-block + .contact-block {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(26, 24, 24, 0.24);
}

.contact-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-block p {
  max-width: 42ch;
  margin: 0;
}

.contact-block a,
.page-section a {
  color: var(--blue-accessible);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.contact-block a:hover,
.page-section a:hover {
  color: var(--ink);
}

.contact-form {
  padding: clamp(26px, 3.4vw, 44px);
  background: var(--paper);
}

.field {
  display: grid;
  margin-bottom: 22px;
  gap: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field label span {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--grey);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(26, 24, 24, 0.42);
  border-radius: 0;
  background: var(--white);
  color: inherit;
  font: inherit;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue-accessible);
  box-shadow: inset 0 -3px 0 var(--blue-accessible);
}

.contact-form-status {
  margin: 18px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .page-contents {
    position: static;
  }
}

@media (max-width: 720px) {
  section[id] {
    scroll-margin-top: 82px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .page-head {
    border-bottom-width: 8px;
  }

  /* Let headings wrap on phones so narrow tables fit instead of scrolling;
     genuinely wide ones still scroll inside .prose-table-wrap. */
  .prose-table thead th {
    white-space: normal;
  }

  .prose-table th,
  .prose-table td {
    padding: 11px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list summary {
    transform: none;
    transition: none;
  }

  .faq-list summary:hover {
    transform: none;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-aperture],
  .motion-ready [data-flow],
  .motion-ready [data-sequence] > * {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .hero-media picture {
    inset: 0;
  }

  .hero-media img {
    transform: none !important;
    will-change: auto;
  }

  .calculator-total strong[data-pulse],
  .calculator-after-fee dd[data-pulse] {
    animation: none;
  }
}
