:root {
  --red: #f52a31;
  --red-dark: #9c0007;
  --ink: #171719;
  --muted: #68686e;
  --cream: #fff1f0;
  --radius: 34px;
  --form-control-height: 67px;
  --site-heading-size: clamp(38px, 3.2vw, 50px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}

button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

p,
h1,
h2,
h3,
li,
figcaption {
  text-wrap: pretty;
}

main,
section,
header,
form {
  max-width: 100%;
}

main {
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.container {
  width: min(1180px, calc(100% - 48px));
  max-width: 100%;
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 980px;
  color: #fff;
  background: #080909;
  overflow: hidden;
}

.hero::after {
  content: "";
  z-index: 1;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.08) 47%, transparent 74%);
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  z-index: 0;
  inset: -45px 0;
  background: url("assets/figma-hero-bg.png") center / cover no-repeat;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.04);
  transform-origin: center top;
  will-change: transform;
}

.hero__fade {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 78px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .03) 24%,
      rgba(255, 255, 255, .22) 55%,
      rgba(255, 255, 255, .72) 82%,
      #fff 100%
    );
  opacity: var(--hero-fade-opacity, .08);
  pointer-events: none;
  will-change: opacity;
}

.hero__man-track {
  position: absolute;
  z-index: 3;
  right: 110px;
  bottom: -650px;
  width: 760px;
  transform: translate3d(var(--man-scroll-x, 0px), 0, 0);
  will-change: transform;
  pointer-events: none;
}

.hero__man {
  width: 100%;
  max-width: none;
  animation: man-arrival 1.15s cubic-bezier(.2, .8, .2, 1) both;
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes man-arrival {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  58% {
    opacity: 1;
    transform: translateX(-12px);
  }
  78% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 54px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span { display: grid; }
.brand strong { font-size: 22px; line-height: 1; }
.brand small {
  margin-top: 7px;
  color: #c5c5c8;
  font-size: 15px;
  line-height: 1.25;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 64px;
  padding: 0 34px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(110deg, #d70010, #ff7878);
  box-shadow: 0 8px 22px rgba(246, 35, 48, .28), inset 0 2px 7px rgba(255,255,255,.25);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  animation: button-glow 2.8s ease-in-out infinite;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70%;
  bottom: -70%;
  left: -45%;
  width: 32%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .12),
    rgba(255, 255, 255, .72),
    rgba(255, 255, 255, .12),
    transparent
  );
  transform: skewX(-20deg);
  animation: button-shine 3.2s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
  filter: saturate(1.12) brightness(1.05);
  box-shadow: 0 15px 34px rgba(246, 35, 48, .5), inset 0 2px 8px rgba(255,255,255,.32);
}

.button:active {
  transform: translateY(0) scale(.985);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 4px;
}

@keyframes button-shine {
  0%, 18% { left: -45%; opacity: 0; }
  25% { opacity: 1; }
  58%, 100% { left: 125%; opacity: 0; }
}

@keyframes button-glow {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(246, 35, 48, .28), inset 0 2px 7px rgba(255,255,255,.25);
  }
  50% {
    box-shadow: 0 11px 30px rgba(246, 35, 48, .48), inset 0 2px 9px rgba(255,255,255,.34);
  }
}

.button--small {
  display: grid;
  place-items: center;
  min-height: 47px;
  padding-inline: 31px;
  border-radius: 15px;
  font-size: 14px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
}

.offer {
  width: 770px;
  max-width: 100%;
  padding: 45px 55px 48px;
  border: 1px solid rgba(116, 152, 190, .62);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 60%, rgba(128, 86, 57, .52), transparent 35%),
    linear-gradient(120deg, rgba(34,36,38,.97), rgba(25,25,27,.95) 58%, rgba(72,54,44,.9));
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.offer__dash {
  display: block;
  width: 50px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f11925, #ff7379);
}

.offer h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.offer h1 {
  font-size: clamp(38px, 3.2vw, 50px);
  line-height: 1.22;
  letter-spacing: .4px;
}

.offer h1 > span {
  display: block;
  white-space: nowrap;
}

.offer h1 em,
.contact h2 em {
  color: var(--red);
  font-style: normal;
}

.offer__promise {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 29px;
  padding-top: 26px;
  border-top: 1px dashed rgba(237, 45, 54, .58);
}

.offer__promise span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 7px;
  color: var(--red);
  background: #fff;
  font-weight: 800;
}

.promise-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(3deg);
}

.promise-icon svg path:first-child {
  fill: rgba(245, 42, 49, .12);
}

.offer__promise p {
  margin: 0;
  color: #d4d4d8;
  font-size: 17px;
  line-height: 1.35;
}

.offer__bottom {
  display: grid;
  grid-template-columns: 322px 1fr;
  gap: 25px;
  align-items: end;
  margin-top: 48px;
}

.offer__bottom > *,
.business__grid > *,
.contact__panel > *,
.lead-form > * {
  min-width: 0;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 30px 26px;
  border-radius: 23px;
  background: #505155;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead-form input {
  width: 100%;
  height: var(--form-control-height);
  padding: 0 28px;
  border: 1px solid #ddd;
  border-radius: 13px;
  outline: none;
  color: #222;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.lead-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(245,42,49,.14);
}

.lead-form .button {
  width: 100%;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
}
.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.form-status.is-visible { display: block; }
.form-status.is-error {
  color: #fff;
  background: rgba(134, 0, 8, .62);
}
.form-status.is-success {
  color: #fff;
  background: rgba(21, 105, 58, .7);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.button.is-loading {
  cursor: wait !important;
  filter: saturate(.75);
}

.present__art {
  position: relative;
  height: 170px;
}

.present__art img {
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 3px;
  width: 250px;
  height: 187px;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(0,0,0,.3));
  transform-origin: 48% 72%;
  animation: laptop-float 4.2s ease-in-out infinite;
  will-change: transform;
}

.present__art:hover img {
  animation-duration: 2.6s;
}

@keyframes laptop-float {
  0%, 100% {
    transform: translateY(0) rotate(-1.4deg);
  }
  25% {
    transform: translateY(-4px) rotate(.8deg);
  }
  52% {
    transform: translateY(-7px) rotate(1.6deg);
  }
  76% {
    transform: translateY(-3px) rotate(-.4deg);
  }
}

.present__circle {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: var(--red);
}

.present__circle--large {
  top: -8px;
  left: 2px;
  width: 118px;
  height: 118px;
}

.present__circle--small {
  right: 4px;
  bottom: 4px;
  width: 64px;
  height: 64px;
  background: #d40712;
}

.present p { margin: 4px 0 0; color: #d8d8dc; line-height: 1.35; }
.present p strong { color: var(--red); font-size: 17px; }

.business {
  position: relative;
  min-height: 790px;
  padding: 78px 0 48px;
  overflow: hidden;
  overflow: clip;
}

.dot-field {
  position: absolute;
  width: 520px;
  height: 520px;
  opacity: .32;
  background-image: radial-gradient(#f5a2a6 3px, transparent 3.8px);
  background-size: 17px 17px;
  mask-image: radial-gradient(ellipse at center, #000 17%, transparent 72%);
}

.dot-field--left { left: -165px; bottom: -55px; }
.dot-field--right { right: -105px; top: -55px; }

.section-heading { position: relative; z-index: 1; text-align: center; }
.section-heading h2 { font-size: clamp(38px, 3.2vw, 50px); }
.section-heading h2 span { display: inline; }

.section-heading > span {
  display: inline-block;
  margin-top: 18px;
  padding: 18px 42px;
  border-radius: 20px;
  color: #fff;
  background: var(--red);
  font-size: 27px;
  font-weight: 700;
}

.business__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(245px, 1fr) 430px minmax(245px, 1fr);
  grid-template-rows: 220px 220px;
  column-gap: 32px;
  row-gap: 4px;
  align-items: start;
  margin-top: 48px;
}

.fact {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: 18px;
  font-size: 16px;
  line-height: 1.4;
}

.fact p { margin: 0; }
.fact strong { color: var(--red); font-weight: 800; }

.fact--one, .fact--three { border-left: 3px solid var(--red); }
.fact--two, .fact--four { border-right: 3px solid var(--red); text-align: right; }
.fact--one { grid-column: 1; grid-row: 1; align-self: start; }
.fact--two { grid-column: 3; grid-row: 1; align-self: center; }
.fact--three { grid-column: 1; grid-row: 2; align-self: end; }
.fact--four { grid-column: 3; grid-row: 2; align-self: end; }

.business__photo {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 430px;
  height: 430px;
}

.business__main-photo {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 335px;
  height: 335px;
  object-fit: cover;
  object-position: center;
  border: 7px solid #fff;
  border-radius: 50%;
  filter: drop-shadow(0 12px 12px rgba(0,0,0,.15));
  transform-origin: 52% 55%;
  animation: circle-drift-main 5.8s ease-in-out infinite;
  will-change: transform;
}

.business__people-photo {
  position: absolute;
  z-index: 2;
  top: 1px;
  right: 2px;
  width: 205px;
  height: 205px;
  border: 7px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 45%;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,.13));
  transform-origin: 50% 58%;
  animation: circle-drift-side 5.1s ease-in-out infinite .35s;
  will-change: transform;
}

.business__logo {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 4px;
  width: 103px;
  height: 103px;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 50%;
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.18));
  animation: circle-drift-logo 4.7s ease-in-out infinite .7s;
  will-change: transform;
}

.ring {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 13px solid var(--red);
  background: #fff;
}

.ring--large {
  width: 82px;
  height: 82px;
  right: 43px;
  bottom: 5px;
  border-width: 12px;
  animation: ring-breathe 3.8s ease-in-out infinite;
}

.ring--small {
  width: 22px;
  height: 22px;
  right: 6px;
  bottom: 82px;
  border: 0;
  background: #93000a;
  animation: ring-breathe-small 3.2s ease-in-out infinite .45s;
}

@keyframes circle-drift-main {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.35deg); }
  50% { transform: translate3d(3px, -7px, 0) rotate(.55deg); }
}

@keyframes circle-drift-side {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(.8deg); }
  50% { transform: translate3d(-5px, 6px, 0) rotate(-1deg); }
}

@keyframes circle-drift-logo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(3px, -5px, 0) rotate(1.2deg); }
}

@keyframes ring-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.045); }
}

@keyframes ring-breathe-small {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3px, -4px) scale(1.12); }
}

.scroll-cue {
  position: relative;
  display: block;
  width: 34px;
  height: 30px;
  margin: 13px auto 0;
  animation: arrow-bob 1.9s ease-in-out infinite;
  will-change: transform;
}

.scroll-cue span {
  position: absolute;
  left: 7px;
  width: 18px;
  height: 18px;
  border-right: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  transform: rotate(45deg);
}
.scroll-cue span:last-child { top: 9px; }

@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.contact { padding-bottom: 0; }

.contact__card {
  width: 100%;
  max-width: 100%;
  padding: 42px 64px 52px;
  border-radius: 48px 48px 0 0;
  background: var(--cream);
  text-align: center;
}

.contact__card > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 32px;
  line-height: 1.3;
}

.keep-together { white-space: nowrap; }

.contact h2 { font-size: clamp(27px, 2.7vw, 37px); }

.contact__panel {
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: 18px;
  margin-top: 26px;
  padding: 38px;
  border-radius: 25px;
  background: var(--red-dark);
  overflow: hidden;
}

.contact__panel > img {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 80%;
}

.lead-form--wide {
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: transparent;
}

.lead-form--wide input { height: var(--form-control-height); }
.lead-form--wide .button {
  grid-column: 1 / 3;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  padding: 16px 22px;
  border-radius: 14px;
  color: #fff;
  background: #202124;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .3s ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 1800px) {
  .hero__man-track {
    right: clamp(330px, 18vw, 520px);
  }
}

@media (max-width: 1100px) {
  .container { width: min(100% - 36px, 960px); }
  .hero { min-height: 940px; }
  .hero__man-track { right: -110px; bottom: -555px; width: 665px; }
  .offer { width: 690px; padding: 40px 46px 42px; }
  .offer h1 { font-size: 42px; }
  .offer__bottom { grid-template-columns: 290px 1fr; gap: 18px; }
  .business { min-height: auto; }
  .business__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 420px auto;
    gap: 30px 34px;
  }
  .fact--one { grid-column: 1; grid-row: 1; }
  .fact--two { grid-column: 2; grid-row: 1; align-self: start; }
  .business__photo {
    grid-column: 1 / 3;
    grid-row: 2;
    width: 430px;
    height: 420px;
    margin: auto;
  }
  .fact--three { grid-column: 1; grid-row: 3; align-self: start; }
  .fact--four { grid-column: 2; grid-row: 3; align-self: start; }
  .contact__panel { grid-template-columns: 40% 1fr; padding: 28px; }
}

@media (max-width: 900px) {
  :root { --form-control-height: 52px; }
  .container { width: min(100% - 30px, 720px); }
  .hero {
    min-height: auto;
    padding-bottom: 46px;
  }
  .hero::after {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(0,0,0,.58) 0 42%, rgba(0,0,0,.08) 78%),
      linear-gradient(180deg, transparent 0 64%, #090a0b 92%);
  }
  .hero__visual {
    inset: -25px 0 auto;
    height: 710px;
    background-position: 65% top;
  }
  .hero__man-track {
    z-index: 6;
    top: 76px;
    right: -58px;
    bottom: auto;
    width: 505px;
  }
  .header { padding-top: 26px; }
  .brand small {
    display: block;
    font-size: 12px;
  }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 20px; }
  .button--small {
    min-height: 43px;
    padding-inline: 20px;
    font-size: 12px;
  }
  .hero__content {
    z-index: 4;
    padding-top: 48px;
  }
  .offer {
    width: min(76%, 560px);
    padding: 30px 27px;
    border-radius: 27px;
  }
  .offer h1 {
    font-size: clamp(30px, 4.55vw, 37px);
    line-height: 1.17;
  }
  .offer h1 > span { white-space: nowrap; }
  .offer__promise {
    gap: 14px;
    margin-top: 21px;
    padding-top: 20px;
  }
  .offer__promise p { font-size: 14px; }
  .offer__bottom {
    grid-template-columns: minmax(215px, 1fr) minmax(180px, .82fr);
    gap: 13px;
    margin-top: 27px;
  }
  .lead-form { padding: 17px; }
  .lead-form input { height: var(--form-control-height); padding-inline: 18px; }
  .lead-form .button {
    height: var(--form-control-height);
    min-height: var(--form-control-height);
  }
  .present__art {
    height: 132px;
    transform: scale(.67);
    transform-origin: left bottom;
  }
  .present p {
    margin-top: -8px;
    font-size: 12px;
  }
  .business { padding: 62px 0 45px; }
  .section-heading h2 {
    max-width: 680px;
    margin-inline: auto;
    font-size: clamp(34px, 6vw, 44px);
    line-height: 1.15;
  }
  .section-heading > span {
    padding: 14px 30px;
    border-radius: 17px;
    font-size: 21px;
  }
  .business__grid { margin-top: 42px; }
  .fact { font-size: 15px; }
  .contact__card {
    padding: 36px 28px 42px;
    border-radius: 36px 36px 0 0;
  }
  .contact__panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .contact__panel > img { height: 190px; }
}

@media (max-width: 680px) {
  :root { --form-control-height: 46px; }
  .container { width: min(100% - 24px, 520px); }
  .hero {
    min-height: 0;
    padding-bottom: 24px;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.62) 0 45%, rgba(0,0,0,.08) 82%),
      linear-gradient(180deg, transparent 0 68%, #090a0b 94%);
  }
  .brand small {
    display: block;
    max-width: 145px;
    font-size: 10px;
    line-height: 1.2;
  }
  .hero__visual {
    inset: -20px 0 auto;
    height: 720px;
    background-position: 66% top;
  }
  .hero__man-track {
    top: 104px;
    right: -118px;
    width: 360px;
  }
  .hero__content { padding-top: 34px; }
  .offer {
    width: min(84%, 430px);
    padding: 24px 18px 25px;
    border-radius: 24px;
  }
  .offer h1 {
    font-size: clamp(22px, 5.15vw, 28px);
    line-height: 1.16;
  }
  .offer h1 > span { white-space: nowrap; }
  .offer__dash { width: 42px; height: 5px; margin-bottom: 16px; }
  .offer__promise {
    gap: 12px;
    margin-top: 19px;
    padding-top: 18px;
  }
  .offer__promise span { flex: 0 0 28px; width: 28px; height: 28px; }
  .offer__promise p { font-size: 12px; }
  .offer__bottom {
    grid-template-columns: minmax(165px, 1fr) minmax(135px, .82fr);
    gap: 10px;
    margin-top: 22px;
  }
  .lead-form { padding: 13px; border-radius: 18px; }
  .lead-form input {
    height: var(--form-control-height);
    padding-inline: 14px;
    border-radius: 10px;
    font-size: 13px;
  }
  .lead-form .button {
    height: var(--form-control-height);
    min-height: var(--form-control-height);
    padding-inline: 12px;
    font-size: 13px;
  }
  .present { display: block; min-height: 170px; }
  .present__art {
    height: 138px;
    transform: scale(.9);
    transform-origin: left top;
  }
  .present__art img { top: -18px; left: 8px; }
  .present p {
    margin: -5px 0 0;
    font-size: 10px;
    line-height: 1.28;
  }
  .present p strong { font-size: 12px; }
  .business { padding-top: 52px; }
  .section-heading h2 { font-size: clamp(31px, 8vw, 39px); }
  .section-heading h2 span { display: block; }
  .section-heading > span {
    margin-top: 15px;
    padding: 12px 22px;
    font-size: 18px;
  }
  .business__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 25px;
    margin-top: 38px;
  }
  .fact {
    padding: 0 0 0 16px;
    border: 0;
    border-left: 3px solid var(--red);
    font-size: 16px;
    text-align: left;
  }
  .fact--one { grid-column: 1; grid-row: 1; }
  .fact--two { grid-column: 1; grid-row: 2; }
  .business__photo {
    grid-column: 1;
    grid-row: 3;
    width: 360px;
    height: 365px;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
  }
  .fact--three { grid-column: 1; grid-row: 4; }
  .fact--four { grid-column: 1; grid-row: 5; }
  .business__main-photo { width: 290px; height: 290px; }
  .business__people-photo { width: 165px; height: 165px; }
  .business__logo { width: 88px; height: 88px; }
  .ring--large { right: 28px; width: 72px; height: 72px; }
  .ring--small { right: 2px; bottom: 72px; }
  .scroll-cue { margin-top: 20px; }
  .dot-field { opacity: .2; }
  .contact { width: 100%; }
  .contact__card {
    padding: 32px 18px 34px;
    border-radius: 30px 30px 0 0;
  }
  .contact__card > p { font-size: 22px; }
  .contact h2 { font-size: 29px; line-height: 1.2; }
  .contact__panel { padding: 18px; border-radius: 20px; }
  .contact__panel > img { height: 145px; }
  .lead-form--wide {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .lead-form--wide .button { grid-column: auto; }
}

@media (max-width: 430px) {
  :root { --form-control-height: 43px; }
  .header { gap: 12px; }
  .brand { gap: 9px; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 18px; }
  .brand small {
    max-width: 115px;
    font-size: 8px;
  }
  .button--small {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 10px;
  }
  .hero {
    min-height: 0;
  }
  .hero__visual { inset: -15px 0 auto; height: 680px; }
  .hero__man-track {
    top: 108px;
    right: -120px;
    width: 320px;
    max-width: none;
  }
  .hero__content { padding-top: 30px; }
  .offer {
    width: 91%;
    padding: 21px 14px 22px;
  }
  .offer h1 { font-size: clamp(19px, 5.6vw, 23px); }
  .offer__promise p { font-size: 11px; }
  .offer__bottom {
    grid-template-columns: minmax(150px, 1fr) minmax(115px, .76fr);
    gap: 8px;
  }
  .lead-form { padding: 11px; }
  .lead-form input { height: var(--form-control-height); padding-inline: 12px; font-size: 12px; }
  .lead-form .button {
    height: var(--form-control-height);
    min-height: var(--form-control-height);
    font-size: 12px;
  }
  .present { min-height: 155px; }
  .present__art {
    height: 125px;
    transform: scale(.78);
  }
  .present__art img { top: -20px; left: 5px; }
  .present p { margin: -8px 0 0; font-size: 9px; }
  .present p strong { font-size: 11px; }
  .section-heading h2 { font-size: 30px; }
  .section-heading > span {
    width: 100%;
    padding-inline: 14px;
    font-size: 16px;
  }
  .business__photo { width: 320px; height: 325px; }
  .business__main-photo { width: 258px; height: 258px; }
  .business__people-photo { width: 145px; height: 145px; }
  .business__logo { width: 78px; height: 78px; }
  .ring--large { right: 23px; bottom: 0; width: 65px; height: 65px; border-width: 10px; }
  .ring--small { bottom: 65px; }
  .contact__panel > img { height: 120px; }
  .toast { left: 12px; right: 12px; text-align: center; }
}

.numbers-stack {
  --stack-card-height: clamp(300px, 38vh, 390px);
  --stack-card-width: clamp(430px, 39vw, 590px);
  --stack-header-height: 76px;
  position: relative;
  height: 400vh;
  background: #130b0c;
}

.numbers-stack__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.numbers-stack__backdrop {
  position: absolute;
  inset: clamp(18px, 2.2vw, 36px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: clamp(28px, 3vw, 48px);
  background:
    radial-gradient(circle at 12% 30%, rgba(255,105,111,.2), transparent 31%),
    radial-gradient(circle at 82% 78%, rgba(102,16,23,.68), transparent 42%),
    linear-gradient(125deg, #7f3035 0%, #612328 48%, #411419 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 28px 80px rgba(0,0,0,.34);
}

.numbers-stack__backdrop::before,
.numbers-stack__backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.numbers-stack__backdrop::before {
  top: 12%;
  right: 7%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 0 0 48px rgba(255,255,255,.025),
    0 0 0 96px rgba(255,255,255,.018);
}

.numbers-stack__backdrop::after {
  left: 2%;
  bottom: 4%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245,35,47,.24) 0 4%, transparent 5%) 0 0 / 24px 24px;
  opacity: .52;
}

.numbers-stack__stage {
  position: relative;
  z-index: 1;
  height: 100%;
}

.numbers-stack__heading {
  position: absolute;
  z-index: 12;
  top: clamp(42px, 6vh, 76px);
  left: 50%;
  text-align: center;
  color: #fff;
  transform: translateX(-50%);
}

.numbers-stack__heading h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(35px, 3.2vw, 58px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.numbers-stack__heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  margin-top: 12px;
  padding: 7px 25px 9px;
  border-radius: 12px;
  background: #171719;
  font-family: "Oswald", sans-serif;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.numbers-stack__man {
  position: absolute;
  z-index: 9;
  top: 145px;
  bottom: auto;
  left: 4%;
  width: min(54vw, 760px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(18px 24px 30px rgba(20,0,2,.28));
}

.numbers-stack__cards {
  position: absolute;
  z-index: 6;
  top: clamp(155px, 18vh, 190px);
  right: 3%;
  left: auto;
  width: var(--stack-card-width);
  height: var(--stack-card-height);
  transform: none;
  perspective: 1100px;
}

.number-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--stack-card-height);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: #171719;
  color: #fff;
  box-shadow: 0 26px 55px rgba(25,0,3,.34);
  transform-origin: 50% 10%;
  will-change: transform;
}

.number-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--stack-header-height);
  margin: 0;
  border-radius: 20px 20px 0 0;
  background:
    linear-gradient(105deg, #e10c1c 0%, #ff303f 42%, #ff747a 100%);
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 9px rgba(118,0,5,.22);
}

.number-card__body {
  display: flex;
  height: calc(100% - var(--stack-header-height));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 48px 42px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.035), transparent 42%),
    #171719;
}

.number-card__body::before {
  content: "";
  width: 48px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255,38,49,.46);
}

.number-card__body strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.number-card__body p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.42;
}

.numbers-stack__footer {
  position: absolute;
  z-index: 11;
  right: 3%;
  bottom: clamp(28px, 4vh, 50px);
  left: 3%;
  display: grid;
  grid-template-columns: minmax(245px, .85fr) minmax(230px, 1fr) minmax(330px, 1.12fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: 145px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(70,18,22,.72);
  box-shadow: 0 20px 42px rgba(22,0,2,.2);
  backdrop-filter: blur(12px);
}

.numbers-stack__model {
  position: relative;
  height: 142px;
  overflow: visible;
}

.numbers-stack__model-circle {
  position: absolute;
  top: 14px;
  left: 2px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff1727, #ad0712);
  box-shadow: 0 14px 25px rgba(37,0,2,.3);
}

.numbers-stack__phone {
  position: absolute;
  z-index: 1;
  top: -52px;
  left: 30px;
  width: 94px;
  height: 192px;
  filter: drop-shadow(12px 15px 14px rgba(0,0,0,.28));
  transform-origin: 50% 78%;
  animation: numbers-phone-sway 4.2s ease-in-out infinite;
  will-change: transform;
}

.numbers-stack__phone-screen {
  position: absolute;
  z-index: 1;
  top: 11px;
  left: 8px;
  width: 78px;
  height: 169px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

.numbers-stack__phone-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.numbers-stack__arrow {
  display: none;
}

.numbers-stack__arrow-line {
  stroke-dasharray: 3 6;
}

.numbers-stack__arrow-head {
  stroke-dasharray: none;
}

@keyframes numbers-phone-sway {
  0%, 100% { transform: rotate(-5deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-2deg) translate3d(1px, -4px, 0); }
}

.numbers-stack__copy {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1.42;
}

.numbers-stack__copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.13em;
}

.numbers-stack__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(30,0,2,.2);
}

.numbers-stack__form label {
  display: block;
}

.numbers-stack__form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.numbers-stack__form input {
  width: 100%;
  height: var(--form-control-height);
  padding: 0 15px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  color: #28282a;
  font: inherit;
}

.numbers-stack__form .button {
  grid-column: 1 / -1;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
  border: 0;
}

.numbers-stack__form .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

@media (min-width: 1800px) {
  .numbers-stack__sticky {
    height: 1000px;
    min-height: 0;
  }
  .numbers-stack__backdrop {
    top: 12px;
    right: 1.25vw;
    bottom: 12px;
    left: 1.25vw;
    height: auto;
    transform: none;
  }
  .numbers-stack__stage {
    top: 12px;
    width: min(1760px, calc(100% - 64px));
    height: 976px;
    max-width: none;
    transform: none;
  }
  .numbers-stack__heading { top: 38px; }
  .numbers-stack__heading h2 { font-size: 54px; }
  .numbers-stack__man {
    top: auto;
    bottom: 214px;
    left: 20%;
    width: 870px;
  }
  .numbers-stack__cards {
    top: 155px;
    right: calc((100% - min(1180px, calc(100% - 80px))) / 2);
    --stack-card-width: 590px;
    --stack-card-height: 350px;
  }
  .numbers-stack__footer {
    right: auto;
    bottom: 18px;
    left: 50%;
    width: min(1180px, calc(100% - 80px));
    min-height: 196px;
    grid-template-columns: minmax(225px, 0.75fr) minmax(260px, 1fr) minmax(330px, 1.05fr);
    gap: 24px;
    padding: 18px 20px;
    transform: translateX(-50%);
  }
}

@media (min-width: 1200px) and (max-width: 1799px) {
  .numbers-stack__heading { top: 54px; }
  .numbers-stack__man {
    top: 72px;
    left: 8%;
    width: min(58vw, 810px);
  }
  .numbers-stack__cards {
    top: 166px;
    right: 3%;
  }
  .numbers-stack__footer {
    bottom: 42px;
  }
  .numbers-stack__phone {
    left: 82px;
  }
  .numbers-stack__model-circle {
    left: 54px;
  }
  .numbers-stack__copy {
    transform: translateX(-36px);
  }
}

@media (min-width: 1300px) and (max-width: 1500px) and (min-height: 1050px) and (max-height: 1300px) {
  .numbers-stack {
    --stack-card-width: 520px;
    --stack-card-height: 340px;
    --stack-header-height: 68px;
  }
  .numbers-stack__sticky {
    height: 1000px;
    min-height: 0;
  }
  .numbers-stack__backdrop {
    inset: 24px;
  }
  .numbers-stack__stage {
    height: 1000px;
  }
  .numbers-stack__heading {
    top: 72px;
  }
  .numbers-stack__man {
    top: auto;
    bottom: 248px;
    left: 8%;
    width: 888px;
  }
  .numbers-stack__cards {
    top: 185px;
    right: 4%;
  }
  .numbers-stack__footer {
    right: 5%;
    bottom: 78px;
    left: 5%;
    min-height: 170px;
    padding-block: 14px;
  }
}

@media (min-width: 1200px) and (max-height: 840px) {
  .numbers-stack {
    --stack-card-height: 280px;
    --stack-header-height: 64px;
  }
  .numbers-stack__heading { top: 46px; }
  .numbers-stack__heading h2 { font-size: 40px; }
  .numbers-stack__heading > span {
    min-height: 34px;
    margin-top: 7px;
    font-size: 18px;
  }
  .numbers-stack__man {
    top: 132px;
    left: 5%;
    width: min(49vw, 650px);
  }
  .numbers-stack__cards { top: 136px; }
  .numbers-stack__footer {
    bottom: 38px;
    min-height: 118px;
    padding-block: 10px;
  }
  .numbers-stack__phone {
    top: -35px;
    width: 82px;
    height: 168px;
  }
  .numbers-stack__phone-screen {
    top: 10px;
    left: 7px;
    width: 68px;
    height: 147px;
  }
  .numbers-stack__arrow {
    top: 20px;
    left: 101px;
    width: 96px;
  }
}

@media (max-width: 1100px) {
  .numbers-stack {
    --stack-card-width: min(52vw, 500px);
    --stack-card-height: 300px;
    --stack-header-height: 68px;
  }
  .numbers-stack__man {
    top: 115px;
    bottom: auto;
    left: 1%;
    width: min(66vw, 650px);
  }
  .numbers-stack__cards {
    top: 170px;
    right: 4%;
    left: auto;
    transform: none;
  }
  .numbers-stack__footer {
    grid-template-columns: 160px minmax(210px, .8fr) minmax(290px, 1fr);
    gap: 15px;
  }
}

@media (max-width: 820px) {
  .numbers-stack {
    --stack-card-width: min(65vw, 480px);
    --stack-card-height: min(320px, 36vh);
    --stack-header-height: 62px;
  }
  .numbers-stack__sticky { min-height: 680px; }
  .numbers-stack__backdrop { inset: 10px; border-radius: 28px; }
  .numbers-stack__heading { top: 32px; }
  .numbers-stack__heading h2 { font-size: clamp(32px, 6vw, 47px); }
  .numbers-stack__man {
    top: 165px;
    bottom: auto;
    left: -10%;
    width: 62vw;
    opacity: .95;
  }
  .numbers-stack__cards {
    top: 155px;
    left: auto;
    right: 3%;
  }
  .number-card h3 { font-size: clamp(28px, 5vw, 40px); }
  .number-card__body { padding: 26px 32px 34px; }
  .number-card__body strong { font-size: clamp(23px, 4vw, 31px); }
  .number-card__body p { font-size: 15px; }
  .numbers-stack__footer {
    right: 3%;
    bottom: 25px;
    left: 3%;
    grid-template-columns: 105px 1fr;
    min-height: 128px;
    padding: 14px;
  }
  .numbers-stack__model { height: 105px; }
  .numbers-stack__model-circle { width: 88px; height: 88px; }
  .numbers-stack__phone {
    top: -35px;
    left: 20px;
    width: 72px;
    height: 148px;
  }
  .numbers-stack__phone-screen {
    top: 9px;
    left: 6px;
    width: 60px;
    height: 130px;
    border-radius: 9px;
  }
  .numbers-stack__arrow {
    top: 21px;
    left: 84px;
    width: 96px;
  }
  .numbers-stack__copy { display: none; }
  .numbers-stack__form { grid-template-columns: 1fr 1fr; padding: 10px; }
  .numbers-stack__form input { height: var(--form-control-height); font-size: 13px; }
  .numbers-stack__form .button {
    height: var(--form-control-height);
    min-height: var(--form-control-height);
    font-size: 13px;
  }
}

@media (min-width: 700px) and (max-width: 1100px) and (min-height: 900px) {
  .numbers-stack {
    background: #130b0c;
  }
  .numbers-stack__sticky {
    position: relative;
    top: auto;
    height: 820px;
    min-height: 0;
  }
  .numbers-stack__backdrop {
    inset: 12px;
  }
  .numbers-stack__stage {
    height: 820px;
  }
  .numbers-stack__heading {
    top: 28px;
  }
  .numbers-stack__man {
    top: auto;
    bottom: 238px;
    left: 1%;
  }
  .numbers-stack__cards {
    top: 145px;
  }
  .numbers-stack__footer {
    bottom: 72px;
    grid-template-columns: 105px minmax(190px, 0.8fr) minmax(290px, 1fr);
    gap: 14px;
  }
  .numbers-stack__copy {
    display: block;
    transform: none;
    font-size: 13px;
    line-height: 1.32;
  }
  .numbers-stack__copy strong {
    margin-bottom: 4px;
    font-size: 14px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) and (min-height: 1100px) {
  .numbers-stack__man {
    bottom: 252px;
    left: 2%;
    width: min(74vw, 690px);
  }
  .numbers-stack__copy {
    position: relative;
    left: 18px;
    max-width: 235px;
  }
}

@media (min-width: 700px) and (max-width: 820px) and (min-height: 900px) {
  .numbers-stack__sticky {
    height: 790px;
  }
  .numbers-stack__stage {
    height: 790px;
  }
  .numbers-stack__heading {
    top: 22px;
  }
  .numbers-stack__man {
    bottom: 238px;
    left: -1%;
    width: 68vw;
  }
  .numbers-stack__cards {
    top: 132px;
  }
  .numbers-stack__footer {
    right: 2%;
    bottom: 58px;
    left: 2%;
  }
}

@media (min-width: 700px) and (max-width: 780px) and (min-height: 900px) and (max-height: 1100px) {
  .numbers-stack__man {
    bottom: 222px;
    left: -2%;
    width: 74vw;
  }
  .numbers-stack__footer {
    bottom: 64px;
  }
}

@media (min-width: 781px) and (max-width: 820px) and (min-height: 1100px) {
  .numbers-stack__man {
    bottom: 212px;
  }
}

@media (max-width: 560px) {
  .numbers-stack {
    --stack-card-width: calc(100vw - 44px);
    --stack-card-height: clamp(250px, 35svh, 320px);
    --stack-header-height: 52px;
  }
  .numbers-stack__sticky {
    height: 100svh;
    min-height: 620px;
  }
  .numbers-stack__backdrop {
    inset: 7px;
    border-radius: 22px;
  }
  .numbers-stack__backdrop::before {
    top: 18%;
    right: -12%;
    width: 210px;
    height: 210px;
  }
  .numbers-stack__heading {
    top: clamp(20px, 3.33svh, 30px);
    width: calc(100% - 32px);
  }
  .numbers-stack__heading h2 {
    font-size: clamp(27px, 7.6vw, 36px);
    white-space: normal;
  }
  .numbers-stack__heading > span {
    min-width: 118px;
    min-height: 32px;
    margin-top: 8px;
    font-size: 16px;
  }
  .numbers-stack__man {
    display: none;
  }
  .numbers-stack__cards {
    z-index: 9;
    top: clamp(112px, 16.94svh, 150px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .number-card {
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(25,0,3,.3);
  }
  .number-card h3 {
    padding-inline: 12px;
    border-radius: 15px 15px 0 0;
    font-size: clamp(23px, 7vw, 29px);
    text-align: center;
  }
  .number-card__body { padding: 17px 22px 22px; }
  .number-card__body::before {
    width: 38px;
    height: 4px;
    margin-bottom: 14px;
  }
  .number-card__body strong { font-size: clamp(20px, 6vw, 24px); }
  .number-card__body p { margin-top: 8px; font-size: 13px; }
  .numbers-stack__footer {
    right: 22px;
    bottom: clamp(14px, calc(33.6svh - 204px), 110px);
    left: 22px;
    display: block;
    min-height: 108px;
    padding: 12px 10px 10px;
    border-radius: 17px;
  }
  .numbers-stack__model { display: none; }
  .numbers-stack__copy {
    display: block;
    margin: 0 8px 12px;
    color: rgba(255,255,255,.76);
    font-size: 12.5px;
    line-height: 1.35;
    transform: none;
  }
  .numbers-stack__copy strong {
    margin-bottom: 3px;
    font-size: 13.5px;
    line-height: 1.3;
  }
  .numbers-stack__form {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 8px;
    border-radius: 14px;
  }
  .numbers-stack__form input {
    padding-inline: 10px;
    font-size: 12px;
  }
  .numbers-stack__form .button { font-size: 12px; }
}

@media (max-width: 380px) {
  .numbers-stack {
    --stack-card-width: calc(100vw - 30px);
    --stack-card-height: 250px;
    --stack-header-height: 48px;
  }
  .numbers-stack__heading { top: 20px; }
  .numbers-stack__heading h2 { font-size: 26px; }
  .numbers-stack__heading > span {
    min-width: 105px;
    min-height: 29px;
    font-size: 15px;
  }
  .numbers-stack__cards {
    top: 112px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .number-card h3 { font-size: 23px; }
  .number-card__body strong { font-size: 20px; }
  .numbers-stack__footer {
    right: 15px;
    bottom: clamp(14px, calc(33.6svh - 204px), 110px);
    left: 15px;
  }
  .numbers-stack__copy {
    margin-inline: 6px;
    font-size: 11.5px;
  }
  .numbers-stack__copy strong { font-size: 12.5px; }
}

@media (max-height: 740px) and (min-width: 561px) {
  .numbers-stack {
    --stack-card-height: 260px;
    --stack-header-height: 58px;
  }
  .numbers-stack__sticky { min-height: 640px; }
  .numbers-stack__heading { top: 24px; }
  .numbers-stack__heading h2 { font-size: 36px; }
  .numbers-stack__heading > span {
    min-height: 34px;
    margin-top: 7px;
    font-size: 18px;
  }
  .numbers-stack__man {
    top: 126px;
    left: -8%;
    width: min(58vw, 540px);
  }
  .numbers-stack__cards { top: 126px; }
  .numbers-stack__footer {
    bottom: 18px;
    min-height: 112px;
    padding-block: 10px;
  }
}

/* Third screen without the presenter: larger centered cards on tablets and desktops. */
@media (min-width: 561px) {
  .offer h1,
  .section-heading h2,
  .numbers-stack__heading h2 {
    font-size: clamp(38px, 3.2vw, 50px);
  }

  .numbers-stack__man {
    display: none;
  }

  .numbers-stack__cards {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 561px) and (max-width: 1100px) {
  .numbers-stack {
    --stack-card-width: min(calc(100vw - 80px), 560px);
    --stack-card-height: clamp(300px, 31vh, 335px);
    --stack-header-height: 72px;
  }
}

@media (min-width: 561px) and (max-width: 1100px) and (max-height: 740px) {
  .numbers-stack {
    --stack-card-height: 275px;
    --stack-header-height: 60px;
  }
}

@media (min-width: 1101px) {
  .numbers-stack {
    --stack-card-width: clamp(620px, 48vw, 760px);
    --stack-card-height: clamp(350px, 42vh, 460px);
    --stack-header-height: 82px;
  }

  .numbers-stack__heading {
    top: 78px;
  }

  .numbers-stack__cards {
    top: 205px;
  }
}

@media (min-width: 1200px) and (max-height: 840px) {
  .numbers-stack {
    --stack-card-height: clamp(310px, 42vh, 350px);
    --stack-header-height: 70px;
  }

  .numbers-stack__cards {
    top: 195px;
  }
}

@media (min-width: 1800px) {
  .numbers-stack__heading {
    top: 54px;
  }

  .numbers-stack__cards {
    top: 181px;
  }
}

@media (min-width: 821px) and (max-width: 1000px) and (min-height: 1200px) {
  .numbers-stack__stage {
    transform: translateY(5%);
  }
}

.legacy-about {
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding: clamp(72px, 8vw, 118px) 0 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(245,42,49,.055), transparent 35%),
    #fff;
}

.legacy-about__content {
  position: relative;
  z-index: 1;
}

.legacy-about h2 {
  margin: 0;
  color: #171719;
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.13;
  text-align: center;
  text-transform: uppercase;
}

.legacy-about h2 span {
  display: block;
}

.legacy-about h2 em {
  color: var(--red);
  font-style: normal;
}

.legacy-about__text {
  width: min(960px, 100%);
  margin: clamp(48px, 6vw, 76px) auto 0;
}

.legacy-about__text p {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
  color: #252528;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.legacy-about__text p::before {
  content: "";
  position: absolute;
  top: .22em;
  bottom: .22em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--red);
}

.legacy-about__text p + p {
  margin-top: clamp(25px, 3vw, 38px);
}

.legacy-about__dots {
  position: absolute;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(245,42,49,.25) 0 3px, transparent 4px) 0 0 / 18px 18px;
  mask-image: radial-gradient(circle, #000 10%, transparent 69%);
  opacity: .35;
  pointer-events: none;
}

.legacy-about__dots--left {
  top: 4%;
  left: -130px;
}

.legacy-about__dots--right {
  right: -125px;
  bottom: -30px;
}

.legacy-about__carousel {
  --legacy-marquee-width: 1200px;
  --legacy-marquee-negative: -1200px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(260px, 23vw, 370px);
  margin-top: clamp(54px, 7vw, 90px);
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
  pointer-events: none;
}

.legacy-about__carousel::before,
.legacy-about__carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(55px, 7vw, 120px);
  height: auto;
  pointer-events: none;
}

.legacy-about__carousel::before {
  right: auto;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.legacy-about__carousel::after {
  right: 0;
  left: auto;
  bottom: 0;
  background: linear-gradient(90deg, transparent, #fff);
}

.legacy-about__track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  padding-right: clamp(24px, 3vw, 52px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
}

.legacy-about__carousel.is-ready .legacy-about__track--first {
  animation: legacy-about-marquee-first 30s linear infinite;
}

.legacy-about__carousel.is-ready .legacy-about__track--second {
  animation: legacy-about-marquee-second 30s linear infinite;
}

.legacy-about__object {
  flex: 0 0 auto;
  max-width: none;
  height: 78%;
  width: auto;
  object-fit: contain;
  opacity: .94;
  filter: drop-shadow(0 20px 24px rgba(59,24,25,.16));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@keyframes legacy-about-marquee-first {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--legacy-marquee-negative), 0, 0); }
}

@keyframes legacy-about-marquee-second {
  from { transform: translate3d(var(--legacy-marquee-width), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@supports (-webkit-touch-callout: none) {
  .legacy-about__object {
    -webkit-filter: none;
    filter: none;
  }
}

@media (max-width: 1100px) {
  .legacy-about__text {
    width: min(820px, 100%);
  }
  .legacy-about__carousel {
    height: 260px;
  }
  .legacy-about__object {
    height: 72%;
  }
}

@media (max-width: 680px) {
  .legacy-about {
    padding: 58px 0 0;
  }
  .legacy-about h2 {
    font-size: clamp(28px, 8vw, 36px);
    text-align: center;
  }
  .legacy-about__content {
    width: min(100% - 24px, 520px);
  }
  .legacy-about__text {
    width: min(100%, 430px);
    margin-top: 40px;
  }
  .legacy-about__text p {
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.5;
  }
  .legacy-about__text p + p {
    margin-top: 24px;
  }
  .legacy-about__dots {
    width: 260px;
    height: 260px;
    opacity: .22;
  }
  .legacy-about__carousel {
    display: block;
    height: 190px;
    margin-top: 42px;
  }
  .legacy-about__track {
    gap: 20px;
    padding-right: 20px;
    animation-duration: 24s;
  }
  .legacy-about__object {
    height: 68%;
    opacity: .8;
  }
}

.partnership {
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding: clamp(82px, 8vw, 126px) 0 clamp(88px, 9vw, 140px);
  color: #fff;
  background:
    radial-gradient(circle at 13% 24%, rgba(255,111,118,.2), transparent 31%),
    radial-gradient(circle at 84% 78%, rgba(94,10,18,.58), transparent 43%),
    linear-gradient(128deg, #823238 0%, #65252b 48%, #43151a 100%);
  isolation: isolate;
}

.partnership::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,.025) 18.1% 18.25%, transparent 18.35% 100%),
    radial-gradient(circle, rgba(255,138,143,.16) 0 2px, transparent 2.8px) 0 0 / 24px 24px;
  mask-image: radial-gradient(ellipse at center, transparent 22%, #000 88%);
  opacity: .35;
}

.partnership__glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(245,42,49,.13);
  filter: blur(110px);
  pointer-events: none;
}

.partnership__glow--one {
  top: 4%;
  left: -160px;
}

.partnership__glow--two {
  right: -170px;
  bottom: -70px;
}

.partnership__heading {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.partnership__heading > span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 20px 8px;
  border: 1px solid rgba(245,42,49,.4);
  border-radius: 999px;
  color: #ff747a;
  background: rgba(245,42,49,.08);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.partnership__heading h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: var(--site-heading-size);
  font-weight: 500;
  line-height: 1.06;
  text-transform: uppercase;
}

.partnership__heading > p {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
}

.partnership__viewport {
  margin-top: clamp(50px, 6vw, 82px);
  perspective: 1300px;
}

.partnership__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  transform: rotateX(var(--partnership-rotate-x, 0deg)) rotateY(var(--partnership-rotate-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .16s ease-out;
  will-change: transform;
}

.partnership-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: clamp(27px, 2.6vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    #151518;
  box-shadow:
    0 28px 60px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  transform: translateZ(0);
}

.partnership-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,42,49,.25), transparent 68%);
  pointer-events: none;
}

.partnership-card:hover {
  z-index: 2;
  border-color: rgba(245,42,49,.48);
  box-shadow:
    0 35px 80px rgba(0,0,0,.5),
    0 0 45px rgba(245,42,49,.11),
    inset 0 1px 0 rgba(255,255,255,.14);
  transform: translate3d(0, -12px, 32px);
}

.partnership-card--featured {
  border-color: rgba(245,42,49,.42);
  background:
    linear-gradient(145deg, rgba(245,42,49,.13), rgba(255,255,255,.025) 48%),
    #171518;
  transform: translate3d(0, -16px, 24px);
}

.partnership-card--featured:hover {
  transform: translate3d(0, -22px, 44px);
}

.partnership-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.partnership-card__index {
  color: rgba(255,255,255,.17);
  font: 500 54px/1 "Oswald", sans-serif;
}

.partnership-card__eyebrow {
  margin: 30px 0 4px;
  color: #ff656c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partnership-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, 3.7vw, 58px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.partnership-card strong {
  display: block;
  margin-top: 15px;
  color: rgba(255,255,255,.9);
  font-size: clamp(16px, 1.35vw, 20px);
}

.partnership-card > p {
  margin: 34px 0 40px;
  color: rgba(255,255,255,.61);
  font-size: 16px;
  line-height: 1.55;
}

.partnership-card__button {
  width: 100%;
  margin-top: auto;
}

.partnership__swipe-hint {
  display: none;
  margin: 20px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-align: center;
}

.partnership-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s ease, visibility .28s ease;
}

.partnership-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.partnership-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,5,.78);
  backdrop-filter: blur(9px);
}

.partnership-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
  max-height: calc(100svh - 32px);
  padding: 38px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(245,42,49,.18), transparent 35%),
    #171719;
  box-shadow: 0 34px 100px rgba(0,0,0,.6);
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.97);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}

.partnership-modal.is-open .partnership-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.partnership-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.partnership-modal__eyebrow {
  margin: 0;
  color: #ff656c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partnership-modal h2 {
  margin: 10px 50px 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.partnership-modal__package {
  margin: 16px 0 28px;
  color: rgba(255,255,255,.62);
  line-height: 1.4;
}

.partnership-modal__package strong {
  color: #fff;
}

.partnership-modal__form {
  display: grid;
  gap: 12px;
}

.partnership-modal__form label {
  display: grid;
  gap: 7px;
}

.partnership-modal__form label > span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}

.partnership-modal__form input,
.partnership-modal__form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.06);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.partnership-modal__form textarea {
  min-height: 95px;
  padding-block: 15px;
  resize: vertical;
}

.partnership-modal__form input::placeholder,
.partnership-modal__form textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.partnership-modal__form input:focus,
.partnership-modal__form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(245,42,49,.13);
}

body.is-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .partnership__cards {
    gap: 16px;
  }
  .partnership-card {
    min-height: 480px;
    padding: 26px;
  }
}

@media (max-width: 680px) {
  .partnership {
    padding: 68px 0 78px;
  }
  .partnership__heading h2 {
    font-size: clamp(35px, 10vw, 46px);
  }
  .partnership__heading > p {
    font-size: 16px;
  }
  .partnership__viewport {
    width: calc(100% + 24px);
    margin-top: 44px;
    margin-left: -12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    perspective: none;
  }
  .partnership__viewport::-webkit-scrollbar {
    display: none;
  }
  .partnership__cards {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 18px;
    transform: none !important;
  }
  .partnership-card,
  .partnership-card--featured {
    width: calc(100vw - 54px);
    min-height: 485px;
    scroll-snap-align: center;
    transform: none;
  }
  .partnership-card:hover,
  .partnership-card--featured:hover {
    transform: none;
  }
  .partnership__swipe-hint {
    display: block;
  }
  .partnership-modal {
    align-items: end;
    padding: 10px;
  }
  .partnership-modal__dialog {
    width: 100%;
    padding: 30px 20px 22px;
    border-radius: 24px 24px 18px 18px;
  }
  .partnership-modal h2 {
    font-size: 34px;
  }
}

.legacy-scroll {
  position: relative;
  height: 560svh;
  min-height: 3600px;
  overflow: clip;
  background: #faf8f7;
}

.legacy-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.98) 0 23%, rgba(255,255,255,.82) 45%, transparent 69%),
    linear-gradient(135deg, #fff 0%, #f8f5f4 42%, #f1ecea 100%);
}

.legacy-scroll__sticky::before,
.legacy-scroll__sticky::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.legacy-scroll__sticky::before {
  background:
    linear-gradient(112deg, transparent 0 17%, rgba(245,42,49,.08) 17.1% 17.35%, transparent 17.45% 100%),
    linear-gradient(68deg, transparent 0 82%, rgba(245,42,49,.07) 82.1% 82.35%, transparent 82.45% 100%);
  opacity: .8;
}

.legacy-scroll__sticky::after {
  background: radial-gradient(circle, rgba(245,42,49,.1) 0 2px, transparent 2.6px) 0 0 / 22px 22px;
  mask-image: radial-gradient(circle at center, transparent 0 42%, #000 76%, transparent 100%);
  opacity: .36;
}

.legacy-scroll__glow {
  position: absolute;
  z-index: -1;
  inset: 9% 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,42,49,.11), transparent 67%);
  filter: blur(35px);
  pointer-events: none;
}

.legacy-scroll__dots {
  position: absolute;
  z-index: 0;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,42,49,.34) 0 3px, transparent 4px) 0 0 / 18px 18px;
  mask-image: radial-gradient(circle, #000 12%, transparent 69%);
  opacity: .48;
  pointer-events: none;
}

.legacy-scroll__dots--left {
  top: 6%;
  left: -90px;
}

.legacy-scroll__dots--right {
  right: -70px;
  bottom: 2%;
}

.legacy-scroll__content {
  position: relative;
  z-index: 5;
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding-block: clamp(54px, 8vh, 92px) clamp(36px, 6vh, 68px);
}

.legacy-scroll__heading {
  align-self: start;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.legacy-scroll__heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 24px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 28px rgba(245,42,49,.24);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-scroll__heading h2 {
  margin: 17px 0 0;
  color: #171719;
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.legacy-scroll__heading h2 span {
  display: block;
}

.legacy-scroll__heading h2 em {
  color: var(--red);
  font-style: normal;
}

.legacy-scroll__copy {
  position: relative;
  align-self: start;
  width: min(720px, 62vw);
  min-height: 260px;
  margin: clamp(8px, 1.5vh, 18px) auto 0;
}

.legacy-scroll__paper {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(245,42,49,.18);
  border-radius: 32px;
  background: #fff;
  box-shadow:
    0 32px 80px rgba(63,28,29,.12),
    inset 0 1px 0 #fff;
}

.legacy-scroll__paragraph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 50px 42px;
  opacity: 0;
  text-align: center;
  transform: translate3d(0, 0, 0);
  will-change: opacity;
}

.legacy-scroll__paragraph.is-active {
  z-index: 2;
}

.legacy-scroll__paragraph p {
  max-width: 620px;
  margin: 0;
  color: #29282b;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 600;
  line-height: 1.48;
}

.legacy-scroll__progress {
  display: flex;
  align-self: end;
  justify-content: center;
  gap: 9px;
}

.legacy-scroll__progress span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(245,42,49,.24);
  transition: width .35s ease, background .35s ease, box-shadow .35s ease;
}

.legacy-scroll__progress span.is-active {
  width: 38px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(245,42,49,.38);
}

.legacy-scroll__object {
  position: absolute;
  z-index: 2;
  max-width: none;
  height: auto;
  opacity: .92;
  filter: drop-shadow(0 24px 28px rgba(59,24,25,.18));
  transform-origin: center;
  animation: legacy-object-float 6.8s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.legacy-scroll__object--tv {
  top: 6%;
  left: -9%;
  width: clamp(300px, 27vw, 520px);
}

.legacy-scroll__object--coffee {
  top: 4%;
  right: -4%;
  width: clamp(260px, 23vw, 440px);
  animation-delay: -1.7s;
  animation-duration: 7.7s;
}

.legacy-scroll__object--drill {
  bottom: 1%;
  left: -7%;
  width: clamp(330px, 30vw, 570px);
  animation-delay: -3.2s;
  animation-duration: 8.4s;
}

.legacy-scroll__object--console {
  right: -8%;
  bottom: -1%;
  width: clamp(310px, 27vw, 520px);
  animation-delay: -4.6s;
  animation-duration: 7.2s;
}

@keyframes legacy-object-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -11px, 0) rotate(1.1deg);
  }
}

@media (max-width: 1100px) {
  .legacy-scroll {
    height: 540svh;
    min-height: 3400px;
  }
  .legacy-scroll__content {
    width: min(100% - 40px, 820px);
    padding-block: 48px 38px;
  }
  .legacy-scroll__heading h2 {
    font-size: clamp(34px, 5.2vw, 46px);
  }
  .legacy-scroll__copy {
    width: min(640px, 72vw);
    min-height: 280px;
    margin-top: 8px;
  }
  .legacy-scroll__paper {
    min-height: 280px;
  }
  .legacy-scroll__paragraph {
    padding: 34px 40px 38px;
  }
  .legacy-scroll__object--tv { left: -18%; width: 42vw; }
  .legacy-scroll__object--coffee { right: -11%; width: 36vw; }
  .legacy-scroll__object--drill { left: -18%; width: 45vw; }
  .legacy-scroll__object--console { right: -16%; width: 42vw; }
}

@media (max-width: 680px) {
  .legacy-scroll {
    height: 520svh;
    min-height: 3000px;
  }
  .legacy-scroll__sticky {
    min-height: 620px;
  }
  .legacy-scroll__content {
    width: min(100% - 28px, 520px);
    padding-block: 30px 25px;
  }
  .legacy-scroll__heading {
    max-width: 430px;
  }
  .legacy-scroll__heading > span {
    min-height: 31px;
    padding: 6px 17px 7px;
    font-size: 12px;
  }
  .legacy-scroll__heading h2 {
    margin-top: 12px;
    font-size: clamp(27px, 7.2vw, 35px);
    line-height: 1.12;
  }
  .legacy-scroll__heading h2 br {
    display: none;
  }
  .legacy-scroll__copy {
    width: 100%;
    min-height: 280px;
    margin-top: 6px;
  }
  .legacy-scroll__paper {
    min-height: 280px;
    border-radius: 24px;
  }
  .legacy-scroll__paragraph {
    padding: 26px 23px 30px;
  }
  .legacy-scroll__paragraph p {
    font-size: clamp(16px, 4.25vw, 19px);
    line-height: 1.42;
  }
  .legacy-scroll__object--tv {
    top: 12%;
    left: -25%;
    width: 55vw;
    opacity: .35;
  }
  .legacy-scroll__object--coffee {
    top: 13%;
    right: -20%;
    width: 48vw;
    opacity: .38;
  }
  .legacy-scroll__object--drill {
    display: none;
  }
  .legacy-scroll__object--console {
    right: -23%;
    bottom: 1%;
    width: 54vw;
    opacity: .3;
  }
  .legacy-scroll__dots {
    width: 240px;
    height: 240px;
    opacity: .27;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__man-track { transform: none; }
  .hero__visual { transform: scale(1.04); }
  .hero__fade { opacity: .16; }
  .numbers-stack { height: auto; }
  .numbers-stack__sticky {
    position: relative;
    height: auto;
    min-height: 1100px;
  }
  .numbers-stack__cards {
    position: relative;
    top: 180px;
    display: grid;
    gap: 16px;
    height: auto;
  }
  .number-card {
    position: relative;
    height: 280px;
    transform: none !important;
  }
  .legacy-scroll {
    height: auto;
    min-height: 0;
  }
  .legacy-scroll__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding-block: 60px;
  }
  .legacy-scroll__content {
    display: block;
    height: auto;
  }
  .legacy-scroll__copy {
    display: grid;
    width: min(760px, 100%);
    min-height: 0;
    gap: 16px;
  }
  .legacy-scroll__paper {
    display: grid;
    min-height: 0;
    gap: 16px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .legacy-scroll__paragraph {
    position: relative;
    border: 1px solid rgba(245,42,49,.18);
    border-radius: 24px;
    background: #fff;
    opacity: 1 !important;
    transform: none !important;
  }
  .legacy-scroll__progress {
    display: none;
  }
}

@media (min-width: 681px) {
  .offer h1,
  .section-heading h2,
  .numbers-stack__heading h2,
  .legacy-about h2,
  .partnership__heading h2 {
    font-size: var(--site-heading-size);
  }

  .business {
    padding-top: 78px;
  }

  .numbers-stack__heading {
    top: 78px;
  }

  .legacy-about,
  .partnership {
    padding-top: 78px;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .numbers-stack__cards {
    top: 205px;
  }
}

@media (min-width: 1800px) {
  .numbers-stack__heading {
    top: 66px;
  }
}

@media (min-width: 821px) and (max-width: 1000px) and (min-height: 1200px) {
  .numbers-stack__heading {
    top: 37px;
  }
}

/* Sixth screen: vertical scroll drives a horizontal store gallery. */
.store-gallery {
  --gallery-card-width: min(76vw, 1120px);
  position: relative;
  height: 500vh;
  min-height: 3600px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 28%, rgba(245,42,49,.17), transparent 34%),
    linear-gradient(180deg, #121113 0%, #080809 100%);
  overflow: clip;
}

.store-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
  pointer-events: none;
}

.store-gallery__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  padding: 78px 0 24px;
  overflow: hidden;
}

.store-gallery__heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  text-align: center;
}

.store-gallery__heading h2 {
  margin: 0;
  max-width: 900px;
  font-family: "Oswald", sans-serif;
  font-size: var(--site-heading-size);
  line-height: 1.05;
  text-transform: uppercase;
}

.store-gallery__heading h2 em {
  color: var(--red);
  font-style: normal;
}

.store-gallery__status {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  letter-spacing: .08em;
}

.store-gallery__status span:first-child {
  color: #fff;
}

.store-gallery__status i {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(245,42,49,.24));
}

.store-gallery__viewport {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.store-gallery__track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(28px, 3vw, 58px);
  width: max-content;
  padding-inline: max(24px, calc((100vw - var(--gallery-card-width)) / 2));
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.store-gallery__slide {
  position: relative;
  flex: 0 0 var(--gallery-card-width);
  height: clamp(390px, 59svh, 650px);
  margin: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(24px, 2.2vw, 38px);
  background: #19191b;
  box-shadow: 0 35px 80px rgba(0,0,0,.52);
  opacity: .5;
  overflow: hidden;
  transform: scale(.94);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.75,.2,1), border-color .45s ease;
  backface-visibility: hidden;
}

.store-gallery__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(4,4,5,.78) 100%),
    linear-gradient(90deg, rgba(245,42,49,.08), transparent 28%);
  pointer-events: none;
}

.store-gallery__slide.is-active {
  z-index: 2;
  border-color: rgba(245,42,49,.7);
  opacity: 1;
  transform: scale(1);
}

.store-gallery__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.store-gallery__slide:nth-child(3) img {
  object-position: center 45%;
}

.store-gallery__slide figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(18px, 2.4vw, 34px);
  left: clamp(22px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 700;
}

.store-gallery__slide figcaption span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(245,42,49,.35);
}

.store-gallery__progress {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  height: 3px;
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.store-gallery__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9c0007, #ff6268);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (max-width: 1100px) {
  .store-gallery {
    --gallery-card-width: min(82vw, 860px);
  }

  .store-gallery__sticky {
    padding-top: 58px;
  }

  .store-gallery__heading {
    width: min(100% - 40px, 920px);
  }

  .store-gallery__heading h2 {
    max-width: 720px;
    font-size: clamp(34px, 5.2vw, 46px);
  }

  .store-gallery__slide {
    height: clamp(390px, 57svh, 590px);
  }
}

@media (min-width: 681px) and (max-width: 900px) and (max-height: 800px) {
  .store-gallery__sticky {
    padding-top: 36px;
  }

  .store-gallery__heading {
    display: block;
    min-height: 106px;
  }

  .store-gallery__heading h2 {
    max-width: 680px;
    margin-inline: auto;
    font-size: clamp(34px, 5.2vw, 41px);
  }

  .store-gallery__status {
    position: static;
    justify-content: center;
    margin-top: 14px;
  }

  .store-gallery__slide {
    height: min(52svh, 470px);
  }
}

@media (max-width: 680px) {
  .store-gallery {
    --gallery-card-width: calc(100vw - 32px);
    min-height: 3000px;
  }

  .store-gallery__sticky {
    min-height: 600px;
    padding: 30px 0 18px;
  }

  .store-gallery__heading {
    display: block;
    width: min(100% - 32px, 520px);
    min-height: 92px;
  }

  .store-gallery__heading h2 {
    max-width: 390px;
    margin-inline: auto;
    font-size: clamp(28px, 8.2vw, 37px);
    line-height: 1.08;
  }

  .store-gallery__status {
    position: static;
    justify-content: center;
    margin-top: 13px;
    font-size: 14px;
  }

  .store-gallery__status i {
    width: 28px;
  }

  .store-gallery__track {
    gap: 16px;
    padding-inline: 16px;
  }

  .store-gallery__slide {
    height: min(58svh, 520px);
    min-height: 360px;
    border-radius: 24px;
    opacity: .58;
    transform: scale(.965);
  }

  .store-gallery__slide:nth-child(3) {
    background: #151517;
  }

  .store-gallery__slide:nth-child(3) img {
    object-fit: cover;
    object-position: 72% center;
  }

  .store-gallery__slide figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    gap: 11px;
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .store-gallery__slide figcaption span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 15px;
  }

  .store-gallery__progress {
    width: calc(100% - 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-gallery {
    height: auto !important;
    min-height: 0;
    padding-block: 50px 28px;
  }

  .store-gallery__sticky {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .store-gallery__viewport {
    margin-top: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .store-gallery__viewport::-webkit-scrollbar {
    display: none;
  }

  .store-gallery__track {
    transform: none !important;
  }

  .store-gallery__slide {
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
  }

  .store-gallery__progress {
    display: none;
  }
}

/* Seventh screen: the opening process as a guided route. */
.opening-roadmap {
  position: relative;
  padding: 78px 0 96px;
  background:
    radial-gradient(circle at 50% 12%, rgba(245,42,49,.055), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fffafa 100%);
  overflow: hidden;
  overflow: clip;
}

.opening-roadmap__content {
  position: relative;
  z-index: 2;
}

.opening-roadmap__dots {
  position: absolute;
  width: 460px;
  height: 460px;
  opacity: .28;
  background-image: radial-gradient(#f5a2a6 3px, transparent 3.8px);
  background-size: 17px 17px;
  mask-image: radial-gradient(ellipse at center, #000 12%, transparent 70%);
  pointer-events: none;
}

.opening-roadmap__dots--left {
  top: 18%;
  left: -190px;
}

.opening-roadmap__dots--right {
  right: -180px;
  bottom: 8%;
}

.opening-roadmap__heading {
  text-align: center;
}

.opening-roadmap__heading h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: var(--site-heading-size);
  line-height: 1.08;
  text-transform: uppercase;
}

.opening-roadmap__heading p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.opening-roadmap__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 82px;
  max-width: 1040px;
  margin: 64px auto 0;
  padding: 0;
  list-style: none;
}

.opening-roadmap__list::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(245,42,49,.62) 0 8px,
    transparent 8px 17px
  );
  transform: translateX(-1px);
}

.opening-roadmap__item {
  position: relative;
  min-width: 0;
}

.opening-roadmap__item:nth-child(odd) {
  grid-column: 1;
}

.opening-roadmap__item:nth-child(even) {
  grid-column: 2;
  transform: translateY(34px);
}

.opening-roadmap__item:nth-child(even).is-visible {
  transform: translateY(34px);
}

.opening-roadmap__item::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(245,42,49,.13);
  transform: translateY(-50%);
}

.opening-roadmap__item:nth-child(odd)::after {
  right: -48px;
}

.opening-roadmap__item:nth-child(even)::after {
  left: -48px;
}

.opening-roadmap__card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 108px;
  padding: 20px 25px 20px 18px;
  border: 1px solid rgba(156,0,7,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(81,24,28,.08);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.opening-roadmap__item:nth-child(odd) .opening-roadmap__card {
  border-top-right-radius: 8px;
}

.opening-roadmap__item:nth-child(even) .opening-roadmap__card {
  border-top-left-radius: 8px;
}

.opening-roadmap__card:hover {
  border-color: rgba(245,42,49,.34);
  box-shadow: 0 24px 55px rgba(81,24,28,.13);
  transform: translateY(-4px);
}

.opening-roadmap__card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #ff5158, #d90812);
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(245,42,49,.25);
}

.opening-roadmap__card p {
  margin: 0;
  color: #29292d;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 650;
  line-height: 1.4;
}

.opening-roadmap__footer {
  max-width: 820px;
  margin: 102px auto 0;
  padding: 38px 42px;
  border: 1px solid rgba(245,42,49,.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(245,42,49,.08), transparent 33%),
    #fff;
  box-shadow: 0 24px 65px rgba(81,24,28,.1);
  text-align: center;
}

.opening-roadmap__footer p {
  margin: 0 auto;
  max-width: 690px;
  color: #39393e;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
}

.opening-roadmap__footer strong {
  color: var(--red);
  font-weight: 800;
}

.opening-roadmap__button {
  width: min(100%, 470px);
  min-height: 67px;
  margin-top: 27px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) {
  .opening-roadmap {
    padding: 78px 0 76px;
  }

  .opening-roadmap__list {
    gap: 16px 62px;
    margin-top: 52px;
  }

  .opening-roadmap__item:nth-child(odd)::after {
    right: -38px;
  }

  .opening-roadmap__item:nth-child(even)::after {
    left: -38px;
  }

  .opening-roadmap__card {
    grid-template-columns: 48px 1fr;
    min-height: 102px;
    padding: 17px 18px 17px 14px;
    border-radius: 23px;
  }

  .opening-roadmap__card span {
    width: 39px;
    height: 39px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .opening-roadmap {
    padding: 52px 0 58px;
  }

  .opening-roadmap__heading h2 {
    font-size: clamp(31px, 8vw, 39px);
  }

  .opening-roadmap__heading h2 br {
    display: none;
  }

  .opening-roadmap__heading p {
    margin-top: 15px;
    font-size: 16px;
  }

  .opening-roadmap__list {
    display: block;
    margin-top: 38px;
    padding-left: 31px;
  }

  .opening-roadmap__list::before {
    top: 30px;
    bottom: 30px;
    left: 8px;
  }

  .opening-roadmap__item,
  .opening-roadmap__item:nth-child(even),
  .opening-roadmap__item:nth-child(even).is-visible {
    margin-bottom: 14px;
    transform: none;
  }

  .opening-roadmap__item:last-child {
    margin-bottom: 0;
  }

  .opening-roadmap__item:nth-child(odd)::after,
  .opening-roadmap__item:nth-child(even)::after {
    top: 50%;
    right: auto;
    left: -30px;
  }

  .opening-roadmap__card,
  .opening-roadmap__item:nth-child(odd) .opening-roadmap__card,
  .opening-roadmap__item:nth-child(even) .opening-roadmap__card {
    grid-template-columns: 44px 1fr;
    min-height: 88px;
    padding: 15px 15px 15px 12px;
    border-radius: 21px 21px 21px 7px;
  }

  .opening-roadmap__card span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .opening-roadmap__card p {
    font-size: clamp(15px, 4vw, 17px);
  }

  .opening-roadmap__footer {
    margin-top: 48px;
    padding: 28px 20px 23px;
    border-radius: 26px;
  }

  .opening-roadmap__footer p {
    font-size: 17px;
  }

  .opening-roadmap__button {
    min-height: 60px;
    margin-top: 21px;
  }

  .opening-roadmap__dots {
    width: 310px;
    height: 310px;
    opacity: .2;
  }
}

/* Final screen: a closing conversion scene that echoes the hero. */
.final-cta {
  position: relative;
  min-height: 880px;
  padding: 78px 0 64px;
  color: #fff;
  background: #09090a;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}

.final-cta__background {
  position: absolute;
  z-index: -3;
  inset: -30px;
  background: url("assets/figma-hero-bg.png") center / cover no-repeat;
  filter: saturate(.82) brightness(.6);
  transform: scale(1.035);
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(4,5,6,.94) 0%, rgba(7,8,9,.72) 50%, rgba(5,5,6,.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.62));
  pointer-events: none;
}

.final-cta__glow {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: 20%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(214,16,28,.18);
  filter: blur(105px);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  min-height: 738px;
}

.final-cta__panel {
  position: relative;
  z-index: 2;
  width: min(760px, 66%);
  margin-left: auto;
  min-height: 650px;
  padding: 58px 60px 52px;
  border: 1px solid rgba(119,160,200,.58);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 100%, rgba(130,71,47,.45), transparent 42%),
    linear-gradient(135deg, rgba(24,25,27,.98), rgba(26,24,24,.93));
  box-shadow: 0 35px 95px rgba(0,0,0,.5);
  backdrop-filter: blur(14px);
}

.final-cta__accent {
  display: block;
  width: 58px;
  height: 7px;
  margin-bottom: 31px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff777c);
  box-shadow: 0 0 24px rgba(245,42,49,.34);
}

.final-cta h2 {
  margin: 0;
  max-width: 650px;
  font-family: "Oswald", sans-serif;
  font-size: var(--site-heading-size);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.final-cta h2 strong {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font: inherit;
}

.final-cta__panel > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: #d6d6da;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
}

.final-cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 38px;
  padding: 20px;
  border-radius: 27px;
  background: rgba(91,93,99,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.final-cta__form label {
  position: relative;
}

.final-cta__form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.final-cta__form input,
.final-cta__form .button {
  width: 100%;
  height: var(--form-control-height);
  min-height: var(--form-control-height);
  border: 0;
  border-radius: 14px;
  font: inherit;
}

.final-cta__form input {
  padding: 0 22px;
  color: #252529;
  background: #fff;
  outline: 1px solid rgba(255,255,255,.55);
  transition: outline-color .25s ease, box-shadow .25s ease;
}

.final-cta__form input:focus {
  outline-color: var(--red);
  box-shadow: 0 0 0 4px rgba(245,42,49,.15);
}

.final-cta__form .button {
  grid-column: 1 / -1;
  border: 0;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.final-cta__form .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.final-cta__man {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: -78px;
  left: -145px;
  width: min(75vw, 1120px);
  max-width: none;
  filter: drop-shadow(20px 30px 38px rgba(0,0,0,.38));
  transform-origin: 50% 100%;
  animation: final-man-float 5.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes final-man-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(.15deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(-.3deg);
  }
}

@media (min-width: 1800px) {
  .final-cta {
    min-height: 900px;
  }

  .final-cta__content {
    width: min(1520px, calc(100% - 96px));
  }

  .final-cta__panel {
    width: 850px;
  }

  .final-cta__man {
    right: auto;
    bottom: -78px;
    left: -55px;
    width: 1160px;
  }
}

@media (max-width: 1100px) {
  .final-cta {
    min-height: 820px;
  }

  .final-cta__content {
    min-height: 678px;
  }

  .final-cta__panel {
    width: 72%;
    min-height: 600px;
    padding: 48px 44px 42px;
  }

  .final-cta__man {
    bottom: -64px;
    left: -90px;
    width: min(86vw, 820px);
  }
}

@media (min-width: 761px) and (max-width: 900px) and (max-height: 800px) {
  .final-cta {
    min-height: 720px;
    padding-top: 42px;
  }

  .final-cta__content {
    min-height: 636px;
  }

  .final-cta__panel {
    width: min(680px, 90%);
    min-height: 570px;
    margin-inline: auto;
    padding: 38px 34px 34px;
  }

  .final-cta__man {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (min-height: 900px) {
  .final-cta__panel {
    width: min(760px, 88%);
    margin-inline: auto;
  }

  .final-cta__man {
    display: none;
  }
}

@media (max-width: 760px) {
  .final-cta {
    min-height: 720px;
    padding: 52px 0 58px;
  }

  .final-cta__background {
    background-position: 62% center;
  }

  .final-cta__content {
    width: min(100% - 28px, 560px);
    min-height: 610px;
  }

  .final-cta__panel {
    width: 100%;
    min-height: 610px;
    padding: 36px 28px 34px;
    border-radius: 30px;
  }

  .final-cta__accent {
    width: 48px;
    height: 6px;
    margin-bottom: 24px;
  }

  .final-cta h2 {
    max-width: 500px;
    font-size: clamp(31px, 8vw, 39px);
  }

  .final-cta__panel > p {
    max-width: 350px;
    margin-top: 21px;
    font-size: 17px;
  }

  .final-cta__form {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 28px;
    padding: 14px;
    border-radius: 22px;
  }

  .final-cta__form .button {
    grid-column: 1;
  }

  .final-cta__form input,
  .final-cta__form .button {
    width: 100%;
  }

  .final-cta__man {
    display: none;
  }
}

@media (max-width: 430px) {
  .final-cta {
    min-height: 690px;
  }

  .final-cta__content {
    min-height: 585px;
  }

  .final-cta__panel {
    min-height: 585px;
    padding: 31px 20px 27px;
  }

  .final-cta h2 {
    font-size: clamp(29px, 8.5vw, 36px);
  }

  .final-cta__form input,
  .final-cta__form .button {
    height: 60px;
    min-height: 60px;
  }

}

/* Universal personal-data consent for every contact form. */
.form-consent {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.form-consent__row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.form-consent input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.form-consent__box,
.partnership-modal__form .form-consent__box {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 5px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.form-consent input:focus-visible + .form-consent__box {
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 3px;
}

.form-consent input:checked + .form-consent__box {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 5px 14px rgba(245,42,49,.28);
}

.form-consent input:checked + .form-consent__box::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(43deg);
}

.form-consent p {
  margin: 0;
}

.form-consent__line {
  display: block;
  white-space: nowrap;
}

.form-consent button {
  display: inline;
  padding: 0;
  border: 0;
  color: #ff777c;
  background: transparent;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: auto;
  text-align: left;
  cursor: pointer;
}

.form-consent button:hover {
  color: #fff;
}

.form-consent__error {
  display: none;
  margin: 5px 0 0 26px !important;
  color: #ffb6b9;
  font-size: 10px;
  font-weight: 700;
}

.form-consent.is-error .form-consent__box {
  border-color: #ff6c72;
  box-shadow: 0 0 0 3px rgba(245,42,49,.16);
}

.form-consent.is-error .form-consent__error {
  display: block;
}

.numbers-stack__form .form-consent {
  color: #55555b;
}

.numbers-stack__form .form-consent__box {
  border-color: #b7b7bc;
  background: #fff;
}

.numbers-stack__form .form-consent input:focus-visible + .form-consent__box {
  outline-color: var(--red);
}

.numbers-stack__form .form-consent button {
  color: #b10b13;
}

.numbers-stack__form .form-consent button:hover {
  color: var(--red);
}

.numbers-stack__form .form-consent__error {
  color: #b10b13;
}

.button.is-consent-disabled,
.button.is-consent-disabled:hover,
.button[aria-disabled="true"],
.button[aria-disabled="true"]:hover {
  opacity: 1;
  filter: none;
  cursor: pointer;
  animation: button-glow 2.8s ease-in-out infinite;
}

.button.is-consent-disabled::before,
.button[aria-disabled="true"]::before {
  display: block;
  animation: button-shine 3.2s ease-in-out infinite;
}

.partnership-modal__form .form-consent {
  margin-top: 2px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.lead-form:not(.lead-form--wide) .form-consent {
  font-size: 7.35px;
  line-height: 1.28;
}

.lead-form:not(.lead-form--wide) .form-consent__row {
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 7px;
}

.lead-form:not(.lead-form--wide) .form-consent__box {
  width: 16px;
  height: 16px;
  min-height: 16px;
}

.lead-form:not(.lead-form--wide) .form-consent button {
  white-space: normal;
}

/* Legal documents reuse the existing dark modal language. */
.legal-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s ease, visibility .28s ease;
}

.legal-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,5,.82);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100svh - 40px);
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  outline: none;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(245,42,49,.17), transparent 34%),
    #171719;
  box-shadow: 0 34px 100px rgba(0,0,0,.65);
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(.975);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}

.legal-modal.is-open .legal-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.legal-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__eyebrow {
  margin: 0;
  color: #ff656c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-modal h2 {
  margin: 10px 58px 22px 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.legal-modal__body {
  max-height: min(55svh, 520px);
  padding: 22px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.035);
  font-size: 15px;
  line-height: 1.65;
  scrollbar-color: var(--red) rgba(255,255,255,.08);
  scrollbar-width: thin;
}

.legal-modal__body p {
  margin: 0;
}

.legal-modal__body p + p {
  margin-top: 14px;
}

.legal-modal__body h3 {
  margin: 26px 0 9px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.legal-modal__body h3:first-child {
  margin-top: 0;
}

.legal-modal__body ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-modal__body li + li {
  margin-top: 7px;
}

.site-footer {
  position: relative;
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 50% 0, rgba(245,42,49,.12), transparent 38%),
    #0b0b0c;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__content {
  display: grid;
  grid-template-columns: .65fr 1.2fr 1.15fr;
  gap: 36px;
  align-items: center;
  min-height: 154px;
  padding-block: 34px;
}

.site-footer__identity {
  display: grid;
  gap: 8px;
}

.site-footer__identity strong {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.site-footer__identity span {
  font-size: 13px;
}

.site-footer__legal {
  font-size: 13px;
  line-height: 1.55;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__links {
  display: grid;
  justify-items: start;
  gap: 9px;
}

.site-footer__links button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,104,111,.55);
  color: #ff777c;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}

.site-footer__links button:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 680px) {
  .form-consent {
    font-size: 9px;
    line-height: 1.3;
  }

  .form-consent__row {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 6px;
  }

  .form-consent__box,
  .partnership-modal__form .form-consent__box {
    width: 16px;
    height: 16px;
    min-height: 16px;
    border-radius: 4px;
  }

  .form-consent input:checked + .form-consent__box::after {
    top: 2px;
    left: 4px;
  }

  .form-consent__error {
    margin-left: 22px !important;
    font-size: 9px;
  }

  .legal-modal {
    align-items: end;
    padding: 10px;
  }

  .legal-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 20px);
    padding: 30px 20px 20px;
    border-radius: 24px 24px 18px 18px;
  }

  .legal-modal h2 {
    margin-right: 42px;
    font-size: 30px;
  }

  .legal-modal__body {
    max-height: 56svh;
    padding: 18px;
    font-size: 14px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding-block: 32px;
  }

  .site-footer__identity {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 14px;
  }

  .site-footer__legal {
    font-size: 12px;
  }
}
