:root {
  --bg: #000;
  --text: #f8f3d4;
  --acid: #fdfd65;
  --radius-lg: 32px;
  --radius-md: 32px;
  --site-gutter: 32px;
  --content: min(100%, 1200px);
  --inner: min(100%, 1200px);
  color-scheme: dark;
  font-family: "IBM Plex Mono", "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at top center,
      rgba(89, 87, 50, 0.12),
      transparent 480px
    ),
    var(--bg);
  color: var(--text);
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.site-shell {
  width: var(--content);
  margin: 0 auto;
  padding: 28px 0 42px;
}

.hero {
  position: relative;
  height: min(856px, calc(100vh - 96px));
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #000000;
  background: linear-gradient(79deg, #5f60ec 5.24%, #d4a7fd 95.14%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image: url("images/noise.png");
  background-image: image-set(
    url("images/noise.avif") type("image/avif"),
    url("images/noise.png") type("image/png")
  );
  background-size: 128px 128px;
}

.hero__nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 43px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
}

.nav-toggle {
  position: relative;
  z-index: 4;
  display: none;
  width: 54px;
  height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: #000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: 0;
}

.hero__nav.is-menu-open .nav-toggle__line:first-child {
  transform: translateY(8px) rotate(45deg);
}

.hero__nav.is-menu-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.hero__nav.is-menu-open .nav-toggle__line:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links,
.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.nav-links {
  color: #000;
}

.nav-links a,
.footer__links a {
  opacity: 0.9;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover,
.footer__links a:hover {
  color: var(--acid);
}

.nav-links a:hover {
  background: transparent;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 58px 48px 48px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 520px;
}

.eyebrow {
  color: var(--acid);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #050505;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 530px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1;
}

.hero__text {
  max-width: 500px;
  margin-bottom: 25px;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
}

.section__heading span {
  font-size: 15px;
  font-weight: 500;
  color: var(--acid);
}

.section__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
}

.section__heading h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #ffffb6 0%, #fff 50%, #ffffb6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 12px;
}

.section__heading p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.5;
}

.hero__copy .eyebrow {
  padding-bottom: 8px;
}

.store-link {
  display: inline-flex;
  width: 191px;
}

.hero__phone {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 578px;
  max-width: none;
  pointer-events: none;
}

.hero__phone img {
  width: 100%;
}

.section {
  width: var(--inner);
  margin: 0 auto;
}

.section__heading {
  max-width: 770px;
}

.section__heading p:last-child {
  max-width: 620px;
  margin-bottom: 0;
}

.coverage {
  padding-top: 100px;
}

.site-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--site-row-gap);
  overflow: hidden;
  overflow: clip;
  contain: paint;
  --site-row-gap: 14px;
  --site-group-width: 960px;
  --site-track-width: 2922px;
  --site-loop-distance: 974px;
  --site-loop-distance-double: 1948px;
  --site-card-half: 74px;
  margin-top: 38px;
}

.site-grid::before,
.site-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 135px;
  pointer-events: none;
  content: "";
}

.site-grid::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.site-grid::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.site-row {
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  --site-row-offset: 0px;
}

.site-row__track {
  display: flex;
  gap: var(--site-row-gap);
  width: var(--site-track-width);
  will-change: transform;
  animation: site-row-left 28s linear infinite;
}

.site-row--reverse .site-row__track {
  animation-name: site-row-right;
}

.site-row--reverse,
.site-row--offset {
  --site-row-offset: var(--site-card-half);
}

.site-row__group {
  display: grid;
  flex: 0 0 var(--site-group-width);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--site-row-gap);
}

@keyframes site-row-left {
  from {
    transform: translateX(
      calc(var(--site-row-offset) - var(--site-loop-distance))
    );
  }

  to {
    transform: translateX(
      calc(var(--site-row-offset) - var(--site-loop-distance-double))
    );
  }
}

@keyframes site-row-right {
  from {
    transform: translateX(
      calc(var(--site-row-offset) - var(--site-loop-distance-double))
    );
  }

  to {
    transform: translateX(
      calc(var(--site-row-offset) - var(--site-loop-distance))
    );
  }
}

.site-card {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  outline: 1px solid rgba(255, 255, 255, 0.15);
  outline-offset: -1px;
  background: linear-gradient(
    180deg,
    rgba(var(--tile-rgb), var(--tile-gradient-opacity)) 0%,
    rgba(var(--tile-rgb), 0) 100%
  );
  box-shadow: 0 0 20px 0 rgba(var(--tile-rgb), var(--tile-shadow-opacity))
    inset;
  isolation: isolate;
  padding: 16px;
}

.site-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image: url("images/noise.png");
  background-image: image-set(
    url("images/noise.avif") type("image/avif"),
    url("images/noise.png") type("image/png")
  );
  background-size: 128px 128px;
  z-index: 0;
}

.site-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  z-index: 1;
}

.site-card span {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.75;
  z-index: 1;
}

.workflow {
  padding-top: 100px;
}

.workflow .section__heading {
  max-width: 740px;
}

.steps {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.step__media {
  display: block;
  width: 650px;
}

.step__media img {
  width: 100%;
}

.step__copy p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.5;
  padding-top: 20px;
}

.step--one,
.step--three {
  padding-left: 64px;
  padding-right: 32px;
}

.step__copy {
  flex: 1;
  padding-top: 50px;
}

.step--two {
  padding-left: 32px;
  padding-right: 64px;
}

.step__number {
  display: inline-flex;
  font-size: 84px;
  font-weight: 700;
  line-height: 66px;
  padding-bottom: 8px;
}

.step__number-zero,
.step__number-digit {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step__number-zero {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.step__number-digit {
  background-image: linear-gradient(
    180deg,
    #fff 0%,
    rgba(255, 255, 255, 0.35) 100%
  );
}

.step h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #ffffb6 0%, #fff 50%, #ffffb6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats {
  position: relative;
  display: grid;
  place-items: center;
  gap: 25px;
  min-height: 830px;
  margin-top: 100px;
}

.stats__item {
  position: relative;
  display: grid;
  width: min(100%, 900px);
  aspect-ratio: 2 / 1;
  place-content: center;
  text-align: center;
}

.stats__item strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 108px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #2f2f2f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats__background {
  position: absolute;
  width: 1600px;
  height: 800px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.stats__background.is-background-loaded {
  background-image: url("images/stats-background.png");
  background-image: image-set(
    url("images/stats-background.avif") type("image/avif"),
    url("images/stats-background.png") type("image/png")
  );
}

.stats__item span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(180deg, #fff 0%, #2f2f2f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq {
  padding-top: 100px;
}

.faq .section__heading h2 {
  max-width: 730px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding: 0 32px;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  align-self: stretch;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.15) inset;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: gap 240ms ease;
}

.js .faq-item {
  gap: 0;
}

.faq-item::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.1;
  background-image: url("images/noise.png");
  background-image: image-set(
    url("images/noise.avif") type("image/avif"),
    url("images/noise.png") type("image/png")
  );
  background-size: 128px 128px;
  pointer-events: none;
}

.faq-item > * {
  position: relative;
  z-index: 1;
}

.faq-item__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: inherit;
  padding: 0 20px 0 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.faq-item__button span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  background: linear-gradient(90deg, #ffffb6 0%, #fff 50%, #ffffb6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item__icon {
  color: var(--acid);
  text-align: right;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item__content {
  display: grid;
  grid-template-rows: 1fr;
  width: 100%;
  align-self: stretch;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  padding: 0;
  opacity: 1;
  transition:
    grid-template-rows 240ms ease,
    opacity 180ms ease;
}

.js .faq-item__content {
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-item__content-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0.5;
}

.js .faq-item.is-open .faq-item__content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.js .faq-item.is-open {
  gap: 16px;
}

.js .faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 50px 0;
  place-items: center;
  min-height: 488px;
  margin-top: 100px;
  text-align: center;
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.cta.is-background-loaded {
  background-image: url("images/cta-background.png");
  background-image: image-set(
    url("images/cta-background.avif") type("image/avif"),
    url("images/cta-background.png") type("image/png")
  );
}

.cta__logo {
  width: 176px;
  height: 176px;
  border-radius: 41px;
  box-shadow:
    0 121px 34px 0 rgba(0, 0, 0, 0),
    0 77px 31px 0 rgba(0, 0, 0, 0.01),
    0 44px 26px 0 rgba(0, 0, 0, 0.05),
    0 19px 19px 0 rgba(0, 0, 0, 0.09),
    0 5px 11px 0 rgba(0, 0, 0, 0.1);
}

.cta h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  max-width: 510px;
  line-height: 1;
  background: linear-gradient(90deg, #ffffb6 0%, #fff 50%, #ffffb6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.store-link--light {
  width: 191px;
}

.footer {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  width: 100%;
  padding: 25px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.15) inset;
  overflow: hidden;
  margin-top: 100px;
}

.footer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.1;
  background-image: url("images/noise.png");
  background-image: image-set(
    url("images/noise.avif") type("image/avif"),
    url("images/noise.png") type("image/png")
  );
  background-size: 128px 128px;
  pointer-events: none;
}

.brand--footer {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(90deg, #ffffb6 0%, #fff 50%, #ffffb6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand--footer .brand__mark {
  width: 48px;
  height: 48px;
}

.footer__links {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  :root {
    --site-gutter: 20px;
  }

  .site-shell {
    width: 100%;
    padding-block: 0 max(32px, env(safe-area-inset-bottom));
    padding-left: max(var(--site-gutter), env(safe-area-inset-left));
    padding-right: max(var(--site-gutter), env(safe-area-inset-right));
  }

  .hero {
    height: auto;
    min-height: auto;
    margin-inline: calc(var(--site-gutter) * -1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .hero__nav {
    padding: 22px 24px;
  }

  .brand {
    gap: 12px;
    font-size: 20px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .nav-links {
    gap: 20px;
    font-size: 13px;
    line-height: 1.2;
  }

  .hero__content {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: 72px 32px 0;
  }

  .hero__copy {
    width: min(100%, 520px);
  }

  h1 {
    max-width: 520px;
    font-size: 56px;
  }

  .hero__text {
    max-width: 470px;
    font-size: 20px;
  }

  .hero__phone {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: min(560px, 100%);
    margin-top: 28px;
    transform: none;
  }

  .section {
    width: 100%;
  }

  .coverage,
  .workflow,
  .faq {
    padding-top: 76px;
  }

  .section__heading {
    max-width: 720px;
    padding-inline: 0;
  }

  .section__heading h2 {
    font-size: 42px;
  }

  .section__heading p {
    font-size: 17px;
  }

  .site-grid {
    --site-row-gap: 12px;
    margin-top: 32px;
  }

  .site-grid::before,
  .site-grid::after {
    width: 88px;
  }

  .site-card {
    min-height: 118px;
  }

  .steps {
    gap: 42px;
    margin-top: 36px;
  }

  .step,
  .step--two {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-inline: 0;
  }

  .step--two {
    flex-direction: column-reverse;
  }

  .step__media {
    width: min(100%, 520px);
    align-self: center;
  }

  .step__copy {
    max-width: 580px;
    padding-top: 0;
  }

  .step__copy p {
    max-width: 520px;
    font-size: 17px;
  }

  .step__number {
    font-size: 64px;
    line-height: 54px;
  }

  .stats {
    min-height: auto;
    gap: 0;
    margin-top: 76px;
    margin-inline: calc(var(--site-gutter) * -1);
    padding: 52px var(--site-gutter);
  }

  .stats__item {
    width: min(100%, 680px);
  }

  .stats__background {
    width: 1100px;
    height: 550px;
  }

  .stats__item strong {
    font-size: 72px;
  }

  .stats__item span {
    font-size: 24px;
  }

  .faq-list {
    padding-inline: 0;
  }

  .cta {
    min-height: 420px;
    margin: 76px 0 0;
    padding: 48px 0px;
  }

  .footer {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 76px;
    padding: 20px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 15px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  :root {
    --radius-lg: 24px;
    --radius-md: 24px;
    --site-gutter: 16px;
  }

  .hero__nav {
    padding: 18px 16px;
  }

  .brand {
    gap: 10px;
    font-size: 17px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .hero__nav .brand {
    gap: 14px;
    font-size: 25px;
  }

  .hero__nav .brand__mark {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    gap: 5px;
    border-radius: 13px;
  }

  .nav-toggle__line {
    width: 22px;
  }

  .hero__nav.is-menu-open .nav-toggle__line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .hero__nav.is-menu-open .nav-toggle__line:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 10px);
    right: 16px;
    z-index: 4;
    width: min(220px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links a {
    border-radius: 10px;
    padding: 14px 16px;
    opacity: 1;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero__nav.is-menu-open .nav-links {
    display: flex;
    opacity: 1 !important;
    pointer-events: auto;
    transform: none;
  }

  .hero__content {
    padding: 54px 20px 0;
  }

  .hero {
    height: calc(100vh - 102px);
    min-height: 690px;
    max-height: 760px;
  }

  .eyebrow,
  .section__heading span {
    font-size: 12px;
    line-height: 1.3;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero__text {
    max-width: 350px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.4;
  }

  .store-link,
  .store-link--light {
    width: 172px;
  }

  .hero__phone {
    position: absolute;
    right: -70px;
    bottom: -86px;
    width: min(260px, 64vw);
    max-width: none;
    margin: 0;
  }

  .coverage,
  .workflow,
  .faq {
    padding-top: 58px;
  }

  .section__heading h2 {
    padding-bottom: 8px;
    font-size: 32px;
    line-height: 1.05;
  }

  .section__heading p {
    font-size: 15px;
  }

  .site-grid {
    --site-row-gap: 10px;
    margin-inline: calc(var(--site-gutter) * -1);
    margin-top: 26px;
  }

  .site-grid::before,
  .site-grid::after {
    width: 44px;
  }

  .site-card {
    min-height: 0;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
  }

  .site-card img {
    width: 42px;
    height: 42px;
  }

  .site-card span {
    max-width: 100%;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .steps {
    gap: 36px;
    margin-top: 28px;
  }

  .step {
    gap: 32px;
  }

  .step__media {
    width: min(100%, 420px);
  }

  .step__number {
    font-size: 52px;
    line-height: 44px;
  }

  .step h3 {
    font-size: 28px;
    line-height: 1.05;
  }

  .step__copy p {
    padding-top: 14px;
    font-size: 15px;
  }

  .stats {
    margin-top: 58px;
    padding: 32px var(--site-gutter);
  }

  .stats__item {
    width: min(100%, 420px);
    aspect-ratio: 1.85 / 1;
  }

  .stats__background {
    width: 720px;
    height: 360px;
  }

  .stats__item strong {
    font-size: 44px;
  }

  .stats__item span {
    font-size: 18px;
  }

  .faq-list {
    gap: 8px;
    margin-top: 24px;
  }

  .faq-item {
    padding: 18px;
    border-radius: 14px;
  }

  .faq-item__button {
    min-height: 52px;
    gap: 12px;
    padding: 0;
  }

  .faq-item__button span {
    font-size: 17px;
  }

  .faq-item__icon {
    font-size: 30px;
  }

  .faq-item__content {
    font-size: 15px;
    line-height: 1.45;
  }

  .cta {
    min-height: 360px;
    gap: 24px;
    margin-top: 58px;
    padding: 42px 20px;
  }

  .cta__logo {
    width: 128px;
    height: 128px;
    border-radius: 30px;
  }

  .cta h2 {
    max-width: 340px;
    font-size: 32px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    margin-top: 58px;
  }

  .brand--footer {
    font-size: 20px;
  }

  .brand--footer .brand__mark {
    width: 36px;
    height: 36px;
  }

  .footer__links {
    justify-content: center;
    gap: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .hero__nav {
    padding-inline: 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
  }

  .hero__nav .brand {
    gap: 12px;
    font-size: 22px;
  }

  .hero__nav .brand__mark {
    width: 45px;
    height: 45px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    right: 14px;
    gap: 4px;
    font-size: 14px;
  }

  .hero__content {
    padding: 46px 18px 0;
  }

  .hero {
    min-height: 660px;
  }

  h1 {
    font-size: 38px;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__phone {
    right: -72px;
    bottom: -74px;
    width: min(230px, 62vw);
  }

  .section__heading h2 {
    font-size: 29px;
  }

  .site-card {
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
  }

  .site-card img {
    width: 36px;
    height: 36px;
  }

  .site-card span {
    font-size: 12px;
  }

  .stats__item strong {
    font-size: 38px;
  }

  .faq-item__button span {
    font-size: 16px;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .site-row__track {
    animation: none;
  }

  .faq-item__content,
  .faq-item,
  .faq-item__icon,
  .nav-links,
  .nav-toggle__line {
    transition: none;
  }
}
