/* ==========================================================================
   Guus Jacobs - Hero Section
   Black & white theme with off-white accents
   ========================================================================== */

@font-face {
  font-family: "Formula Condensed";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/FormulaCondensed-Light.woff") format("woff");
}

@font-face {
  font-family: "Formula Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/FormulaCondensed-Bold.woff") format("woff");
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-off-white: #f0eeea;
  --color-gray-300: #d4d4d4;
  --color-gray-500: #9a9a9a;
  --font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Formula Condensed", "Inter", system-ui, sans-serif;
  --font-script: "Caveat", "Segoe Script", "Brush Script MT", cursive;
  --header-height: 108px;
  --hero-gap: 2rem;
  --transition: 0.2s ease;
  --glow-border: rgba(255, 255, 255, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.16);
  --faq-duration: 0.55s;
  --faq-ease: cubic-bezier(0.42, 0, 0.58, 1);
  --glow-shadow:
    0 0 20px rgba(240, 238, 234, 0.15),
    0 0 60px rgba(240, 238, 234, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(240, 238, 234, 0.55) rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  -webkit-text-size-adjust: 100%;
}

.problem,
.about,
.results,
.faq {
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    var(--color-black) url("/images/background-noise_result.avif") repeat;
}

::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(240, 238, 234, 0.62);
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.82);
  background-clip: content-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    var(--color-black) url("/images/background-noise_result.avif") repeat;
  background-size: auto;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  height: var(--header-height);
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.65s cubic-bezier(0.42, 0, 0.58, 1);
  will-change: transform;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% + 2.75rem);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.64) 28%,
    rgba(0, 0, 0, 0.32) 58%,
    rgba(0, 0, 0, 0.12) 82%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2.75rem));
  animation: none !important;
}

.site-header__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  height: 100%;
  line-height: 0;
}

.logo__img {
  display: block;
  height: calc(var(--header-height) - 1rem);
  width: auto;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  justify-self: center;
}

.main-nav__list {
  display: flex;
  gap: 2.5rem;
}

.main-nav__list a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-300);
  transition: color var(--transition);
}

.main-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.65em 0.95em;
  overflow: visible;
}

.main-nav__ring {
  position: absolute;
  top: -0.5em;
  right: -0.8em;
  bottom: -0.55em;
  left: -0.8em;
  display: block;
  width: calc(100% + 1.6em);
  height: calc(100% + 1.05em);
  pointer-events: none;
  color: var(--color-white);
  overflow: visible;
}

.main-nav__ring path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

.main-nav__list li:nth-child(1) .main-nav__ring {
  top: -0.42em;
  right: -0.65em;
  bottom: -0.48em;
  left: -0.85em;
}

.main-nav__list li:nth-child(1) .main-nav__ring path {
  stroke-width: 1.55;
}

.main-nav__list li:nth-child(2) .main-nav__ring {
  top: -0.62em;
  right: -0.92em;
  bottom: -0.66em;
  left: -0.92em;
  width: calc(100% + 1.84em);
  height: calc(100% + 1.28em);
}

.main-nav__list li:nth-child(2) .main-nav__ring path {
  stroke-width: 1.7;
}

.main-nav__list li:nth-child(3) .main-nav__ring {
  top: -0.4em;
  right: -0.6em;
  bottom: -0.46em;
  left: -0.6em;
  width: calc(100% + 1.2em);
  height: calc(100% + 0.85em);
}

.main-nav__list li:nth-child(3) .main-nav__ring path {
  stroke-width: 1.5;
}

.main-nav__list li:nth-child(4) .main-nav__ring {
  top: -0.52em;
  right: -0.7em;
  bottom: -0.42em;
  left: -0.72em;
}

.main-nav__list li:nth-child(4) .main-nav__ring path {
  stroke-width: 1.65;
}

.main-nav__link.is-hover .main-nav__ring path {
  opacity: 1;
  stroke-dashoffset: 0;
  transition: opacity 0.12s ease, stroke-dashoffset 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.main-nav__link.is-exit .main-nav__ring path {
  opacity: 0;
  stroke-dashoffset: 1;
  transition: opacity 0.2s ease 0.3s, stroke-dashoffset 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.main-nav__link.is-active .main-nav__ring path {
  opacity: 1;
  stroke-dashoffset: 0;
  transition: none;
}

.main-nav__link.is-active.is-exit .main-nav__ring path {
  stroke-dashoffset: 0;
}

.main-nav__link.is-hover {
  color: var(--color-white);
}

.main-nav__list a:hover,
.main-nav__list a:focus-visible {
  color: var(--color-white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 102;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 2;
  isolation: isolate;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open,
.mobile-nav.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__reveal {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a;
  clip-path: circle(0 at var(--menu-x, 100%) var(--menu-y, 3rem));
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: clip-path;
}

.mobile-nav.is-open .mobile-nav__reveal {
  clip-path: circle(150vmax at var(--menu-x) var(--menu-y));
}

.mobile-nav__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  width: 100%;
  --mobile-nav-block-gap: 2rem;
  padding:
    calc(var(--header-height) + 1.5rem)
    1.25rem
    calc(4.75rem + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
}

.mobile-nav:not(.is-open) .mobile-nav__section > .mobile-nav__label,
.mobile-nav:not(.is-open) .mobile-nav__section > .mobile-nav__rule,
.mobile-nav:not(.is-open) .mobile-nav__list > li,
.mobile-nav:not(.is-open) .mobile-nav__cta,
.mobile-nav:not(.is-open) .mobile-nav__footer > .mobile-nav__rule,
.mobile-nav:not(.is-open) .mobile-nav__footer > .mobile-nav__label,
.mobile-nav:not(.is-open) .mobile-nav__socials > li {
  opacity: 0;
  transform: translateY(1.35rem);
}

.mobile-nav.is-open .mobile-nav__section > .mobile-nav__label {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.12s both;
}

.mobile-nav.is-open .mobile-nav__section > .mobile-nav__rule {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.18s both;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(1) {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.24s both;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(2) {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.31s both;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(3) {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.38s both;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(4) {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.45s both;
}

.mobile-nav.is-open .mobile-nav__cta {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.52s both;
}

.mobile-nav.is-open .mobile-nav__footer > .mobile-nav__rule {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.58s both;
}

.mobile-nav.is-open .mobile-nav__footer > .mobile-nav__label {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.64s both;
}

.mobile-nav.is-open .mobile-nav__socials > li:nth-child(1) {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.7s both;
}

.mobile-nav.is-open .mobile-nav__socials > li:nth-child(2) {
  animation: mobile-nav-enter 0.68s cubic-bezier(0.65, 0, 0.35, 1) 0.76s both;
}

.mobile-nav.is-closing .mobile-nav__section > .mobile-nav__label,
.mobile-nav.is-closing .mobile-nav__section > .mobile-nav__rule,
.mobile-nav.is-closing .mobile-nav__list > li,
.mobile-nav.is-closing .mobile-nav__cta,
.mobile-nav.is-closing .mobile-nav__footer > .mobile-nav__rule,
.mobile-nav.is-closing .mobile-nav__footer > .mobile-nav__label,
.mobile-nav.is-closing .mobile-nav__socials > li {
  animation: none !important;
  opacity: 0;
  transform: translateY(0.65rem);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

@keyframes mobile-nav-enter {
  from {
    opacity: 0;
    transform: translateY(1.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav__section {
  width: 100%;
}

.mobile-nav__label {
  margin: 0 0 1rem;
  font-family: var(--font-family);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.mobile-nav__rule {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav__section .mobile-nav__rule {
  margin-bottom: 1.75rem;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: 100%;
}

.mobile-nav__list .main-nav__link {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 3.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 0.2em 0 0.2em 0.55em;
}

.mobile-nav__list .main-nav__ring {
  top: -0.22em;
  bottom: -0.3em;
  left: -1.25rem;
  right: -1.25rem;
  width: calc(100% + 2.5rem);
  height: calc(100% + 0.52em);
  transform: translateX(0.35em);
}

.mobile-nav__list li:nth-child(1) .main-nav__ring {
  top: -0.2em;
  bottom: -0.28em;
  height: calc(100% + 0.48em);
}

.mobile-nav__list li:nth-child(1) .main-nav__ring path {
  stroke-width: 1.15;
}

.mobile-nav__list li:nth-child(2) .main-nav__ring {
  top: -0.38em;
  bottom: -0.45em;
  height: calc(100% + 0.83em);
  transform: translateX(0.35em) scale(1.07);
  transform-origin: 48% 50%;
}

.mobile-nav__list li:nth-child(2) .main-nav__ring path {
  stroke-width: 1.25;
}

.mobile-nav__list li:nth-child(3) .main-nav__ring {
  top: -0.18em;
  bottom: -0.26em;
  height: calc(100% + 0.44em);
}

.mobile-nav__list li:nth-child(3) .main-nav__ring path {
  stroke-width: 1.1;
}

.mobile-nav__list li:nth-child(4) .main-nav__ring {
  top: -0.24em;
  bottom: -0.28em;
  height: calc(100% + 0.52em);
}

.mobile-nav__list li:nth-child(4) .main-nav__ring path {
  stroke-width: 1.2;
}

.mobile-nav__cta {
  width: 100%;
  margin-top: var(--mobile-nav-block-gap);
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 1.2rem 2rem;
}

.mobile-nav__footer {
  width: 100%;
  margin-top: var(--mobile-nav-block-gap);
  padding-top: 0;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}

.mobile-nav__footer .mobile-nav__rule {
  margin-bottom: 1.25rem;
}

.mobile-nav__footer .mobile-nav__label {
  margin-bottom: 0.85rem;
}

.mobile-nav__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  width: 100%;
}

.mobile-nav__socials a {
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gray-300);
  transition: color var(--transition);
}

.mobile-nav__socials a:hover,
.mobile-nav__socials a:focus-visible {
  color: var(--color-white);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn__fill {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-white);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: width 0.45s ease-in-out, height 0.45s ease-in-out;
}

.btn__label {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  mix-blend-mode: difference;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline.is-hover {
  border-color: var(--color-white);
}

.btn--outline.is-hover .btn__fill {
  width: var(--fill-size);
  height: var(--fill-size);
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.8rem 1.85rem;
}

.btn--lg {
  font-size: 0.9rem;
  padding: 1.15rem 2.75rem;
}

.btn--glow {
  box-shadow: var(--glow-shadow);
}

.btn--glow.is-hover,
.btn--glow:hover,
.btn--glow:focus-visible {
  box-shadow:
    0 0 28px rgba(240, 238, 234, 0.25),
    0 0 80px rgba(240, 238, 234, 0.12);
}

.section-cta {
  display: flex;
  justify-content: center;
}

.solution__cta {
  padding: clamp(1.75rem, 4vw, 2.25rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.results__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.glow-card {
  background: transparent;
  border: 2px solid var(--glow-border);
  border-radius: 1rem;
  box-shadow: var(--glow-shadow);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
  background: transparent;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url("/images/hero-bg.jpg") center center / cover no-repeat;
  filter: grayscale(100%) brightness(0.26) contrast(1.08);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.72) 74%,
    rgba(0, 0, 0, 0.35) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.72) 74%,
    rgba(0, 0, 0, 0.35) 86%,
    transparent 100%
  );
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(0, 0, 0, 0.22),
    radial-gradient(ellipse 85% 70% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, transparent 42%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 70%,
    transparent 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-gap);
  width: 100%;
  max-width: 820px;
  min-width: 0;
  padding: calc(var(--header-height) + 3rem) 1.5rem 4rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-wrap: balance;
}

.hero__title-line {
  display: block;
}

.hero__highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
}

.hero__highlight-bg {
  position: absolute;
  top: 50%;
  left: -0.05em;
  right: -0.05em;
  height: 1.05em;
  transform: translateY(calc(-50% - 0.06em)) scaleX(0);
  transform-origin: left center;
  background: var(--color-off-white);
  z-index: 0;
}

body:not(.page-intro-active) .hero__highlight-bg {
  animation: hero-highlight-reveal 0.85s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s forwards;
}

.hero__title-line--1,
.hero__title-line--2 {
  display: block;
}

.hero__highlight-text {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  mix-blend-mode: difference;
}

@keyframes hero-highlight-reveal {
  to {
    transform: translateY(calc(-50% - 0.06em)) scaleX(1);
  }
}

.accent {
  color: var(--color-off-white);
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-gray-300);
  width: 100%;
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
}

.hero__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-gap);
  width: 100%;
  margin: 0;
}

.hero__proof-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gray-500);
  letter-spacing: 0.05em;
  margin: 0;
}

.avatar-carousel {
  width: min(100%, 320px);
  max-width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.avatar-carousel__track {
  display: flex;
  width: max-content;
  animation: avatar-scroll 32s linear infinite;
}

.avatar-carousel__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.avatar-carousel__list li {
  flex-shrink: 0;
  padding: 0 0.35rem;
}

.avatar-carousel__list img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-black);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
}

@keyframes avatar-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Problem section
   ========================================================================== */

.problem {
  padding: 5rem 2rem 6rem;
}

.problem__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.problem__badge {
  display: block;
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-white);
}

.problem__title {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.problem__title-line {
  display: block;
}

.problem__highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
}

.problem__highlight-bg {
  position: absolute;
  top: 50%;
  left: -0.05em;
  right: -0.05em;
  height: 1.05em;
  transform: translateY(calc(-50% - 0.06em)) scaleX(0);
  transform-origin: left center;
  background: var(--color-off-white);
  z-index: 0;
}

.section-reveal.is-in-view .problem__highlight-bg {
  animation: hero-highlight-reveal 0.85s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.problem__highlight-text {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  mix-blend-mode: difference;
}

.problem__intro {
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.problem__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem 2.25rem;
  background: transparent;
}

.problem__card.glow-card {
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 0 14px rgba(240, 238, 234, 0.14))
    drop-shadow(0 0 40px rgba(240, 238, 234, 0.08));
}

.problem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  color: var(--color-white);
}

.problem__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problem__card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
}

.problem__card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-300);
}

/* ==========================================================================
   Solution section
   ========================================================================== */

.solution {
  padding: 0 2rem 6rem;
}

.solution__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.solution__frame {
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 0 14px rgba(240, 238, 234, 0.14))
    drop-shadow(0 0 40px rgba(240, 238, 234, 0.08));
}

.solution__upper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  padding-bottom: 1.25rem;
}

.solution__content {
  padding: 2.5rem 2.25rem 1.25rem;
  text-align: left;
}

.solution__badge {
  margin: 0 0 1.25rem;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.solution__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.solution__title-line {
  display: block;
}

.solution__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution__body p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

.solution__media {
  padding: 1rem 1rem 0 0;
  width: 100%;
}

.solution__media-frame {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  line-height: 0;
  isolation: isolate;
}

.solution__media-frame picture {
  display: block;
  width: 100%;
}

.solution__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 28rem;
  object-fit: cover;
  object-position: center 18%;
  will-change: transform;
}

.solution__stats-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.solution__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.solution__stat:last-child {
  border-right: none;
}

.solution__stat-value {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.solution__stat-label {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-gray-500);
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem 0;
  overflow: hidden;
}

.marquee__viewport {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.marquee__text {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-off-white);
  white-space: nowrap;
  padding-right: 0.15em;
}

/* ==========================================================================
   Features section
   ========================================================================== */

.features {
  --features-media-height: clamp(20rem, 28vw, 28rem);
  padding: 5rem 2rem 6rem;
}

.features__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(5.5rem, 10vw, 8.5rem);
  max-width: 1120px;
  margin: 0 auto;
}

.features__intro {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.features__intro-badge {
  margin: 0 0 1.25rem;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-white);
}

.features__intro-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.features__intro-title-line {
  display: block;
}

.features__highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
}

.features__highlight-bg {
  position: absolute;
  top: 50%;
  left: -0.05em;
  right: -0.05em;
  height: 1.05em;
  transform: translateY(calc(-50% - 0.06em)) scaleX(0);
  transform-origin: left center;
  background: var(--color-off-white);
  z-index: 0;
}

.section-reveal.is-in-view .features__highlight-bg {
  animation: hero-highlight-reveal 0.85s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.features__highlight-text {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  mix-blend-mode: difference;
}

.features__intro-text {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.68;
  color: var(--color-gray-300);
}

.features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
  min-height: var(--features-media-height);
}

.features__row--reverse .features__content {
  order: 2;
}

.features__row--reverse .features__media {
  order: 1;
}

.features__row:has(.features__media--phone) {
  align-items: center;
  min-height: 0;
}

.features__row:has(.features__media--phone) .features__content {
  min-height: 0;
}

.features__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--features-media-height);
  text-align: left;
}

.features__row#support .features__content {
  justify-content: center;
  min-height: var(--features-media-height);
}

.features__label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-white);
}

.features__label-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-off-white);
}

.features__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.features__text {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

.features__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--features-media-height);
  min-height: var(--features-media-height);
  max-height: var(--features-media-height);
  padding: 0;
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 0 14px rgba(240, 238, 234, 0.14))
    drop-shadow(0 0 40px rgba(240, 238, 234, 0.08));
}

.features__media--video {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  filter: none;
}

.features__media-frame {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  line-height: 0;
}

.features__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.75rem;
}

.features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(7rem, 18vw, 10rem);
  height: clamp(7rem, 18vw, 10rem);
  color: var(--color-white);
}

.features__icon svg {
  width: 100%;
  height: 100%;
}

.features__media--chat {
  --chat-slot-height: 4.15rem;
  --chat-slot-gap: 0.75rem;
  --chat-thread-height: calc(var(--chat-slot-height) * 3 + var(--chat-slot-gap) * 2);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  filter: none;
}

.features__row#support .features__media--chat {
  height: var(--features-media-height);
  min-height: var(--features-media-height);
  max-height: var(--features-media-height);
  align-items: center;
  justify-content: center;
}

.features__row#support .chat-mockup {
  flex: 0 0 auto;
  height: auto;
}

.chat-mockup {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
}

.chat-mockup__thread {
  display: flex;
  flex-direction: column;
  gap: var(--chat-slot-gap);
  width: 100%;
  height: var(--chat-thread-height);
}

.chat-mockup__slot {
  display: block;
  position: relative;
  flex-shrink: 0;
  height: var(--chat-slot-height);
  opacity: 0;
  pointer-events: none;
}

.chat-mockup__slot.is-shown {
  opacity: 1;
  pointer-events: auto;
  animation: chat-slot-fade 0.4s ease both;
}

.chat-mockup.is-complete .chat-mockup__slot.is-shown {
  animation: none;
}

@keyframes chat-slot-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.chat-mockup__row {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.4s ease,
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.chat-mockup__row--right {
  flex-direction: row-reverse;
}

.chat-mockup__slot.is-shown [data-chat-message] {
  display: flex;
  align-items: flex-end;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transform: none;
  transition: none;
}

.chat-mockup__slot.is-typing .chat-mockup__row--typing {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.chat-mockup__slot.is-done .chat-mockup__row--typing {
  display: none;
}

.chat-mockup__slot.is-done [data-chat-message] {
  visibility: visible;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.4s ease,
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-mockup__slot.is-done [data-chat-message].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-mockup__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.chat-mockup__avatar--client {
  background: rgba(42, 42, 42, 0.96);
  color: var(--color-off-white);
}

.chat-mockup__avatar--coach {
  background: #5f6d54;
  color: var(--color-off-white);
}

.chat-mockup__bubble {
  max-width: min(100%, 16.5rem);
  padding: 0.72rem 0.95rem;
  border-radius: 1.1rem;
  background: rgba(42, 42, 42, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.chat-mockup__row--right .chat-mockup__bubble {
  border-bottom-right-radius: 0.35rem;
}

.chat-mockup__row--left .chat-mockup__bubble {
  border-bottom-left-radius: 0.35rem;
}

.chat-mockup__bubble--coach {
  background: #5f6d54;
}

.chat-mockup__bubble p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-off-white);
}

.chat-mockup__bubble--typing {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 3.4rem;
  min-height: 2.35rem;
  padding: 0.72rem 0.95rem;
}

.chat-mockup__bubble--typing span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: chat-typing-dot 1.1s ease-in-out infinite;
}

.chat-mockup__bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-mockup__bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-typing-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* ==========================================================================
   Phone + app mockup (De app section)
   ========================================================================== */

.features__media--phone {
  display: grid;
  place-items: center;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  overflow: visible;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  box-shadow: none;
  filter:
    drop-shadow(0 0 18px rgba(240, 238, 234, 0.12))
    drop-shadow(0 0 48px rgba(240, 238, 234, 0.06));
}

.features__media--phone.glow-card {
  border: 1px solid var(--border-subtle);
  box-shadow: none;
}

.features__media--phone .phone-mockup {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  height: auto;
}

.features__media--phone .phone-mockup__shell {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  height: auto;
}

.features__media--phone .phone-mockup__device {
  height: auto;
  width: clamp(11.5rem, 28vw, 15.5rem);
  max-width: 100%;
  margin-inline: auto;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  width: 100%;
}

.phone-mockup__shell {
  position: relative;
  padding: 0.45rem;
  border-radius: 2.65rem;
  background:
    linear-gradient(145deg, #4a4a4a 0%, #1a1a1a 42%, #0d0d0d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    0 22px 50px rgba(0, 0, 0, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.35);
}

.phone-mockup__side {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #5a5a5a, #2a2a2a 50%, #5a5a5a);
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.2);
}

.phone-mockup__side--left {
  left: -1px;
  top: 24%;
  height: 2.1rem;
}

.phone-mockup__side--right {
  right: -1px;
  top: 18%;
  height: 3.4rem;
}

.phone-mockup__device {
  width: clamp(11.5rem, 28vw, 15.5rem);
  border-radius: 2.25rem;
  padding: 0.34rem;
  background: linear-gradient(180deg, #111 0%, #050505 100%);
}

.phone-mockup__bezel {
  position: relative;
  overflow: hidden;
  border-radius: 1.95rem;
  background: #000;
}

.phone-mockup__island {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  z-index: 2;
  width: 28%;
  height: 1.15rem;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateX(-50%);
}

.phone-mockup__screen {
  position: relative;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  background: #000;
}

.phone-mockup__status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.2rem;
  color: #fff;
  pointer-events: none;
}

.phone-mockup__status-time {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.phone-mockup__status-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.phone-mockup__status-icons svg {
  display: block;
  flex-shrink: 0;
}

.phone-mockup__screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #000;
}

.phone-mockup__home-indicator {
  position: absolute;
  bottom: 0.42rem;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.app-mockup {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding:
    2rem 0.72rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    #000 url("/images/background-noise_result.avif") repeat;
  background-size: auto, 180px;
  color: var(--color-off-white);
}

.app-mockup__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  padding: 0 0.15rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-off-white);
}

.app-mockup__status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  color: var(--color-off-white);
}

.app-mockup__header {
  margin-bottom: 0.62rem;
  padding-top: 0.1rem;
}

.app-mockup__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.app-mockup__mark {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: 1rem;
  margin-top: 0.04rem;
  object-fit: contain;
  object-position: center;
}

.app-mockup__brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.14rem;
  min-width: 0;
}

.app-mockup__brand-name {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-off-white);
}

.app-mockup__brand-sub {
  font-family: var(--font-family);
  font-size: 0.46rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.app-mockup__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem;
  margin-bottom: 0.62rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.03);
}

.app-mockup__tab {
  padding: 0.34rem 0.4rem;
  border-radius: 0.4rem;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.app-mockup__tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-off-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.app-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.62rem;
}

.app-mockup__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  padding: 0.42rem 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.app-mockup__stat-value {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.app-mockup__stat-label {
  font-size: 0.46rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.app-mockup__cards {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.42rem;
  min-height: 0;
  overflow: hidden;
}

.app-mockup__card {
  padding: 0.48rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 18px rgba(240, 238, 234, 0.04);
}

.app-mockup__card--active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 22px rgba(240, 238, 234, 0.08);
}

.app-mockup__card--done {
  opacity: 0.62;
}

.app-mockup__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.22rem;
}

.app-mockup__day {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.app-mockup__check {
  font-size: 0.55rem;
  color: #7f8f72;
}

.app-mockup__pill {
  padding: 0.12rem 0.34rem;
  border-radius: 999px;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-off-white);
}

.app-mockup__card-title {
  margin: 0 0 0.14rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-mockup__card-meta {
  margin: 0;
  font-size: 0.48rem;
  line-height: 1.35;
  color: var(--color-gray-500);
}

.app-mockup__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-mockup__nav-item {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.app-mockup__nav-item.is-active {
  color: var(--color-off-white);
}

/* ==========================================================================
   About section (Over Guus)
   ========================================================================== */

.about {
  padding: clamp(4rem, 8vw, 6rem) 2rem 6rem;
}

.about__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.about__frame {
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 0 14px rgba(240, 238, 234, 0.14))
    drop-shadow(0 0 40px rgba(240, 238, 234, 0.08));
}

.about__upper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.about__content {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.25rem 2rem;
  text-align: left;
}

.about__media {
  display: flex;
  padding: 1rem 0 1rem 1rem;
  width: 100%;
  min-height: 100%;
}

.about__media-frame {
  flex: 1;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  line-height: 0;
  min-height: 0;
}

.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__badge {
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-white);
}

.about__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__body p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

.about__signature {
  margin: clamp(1.75rem, 4vw, 2.35rem) 0 0;
  font-family: var(--font-script);
  font-size: clamp(2rem, 4.5vw, 2.65rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

/* ==========================================================================
   Results section
   ========================================================================== */

.results {
  padding: clamp(4rem, 8vw, 6rem) 2rem clamp(5rem, 9vw, 7rem);
}

.results__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.results__header {
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.results__badge {
  margin: 0 0 1.25rem;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.results__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.results__title-line {
  display: block;
}

.results__intro {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(0.92rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

.results__switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.results__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.results__nav:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.results__nav:active {
  transform: scale(0.96);
}

.results__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.results__tab {
  padding: 0.62rem 1.35rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-300);
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.results__tab:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.results__tab.is-active {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.results__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.results__quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  min-height: clamp(20rem, 32vw, 26rem);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 0 14px rgba(240, 238, 234, 0.14))
    drop-shadow(0 0 40px rgba(240, 238, 234, 0.08));
}

.results__quote-mark {
  color: var(--color-off-white);
  line-height: 0;
}

.results__quote {
  margin: 0;
}

.results__quote p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-white);
}

.results__quote-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-gray-500);
}

.results__quote-dot {
  opacity: 0.7;
}

.results__compare {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(20rem, 32vw, 26rem);
  padding: 0.85rem;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  filter:
    drop-shadow(0 0 14px rgba(240, 238, 234, 0.14))
    drop-shadow(0 0 40px rgba(240, 238, 234, 0.08));
}

.results__compare-stage {
  --compare-pos: 50%;
  position: relative;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
}

.results__compare-images {
  position: absolute;
  inset: 0;
  container-type: inline-size;
}

.results__compare-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
}

.results__compare-img--after {
  position: absolute;
  inset: 0;
}

.results__compare-before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: var(--compare-pos);
  overflow: hidden;
}

.results__compare-img--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100cqw;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}

.results__compare-rail {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.results__compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 2px;
  transform: translateX(-50%);
  background: var(--color-white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

.results__compare-handle {
  position: absolute;
  top: 50%;
  left: var(--compare-pos);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: var(--color-white);
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: ew-resize;
  backdrop-filter: blur(6px);
}

.results__compare-grip {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.results__compare-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.52);
  border-radius: inherit;
}

.results__compare-loader[hidden] {
  display: none !important;
}

.results__compare-loader-spinner {
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--color-off-white);
  border-radius: 50%;
  animation: results-compare-spin 0.7s linear infinite;
}

.results__compare-stage.is-loading .results__compare-images {
  opacity: 0.4;
}

@keyframes results-compare-spin {
  to {
    transform: rotate(360deg);
  }
}

.results__stage.is-switching .results__quote-card,
.results__stage.is-switching .results__compare {
  opacity: 0.72;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.results__quote-card,
.results__compare {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* ==========================================================================
   FAQ section
   ========================================================================== */

.faq {
  padding: clamp(4rem, 8vw, 6rem) 2rem clamp(5rem, 9vw, 7rem);
}

.faq__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.faq__aside {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.faq__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.faq__title--letters {
  display: inline-flex;
  align-items: baseline;
}

.faq__title-letter {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  padding-top: 0.08em;
  padding-bottom: 0.04em;
}

.faq__title-letter-inner {
  display: block;
  will-change: transform;
}

.faq__badge {
  margin: 0 0 1rem;
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color var(--faq-duration) var(--faq-ease),
    background var(--faq-duration) var(--faq-ease);
}

.faq__item.is-open {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.45rem 1.5rem;
  border: none;
  background: transparent;
  font-family: var(--font-family);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: left;
  text-transform: none;
  color: var(--color-white);
  cursor: pointer;
}

.faq__question::after {
  flex-shrink: 0;
  font-family: var(--font-family);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-gray-300);
  content: "+";
  transition:
    transform var(--faq-duration) var(--faq-ease),
    color var(--faq-duration) var(--faq-ease);
}

.faq__item.is-open .faq__question::after {
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.5rem;
  transition: grid-template-rows var(--faq-duration) var(--faq-ease);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition:
    opacity var(--faq-duration) var(--faq-ease),
    transform var(--faq-duration) var(--faq-ease);
}

.faq__item.is-open .faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq__answer p {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

/* ==========================================================================
   Final CTA section
   ========================================================================== */

.cta-final {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(28rem, 52vw, 40rem);
  padding: clamp(5rem, 10vw, 7rem) 0;
  overflow: hidden;
  background: transparent;
}

.cta-final__rows {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  opacity: 0.46;
  pointer-events: none;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
}

.cta-final__row {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 7%,
    #000 28%,
    #000 72%,
    transparent 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 7%,
    #000 28%,
    #000 72%,
    transparent 93%,
    transparent 100%
  );
}

.cta-final__track {
  display: flex;
  width: max-content;
  animation: cta-scroll-left 90s linear infinite;
  will-change: transform;
}

.cta-final__track--reverse {
  animation-name: cta-scroll-right;
}

.cta-final__group {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.cta-review-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  width: clamp(18.5rem, 27vw, 23rem);
  min-height: 11rem;
  padding: 1.3rem 1.35rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: none;
}

.cta-review-card__avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.cta-review-card__avatar--bob { background: #4f6bce; }
.cta-review-card__avatar--mark { background: #3a9e72; }
.cta-review-card__avatar--sophie { background: #b85c9a; }
.cta-review-card__avatar--chris { background: #c9923f; }
.cta-review-card__avatar--loek { background: #3d8fc4; }
.cta-review-card__avatar--david { background: #7d65c9; }
.cta-review-card__avatar--lars { background: #c95d5d; }
.cta-review-card__avatar--emma { background: #5da88a; }

.cta-review-card__mark {
  color: rgba(255, 255, 255, 0.58);
  line-height: 0;
}

.cta-review-card__mark svg {
  width: 1.3rem;
  height: 1.3rem;
}

.cta-review-card__text {
  margin: 0;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  line-height: 1.52;
  color: rgba(212, 212, 212, 0.64);
}

.cta-review-card__meta {
  margin-top: auto;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(154, 154, 154, 0.62);
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.cta-final__title {
  margin: 0 0 1.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: none;
}

.cta-final__title-line {
  display: block;
}

.cta-final__btn .btn__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cta-final__btn-icon {
  flex-shrink: 0;
}

@keyframes cta-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes cta-scroll-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

/* ==========================================================================
   404 error page
   ========================================================================== */

.error-page {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow-x: clip;
}

.error-page__bg {
  position: absolute;
  top: clamp(14rem, 38vh, 24rem);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.error-page__bg-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: clamp(11rem, 30vw, 20rem);
  padding: 0.2em 0 0.1em;
  animation: error-page-bg-scroll 72s linear infinite;
  will-change: transform;
}

.error-page__bg-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(4rem, 12vw, 9rem);
  padding-right: clamp(4rem, 12vw, 9rem);
}

.error-page__bg-text {
  font-family: var(--font-heading);
  font-size: clamp(10rem, 34vw, 24rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  user-select: none;
}

@keyframes error-page-bg-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.error-page__hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: calc(var(--header-height) + clamp(1.5rem, 4vw, 2.5rem)) 1.5rem clamp(4rem, 8vw, 6rem);
}

.error-page__frame {
  width: min(100%, 44rem);
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 80px rgba(0, 0, 0, 0.45);
}

.error-page__kicker {
  margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  font-family: var(--font-script);
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-white);
}

.error-page__code {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 22vw, 11rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.error-page__code--letters {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.error-page__code-letter {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  padding-top: 0.08em;
  padding-bottom: 0.04em;
}

.error-page__code-letter-inner {
  display: block;
  will-change: transform;
}

.error-page__title {
  margin: clamp(0.65rem, 2vw, 1rem) 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
}

.error-page__title-line {
  display: block;
}

.error-page__badge {
  margin: clamp(0.85rem, 2.5vw, 1.35rem) 0 0;
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 4.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.error-page__desc {
  max-width: 34rem;
  margin: clamp(1rem, 2.5vw, 1.35rem) auto 0;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-gray-300);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: clamp(1.5rem, 3.5vw, 2rem);
}

body.page-enter-pending .error-page__code-letter-inner {
  transform: translateY(108%);
}

body.page-enter-active .error-page__code-letter-inner {
  animation: faq-letter-rise 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.08s + var(--letter-i, 0) * 0.11s);
}

/* ==========================================================================
   Start VSL page
   ========================================================================== */

/* ==========================================================================
   Start / booked page entrance — staggered fade up (header excluded)
   ========================================================================== */

body.page-enter-pending .page-enter:not(.is-entered),
body.page-enter-active .page-enter--scroll:not(.is-entered) {
  opacity: 0;
  transform: translateY(1.85rem);
}

body.page-enter-pending .page-enter:not(.is-entered) .hero__highlight-bg,
body.page-enter-active .page-enter--scroll:not(.is-entered) .hero__highlight-bg {
  animation: none;
  transform: translateY(calc(-50% - 0.06em)) scaleX(0);
}

body.page-enter-active .page-enter:not(.page-enter--scroll),
.page-enter.is-entered {
  animation: page-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.04s + var(--enter-i, 0) * 0.08s);
}

body.page-enter-active .page-enter:not(.page-enter--scroll) .hero__highlight-bg,
.page-enter.is-entered .hero__highlight-bg {
  animation: hero-highlight-reveal 0.85s cubic-bezier(0.25, 0.1, 0.25, 1) both;
  animation-delay: calc(0.1s + var(--enter-i, 0) * 0.08s);
}

.page-enter--scroll.is-entered {
  animation-delay: 0.04s;
}

@keyframes page-enter-up {
  from {
    opacity: 0;
    transform: translateY(1.85rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.start-page {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.start-vsl {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(1.5rem, 4vw, 2.75rem)) 1.5rem 5rem;
  text-align: center;
}

.start-vsl__bg {
  position: absolute;
  top: clamp(20rem, 48vh, 32rem);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.start-vsl__bg-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: clamp(11rem, 30vw, 20rem);
  padding: 0.2em 0 0.1em;
  animation: start-vsl-bg-scroll 80s linear infinite;
  will-change: transform;
}

.start-vsl__bg-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(4rem, 12vw, 9rem);
  padding-right: clamp(4rem, 12vw, 9rem);
}

.start-vsl__bg-text {
  font-family: var(--font-heading);
  font-size: clamp(10rem, 34vw, 24rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  user-select: none;
}

@keyframes start-vsl-bg-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.start-vsl__intro,
.start-vsl__video-card,
.start-vsl__form-placeholder {
  position: relative;
  z-index: 1;
}

.start-vsl__intro {
  z-index: 2;
}

.start-vsl__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.start-vsl__kicker {
  margin: 0 0 clamp(1.1rem, 2.5vw, 1.75rem);
  font-family: var(--font-script);
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  color: var(--color-white);
}

.start-vsl__title {
  max-width: 58rem;
  margin: 0 auto;
}

.start-vsl__description {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-gray-300);
}

.start-vsl__video-card {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0.85rem;
  background: transparent;
  box-shadow: none;
}

.start-vsl__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  background: var(--color-black);
  object-fit: cover;
}

.start-vsl__form-placeholder {
  max-width: 50rem;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.start-vsl__form-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.start-vsl__form-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.start-vsl__form-text {
  max-width: 34rem;
  margin: 1rem auto 1.75rem;
  color: var(--color-gray-300);
}

/* ==========================================================================
   Booked call page
   ========================================================================== */

.booked-call__proof {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 50rem;
  gap: 1.25rem;
}

.booked-call__section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
  text-align: center;
}

.booked-call__section-header {
  max-width: 42rem;
  margin: 0 auto;
}

.booked-call__section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-gray-300);
}

.booked-call__section-title {
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.booked-call__section-kicker {
  margin-bottom: 1.25rem;
}

.booked-call__whatsapp {
  display: flex;
  justify-content: center;
  margin: 0 0 1.5rem;
}

.booked-call__whatsapp img {
  width: clamp(3.5rem, 10vw, 4.75rem);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(37, 211, 102, 0.28));
}

.booked-call__section-text {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(0.92rem, 2vw, 1rem);
  line-height: 1.65;
  color: var(--color-gray-300);
}

.booked-call__section-text + .booked-call__section-text {
  margin-top: 1rem;
}

.booked-call__results {
  padding-top: 0;
}

.booked-call__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}

.booked-call__testimonials-grid .cta-review-card {
  width: auto;
  min-height: 11rem;
}

.start-vsl__bg--booked .start-vsl__bg-track {
  animation-duration: 95s;
}

/* ==========================================================================
   Site footer
   ========================================================================== */

.site-footer {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem) 2rem;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.site-footer__stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-heading);
  font-size: clamp(7.5rem, 26vw, 17rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.028);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1.15rem;
}

.site-footer__logo img {
  width: clamp(6.5rem, 13vw, 8.5rem);
  height: auto;
}

.site-footer__kicker {
  margin: 0 0 0.6rem;
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--color-gray-300);
  transform: rotate(-2deg);
  transform-origin: left center;
}

.site-footer__tagline {
  max-width: 21rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(154, 154, 154, 0.88);
}

.site-footer__label {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__links,
.site-footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__links a,
.site-footer__socials a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-gray-300);
  transition: color var(--transition);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  color: var(--color-white);
}

.site-footer__cta {
  margin-top: 1.35rem;
  font-family: var(--font-family);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(154, 154, 154, 0.72);
}

.site-footer__motto {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.84rem, 1.65vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
}

@media (max-width: 900px) {
  .problem {
    padding: 4rem 1.5rem 5rem;
  }

  .problem__title {
    max-width: none;
    font-size: clamp(2.35rem, 8.5vw, 3.25rem);
    text-wrap: pretty;
  }

  .problem__title-line {
    display: inline;
  }

  .problem__title-line + .problem__title-line::before {
    content: " ";
  }

  .problem__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin: 0 auto;
  }

  .solution {
    padding: 0 1.5rem 5rem;
  }

  .solution__upper {
    grid-template-columns: 1fr;
    padding-bottom: 1.5rem;
  }

  .solution__content {
    padding: 2rem 1.5rem 0;
  }

  .solution__media {
    padding: 1.25rem 1rem 0;
  }

  .solution__media img {
    max-height: 24rem;
  }

  .solution__stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution__stat:nth-child(2) {
    border-right: none;
  }

  .solution__stat:nth-child(1),
  .solution__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .features {
    padding: 4rem 1.5rem 5rem;
  }

  .features__inner {
    gap: 3.75rem;
  }

  .features__row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .features__row--reverse .features__content,
  .features__row--reverse .features__media {
    order: unset;
  }

  .features__content,
  .features__row#support .features__content {
    min-height: 0;
  }

  .features__media--phone {
    display: grid;
    place-items: center;
    height: auto;
    min-height: 0;
    max-height: none;
    width: 100%;
  }

  .features__media--phone .phone-mockup,
  .features__media--phone .phone-mockup__shell,
  .features__media--phone .phone-mockup__device {
    margin-inline: auto;
  }

  .features__media--phone .phone-mockup__device {
    width: min(100%, 15.5rem);
  }

  .features__media--phone .phone-mockup__shell {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .features__media--phone .phone-mockup__side {
    display: none;
  }

  .mobile-nav__content {
    --mobile-nav-block-gap: 1.25rem;
    padding:
      calc(var(--header-height) + 0.85rem)
      1.15rem
      calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-nav__label {
    margin-bottom: 0.7rem;
  }

  .mobile-nav__section .mobile-nav__rule {
    margin-bottom: 1.15rem;
  }

  .mobile-nav__list {
    gap: 0.1rem;
  }

  .mobile-nav__list .main-nav__link {
    font-size: clamp(2.05rem, 9vw, 2.65rem);
    line-height: 1.02;
    padding: 0.1em 0 0.1em 0.5em;
  }

  .mobile-nav__cta {
    font-size: 0.78rem;
    padding: 0.95rem 1.4rem;
  }

  .mobile-nav__footer {
    padding-bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-nav__footer .mobile-nav__rule {
    margin-bottom: 0.9rem;
  }

  .mobile-nav__footer .mobile-nav__label {
    margin-bottom: 0.6rem;
  }

  .about {
    padding: 4rem 1.5rem 5rem;
  }

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

  .about__content {
    padding: 2rem 1.5rem 1.75rem;
  }

  .about__media {
    display: block;
    padding: 1.25rem 1rem 0;
  }

  .about__media-frame {
    display: block;
  }

  .about__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 24rem;
  }

  .results {
    padding: 4rem 1.5rem 5rem;
  }

  .results__switcher {
    gap: 0.65rem;
  }

  .results__nav {
    width: 2.5rem;
    height: 2.5rem;
  }

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

  .results__quote-card {
    order: 2;
    min-height: auto;
  }

  .results__compare {
    order: 1;
    min-height: clamp(18rem, 65vw, 24rem);
  }

  .results__compare-stage {
    min-height: clamp(18rem, 65vw, 24rem);
  }

  .faq {
    padding: 4rem 1.5rem 5rem;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq__aside {
    position: static;
  }

  .faq__title {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .cta-final {
    min-height: clamp(24rem, 70vw, 32rem);
    padding: 4.5rem 0 7.25rem;
  }

  .cta-final__rows {
    bottom: 2.25rem;
  }

  .cta-review-card {
    width: clamp(17rem, 78vw, 21rem);
    min-height: 10.5rem;
  }

  .start-vsl {
    padding: calc(var(--header-height) + 1rem) 1.5rem 4rem;
  }

  .start-vsl__intro {
    margin-bottom: 1rem;
  }

  .start-vsl__kicker {
    margin-bottom: 0.85rem;
  }

  .start-vsl__description {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .start-vsl__video-card {
    width: 100%;
    max-width: none;
    padding: 0.85rem;
  }

  .start-vsl__bg {
    top: clamp(14rem, 38vh, 20rem);
  }

  .start-vsl__bg-text {
    font-size: clamp(9rem, 44vw, 20rem);
  }

  .booked-call__testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .site-footer {
    padding: 3.5rem 1.5rem 1.75rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .problem {
    padding: 3.5rem 1.25rem 4.5rem;
  }

  .problem__title {
    font-size: clamp(2.65rem, 11vw, 3.35rem);
    line-height: 1.04;
  }

  .problem__intro {
    margin-bottom: 2.25rem;
  }

  .problem__card {
    padding: 1.75rem 1.25rem 2rem;
  }

  .solution {
    padding: 0 1.25rem 4.5rem;
  }

  .solution__content {
    padding: 1.75rem 1.25rem;
  }

  .about__content {
    padding: 1.75rem 1.25rem;
  }

  .results__tab {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .faq__question {
    padding: 1.2rem 1.2rem;
    font-size: clamp(0.98rem, 3.8vw, 1.12rem);
    line-height: 1.45;
  }

  .faq__answer {
    padding-inline: 1.2rem;
  }

  .faq__answer-inner {
    padding-bottom: 1.2rem;
  }

  .solution__stats-list {
    grid-template-columns: 1fr;
  }

  .solution__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.35rem 1rem;
  }

  .solution__stat:last-child {
    border-bottom: none;
  }

  body.section-reveal-enabled .section-reveal--solution .solution__stat {
    border-bottom-color: transparent;
  }

  body.section-reveal-enabled .section-reveal--solution .solution__stat:not(:last-child)::after {
    top: auto;
    right: 12%;
    bottom: 0;
    left: 12%;
    width: auto;
    height: 1px;
    transform: scaleX(0.22);
    transform-origin: center;
  }

  .section-reveal--solution.is-in-view .solution__stat:nth-child(1)::after,
  .section-reveal--solution.is-in-view .solution__stat:nth-child(2)::after,
  .section-reveal--solution.is-in-view .solution__stat:nth-child(3)::after {
    animation-name: solution-line-h-in;
  }

  .error-page__bg {
    top: clamp(11rem, 34vh, 18rem);
  }

  .error-page__bg-text {
    font-size: clamp(8rem, 44vw, 16rem);
  }

  .error-page__frame {
    padding: 1.75rem 1.15rem 2rem;
  }

  .error-page__actions {
    flex-direction: column;
    width: 100%;
  }

  .error-page__actions .btn {
    width: 100%;
    max-width: 20rem;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .logo__img {
    height: 4.75rem;
  }
}

@media (max-width: 900px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .logo__img {
    height: 4.5rem;
  }
}

@media (min-width: 640px) {
  .hero__title-line:not(.hero__title-line--1):not(.hero__title-line--2) {
    display: inline;
  }

  .hero__title-line:not(.hero__title-line--1):not(.hero__title-line--2) + .hero__title-line::before {
    content: " ";
  }
}

@media (max-width: 480px) {
  :root {
    --hero-gap: 1.75rem;
  }

  .site-header__inner {
    padding: 0 1.25rem;
  }

  .logo__img {
    height: 4rem;
  }

  .hero__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__title {
    font-size: clamp(2.85rem, 11vw, 3.65rem);
    line-height: 1.06;
  }

  .mobile-nav__list .main-nav__link {
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    line-height: 1;
    padding: 0.06em 0 0.06em 0.45em;
  }

  .mobile-nav__content {
    --mobile-nav-block-gap: 1rem;
    padding:
      calc(var(--header-height) + 0.65rem)
      1rem
      calc(6.25rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-nav__cta {
    font-size: 0.74rem;
    padding: 0.85rem 1.25rem;
  }

  .mobile-nav__footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn--lg {
    font-size: 0.78rem;
    padding: 1rem 1.5rem;
    max-width: 100%;
  }

  .avatar-carousel {
    width: 100%;
  }
}

/* ==========================================================================
   Section scroll reveal — kickers, headings, descriptions
   ========================================================================== */

.section-reveal__kicker {
  display: inline-block;
  padding: 0.08em 0.45em 0.08em 0.2em;
  overflow: visible;
}

body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__kicker {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__line,
body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__desc {
  opacity: 0;
  transform: translateY(1.75rem);
}

body.section-reveal-enabled .section-reveal:not(.is-in-view) .problem__highlight-bg,
body.section-reveal-enabled .section-reveal:not(.is-in-view) .features__highlight-bg {
  animation: none;
  transform: translateY(calc(-50% - 0.06em)) scaleX(0);
}

.section-reveal.is-in-view .section-reveal__kicker {
  animation: section-kicker-draw 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

.section-reveal.is-in-view .section-reveal__line--1 {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.section-reveal.is-in-view .section-reveal__line--2 {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.section-reveal.is-in-view .section-reveal__desc {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__card {
  opacity: 0;
  transform: translateY(1.75rem);
}

.section-reveal.is-in-view .section-reveal__card:nth-child(1) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.section-reveal.is-in-view .section-reveal__card:nth-child(2) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

.section-reveal.is-in-view .section-reveal__card:nth-child(3) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__fade {
  opacity: 0;
}

.section-reveal.is-in-view .section-reveal__fade {
  animation: section-fade-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) {
  opacity: 0;
  transform: translateY(2.75rem);
}

.section-reveal--solution.is-in-view {
  animation: section-enter-up 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__media img {
  opacity: 0;
  transform: translateX(-108%);
}

.section-reveal--solution.is-in-view .solution__media img {
  animation: solution-media-slide 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

body.section-reveal-enabled .section-reveal--solution .solution__stats-list {
  position: relative;
  border-top-color: transparent;
}

body.section-reveal-enabled .section-reveal--solution .solution__stats-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: center;
  pointer-events: none;
}

body.section-reveal-enabled .section-reveal--solution .solution__stat {
  position: relative;
  border-right-color: transparent;
}

body.section-reveal-enabled .section-reveal--solution .solution__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scaleY(0.22);
  transform-origin: center;
  pointer-events: none;
}

body.section-reveal-enabled .section-reveal--solution .solution__cta {
  position: relative;
  border-top-color: transparent;
}

body.section-reveal-enabled .section-reveal--solution .solution__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: center;
  pointer-events: none;
}

body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__stat-value,
body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__stat-label {
  opacity: 0;
  transform: translateY(0.85rem);
}

.section-reveal--solution.is-in-view .solution__stats-list::before {
  animation: solution-line-h-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(1)::after {
  animation: solution-line-v-in 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.54s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(2)::after {
  animation: solution-line-v-in 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.61s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(3)::after {
  animation: solution-line-v-in 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(1) .solution__stat-value,
.section-reveal--solution.is-in-view .solution__stat:nth-child(1) .solution__stat-label {
  animation: section-enter-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(2) .solution__stat-value,
.section-reveal--solution.is-in-view .solution__stat:nth-child(2) .solution__stat-label {
  animation: section-enter-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(3) .solution__stat-value,
.section-reveal--solution.is-in-view .solution__stat:nth-child(3) .solution__stat-label {
  animation: section-enter-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

.section-reveal--solution.is-in-view .solution__stat:nth-child(4) .solution__stat-value,
.section-reveal--solution.is-in-view .solution__stat:nth-child(4) .solution__stat-label {
  animation: section-enter-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.69s both;
}

.section-reveal--solution.is-in-view .solution__cta::before {
  animation: solution-line-h-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.82s both;
}

body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__cta .btn {
  opacity: 0;
}

.section-reveal--solution.is-in-view .solution__cta .btn {
  animation: section-fade-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.92s both;
}

@media (max-width: 900px) {
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .section-reveal__kicker,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .section-reveal__line,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .section-reveal__fade,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__media img,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__stat-value,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__stat-label,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__cta .btn {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .section-reveal--solution.is-in-view .section-reveal__kicker,
  .section-reveal--solution.is-in-view .section-reveal__line--1,
  .section-reveal--solution.is-in-view .section-reveal__line--2,
  .section-reveal--solution.is-in-view .section-reveal__fade,
  .section-reveal--solution.is-in-view .solution__media img,
  .section-reveal--solution.is-in-view .solution__stats-list::before,
  .section-reveal--solution.is-in-view .solution__stat::after,
  .section-reveal--solution.is-in-view .solution__stat-value,
  .section-reveal--solution.is-in-view .solution__stat-label,
  .section-reveal--solution.is-in-view .solution__cta::before,
  .section-reveal--solution.is-in-view .solution__cta .btn {
    animation: none !important;
  }

  body.section-reveal-enabled .section-reveal--solution .solution__stats-list {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  body.section-reveal-enabled .section-reveal--solution .solution__stats-list::before,
  body.section-reveal-enabled .section-reveal--solution .solution__stat:not(:last-child)::after,
  body.section-reveal-enabled .section-reveal--solution .solution__cta::before {
    display: none;
  }

  body.section-reveal-enabled .section-reveal--solution .solution__stat {
    border-right-color: rgba(255, 255, 255, 0.12);
  }

  body.section-reveal-enabled .section-reveal--solution .solution__cta {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  @media (max-width: 480px) {
    body.section-reveal-enabled .section-reveal--solution .solution__stat {
      border-right: none;
      border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    body.section-reveal-enabled .section-reveal--solution .solution__stat:last-child {
      border-bottom: none;
    }
  }
}

.section-reveal.is-in-view .features__highlight-bg {
  animation: hero-highlight-reveal 0.85s cubic-bezier(0.25, 0.1, 0.25, 1) 0.16s both;
}

/* ==========================================================================
   About block scroll reveal
   ========================================================================== */

body.about-reveal-enabled .about-block-reveal:not(.is-in-view) {
  opacity: 0;
  transform: translateY(2.75rem);
}

.about-block-reveal.is-in-view {
  animation: section-enter-up 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ==========================================================================
   FAQ block scroll reveal
   ========================================================================== */

body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) {
  opacity: 0;
  transform: translateY(2.75rem);
}

body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) .faq__title-letter-inner {
  transform: translateY(108%);
}

.faq-block-reveal.is-in-view {
  animation: section-enter-up 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-block-reveal.is-in-view .faq__title-letter-inner {
  animation: faq-letter-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.3s + var(--letter-i, 0) * 0.09s);
}

body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) .faq__badge,
body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) .faq__item {
  opacity: 0;
  transform: translateY(1.75rem);
}

.faq-block-reveal.is-in-view .faq__badge {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(1) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(2) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(3) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(4) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(5) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(6) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.66s both;
}

.faq-block-reveal.is-in-view .faq__item:nth-child(7) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.74s both;
}

@keyframes faq-letter-rise {
  from {
    transform: translateY(108%);
  }

  to {
    transform: translateY(0);
  }
}

/* ==========================================================================
   Final CTA scroll reveal
   ========================================================================== */

body.cta-final-reveal-enabled .cta-final-reveal:not(.is-in-view) {
  opacity: 0;
  transform: translateY(1.75rem) scale(0.94);
}

.cta-final-reveal.is-in-view {
  animation: cta-final-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cta-final-enter {
  from {
    opacity: 0;
    transform: translateY(1.75rem) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   Features row scroll reveal
   ========================================================================== */

body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features-row-reveal__from-left {
  opacity: 0;
  transform: translateX(-2.75rem);
}

body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features__media--phone.features-row-reveal__from-left {
  opacity: 0;
  transform: translateY(2rem);
}

body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features-row-reveal__from-right {
  opacity: 0;
  transform: translateX(2.75rem);
}

.features-row-reveal.is-in-view .features-row-reveal__from-left {
  animation: features-enter-left 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.features-row-reveal.is-in-view .features__media--phone.features-row-reveal__from-left {
  animation: section-enter-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.features-row-reveal.is-in-view .features-row-reveal__from-right {
  animation: features-enter-right 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes features-enter-left {
  from {
    opacity: 0;
    transform: translateX(-2.75rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes features-enter-right {
  from {
    opacity: 0;
    transform: translateX(2.75rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) {
    opacity: 0;
    transform: translateY(2.5rem);
  }

  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features-row-reveal__from-left,
  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features-row-reveal__from-right {
    opacity: 1;
    transform: none;
  }

  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features__media--phone.features-row-reveal__from-left {
    opacity: 1;
    transform: none;
  }

  .features-row-reveal.is-in-view {
    animation: section-enter-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .features-row-reveal.is-in-view .features-row-reveal__from-left,
  .features-row-reveal.is-in-view .features-row-reveal__from-right {
    animation: none;
  }

  .features-row-reveal.is-in-view .features__media--phone.features-row-reveal__from-left {
    animation: none;
  }
}

/* ==========================================================================
   Results block scroll reveal
   ========================================================================== */

body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__nav,
body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__tab {
  opacity: 0;
  transform: translateY(1.75rem);
}

body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results-reveal__from-left {
  opacity: 0;
  transform: translateX(-2.75rem);
}

body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results-reveal__from-right {
  opacity: 0;
  transform: translateX(2.75rem);
}

body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__cta .btn {
  opacity: 0;
}

.results-block-reveal.is-in-view .results__switcher > .results__nav--prev {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.results-block-reveal.is-in-view .results__tabs .results__tab:nth-child(1) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.results-block-reveal.is-in-view .results__tabs .results__tab:nth-child(2) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.results-block-reveal.is-in-view .results__tabs .results__tab:nth-child(3) {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.results-block-reveal.is-in-view .results__switcher > .results__nav--next {
  animation: section-enter-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.results-block-reveal.is-in-view .results-reveal__from-left {
  animation: features-enter-left 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

.results-block-reveal.is-in-view .results-reveal__from-right {
  animation: features-enter-right 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.results-block-reveal.is-in-view .results__cta .btn {
  animation: section-fade-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.82s both;
}

@media (max-width: 900px) {
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) {
    opacity: 0;
    transform: translateY(2.5rem);
  }

  .results-block-reveal.is-in-view {
    animation: section-enter-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__nav,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__tab,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__stage,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results-reveal__from-left,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results-reveal__from-right,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__cta .btn {
    opacity: 1;
    transform: none;
  }

  .results-block-reveal.is-in-view .results__switcher > .results__nav--prev,
  .results-block-reveal.is-in-view .results__tabs .results__tab:nth-child(1),
  .results-block-reveal.is-in-view .results__tabs .results__tab:nth-child(2),
  .results-block-reveal.is-in-view .results__tabs .results__tab:nth-child(3),
  .results-block-reveal.is-in-view .results__switcher > .results__nav--next,
  .results-block-reveal.is-in-view .results__stage,
  .results-block-reveal.is-in-view .results-reveal__from-left,
  .results-block-reveal.is-in-view .results-reveal__from-right,
  .results-block-reveal.is-in-view .results__cta .btn {
    animation: none !important;
  }
}

/* ==========================================================================
   Section CTA scroll reveal
   ========================================================================== */

body.section-cta-reveal-enabled .section-cta-reveal:not(.is-in-view) .btn {
  opacity: 0;
}

.section-cta-reveal.is-in-view .btn {
  animation: section-fade-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.cta-final__btn-wrap {
  display: flex;
  justify-content: center;
}

@keyframes section-kicker-draw {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: blur(1.5px);
  }

  12% {
    opacity: 1;
    clip-path: inset(0 88% 0 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(-0.12em 0 -0.12em 0);
    filter: blur(0);
  }
}

@keyframes section-enter-up {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes solution-media-slide {
  from {
    opacity: 0;
    transform: translateX(-108%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes solution-line-h-in {
  from {
    opacity: 0;
    transform: scaleX(0.18);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes solution-line-v-in {
  from {
    opacity: 0;
    transform: scaleY(0.22);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

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

  .site-header {
    transition-duration: 0.01ms !important;
  }

  .btn__fill {
    transition-duration: 0.15s !important;
  }

  .hero__highlight-bg {
    animation: none;
    transform: translateY(calc(-50% - 0.06em)) scaleX(1);
  }

  .problem__highlight-bg {
    animation: none;
    transform: translateY(calc(-50% - 0.06em)) scaleX(1);
  }

  .features__highlight-bg {
    animation: none;
    transform: translateY(calc(-50% - 0.06em)) scaleX(1);
  }

  .results__compare-loader-spinner {
    animation: none !important;
  }

  .results__stage.is-switching .results__quote-card,
  .results__stage.is-switching .results__compare,
  .results__quote-card,
  .results__compare {
    transition: none;
  }

  .faq__item,
  .faq__answer,
  .faq__answer-inner,
  .faq__question::after {
    transition-duration: 0.01ms !important;
  }

  .faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
  }

  .faq__item.is-open .faq__answer-inner {
    opacity: 1;
    transform: translateY(0);
  }

  .avatar-carousel__track {
    animation: none;
  }

  .marquee__track {
    animation: none;
  }

  .cta-final__track {
    animation: none;
    transform: none;
  }

  .cta-final__track--reverse {
    transform: none;
  }

  .start-vsl__bg-track {
    animation: none;
    transform: none;
  }

  .error-page__bg-track {
    animation: none;
    transform: none;
  }

  body.page-enter-pending .error-page__code-letter-inner,
  body.page-enter-active .error-page__code-letter-inner {
    transform: none;
    animation: none !important;
  }

  .main-nav__link.is-hover .main-nav__ring path,
  .main-nav__link.is-exit .main-nav__ring path {
    transition: none !important;
  }

  .hero__video,
  .features__video {
    display: none;
  }

  .chat-mockup__slot {
    opacity: 1;
    pointer-events: auto;
    animation: none;
  }

  .chat-mockup__row {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chat-mockup__slot .chat-mockup__row--typing {
    display: none !important;
  }

  .chat-mockup__slot [data-chat-message] {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chat-mockup__bubble--typing span {
    animation: none;
  }

  .mobile-nav__reveal {
    transition-duration: 0.01s !important;
  }

  .mobile-nav__content,
  .mobile-nav.is-open .mobile-nav__section > .mobile-nav__label,
  .mobile-nav.is-open .mobile-nav__section > .mobile-nav__rule,
  .mobile-nav.is-open .mobile-nav__list > li,
  .mobile-nav.is-open .mobile-nav__cta,
  .mobile-nav.is-open .mobile-nav__footer > .mobile-nav__rule,
  .mobile-nav.is-open .mobile-nav__footer > .mobile-nav__label,
  .mobile-nav.is-open .mobile-nav__socials > li {
    animation: none !important;
  }

  .mobile-nav:not(.is-open) .mobile-nav__section > .mobile-nav__label,
  .mobile-nav:not(.is-open) .mobile-nav__section > .mobile-nav__rule,
  .mobile-nav:not(.is-open) .mobile-nav__list > li,
  .mobile-nav:not(.is-open) .mobile-nav__cta,
  .mobile-nav:not(.is-open) .mobile-nav__footer > .mobile-nav__rule,
  .mobile-nav:not(.is-open) .mobile-nav__footer > .mobile-nav__label,
  .mobile-nav:not(.is-open) .mobile-nav__socials > li,
  .mobile-nav.is-open .mobile-nav__section > .mobile-nav__label,
  .mobile-nav.is-open .mobile-nav__section > .mobile-nav__rule,
  .mobile-nav.is-open .mobile-nav__list > li,
  .mobile-nav.is-open .mobile-nav__cta,
  .mobile-nav.is-open .mobile-nav__footer > .mobile-nav__rule,
  .mobile-nav.is-open .mobile-nav__footer > .mobile-nav__label,
  .mobile-nav.is-open .mobile-nav__socials > li {
    opacity: 1;
    transform: none;
  }

  .mobile-nav__content {
    transition-duration: 0.01s !important;
    transition-delay: 0s !important;
  }

  body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__kicker,
  body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__line,
  body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__desc,
  body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__card,
  body.section-reveal-enabled .section-reveal:not(.is-in-view) .section-reveal__fade,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view),
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__media img,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__stat-value,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__stat-label,
  body.section-reveal-enabled .section-reveal--solution:not(.is-in-view) .solution__cta .btn {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }

  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view),
  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features-row-reveal__from-left,
  body.features-row-reveal-enabled .features-row-reveal:not(.is-in-view) .features-row-reveal__from-right {
    opacity: 1;
    transform: none;
  }

  body.results-reveal-enabled .results-block-reveal:not(.is-in-view),
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__nav,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__tab,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__stage,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results-reveal__from-left,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results-reveal__from-right,
  body.results-reveal-enabled .results-block-reveal:not(.is-in-view) .results__cta .btn,
  body.section-cta-reveal-enabled .section-cta-reveal:not(.is-in-view) .btn {
    opacity: 1;
    transform: none;
  }

  body.about-reveal-enabled .about-block-reveal:not(.is-in-view),
  body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view),
  body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) .faq__title-letter-inner,
  body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) .faq__badge,
  body.faq-reveal-enabled .faq-block-reveal:not(.is-in-view) .faq__item,
  body.cta-final-reveal-enabled .cta-final-reveal:not(.is-in-view) {
    opacity: 1;
    transform: none;
  }

  body.section-reveal-enabled .section-reveal--solution .solution__stats-list::before,
  body.section-reveal-enabled .section-reveal--solution .solution__stat:not(:last-child)::after,
  body.section-reveal-enabled .section-reveal--solution .solution__cta::before {
    opacity: 1;
    transform: none;
  }

  .section-reveal.is-in-view .section-reveal__kicker,
  .section-reveal.is-in-view .section-reveal__line,
  .section-reveal.is-in-view .section-reveal__desc,
  .section-reveal.is-in-view .section-reveal__card,
  .section-reveal.is-in-view .section-reveal__fade,
  .section-reveal--solution.is-in-view,
  .section-reveal--solution.is-in-view .solution__media img,
  .section-reveal--solution.is-in-view .solution__stat-value,
  .section-reveal--solution.is-in-view .solution__stat-label,
  .section-reveal--solution.is-in-view .solution__stats-list::before,
  .section-reveal--solution.is-in-view .solution__stat::after,
  .section-reveal--solution.is-in-view .solution__cta::before,
  .section-reveal--solution.is-in-view .solution__cta .btn,
  .features-row-reveal.is-in-view,
  .features-row-reveal.is-in-view .features-row-reveal__from-left,
  .features-row-reveal.is-in-view .features-row-reveal__from-right,
  .results-block-reveal.is-in-view,
  .results-block-reveal.is-in-view .results__nav,
  .results-block-reveal.is-in-view .results__tab,
  .results-block-reveal.is-in-view .results__stage,
  .results-block-reveal.is-in-view .results-reveal__from-left,
  .results-block-reveal.is-in-view .results-reveal__from-right,
  .results-block-reveal.is-in-view .results__cta .btn,
  .section-cta-reveal.is-in-view .btn,
  .about-block-reveal.is-in-view,
  .faq-block-reveal.is-in-view,
  .faq-block-reveal.is-in-view .faq__title-letter-inner,
  .faq-block-reveal.is-in-view .faq__badge,
  .faq-block-reveal.is-in-view .faq__item,
  .cta-final-reveal.is-in-view,
  .section-reveal.is-in-view .problem__highlight-bg,
  .section-reveal.is-in-view .features__highlight-bg {
    animation: none !important;
  }

  .section-reveal.is-in-view .problem__highlight-bg,
  .section-reveal.is-in-view .features__highlight-bg {
    transform: translateY(calc(-50% - 0.06em)) scaleX(1);
  }

  body.page-enter-pending .page-enter:not(.is-entered),
  body.page-enter-active .page-enter--scroll:not(.is-entered),
  body.page-enter-active .page-enter,
  .page-enter.is-entered {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  body.page-enter-pending .page-enter:not(.is-entered) .hero__highlight-bg,
  body.page-enter-active .page-enter--scroll:not(.is-entered) .hero__highlight-bg,
  body.page-enter-active .page-enter .hero__highlight-bg,
  .page-enter.is-entered .hero__highlight-bg {
    animation: none !important;
    transform: translateY(calc(-50% - 0.06em)) scaleX(1);
  }
}
