@font-face {
  font-family: "Anybody";
  src: url("/assets/fonts/anybody-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 75% 150%;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@property --reveal {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 88%;
}

@property --draw {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

:root {
  color-scheme: dark;
  --ink: #0a0d10;
  --ink-soft: #11161b;
  --paper: #eef0ec;
  --white: #ffffff;
  --blue: #1767ff;
  --blue-pale: #dbe7ff;
  --grey: #9aa4aa;
  --line: rgba(255, 255, 255, 0.18);
  --wrap: min(92vw, 1500px);
  font-family: "DM Sans", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.55;
}

body,
button,
input {
  font: inherit;
}

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

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

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

ul {
  padding: 0;
  list-style: none;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(rgba(4, 7, 10, 0.5), transparent);
}

.header__inner {
  width: var(--wrap);
  min-height: 5.75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  font-family: "Anybody", sans-serif;
  text-transform: uppercase;
}

.brand__mark {
  font-size: 1.45rem;
  font-weight: 850;
  font-stretch: 125%;
  letter-spacing: -0.09em;
}

.brand__mark span {
  color: var(--blue);
  font-weight: 400;
}

.brand__name {
  font-size: 0.77rem;
  font-weight: 650;
  font-stretch: 130%;
  letter-spacing: 0.26em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.25rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -0.55rem;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  content: "";
  transition: transform 280ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 3.45rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-family: "Anybody", sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
  font-stretch: 112%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header__cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button {
  min-height: 3.8rem;
  border-color: transparent;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

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

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

.arrow-up {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 0.82rem;
  height: 0.82rem;
}

.arrow-up::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.arrow-up::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.9rem;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: right center;
  background: currentColor;
  content: "";
}

.hero {
  --reveal: 88%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  transition: --reveal 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-ready {
  --reveal: 54%;
}

.hero__visual,
.hero__visual img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__visual {
  touch-action: pan-y;
}

.hero__visual img {
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero__before {
  filter: saturate(0.86) contrast(1.04) brightness(0.84);
}

.hero__after {
  clip-path: inset(0 0 0 var(--reveal));
}

.hero__divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(180deg, transparent 9%, var(--white) 28%, var(--blue) 72%, transparent 94%);
  box-shadow: 0 0 24px rgba(23, 103, 255, 0.78);
  pointer-events: none;
}

.hero__shade {
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.88) 0%, rgba(4, 7, 10, 0.68) 24%, rgba(4, 7, 10, 0.14) 52%, transparent 76%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.4), transparent 28%, transparent 56%, rgba(4, 7, 10, 0.72));
}

.hero__progress {
  display: none;
}

.hero.is-scroll-scene {
  --reveal: 92%;
  min-height: 190svh;
  overflow: clip;
  transition-duration: 0s;
}

.hero.is-scroll-scene .hero__visual {
  position: sticky;
  inset: auto 0;
  top: 0;
  height: 100svh;
}

.hero.is-scroll-scene .hero__shade {
  opacity: var(--shade-opacity, 1);
  will-change: opacity;
}

.hero.is-scroll-scene .hero__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--wrap);
  min-height: 100svh;
  transform: translateX(-50%);
}

.hero.is-scroll-scene .hero__copy {
  opacity: var(--copy-opacity, 1);
  will-change: opacity;
}

.hero.is-scroll-scene .hero__after {
  will-change: clip-path;
}

.hero.is-scroll-scene .hero__divider {
  left: 0;
  transform: translate3d(var(--reveal-x, 0), 0, 0);
  will-change: transform;
}

.hero.is-scroll-scene .hero__divider::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 7rem;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(219, 231, 255, 0.16) 32%, rgba(255, 255, 255, 0.5) 50%, rgba(219, 231, 255, 0.14) 68%, transparent);
  filter: blur(0.6rem);
  content: "";
}

.hero.is-scroll-scene .hero__progress {
  position: absolute;
  z-index: 7;
  right: 5vw;
  bottom: 1.35rem;
  left: 5vw;
  display: grid;
  grid-template-columns: 1fr 3.1rem;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Anybody", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero__progress-track {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero__progress-track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scene-progress, 0));
  transform-origin: left center;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(23, 103, 255, 0.88);
  will-change: transform;
}

.hero__progress strong {
  color: var(--white);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.hero__inner {
  position: relative;
  z-index: 6;
  width: var(--wrap);
  min-height: 100svh;
  margin: 0 auto;
  padding: 8rem 0 2rem;
  display: flex;
  align-items: end;
  pointer-events: none;
}

.hero__copy {
  max-width: 58rem;
  padding-bottom: clamp(2rem, 4vw, 4.5rem);
  pointer-events: none;
}

.hero__copy a {
  pointer-events: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #53616a;
  font-family: "Anybody", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  font-stretch: 110%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 2px;
  background: var(--blue);
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1 {
  margin-top: 1.45rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(4.8rem, 10vw, 10.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero h1 span:first-child {
  font-stretch: 78%;
}

.hero h1 span:last-child {
  color: transparent;
  font-stretch: 135%;
  -webkit-text-stroke: 2px var(--white);
}

.hero__lede {
  max-width: 43rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.48;
}

.hero__actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero__actions p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero__actions strong {
  color: var(--white);
  font-family: "Anybody", sans-serif;
  font-size: 0.7rem;
  font-stretch: 115%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clean {
  background: var(--paper);
  color: var(--ink);
}

.clean__inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.clean__intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1.58fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.clean__intro h2 {
  max-width: 64rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
  font-weight: 730;
  font-stretch: 86%;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.clean__intro h2 em {
  color: var(--blue);
  font-style: normal;
  font-stretch: 140%;
}

.clean__grid {
  margin-top: clamp(4.5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(25rem, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.methods {
  border-top: 1px solid #aeb7b8;
}

.method {
  min-height: 11rem;
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 8.5rem minmax(13rem, 0.8fr) minmax(15rem, 1fr);
  align-items: start;
  gap: 1.5rem;
  border-bottom: 1px solid #c4cbc9;
}

.method > span {
  color: var(--blue);
  font-family: "Anybody", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method h3 {
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  font-weight: 680;
  font-stretch: 105%;
  letter-spacing: -0.045em;
  line-height: 1;
}

.method p {
  color: #5b666c;
  font-size: 0.95rem;
}

.methods__line {
  margin-top: 2rem;
  color: #5b666c;
  font-size: 1rem;
}

.methods__line strong {
  color: var(--ink);
}

.package-card {
  position: relative;
  padding: clamp(2rem, 4vw, 4.25rem);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.package-card::after {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(255, 255, 255, 0.04), 0 0 0 5rem rgba(255, 255, 255, 0.03);
  content: "";
}

.package-card__label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Anybody", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card h2 {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 800;
  font-stretch: 82%;
  letter-spacing: -0.07em;
  line-height: 0.83;
  text-transform: uppercase;
}

.package-card h2 span {
  color: transparent;
  font-stretch: 135%;
  -webkit-text-stroke: 1.5px var(--white);
}

.package-card > p:not(.package-card__label) {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.82);
}

.package-card ul {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.package-card li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.package-card li::before {
  display: inline-block;
  width: 0.8rem;
  height: 1px;
  margin-right: 0.7rem;
  vertical-align: middle;
  background: var(--white);
  content: "";
}

.package-card .button {
  position: relative;
  z-index: 1;
  margin-top: 2.25rem;
}

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

.footer__inner {
  width: var(--wrap);
  min-height: 11rem;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem clamp(2rem, 5vw, 6rem);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer__email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.76);
}

.footer__inner nav {
  grid-column: 2;
  display: flex;
  gap: 1.5rem;
}

.footer__inner > p:last-child {
  text-align: right;
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  position: relative;
  border-bottom-color: rgba(10, 13, 16, 0.16);
  background: var(--paper);
  color: var(--ink);
}

.legal-header .header__cta {
  border-color: rgba(10, 13, 16, 0.3);
}

.legal-header .header__cta:hover {
  background: var(--ink);
  color: var(--white);
}

.legal-main {
  width: min(90vw, 900px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.legal-main > .eyebrow {
  margin-bottom: 3rem;
}

.legal-main h1 {
  font-family: "Anybody", sans-serif;
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 760;
  font-stretch: 82%;
  letter-spacing: -0.07em;
  line-height: 0.83;
  text-transform: uppercase;
}

.legal-section {
  padding: 4.5rem 0;
  border-top: 1px solid #b9c1bf;
}

.legal-main h1 + .legal-section {
  margin-top: 5rem;
}

.legal-section h2 {
  font-family: "Anybody", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  font-stretch: 90%;
  letter-spacing: -0.05em;
}

.legal-section h3 {
  margin-top: 2.5rem;
  font-family: "Anybody", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-stretch: 112%;
}

.legal-section p,
.legal-section ul {
  max-width: 48rem;
  margin-top: 1rem;
  color: #4f5b61;
}

.legal-section ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.legal-section a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.quote {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: var(--blue);
}

.quote__inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 6rem 0;
}

.quote h2 {
  margin-top: 2.5rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.76;
  text-transform: uppercase;
}

.quote h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.quote h2 span:first-child {
  font-stretch: 78%;
}

.quote h2 span:last-child {
  color: transparent;
  font-stretch: 140%;
  -webkit-text-stroke: 2px var(--white);
}

.quote__inner > p:not(.eyebrow) {
  margin-top: 2rem;
}

.quote .button {
  margin-top: 2rem;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(2.5rem);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .clean__intro,
  .clean__grid {
    grid-template-columns: 1fr;
  }

  .clean__intro h2 {
    max-width: 48rem;
  }

  .method {
    grid-template-columns: 7.5rem minmax(12rem, 0.8fr) minmax(13rem, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
  }

  .footer__inner > p:first-of-type {
    text-align: right;
  }

  .footer__email,
  .footer__inner nav {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(90vw, 40rem);
  }

  .header__inner {
    min-height: 4.75rem;
    gap: 1rem;
  }

  .brand__name {
    display: none;
  }

  .header__cta {
    min-height: 2.8rem;
    padding: 0 1rem;
    font-size: 0.64rem;
  }

  .hero {
    min-height: 0;
    overflow: hidden;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    height: 82svh;
    min-height: 32rem;
    max-height: 48rem;
    aspect-ratio: auto;
  }

  .hero__visual img {
    object-position: 82% bottom;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(4, 7, 10, 0.48) 0%, transparent 28%, transparent 78%, rgba(4, 7, 10, 0.16) 100%);
  }

  .hero__inner {
    min-height: 0;
    padding: 3.25rem 0 4rem;
  }

  .hero__copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .hero h1 span:last-child {
    -webkit-text-stroke-width: 1.3px;
  }

  .hero__lede {
    margin-top: 1.2rem;
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero.is-scroll-scene .hero__visual {
    min-height: 0;
    max-height: none;
  }

  .hero.is-scroll-scene .hero__shade {
    opacity: var(--shade-opacity, 1);
    background:
      linear-gradient(180deg, rgba(4, 7, 10, 0.58) 0%, transparent 25%, transparent 54%, rgba(4, 7, 10, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 7, 10, 0.28), transparent 72%);
  }

  .hero.is-scroll-scene .hero__inner {
    padding: 8rem 0 5.5rem;
  }

  .hero.is-scroll-scene .hero__divider::after {
    width: 5rem;
  }

  .clean__inner {
    padding: 5.5rem 0;
  }

  .clean__intro {
    gap: 2rem;
  }

  .clean__intro h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .clean__grid {
    margin-top: 4rem;
    gap: 4rem;
  }

  .method {
    min-height: auto;
    padding: 1.5rem 0 2rem;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .method h3 {
    font-size: 2rem;
  }

  .package-card {
    padding: 2rem;
  }

  .package-card h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .footer__inner {
    padding: 3rem 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer__inner > p:first-of-type,
  .footer__inner > p:last-child {
    text-align: left;
  }

  .footer__inner nav,
  .footer__email {
    grid-column: 1;
  }

  .legal-header .brand__name {
    display: inline;
  }

  .legal-main h1 + .legal-section {
    margin-top: 4rem;
  }

  .quote h2 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
  }

  .quote h2 span:last-child {
    margin-top: 0.4rem;
    -webkit-text-stroke-width: 1.3px;
  }
}

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

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

  .reveal {
    animation: none;
  }
}

.hero__spray {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__handle {
  position: absolute;
  z-index: 8;
  top: 56%;
  left: var(--reveal);
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(4, 7, 10, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(23, 103, 255, 0.45);
  cursor: grab;
  touch-action: none;
}

.hero__handle:active {
  cursor: grabbing;
}

.hero__handle::before,
.hero__handle::after {
  position: absolute;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
}

.hero__handle::before {
  left: 0.62rem;
  transform: translateY(-50%) rotate(-45deg);
}

.hero__handle::after {
  right: 0.62rem;
  transform: translateY(-50%) rotate(135deg);
}

.hero__handle:hover {
  border-color: var(--white);
  background: rgba(4, 7, 10, 0.62);
}

.hero.is-scroll-scene .hero__handle {
  left: 0;
  transform: translate3d(calc(var(--reveal-x, 92vw) - 50%), -50%, 0);
  will-change: transform;
}

.hero__stages {
  position: absolute;
  z-index: 6;
  top: 16%;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero__stage {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: max-content;
  max-width: 88vw;
  opacity: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Anybody", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.7rem);
  font-weight: 680;
  font-stretch: 110%;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(4, 7, 10, 0.85);
  pointer-events: none;
  will-change: opacity, transform;
}

.hero__stage strong {
  color: var(--blue-pale);
}

.hero__label {
  position: absolute;
  z-index: 6;
  bottom: 3.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(4, 7, 10, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Anybody", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  will-change: opacity;
}

.hero__label--before {
  left: 5vw;
  opacity: var(--before-opacity, 0);
}

.hero__label--after {
  right: 5vw;
  border-color: rgba(23, 103, 255, 0.65);
  color: var(--blue-pale);
  opacity: var(--after-opacity, 0);
}

.hero:not(.is-scroll-scene) .hero__label--before,
.hero:not(.is-scroll-scene) .hero__label--after {
  opacity: 1;
}

.hero.is-ready .eyebrow--light {
  animation: rise-in 700ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.hero.is-ready .eyebrow--light::before {
  transform-origin: left center;
  animation: draw-line 650ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.hero.is-ready h1 span:first-child {
  animation: settle-narrow 950ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.hero.is-ready h1 span:last-child {
  animation: settle-wide 950ms cubic-bezier(0.16, 1, 0.3, 1) 340ms both;
}

.hero.is-ready .hero__lede {
  animation: rise-in 750ms cubic-bezier(0.16, 1, 0.3, 1) 480ms both;
}

.hero.is-ready .hero__actions {
  animation: rise-in 750ms cubic-bezier(0.16, 1, 0.3, 1) 590ms both;
}

.hero.is-ready .hero__handle {
  animation: handle-in 800ms cubic-bezier(0.16, 1, 0.3, 1) 900ms both;
}

.hero.is-ready .hero__divider {
  animation: divider-pulse 1400ms ease 900ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
  }
}

@keyframes draw-line {
  from {
    transform: scaleX(0);
  }
}

@keyframes settle-narrow {
  from {
    opacity: 0;
    transform: translateY(0.28em);
    font-stretch: 118%;
  }
}

@keyframes settle-wide {
  from {
    opacity: 0;
    transform: translateY(0.28em);
    font-stretch: 90%;
  }
}

@keyframes handle-in {
  from {
    opacity: 0;
    scale: 0.6;
  }
}

@keyframes divider-pulse {
  40% {
    box-shadow: 0 0 42px rgba(23, 103, 255, 1);
  }
}

.site-header.is-fixed {
  position: fixed;
  transform: translateY(-104%);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(4, 7, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 320ms ease;
}

.site-header.is-fixed .header__inner {
  min-height: 4.5rem;
}

.site-header.is-fixed.is-shown {
  transform: translateY(0);
}

.header__cta .arrow-up,
.button .arrow-up {
  transition: transform 240ms ease;
}

.header__cta:hover .arrow-up,
.button:hover .arrow-up {
  transform: translate(3px, -3px);
}

.package-card {
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 300ms ease;
}

@supports (animation-timeline: view()) {
  .clean__intro h2 em {
    animation: em-fill linear both;
    animation-timeline: view();
    animation-range: entry 30% cover 42%;
  }

  .method {
    border-image: linear-gradient(90deg, #c4cbc9 calc(var(--draw, 100%) ), transparent 0) 1;
    animation: line-draw linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
  }
}

@keyframes em-fill {
  from {
    color: #9aa4aa;
  }
}

@keyframes line-draw {
  from {
    --draw: 0%;
  }
}

@media (max-width: 640px) {
  .hero__handle {
    top: 50%;
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero__label {
    bottom: 3rem;
  }

  .hero__stages {
    top: 13%;
  }

  .hero__stage {
    max-width: 80vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__spray {
    display: none;
  }

  .hero.is-ready .eyebrow--light,
  .hero.is-ready .eyebrow--light::before,
  .hero.is-ready h1 span,
  .hero.is-ready .hero__lede,
  .hero.is-ready .hero__actions,
  .hero.is-ready .hero__handle,
  .hero.is-ready .hero__divider {
    animation: none;
  }

  .hero__stage {
    display: none;
  }

  .hero__label--before,
  .hero__label--after {
    opacity: 1;
  }
}

.hero__final {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  max-width: 88vw;
  opacity: 0;
  text-align: center;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero__final.is-live {
  pointer-events: auto;
}

.hero__final-line {
  color: var(--white);
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.9rem, 4.6vw, 4rem);
  font-weight: 800;
  font-stretch: 84%;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 26px rgba(4, 7, 10, 0.9);
}

.hero__final-line strong {
  display: block;
  color: transparent;
  font-stretch: 130%;
  -webkit-text-stroke: 1.5px var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .hero__final {
    display: none;
  }
}
