/* Tokens */

@font-face {
  font-family: "Open Sans";
  src: url("./assets/fonts/OpenSans-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-stretch: 75% 100%;
  font-weight: 300 800;
}

@font-face {
  font-family: "TT Hoves";
  src: url("./assets/fonts/TTHoves-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --stage-base-width: 1600;
  --stage-width: 2560;
  --stage-max-scale: 1.6;
  --hero-width: 2560;
  --hero-height: 1188;
  --about-height: 1323;
  --about-overlap: 120;
  --rating-height: 633;
  --support-height: 1042;
  --corp-height: 1020;
  --industries-height: 453;
  --projects-height: 813;
  --footer-height: 749;
  --page-bg: #f8f5fc;
  --ink: #111111;
  --purple: #5c216e;
  --stage-scale: min(var(--stage-max-scale), calc(100vw / (var(--stage-base-width) * 1px)));
  --industries-scroll-duration: 60s;
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(13px);
  --motion-duration: 1100ms;
  --motion-duration-short: 700ms;
  --motion-duration-base: 950ms;
  --motion-duration-slow: 1200ms;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-stagger: 120ms;
  --motion-stagger-tight: 90ms;
  --motion-distance-text: 18px;
  --motion-distance-card: 28px;
  --hover-duration: 260ms;
  --hover-duration-slow: 420ms;
  --hover-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hover-shadow-soft: 0 18px 44px rgba(92, 33, 110, 0.16);
  --hover-shadow-light: 0 14px 34px rgba(92, 33, 110, 0.12);
  --hover-glow: 0 0 0 1px rgba(92, 33, 110, 0.14), 0 16px 34px rgba(92, 33, 110, 0.1);
}

@property --motion-title-x {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@property --motion-title-y {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

@property --motion-title-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

/* Base */

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page-bg);
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-variation-settings: "wdth" 100;
}

img {
  display: block;
}

button {
  color: inherit;
  font: inherit;
}

:where(a,
  button,
  input,
  select,
  textarea,
  summary,
  [role="button"],
  [tabindex]:not([tabindex="-1"])):focus:not(:focus-visible) {
  outline: none;
}

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

[data-animate] {
  --motion-opacity: 1;
  --motion-start-opacity: 0;
  --motion-offset-x: 0px;
  --motion-offset-y: 0px;
  --motion-scale: 1;
  --motion-delay: 0ms;
  --motion-transform-rest: translate3d(0, 0, 0) scale(1);
  --motion-transform-start: translate3d(var(--motion-offset-x), var(--motion-offset-y), 0) scale(var(--motion-scale));
}

.page {
  min-height: 100vh;
  background: var(--page-bg);
}

html.is-enhanced [data-animate^="hero-"] {
  opacity: var(--motion-opacity);
  transform: var(--motion-transform-rest);
  transform-origin: center;
  will-change: opacity, transform;
}

html.is-enhanced [data-animate^="hero-"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: var(--motion-transform-start);
}

html.is-enhanced [data-animate^="hero-"].is-in-view {
  animation: motion-hero-in var(--motion-duration) var(--motion-ease) var(--motion-delay) both;
}

html.is-enhanced [data-animate^="hero-"].is-motion-complete,
html.is-enhanced [data-animate^="hero-"].is-motion-complete span {
  will-change: auto;
}

[data-animate="hero-background"] {
  --motion-duration: 1200ms;
  --motion-scale: 1.03;
  transform-origin: center top;
}

[data-animate="hero-logo"] {
  --motion-delay: 0ms;
  --motion-logo-line-1-delay: var(--motion-hero-intro-line-1-delay);
  --motion-logo-line-1-duration: 680ms;
  --motion-logo-line-2-delay: var(--motion-hero-intro-line-1-delay);
  --motion-logo-line-2-duration: 940ms;
  --motion-logo-offset-x: calc(clamp(24px, 2.75vw, 52px) * -1);
  --motion-logo-ease: var(--motion-hero-intro-ease);
}

[data-animate="hero-title"] {
  --motion-delay: 0ms;
  --motion-hero-title-x-ease: cubic-bezier(0.18, 0.9, 0.42, 0.94);
  --motion-hero-title-y-ease: cubic-bezier(0.18, 0.9, 0.42, 0.94);
  --motion-hero-title-scale-ease: cubic-bezier(0.18, 0.9, 0.42, 0.94);
  --motion-hero-title-fade-ease: cubic-bezier(0.18, 0.9, 0.42, 0.94);
  --motion-hero-title-gap-ease: linear;
  --motion-title-duration: 2000ms;
  --motion-title-scale-duration: var(--motion-title-duration);
  --motion-title-gap-delay: 0ms;
  --motion-title-gap-duration: var(--motion-title-duration);
  --motion-title-fade-duration: 1800ms;
  --motion-title-start-opacity: 0;
  --motion-title-offset-x: -160px;
  --motion-title-offset-y: 115px;
  --motion-title-start-scale: 1.32;
  --motion-title-scale: 1;
  --motion-title-x: 0px;
  --motion-title-y: 0px;
  --motion-title-gap-start: clamp(8px, 1.1vw, 18px);
}

[data-animate="hero-lead"] {
  --motion-delay: 0ms;
  --motion-lead-line-1-delay: var(--motion-hero-intro-line-1-delay);
  --motion-lead-line-1-duration: var(--motion-hero-intro-line-1-duration);
  --motion-lead-line-2-delay: var(--motion-hero-intro-line-2-delay);
  --motion-lead-line-2-duration: var(--motion-hero-intro-line-2-duration);
  --motion-lead-offset-y: 72%;
  --motion-lead-ease: var(--motion-hero-intro-ease);
}

[data-animate="hero-notice"] {
  --motion-offset-y: 12px;
  --motion-delay: var(--motion-hero-intro-notice-delay);
}

html.is-enhanced [data-animate="hero-logo"],
html.is-enhanced [data-animate="hero-logo"]:not(.is-in-view),
html.is-enhanced [data-animate="hero-logo"].is-in-view {
  animation: none;
  opacity: 1;
  transform: none;
  will-change: auto;
}

html.is-enhanced [data-animate="hero-logo"] .hero-logo__link {
  overflow: hidden;
}

html.is-enhanced [data-animate="hero-logo"] .hero-logo__mark {
  display: block;
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

html.is-enhanced [data-animate="hero-logo"]:not(.is-in-view) .hero-logo__mark {
  opacity: 0;
  transform: translate3d(var(--motion-logo-offset-x), 0, 0);
}

html.is-enhanced [data-animate="hero-logo"].is-in-view .hero-logo__mark {
  animation: motion-hero-logo-line var(--motion-logo-line-1-duration) var(--motion-logo-ease) var(--motion-logo-line-1-delay) both;
}

html.is-enhanced [data-animate="hero-logo"].is-in-view .hero-logo__link:nth-child(1) .hero-logo__mark {
  animation-delay: var(--motion-logo-line-1-delay);
  animation-duration: var(--motion-logo-line-1-duration);
}

html.is-enhanced [data-animate="hero-logo"].is-in-view .hero-logo__link:nth-child(2) .hero-logo__mark {
  animation-delay: var(--motion-logo-line-2-delay);
  animation-duration: var(--motion-logo-line-2-duration);
}

html.is-enhanced [data-animate="hero-title"],
html.is-enhanced [data-animate="hero-title"]:not(.is-in-view),
html.is-enhanced [data-animate="hero-title"].is-in-view {
  animation: none;
  opacity: 1;
  transform: none;
  will-change: auto;
}

html.is-enhanced [data-animate="hero-title"] span {
  margin-bottom: 0;
  opacity: var(--motion-opacity);
  transform: translate3d(var(--motion-title-x), var(--motion-title-y), 0) scale(var(--motion-title-scale));
  transform-origin: left center;
  will-change: margin-bottom, opacity, transform;
}

html.is-enhanced [data-animate="hero-title"]:not(.is-in-view) span {
  --motion-title-x: var(--motion-title-offset-x);
  --motion-title-y: var(--motion-title-offset-y);
  --motion-title-scale: var(--motion-title-start-scale);
  margin-bottom: var(--motion-title-gap-start);
  opacity: var(--motion-title-start-opacity);
}

html.is-enhanced [data-animate="hero-title"] span:last-child {
  margin-bottom: 0;
}

html.is-enhanced [data-animate="hero-title"].is-in-view span {
  animation:
    motion-hero-title-x var(--motion-title-duration) var(--motion-hero-title-x-ease) both,
    motion-hero-title-y var(--motion-title-duration) var(--motion-hero-title-y-ease) both,
    motion-hero-title-scale var(--motion-title-scale-duration) var(--motion-hero-title-scale-ease) both,
    motion-hero-title-opacity var(--motion-title-fade-duration) var(--motion-hero-title-fade-ease) both,
    motion-hero-title-gap var(--motion-title-gap-duration) var(--motion-hero-title-gap-ease) var(--motion-title-gap-delay) both;
}

html.is-enhanced [data-animate="hero-lead"],
html.is-enhanced [data-animate="hero-lead"]:not(.is-in-view),
html.is-enhanced [data-animate="hero-lead"].is-in-view {
  animation: none;
  opacity: 1;
  transform: none;
  will-change: auto;
}

html.is-enhanced [data-animate="hero-lead"]>span {
  overflow: hidden;
  opacity: 1;
  transform: none;
}

html.is-enhanced [data-animate="hero-lead"] .hero-lead__line {
  display: block;
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

html.is-enhanced [data-animate="hero-lead"]:not(.is-in-view) .hero-lead__line {
  opacity: 0;
  transform: translate3d(0, var(--motion-lead-offset-y), 0);
}

html.is-enhanced [data-animate="hero-lead"].is-in-view .hero-lead__line {
  animation: motion-hero-lead-line var(--motion-lead-line-1-duration) var(--motion-lead-ease) var(--motion-lead-line-1-delay) both;
}

html.is-enhanced [data-animate="hero-lead"].is-in-view>span:nth-child(1) .hero-lead__line {
  animation-delay: var(--motion-lead-line-1-delay);
  animation-duration: var(--motion-lead-line-1-duration);
}

html.is-enhanced [data-animate="hero-lead"].is-in-view>span:nth-child(2) .hero-lead__line {
  animation-delay: var(--motion-lead-line-2-delay);
  animation-duration: var(--motion-lead-line-2-duration);
}

@keyframes motion-hero-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: var(--motion-transform-start);
  }

  to {
    opacity: var(--motion-opacity);
    transform: var(--motion-transform-rest);
  }
}

@keyframes motion-hero-title-x {
  from {
    --motion-title-x: var(--motion-title-offset-x);
  }

  to {
    --motion-title-x: 0px;
  }
}

@keyframes motion-hero-title-y {
  from {
    --motion-title-y: var(--motion-title-offset-y);
  }

  to {
    --motion-title-y: 0px;
  }
}

@keyframes motion-hero-title-opacity {
  from {
    opacity: var(--motion-title-start-opacity);
  }

  to {
    opacity: var(--motion-opacity);
  }
}

@keyframes motion-hero-title-scale {
  from {
    --motion-title-scale: var(--motion-title-start-scale);
  }

  to {
    --motion-title-scale: 1;
  }
}

@keyframes motion-hero-title-gap {
  0% {
    margin-bottom: var(--motion-title-gap-start);
  }

  10% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.98);
  }

  22% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.95);
  }

  36% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.9);
  }

  52% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.78);
  }

  68% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.58);
  }

  82% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.34);
  }

  92% {
    margin-bottom: calc(var(--motion-title-gap-start) * 0.14);
  }

  100% {
    margin-bottom: 0;
  }
}

@keyframes motion-hero-logo-line {
  from {
    opacity: 0;
    transform: translate3d(var(--motion-logo-offset-x), 0, 0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-hero-lead-line {
  from {
    opacity: 0;
    transform: translate3d(0, var(--motion-lead-offset-y), 0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-hero-title-line {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, var(--motion-title-line-y, var(--motion-distance-text)), 0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0);
  }
}

html.is-enhanced [data-animate="about-intro"],
html.is-enhanced [data-animate="about-map"],
html.is-enhanced [data-animate="about-experience"] {
  opacity: 1;
  transform: none;
}

html.is-enhanced [data-animate="about-intro"] .about-intro__eyebrow,
html.is-enhanced [data-animate="about-intro"] .about-intro__title span,
html.is-enhanced [data-animate="about-map"] .about-map__shape,
html.is-enhanced [data-animate="about-map"] .about-map__number,
html.is-enhanced [data-animate="about-map"] .about-map__marker,
html.is-enhanced [data-animate="about-experience"] .about-experience__title span,
html.is-enhanced [data-animate="about-experience"] .about-experience__text span {
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="about-intro"].is-motion-complete .about-intro__eyebrow,
html.is-enhanced [data-animate="about-intro"].is-motion-complete .about-intro__title span,
html.is-enhanced [data-animate="about-map"].is-motion-complete .about-map__shape,
html.is-enhanced [data-animate="about-map"].is-motion-complete .about-map__number,
html.is-enhanced [data-animate="about-map"].is-motion-complete .about-map__marker,
html.is-enhanced [data-animate="about-experience"].is-motion-complete .about-experience__title span,
html.is-enhanced [data-animate="about-experience"].is-motion-complete .about-experience__text span {
  will-change: auto;
}

html.is-enhanced [data-animate="about-intro"]:not(.is-in-view) .about-intro__eyebrow,
html.is-enhanced [data-animate="about-intro"]:not(.is-in-view) .about-intro__title span,
html.is-enhanced [data-animate="about-experience"]:not(.is-in-view) .about-experience__title span,
html.is-enhanced [data-animate="about-experience"]:not(.is-in-view) .about-experience__text span,
html.is-enhanced [data-animate="about-experience"]:not(.is-counter-ready) .about-experience__title span,
html.is-enhanced [data-animate="about-experience"]:not(.is-counter-ready) .about-experience__text span {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 24px, 0) scale(0.985);
  filter: blur(8px);
}

html.is-enhanced [data-animate="about-map"]:not(.is-in-view) .about-map__shape,
html.is-enhanced [data-animate="about-map"]:not(.is-in-view) .about-map__number {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(10px);
}

html.is-enhanced [data-animate="about-map"]:not(.is-map-markers-in-view) .about-map__marker {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, -34px, 0) scale(0.88);
  filter: blur(6px);
}

html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__eyebrow,
html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__title span,
html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__text span {
  animation: motion-about-text-in 1050ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span {
  animation: motion-about-experience-in 1150ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="about-map"].is-in-view .about-map__shape {
  animation: motion-about-map-in var(--motion-duration-slow) var(--motion-ease) both;
}

html.is-enhanced [data-animate="about-map"].is-in-view .about-map__number {
  animation: motion-about-number-in 1320ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker {
  animation: motion-about-marker-in 1200ms cubic-bezier(0.18, 0.9, 0.28, 1) both;
  transform-origin: center bottom;
}

html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__eyebrow {
  animation-delay: 0ms;
}

html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__title span:nth-child(1) {
  animation-delay: 130ms;
}

html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__title span:nth-child(2) {
  animation-delay: 250ms;
}

html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__title span:nth-child(3) {
  animation-delay: 370ms;
}

html.is-enhanced [data-animate="about-intro"].is-in-view .about-intro__title span:nth-child(4) {
  animation-delay: 490ms;
}

html.is-enhanced [data-animate="about-map"].is-in-view .about-map__shape {
  animation-delay: 0ms;
}

html.is-enhanced [data-animate="about-map"].is-in-view .about-map__number {
  animation-delay: 180ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--2 {
  animation-delay: 120ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--3 {
  animation-delay: 190ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--1 {
  animation-delay: 260ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--11 {
  animation-delay: 330ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--4 {
  animation-delay: 400ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--5 {
  animation-delay: 470ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--8 {
  animation-delay: 540ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--6 {
  animation-delay: 610ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--10 {
  animation-delay: 680ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--7 {
  animation-delay: 750ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--9 {
  animation-delay: 820ms;
}

html.is-enhanced [data-animate="about-map"].is-map-markers-in-view .about-map__marker--big {
  animation-delay: 920ms;
}

html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span:nth-child(1) {
  animation-delay: 0ms;
}

html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span:nth-child(2) {
  animation-delay: 120ms;
}

html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span:nth-child(3) {
  animation-delay: 220ms;
}

html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__text span:nth-child(1) {
  animation-delay: 420ms;
}

html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__text span:nth-child(2) {
  animation-delay: 540ms;
}

@keyframes motion-about-text-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(8px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-about-map-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 34px, 0) scale(0.985);
    filter: blur(10px);
  }

  65% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-about-number-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 22px, 0) scale(1.025);
    filter: blur(10px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-about-experience-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(8px);
  }

  68% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-about-marker-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, -34px, 0) scale(0.88);
    filter: blur(6px);
  }

  62% {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 4px, 0) scale(1.08);
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

html.is-enhanced [data-animate="rating-title"],
html.is-enhanced [data-animate="rating-slider"] {
  opacity: 1;
  transform: none;
}

html.is-enhanced [data-animate="rating-title"] span,
html.is-enhanced [data-animate="rating-slider"] .rating-card,
html.is-enhanced [data-animate="rating-slider"] .rating-agency-card,
html.is-enhanced [data-animate="rating-slider"] .rating-card__accent,
html.is-enhanced [data-animate="rating-slider"] .rating-card__value,
html.is-enhanced [data-animate="rating-slider"] .rating-card__title,
html.is-enhanced [data-animate="rating-slider"] .rating-card__caption,
html.is-enhanced [data-animate="rating-slider"] .rating-agency-card__logo,
html.is-enhanced [data-animate="rating-slider"] .rating-agency-card__value,
html.is-enhanced [data-animate="rating-slider"] .rating-agency-card__caption,
html.is-enhanced [data-animate="rating-slider"]+.rating-carousel {
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="rating-slider"] .rating-card,
html.is-enhanced [data-animate="rating-slider"] .rating-agency-card {
  --rating-item-delay: 0ms;
  --rating-slide-start-x: calc(-362px * var(--stage-scale));
  --rating-value-delay: 520ms;
  --rating-title-delay: 800ms;
  --rating-caption-delay: 1080ms;
  transform-origin: left center;
}

html.is-enhanced [data-animate="rating-slider"] .rating-card:nth-child(1) {
  z-index: 7;
}

html.is-enhanced [data-animate="rating-slider"] .rating-card:nth-child(2) {
  z-index: 6;
}

html.is-enhanced [data-animate="rating-slider"] .rating-agency-card:nth-child(3) {
  z-index: 5;
}

html.is-enhanced [data-animate="rating-slider"] .rating-agency-card:nth-child(4) {
  z-index: 4;
}

html.is-enhanced [data-animate="rating-slider"] .rating-agency-card:nth-child(5) {
  z-index: 3;
}

html.is-enhanced [data-animate="rating-slider"] .rating-agency-card:nth-child(6) {
  z-index: 2;
}

html.is-enhanced [data-animate="rating-slider"] .rating-agency-card:nth-child(7) {
  z-index: 1;
}

html.is-enhanced [data-animate="rating-slider"] .rating-card::after,
html.is-enhanced [data-animate="rating-slider"] .rating-agency-card::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -55%;
  z-index: 5;
  width: 38%;
  height: 136%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translate3d(-140%, 0, 0) skewX(-16deg);
  will-change: opacity, transform;
}

html.is-enhanced [data-animate="rating-title"].is-motion-complete span,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-card,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-agency-card,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-card__accent,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-card__value,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-card__title,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-card__caption,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-agency-card__logo,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-agency-card__value,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-agency-card__caption,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete+.rating-carousel {
  will-change: auto;
}

html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-card::after,
html.is-enhanced [data-animate="rating-slider"].is-motion-complete .rating-agency-card::after {
  will-change: auto;
}

html.is-enhanced [data-animate="rating-title"]:not(.is-in-view) span {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 24px, 0) scale(0.985);
  filter: blur(8px);
}

html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-card,
html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-agency-card {
  opacity: var(--motion-start-opacity);
  transform: translate3d(var(--rating-slide-start-x), 0, 0) scale(0.985);
  filter: blur(10px);
}

html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-card__value,
html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-card__title,
html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-card__caption,
html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-agency-card__logo,
html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-agency-card__value,
html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-agency-card__caption {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(8px);
}

html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view) .rating-card__accent {
  opacity: var(--motion-start-opacity);
  transform: scaleX(0);
  transform-origin: left center;
}

html.is-enhanced [data-animate="rating-slider"]:not(.is-in-view)+.rating-carousel {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(6px);
}

html.is-enhanced [data-animate="rating-title"].is-in-view span {
  animation: motion-rating-title-in 1180ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card,
html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card {
  animation: motion-rating-item-in 1800ms var(--motion-ease) var(--rating-item-delay) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card::after,
html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card::after {
  animation: motion-rating-light-sweep 1400ms cubic-bezier(0.22, 0.72, 0.24, 1) calc(var(--rating-item-delay) + 520ms) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card__value,
html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card__logo {
  animation: motion-rating-content-in 1180ms var(--motion-ease) calc(var(--rating-item-delay) + var(--rating-value-delay)) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card__title,
html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card__value {
  animation: motion-rating-content-in 1180ms var(--motion-ease) calc(var(--rating-item-delay) + var(--rating-title-delay)) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card__caption,
html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card__caption {
  animation: motion-rating-content-in 1180ms var(--motion-ease) calc(var(--rating-item-delay) + var(--rating-caption-delay)) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card__accent {
  animation: motion-rating-accent-in 1120ms var(--motion-ease) calc(var(--rating-item-delay) + 380ms) both;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view+.rating-carousel {
  animation: motion-rating-controls-in 1100ms var(--motion-ease) 5200ms both;
}

html.is-enhanced [data-animate="rating-title"].is-in-view span:nth-child(1) {
  animation-delay: 0ms;
}

html.is-enhanced [data-animate="rating-title"].is-in-view span:nth-child(2) {
  animation-delay: 180ms;
}

html.is-enhanced [data-animate="rating-title"].is-in-view span:nth-child(3) {
  animation-delay: 360ms;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card:nth-child(1) {
  --rating-item-delay: 980ms;
  --rating-slide-start-x: calc(-653px * var(--stage-scale));
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card:nth-child(2) {
  --rating-item-delay: 2300ms;
  --rating-slide-start-x: calc(-367px * var(--stage-scale));
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card:nth-child(3) {
  --rating-item-delay: 3600ms;
  --rating-slide-start-x: calc(-361px * var(--stage-scale));
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card:nth-child(4) {
  --rating-item-delay: 3820ms;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card:nth-child(5) {
  --rating-item-delay: 4040ms;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card:nth-child(6) {
  --rating-item-delay: 4260ms;
}

html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card:nth-child(7) {
  --rating-item-delay: 4480ms;
}

@keyframes motion-rating-title-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(8px);
  }

  68% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-rating-item-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(var(--rating-slide-start-x), 0, 0) scale(0.985);
    filter: blur(10px);
  }

  72% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-rating-content-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 18px, 0) scale(0.985);
    filter: blur(8px);
  }

  72% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-rating-accent-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: scaleX(0);
    transform-origin: left center;
  }

  to {
    opacity: var(--motion-opacity);
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes motion-rating-light-sweep {
  0% {
    opacity: 0;
    transform: translate3d(-140%, 0, 0) skewX(-16deg);
  }

  22% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translate3d(520%, 0, 0) skewX(-16deg);
  }
}

@keyframes motion-rating-controls-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 18px, 0) scale(0.985);
    filter: blur(6px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-rating-card-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, var(--motion-card-offset, var(--motion-distance-card)), 0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0);
  }
}

html.is-enhanced [data-animate="support-background"],
html.is-enhanced [data-animate="support-title"],
html.is-enhanced [data-animate="support-stat"] {
  opacity: var(--motion-opacity);
  transform: var(--motion-transform-rest);
  filter: none;
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="support-background"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: var(--motion-transform-start);
  filter: blur(12px) saturate(0.92);
}

html.is-enhanced [data-animate="support-title"] {
  transform: none;
}

html.is-enhanced [data-animate="support-title"]>span {
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0);
  filter: none;
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="support-stat"] {
  --support-stat-delay: 0ms;
  --support-stat-x: 0px;
  --support-stat-y: calc(34px * var(--stage-scale));
  --support-value-delay: 260ms;
  --support-text-delay: 470ms;
}

html.is-enhanced [data-animate="support-stat"] .support-stat__value,
html.is-enhanced [data-animate="support-stat"] .support-stat__text {
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="support-stat"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(112deg,
      transparent 8%,
      rgba(255, 255, 255, 0.46) 34%,
      rgba(146, 93, 169, 0.2) 49%,
      transparent 68%);
  background-size: 240% 100%;
  background-position: 140% 0;
  will-change: opacity, background-position;
}

html.is-enhanced [data-animate="support-background"].is-motion-complete,
html.is-enhanced [data-animate="support-title"].is-motion-complete,
html.is-enhanced [data-animate="support-title"].is-motion-complete>span,
html.is-enhanced [data-animate="support-stat"].is-motion-complete,
html.is-enhanced [data-animate="support-stat"].is-motion-complete::after,
html.is-enhanced [data-animate="support-stat"].is-motion-complete .support-stat__value,
html.is-enhanced [data-animate="support-stat"].is-motion-complete .support-stat__text {
  will-change: auto;
}

html.is-enhanced [data-animate="support-title"]:not(.is-in-view)>span {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 24px, 0) scale(0.985);
  filter: blur(8px);
}

html.is-enhanced [data-animate="support-stat"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: translate3d(var(--support-stat-x), var(--support-stat-y), 0) scale(0.975);
  filter: blur(10px);
}

html.is-enhanced [data-animate="support-stat"]:not(.is-in-view) .support-stat__value,
html.is-enhanced [data-animate="support-stat"]:not(.is-in-view) .support-stat__text {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(8px);
}

html.is-enhanced [data-animate="support-background"].is-in-view {
  animation: motion-support-background-in 1600ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="support-title"].is-in-view>span {
  animation: motion-support-title-line-in 1180ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="support-stat"].is-in-view {
  animation: motion-support-stat-in 1250ms var(--motion-ease) both;
  animation-delay: var(--support-stat-delay);
}

html.is-enhanced [data-animate="support-stat"].is-in-view::after {
  animation: motion-support-stat-sweep 1050ms var(--motion-ease) both;
  animation-delay: calc(var(--support-stat-delay) + 300ms);
}

html.is-enhanced [data-animate="support-stat"].is-in-view .support-stat__value {
  animation: motion-support-stat-value-in 920ms var(--motion-ease) both;
  animation-delay: calc(var(--support-stat-delay) + var(--support-value-delay));
}

html.is-enhanced [data-animate="support-stat"].is-in-view .support-stat__text {
  animation: motion-support-stat-text-in 880ms var(--motion-ease) both;
  animation-delay: calc(var(--support-stat-delay) + var(--support-text-delay));
}

html.is-enhanced [data-animate="support-title"].is-in-view>span:nth-child(1) {
  animation-delay: 120ms;
}

html.is-enhanced [data-animate="support-title"].is-in-view>span:nth-child(2) {
  animation-delay: 300ms;
}

html.is-enhanced .support-stat--one.is-in-view {
  --support-stat-delay: 280ms;
  --support-stat-x: calc(-24px * var(--stage-scale));
}

html.is-enhanced .support-stat--two.is-in-view {
  --support-stat-delay: 460ms;
  --support-stat-x: calc(-10px * var(--stage-scale));
}

html.is-enhanced .support-stat--three.is-in-view {
  --support-stat-delay: 640ms;
  --support-stat-x: calc(20px * var(--stage-scale));
}

html.is-enhanced .support-stat--four.is-in-view {
  --support-stat-delay: 820ms;
  --support-stat-x: calc(-12px * var(--stage-scale));
  --support-stat-y: calc(38px * var(--stage-scale));
}

html.is-enhanced .support-stat--five.is-in-view {
  --support-stat-delay: 1000ms;
  --support-stat-x: calc(18px * var(--stage-scale));
  --support-stat-y: calc(38px * var(--stage-scale));
}

[data-animate="support-background"] {
  --motion-scale: 1.04;
}

[data-animate="corp-background"] {
  --motion-scale: 1.03;
}

@keyframes motion-support-background-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: var(--motion-transform-start);
    filter: blur(12px) saturate(0.92);
  }

  62% {
    filter: blur(0) saturate(1);
  }

  to {
    opacity: var(--motion-opacity);
    transform: var(--motion-transform-rest);
    filter: blur(0) saturate(1);
  }
}

@keyframes motion-support-title-line-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(8px);
  }

  68% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-support-stat-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(var(--support-stat-x), var(--support-stat-y), 0) scale(0.975);
    filter: blur(10px);
  }

  64% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-support-stat-value-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 18px, 0) scale(0.965);
    filter: blur(8px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-support-stat-text-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 16px, 0);
    filter: blur(7px);
  }

  72% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes motion-support-stat-sweep {
  0% {
    opacity: 0;
    background-position: 140% 0;
  }

  34% {
    opacity: 0.34;
  }

  100% {
    opacity: 0;
    background-position: -140% 0;
  }
}

html.is-enhanced [data-animate="corp-background"],
html.is-enhanced [data-animate="corp-title"],
html.is-enhanced [data-animate="corp-cards"] {
  opacity: var(--motion-opacity);
  transform: var(--motion-transform-rest);
  filter: none;
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="corp-cards"] .corp-card {
  --corp-card-delay: 0ms;
  --corp-card-x: 0px;
  --corp-card-y: calc(38px * var(--stage-scale));
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="corp-cards"] .corp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(118deg,
      transparent 9%,
      rgba(255, 255, 255, 0.44) 33%,
      rgba(146, 93, 169, 0.18) 48%,
      transparent 68%);
  background-size: 240% 100%;
  background-position: 140% 0;
  will-change: opacity, background-position;
}

html.is-enhanced [data-animate="corp-cards"] .corp-card__icon,
html.is-enhanced [data-animate="corp-cards"] .corp-card__title,
html.is-enhanced [data-animate="corp-cards"] .corp-card__desc {
  opacity: var(--motion-opacity);
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  will-change: opacity, transform, filter;
}

html.is-enhanced [data-animate="corp-background"].is-motion-complete,
html.is-enhanced [data-animate="corp-title"].is-motion-complete,
html.is-enhanced [data-animate="corp-cards"].is-motion-complete,
html.is-enhanced [data-animate="corp-cards"].is-motion-complete .corp-card,
html.is-enhanced [data-animate="corp-cards"].is-motion-complete .corp-card::after,
html.is-enhanced [data-animate="corp-cards"].is-motion-complete .corp-card__icon,
html.is-enhanced [data-animate="corp-cards"].is-motion-complete .corp-card__title,
html.is-enhanced [data-animate="corp-cards"].is-motion-complete .corp-card__desc {
  will-change: auto;
}

html.is-enhanced [data-animate="corp-background"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: var(--motion-transform-start);
  filter: blur(14px) saturate(0.9);
}

html.is-enhanced [data-animate="corp-title"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(9px);
}

html.is-enhanced [data-animate="corp-cards"]:not(.is-in-view) .corp-card {
  opacity: var(--motion-start-opacity);
  transform: translate3d(var(--corp-card-x), var(--corp-card-y), 0) scale(0.965);
  filter: blur(12px);
}

html.is-enhanced [data-animate="corp-cards"]:not(.is-in-view) .corp-card__icon,
html.is-enhanced [data-animate="corp-cards"]:not(.is-in-view) .corp-card__title,
html.is-enhanced [data-animate="corp-cards"]:not(.is-in-view) .corp-card__desc {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(8px);
}

html.is-enhanced [data-animate="corp-background"].is-in-view {
  animation: motion-corp-background-in 1650ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="corp-title"].is-in-view {
  animation: motion-corp-title-in 1150ms var(--motion-ease) both;
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card {
  animation: motion-corp-card-in 1250ms var(--motion-ease) both;
  animation-delay: var(--corp-card-delay);
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card::after {
  animation: motion-corp-card-sweep 1050ms var(--motion-ease) both;
  animation-delay: calc(var(--corp-card-delay) + 320ms);
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card__icon {
  animation: motion-corp-card-content-in 900ms var(--motion-ease) both;
  animation-delay: calc(var(--corp-card-delay) + 240ms);
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card__title {
  animation: motion-corp-card-content-in 880ms var(--motion-ease) both;
  animation-delay: calc(var(--corp-card-delay) + 390ms);
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card__desc {
  animation: motion-corp-card-content-in 860ms var(--motion-ease) both;
  animation-delay: calc(var(--corp-card-delay) + 520ms);
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card:nth-child(1) {
  --corp-card-delay: 240ms;
  --corp-card-x: calc(-22px * var(--stage-scale));
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card:nth-child(2) {
  --corp-card-delay: 400ms;
  --corp-card-x: calc(-12px * var(--stage-scale));
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card:nth-child(3) {
  --corp-card-delay: 560ms;
  --corp-card-x: calc(0px * var(--stage-scale));
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card:nth-child(4) {
  --corp-card-delay: 720ms;
  --corp-card-x: calc(12px * var(--stage-scale));
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card:nth-child(5) {
  --corp-card-delay: 880ms;
  --corp-card-x: calc(22px * var(--stage-scale));
}

html.is-enhanced [data-animate="corp-cards"].is-in-view .corp-card:nth-child(6) {
  --corp-card-delay: 1040ms;
  --corp-card-x: calc(30px * var(--stage-scale));
}

@keyframes motion-corp-background-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: var(--motion-transform-start);
    filter: blur(14px) saturate(0.9);
  }

  64% {
    filter: blur(0) saturate(1);
  }

  to {
    opacity: var(--motion-opacity);
    transform: var(--motion-transform-rest);
    filter: blur(0) saturate(1);
  }
}

@keyframes motion-corp-title-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(9px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-corp-card-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(var(--corp-card-x), var(--corp-card-y), 0) scale(0.965);
    filter: blur(12px);
  }

  66% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-corp-card-content-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 18px, 0) scale(0.985);
    filter: blur(8px);
  }

  72% {
    filter: blur(0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes motion-corp-card-sweep {
  0% {
    opacity: 0;
    background-position: 140% 0;
  }

  36% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    background-position: -140% 0;
  }
}

html.is-enhanced [data-animate="projects-title"],
html.is-enhanced [data-animate="projects-cards"] {
  opacity: 1;
  transform: none;
}

html.is-enhanced [data-animate="projects-title"] .projects-title__line,
html.is-enhanced [data-animate="projects-title"] .projects-title__accent,
html.is-enhanced [data-animate="projects-cards"] .projects-card,
html.is-enhanced [data-animate="projects-cards"]+.projects-carousel {
  --motion-title-line-y: 28px;
  opacity: var(--motion-opacity, 1);
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

html.is-enhanced [data-animate="projects-title"].is-motion-complete .projects-title__line,
html.is-enhanced [data-animate="projects-title"].is-motion-complete .projects-title__accent,
html.is-enhanced [data-animate="projects-cards"].is-motion-complete .projects-card,
html.is-enhanced [data-animate="projects-cards"].is-motion-complete+.projects-carousel {
  will-change: auto;
}

html.is-enhanced [data-animate="projects-title"]:not(.is-in-view) .projects-title__line,
html.is-enhanced [data-animate="projects-title"]:not(.is-in-view) .projects-title__accent,
html.is-enhanced [data-animate="projects-cards"]:not(.is-in-view) .projects-card,
html.is-enhanced [data-animate="projects-cards"]:not(.is-in-view)+.projects-carousel {
  opacity: var(--motion-start-opacity, 0);
  transform: translate3d(0, 28px, 0);
}

html.is-enhanced [data-animate="projects-title"].is-in-view .projects-title__line,
html.is-enhanced [data-animate="projects-title"].is-in-view .projects-title__accent {
  animation: motion-hero-title-line var(--motion-duration-base) var(--motion-ease) both;
}

html.is-enhanced [data-animate="projects-title"].is-in-view .projects-title__line,
html.is-enhanced [data-animate="projects-title"].is-in-view .projects-title__accent {
  animation-delay: 0ms;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view .projects-card {
  animation: motion-rating-card-in var(--motion-duration-short) var(--motion-ease) both;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view+.projects-carousel {
  animation: motion-hero-title-line var(--motion-duration-short) var(--motion-ease) 640ms both;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view .projects-card:nth-child(1) {
  animation-delay: 160ms;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view .projects-card:nth-child(2) {
  animation-delay: 250ms;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view .projects-card:nth-child(3) {
  animation-delay: 340ms;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view .projects-card:nth-child(4) {
  animation-delay: 430ms;
}

html.is-enhanced [data-animate="projects-cards"].is-in-view .projects-card:nth-child(5) {
  animation-delay: 520ms;
}

html.is-enhanced [data-animate="industries-title"],
html.is-enhanced [data-animate="industries-ticker"],
html.is-enhanced [data-animate="footer-heading"],
html.is-enhanced [data-animate="footer-contacts"],
html.is-enhanced [data-animate="footer-logo"] {
  opacity: var(--motion-opacity);
  transform: var(--motion-transform-rest);
  will-change: opacity, transform;
}

html.is-enhanced [data-animate="industries-title"]:not(.is-in-view),
html.is-enhanced [data-animate="footer-heading"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, var(--motion-distance-text), 0);
}

html.is-enhanced [data-animate="industries-ticker"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: translate3d(-24px, 0, 0);
}

html.is-enhanced [data-animate="footer-contacts"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 24px, 0);
}

html.is-enhanced [data-animate="footer-logo"]:not(.is-in-view) {
  opacity: var(--motion-start-opacity);
  transform: translate3d(0, 10px, 0) scale(0.96);
}

html.is-enhanced [data-animate="industries-title"].is-in-view,
html.is-enhanced [data-animate="footer-heading"].is-in-view {
  animation: motion-hero-title-line var(--motion-duration-base) var(--motion-ease) both;
}

html.is-enhanced [data-animate="industries-ticker"].is-in-view {
  animation: motion-ticker-in var(--motion-duration-base) var(--motion-ease) 160ms both;
}

html.is-enhanced [data-animate="footer-contacts"].is-in-view {
  animation: motion-rating-card-in var(--motion-duration-base) var(--motion-ease) 160ms both;
}

html.is-enhanced [data-animate="footer-logo"].is-in-view {
  animation: motion-logo-in var(--motion-duration-base) var(--motion-ease) 280ms both;
}

html.is-enhanced [data-animate="industries-title"].is-motion-complete,
html.is-enhanced [data-animate="industries-ticker"].is-motion-complete,
html.is-enhanced [data-animate="footer-heading"].is-motion-complete,
html.is-enhanced [data-animate="footer-contacts"].is-motion-complete,
html.is-enhanced [data-animate="footer-logo"].is-motion-complete {
  will-change: auto;
}

@keyframes motion-ticker-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(-24px, 0, 0);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-logo-in {
  from {
    opacity: var(--motion-start-opacity);
    transform: translate3d(0, 10px, 0) scale(0.96);
  }

  to {
    opacity: var(--motion-opacity);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Section: hero */

.hero-stage {
  position: relative;
  width: 100%;
  height: calc(var(--hero-height) * 1px * var(--stage-scale));
  overflow: hidden;
  background: var(--page-bg);
}

.hero-stage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32%;
  background: linear-gradient(to bottom, rgba(248, 245, 252, 0) 6%, rgba(248, 245, 252, 0.6) 55%, #f8f5fc 85%);
  pointer-events: none;
  z-index: 1;
}

.hero-canvas {
  position: relative;
  width: 100%;
  max-width: calc(var(--hero-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--page-bg);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(87.375vw, calc(1398px * var(--stage-scale)));
  overflow: hidden;
  background: #ffffff;
  pointer-events: none;
}

.hero-background__video,
.hero-background__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.hero-background__fallback {
  opacity: 0;
  visibility: hidden;
}

.hero-background.is-video-error .hero-background__video {
  opacity: 0;
  visibility: hidden;
}

.hero-background.is-video-error .hero-background__fallback {
  opacity: 1;
  visibility: visible;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: min(44.375vw, calc(710px * var(--stage-scale)));
  height: min(46.8125vw, calc(749px * var(--stage-scale)));
  background:
    linear-gradient(90deg,
      rgba(246, 242, 250, 0.78) 0%,
      rgba(246, 242, 250, 0.34) 62%,
      rgba(246, 242, 250, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--hero-width) * 1px));
  height: 100%;
  padding-top: clamp(24px, 3.125vw, calc(50px * var(--stage-scale)));
  padding-left: clamp(42px, 5.5vw, calc(88px * var(--stage-scale)));
  pointer-events: none;
  --motion-hero-intro-line-1-delay: 1320ms;
  --motion-hero-intro-line-1-duration: 900ms;
  --motion-hero-intro-line-2-delay: calc(var(--motion-hero-intro-line-1-delay) + (var(--motion-hero-intro-line-1-duration) / 2));
  --motion-hero-intro-line-2-duration: 800ms;
  --motion-hero-intro-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-hero-intro-notice-delay: calc(var(--motion-hero-intro-line-2-delay) + var(--motion-hero-intro-line-2-duration) + 120ms);
}

.hero-logo {
  display: flex;
  align-items: flex-start;
  gap: clamp(38px, 5.05vw, calc(80.814px * var(--stage-scale)));
  pointer-events: none;
}

.hero-logo__link {
  display: block;
  text-decoration: none;
  pointer-events: auto;
}

.hero-logo__mark {
  display: block;
  line-height: 0;
}

.hero-logo__rostec {
  width: clamp(39px, 5.0883vw, calc(81.4124px * var(--stage-scale)));
  height: clamp(53px, 6.947vw, calc(111.1526px * var(--stage-scale)));
}

.hero-logo__novikom {
  width: clamp(148px, 19.2346vw, calc(307.7535px * var(--stage-scale)));
  height: clamp(30px, 3.8842vw, calc(62.1464px * var(--stage-scale)));
  margin-top: clamp(5px, 0.6067vw, calc(9.707px * var(--stage-scale)));
}

.hero-logo__novikom-full {
  width: 100%;
  height: 100%;
}

.hero-logo__novikom .hero-logo__mark {
  width: 100%;
  height: 100%;
}

.hero-title {
  width: clamp(312px, 40.625vw, calc(650px * var(--stage-scale)));
  margin: clamp(43px, 5.553vw, calc(88.847px * var(--stage-scale))) 0 0;
  color: var(--purple);
  font-family: "TT Hoves", "Open Sans", Arial, sans-serif;
  font-size: clamp(48px, 6.25vw, calc(100px * var(--stage-scale)));
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-lead {
  width: clamp(206px, 26.875vw, calc(430px * var(--stage-scale)));
  height: auto;
  margin: clamp(30px, 3.875vw, calc(62px * var(--stage-scale))) 0 0 clamp(3px, 0.375vw, calc(6px * var(--stage-scale)));
  display: flex;
  flex-direction: column;
  gap: clamp(3px, 0.375vw, calc(6px * var(--stage-scale)));
  color: var(--ink);
  font-size: clamp(16px, 2.125vw, calc(34px * var(--stage-scale)));
  font-weight: 700;
  line-height: clamp(18px, 2.375vw, calc(38px * var(--stage-scale)));
  letter-spacing: 0;
}

.hero-lead span {
  display: block;
}

.hero-notice {
  width: min(calc(100% - clamp(48px, 6vw, calc(96px * var(--stage-scale)))), clamp(315px, 41.0625vw, calc(657px * var(--stage-scale))));
  min-height: clamp(51px, 6.625vw, calc(106px * var(--stage-scale)));
  margin: clamp(27px, 3.5625vw, calc(57px * var(--stage-scale))) 0 0 clamp(3px, 0.375vw, calc(6px * var(--stage-scale)));
  padding: clamp(8px, 1vw, calc(16px * var(--stage-scale))) clamp(7px, 0.875vw, calc(14px * var(--stage-scale))) clamp(7px, 0.875vw, calc(14px * var(--stage-scale))) clamp(15px, 1.9375vw, calc(31px * var(--stage-scale)));
  border-radius: 12px;
  border: var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero-notice__text {
  width: 100%;
  margin: 0;
  color: var(--purple);
  font-size: clamp(12px, 1.5vw, calc(24px * var(--stage-scale)));
  font-weight: 600;
  line-height: clamp(18px, 2.375vw, calc(38px * var(--stage-scale)));
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.25);
}

.hero-notice__text>span {
  display: block;
}

.hero-notice__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(12px, 2.25vw, calc(36px * var(--stage-scale)));
}

.hero-notice__row span {
  display: inline;
}

.hero-notice__nowrap {
  white-space: nowrap;
}

@media (min-width: 756px) and (max-height: 820px) {
  .hero-title {
    margin-top: clamp(36px, 4.5vw, 72px);
  }

  .hero-lead {
    margin-top: clamp(24px, 3vw, 48px);
  }

  .hero-notice {
    margin-top: clamp(18px, 2.5vw, 40px);
  }
}

@media (min-width: 756px) and (max-height: 780px) {
  .hero-title {
    margin-top: clamp(28px, 3.75vw, 60px);
  }

  .hero-lead {
    margin-top: clamp(18px, 2.5vw, 40px);
  }

  .hero-notice {
    margin-top: clamp(12px, 2vw, 32px);
  }
}

@media (min-width: 756px) and (max-height: 700px) {
  .hero-title {
    margin-top: clamp(18px, 2.5vw, 40px);
  }

  .hero-lead {
    margin-top: clamp(10px, 1.5vw, 24px);
  }

  .hero-notice {
    margin-top: clamp(6px, 1vw, 16px);
  }
}

.about-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(var(--about-height) * 1px * var(--stage-scale));
  margin-top: calc(var(--about-overlap) * -1px * var(--stage-scale));
  overflow: hidden;
}

/* Section: about */

.about-canvas {
  position: relative;
  display: flow-root;
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent 0%, var(--page-bg) 25%);
}

.about-intro {
  position: relative;
  z-index: 2;
  width: min(85.25vw, calc(1364px * var(--stage-scale)));
  min-height: min(24.5vw, calc(392px * var(--stage-scale)));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(1.5vw, calc(24px * var(--stage-scale)));
  text-align: center;
  word-break: break-word;
}

.about-intro__eyebrow {
  width: 100%;
  margin: 0;
  color: var(--purple);
  font-size: min(2.125vw, calc(34px * var(--stage-scale)));
  font-weight: 700;
  line-height: min(5vw, calc(80px * var(--stage-scale)));
  letter-spacing: 0;
  opacity: 0.5;
}

.about-intro__title {
  width: 100%;
  margin: 0;
  color: #241b2b;
  font-size: min(4vw, calc(64px * var(--stage-scale)));
  font-weight: 700;
  line-height: min(4.5vw, calc(72px * var(--stage-scale)));
  letter-spacing: -0.32px;
}

.about-intro__title span {
  display: block;
}

.about-map {
  position: absolute;
  top: min(20.625vw, calc(330px * var(--stage-scale)));
  left: min(10.0625vw, calc(161px * var(--stage-scale)));
  z-index: 1;
  width: min(76.875vw, calc(1230px * var(--stage-scale)));
  height: min(42vw, calc(672px * var(--stage-scale)));
  pointer-events: none;
}

.about-map__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-map__number {
  position: absolute;
  top: 36.0119%;
  left: 33.6585%;
  z-index: 2;
  margin: 0;
  color: transparent;
  font-size: min(19.9125vw, calc(318.6px * var(--stage-scale)));
  font-weight: 700;
  line-height: min(22.125vw, calc(354px * var(--stage-scale)));
  letter-spacing: 0;
  white-space: nowrap;
  background-image:
    linear-gradient(200.478deg,
      rgba(144, 123, 188, 0.5) 12.208%,
      rgba(255, 255, 255, 0.5) 54.542%,
      rgba(222, 215, 233, 0.5) 94.479%);
  background-clip: text;
  -webkit-background-clip: text;
}

.about-map__marker {
  position: absolute;
  z-index: 3;
  max-width: none;
}

.about-map__marker--big {
  top: 37.9464%;
  left: 14.6341%;
  width: min(5vw, calc(80px * var(--stage-scale)));
  height: min(6vw, calc(96px * var(--stage-scale)));
  z-index: 4;
}

.about-map__marker--sm {
  width: min(2.5vw, calc(40px * var(--stage-scale)));
  height: min(3vw, calc(48px * var(--stage-scale)));
}

.about-map__marker--1 {
  top: 48.0655%;
  left: 20.3252%;
}

.about-map__marker--2 {
  top: 30.6548%;
  left: 11.3821%;
}

.about-map__marker--3 {
  top: 46.2798%;
  left: 7.6423%;
}

.about-map__marker--4 {
  top: 53.869%;
  left: 7.6423%;
}

.about-map__marker--5 {
  top: 58.0357%;
  left: 29.5935%;
}

.about-map__marker--6 {
  top: 63.0952%;
  left: 21.1382%;
}

.about-map__marker--7 {
  top: 74.4048%;
  left: 40.0813%;
}

.about-map__marker--8 {
  top: 60.119%;
  left: 38.4553%;
}

.about-map__marker--9 {
  top: 74.7024%;
  left: 53.3333%;
}

.about-map__marker--10 {
  top: 72.7679%;
  left: 47.8049%;
}

.about-map__marker--11 {
  top: 52.6786%;
  left: 12.5203%;
}

.about-experience {
  position: relative;
  z-index: 2;
  width: min(64vw, calc(1024px * var(--stage-scale)));
  min-height: min(11.25vw, calc(180px * var(--stage-scale)));
  margin: min(38.125vw, calc(610px * var(--stage-scale))) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(0.75vw, calc(12px * var(--stage-scale)));
  text-align: center;
  word-break: break-word;
}

.about-experience__title {
  margin: 0;
  color: var(--purple);
  font-size: min(4.5vw, calc(72px * var(--stage-scale)));
  font-weight: 700;
  line-height: min(5vw, calc(80px * var(--stage-scale)));
  letter-spacing: -0.72px;
  white-space: nowrap;
}

.about-experience__muted {
  color: #a894b0;
  letter-spacing: -0.16px;
}

.about-experience__text {
  min-width: 100%;
  margin: 0;
  color: #4a4054;
  font-size: min(2.125vw, calc(34px * var(--stage-scale)));
  font-weight: 600;
  line-height: min(2.75vw, calc(44px * var(--stage-scale)));
  letter-spacing: 0;
}

.about-experience__text span {
  display: block;
}

html.is-enhanced .about-experience__text span {
  display: block;
}

.rating-stage,
.support-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--page-bg);
}

/* Section: rating */

.rating-stage {
  height: calc(var(--rating-height) * 1px * var(--stage-scale));
}

.support-stage {
  height: calc(var(--support-height) * 1px * var(--stage-scale));
}

.support-canvas {
  position: relative;
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #20152a;
}

.rating-canvas {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns:
    calc(653px * var(--stage-scale)) calc(947px * var(--stage-scale));
  grid-template-rows:
    calc(566px * var(--stage-scale)) calc(24px * var(--stage-scale));
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: calc(1px * var(--stage-scale)) solid #c6c7e2;
  background: #ffffff;
}

.rating-canvas::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 20;
  width: calc(654px * var(--stage-scale));
  pointer-events: none;
  background: #ffffff;
}

.rating-title {
  position: relative;
  z-index: 21;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: calc(586px * var(--stage-scale));
  margin: calc(34px * var(--stage-scale)) 0 0 calc(87px * var(--stage-scale));
  color: #241b2b;
  font-size: calc(64px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(76px * var(--stage-scale));
  letter-spacing: -1.28px;
}

.rating-title span {
  display: block;
}

.rating-slider {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: start;
  width: 100%;
  height: calc(804px * var(--stage-scale));
  margin-top: -1px;
  overflow: visible;
}

.rating-slider__viewport {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rating-slider__track {
  display: flex;
  height: 100%;
  touch-action: pan-y pinch-zoom;
}

.rating-slider__track>* {
  min-width: 0;
}

.rating-card {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  color: #ffffff;
}

.rating-card--top15 {
  width: calc(367px * var(--stage-scale));
  height: calc(634px * var(--stage-scale));
  background:
    radial-gradient(ellipse at 50% 0%,
      #6a579b 0%,
      #4d3a76 50%,
      #301d50 100%);
}

.rating-card--top20 {
  width: calc(361px * var(--stage-scale));
  height: calc(804px * var(--stage-scale));
  background:
    linear-gradient(180deg, rgba(102, 78, 149, 0.74) 0%, rgba(36, 27, 43, 0.94) 100%),
    url("./assets/images/shared/industrial-pattern.jpg") center / cover no-repeat,
    linear-gradient(180deg, #664e95 0%, #241b2b 100%);
  box-shadow: 0 13.097px 31.432px -7.858px rgba(59, 37, 74, 0.07);
}

.rating-card__accent {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(361.471px * var(--stage-scale));
  height: calc(7.858px * var(--stage-scale));
  background: #664e95;
}

.rating-card__value {
  position: absolute;
  top: calc(39.289px * var(--stage-scale));
  left: calc(31.433px * var(--stage-scale));
  width: calc(275.032px * var(--stage-scale));
  margin: 0;
  font-size: calc(65px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(57.626px * var(--stage-scale));
  letter-spacing: 0;
}

.rating-card__title {
  position: absolute;
  top: calc(131px * var(--stage-scale));
  left: calc(31px * var(--stage-scale));
  width: calc(286px * var(--stage-scale));
  margin: 0;
  font-size: calc(34px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(44px * var(--stage-scale));
  letter-spacing: 0;
}

.rating-card__title span {
  display: block;
}

.rating-card__caption {
  position: absolute;
  top: calc(563px * var(--stage-scale));
  left: calc(31.433px * var(--stage-scale));
  margin: 0;
  color: #eee7f5;
  font-size: calc(24px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(32px * var(--stage-scale));
  letter-spacing: 0;
  white-space: nowrap;
}

.rating-agency-card {
  position: relative;
  flex-shrink: 0;
  width: calc(362px * var(--stage-scale));
  height: calc(804px * var(--stage-scale));
  overflow: hidden;
  border: calc(1.31px * var(--stage-scale)) solid #e3dceb;
  background:
    linear-gradient(180deg,
      rgba(236, 233, 241, 0.2) 0%,
      rgba(102, 78, 149, 0.2) 100%),
    #ffffff;
}

.rating-agency-card--expert {
  width: calc(361px * var(--stage-scale));
  height: calc(633px * var(--stage-scale));
  background: #ffffff;
}

.rating-agency-card--nra {
  width: calc(361px * var(--stage-scale));
  height: calc(633px * var(--stage-scale));
  background: #ffffff;
}


.rating-agency-card__logo {
  position: absolute;
  top: calc(31.69px * var(--stage-scale));
  left: calc(29.88px * var(--stage-scale));
  width: calc(101px * var(--stage-scale));
  height: calc(41px * var(--stage-scale));
  object-fit: contain;
}

.rating-agency-card__logo--expert {
  top: calc(32.69px * var(--stage-scale));
  left: calc(29.98px * var(--stage-scale));
  width: calc(166px * var(--stage-scale));
  height: calc(32px * var(--stage-scale));
}

.rating-agency-card__logo--nra {
  top: calc(28px * var(--stage-scale));
  left: calc(29.69px * var(--stage-scale));
  width: calc(160px * var(--stage-scale));
  height: calc(44px * var(--stage-scale));
}

.rating-agency-card__logo--nkr {
  top: calc(26.69px * var(--stage-scale));
  left: calc(29.69px * var(--stage-scale));
  width: calc(151px * var(--stage-scale));
  height: calc(46px * var(--stage-scale));
}

.rating-agency-card__logo--extra {
  top: calc(22.69px * var(--stage-scale));
  left: calc(29.69px * var(--stage-scale));
  width: calc(43px * var(--stage-scale));
  height: calc(61px * var(--stage-scale));
  mix-blend-mode: hard-light;
}

.rating-agency-card__value {
  position: absolute;
  top: calc(97.69px * var(--stage-scale));
  left: calc(30.12px * var(--stage-scale));
  margin: 0;
  color: #241b2b;
  font-size: calc(34.052px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(39.29px * var(--stage-scale));
  letter-spacing: 0;
  white-space: nowrap;
}

.rating-agency-card__caption {
  position: absolute;
  top: calc(561.69px * var(--stage-scale));
  left: calc(30.12px * var(--stage-scale));
  margin: 0;
  color: #6e6478;
  font-size: calc(24px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(32px * var(--stage-scale));
  letter-spacing: 0;
  white-space: nowrap;
}

.rating-carousel {
  position: relative;
  z-index: 21;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  width: calc(488px * var(--stage-scale));
  height: calc(24px * var(--stage-scale));
  margin-left: calc(89px * var(--stage-scale));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(24px * var(--stage-scale));
}

.rating-carousel__dots {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: calc(8px * var(--stage-scale));
  min-width: 0;
}

.rating-carousel__dot {
  flex: 1 1 0;
  width: calc(24px * var(--stage-scale));
  min-width: calc(10px * var(--stage-scale));
  max-width: calc(24px * var(--stage-scale));
  height: calc(2px * var(--stage-scale));
  padding: 0;
  border: 0;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  background: #c4bcd4;
  cursor: pointer;
}

.rating-carousel__dot--active {
  background: var(--purple);
}

.rating-carousel__arrows {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: calc(16px * var(--stage-scale));
}

.rating-carousel__arrow {
  width: calc(24px * var(--stage-scale));
  height: calc(24px * var(--stage-scale));
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-carousel__arrow img {
  width: calc(8px * var(--stage-scale));
  height: calc(14px * var(--stage-scale));
}

.rating-carousel__arrow:disabled,
.projects-carousel__arrow:disabled {
  cursor: default;
  opacity: 0.35;
  pointer-events: none;
}

/* Section: support */

.support-canvas {
  background: #20152a;
}

.support-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.support-background__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-title {
  position: relative;
  z-index: 1;
  width: calc(961px * var(--stage-scale));
  margin: calc(112px * var(--stage-scale)) 0 0 calc(88px * var(--stage-scale));
  color: #000000;
  font-size: calc(64px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(76px * var(--stage-scale));
  letter-spacing: -1.28px;
}

.support-title>span {
  display: block;
}

.support-title__letter-gap {
  display: inline-block;
  margin-right: 1px;
}

.support-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    calc(223px * var(--stage-scale)) calc(351px * var(--stage-scale)) calc(92px * var(--stage-scale)) calc(338px * var(--stage-scale)) calc(129px * var(--stage-scale)) calc(345px * var(--stage-scale)) 1fr;
  grid-template-rows: calc(172px * var(--stage-scale)) auto;
  row-gap: calc(110px * var(--stage-scale));
  margin-top: calc(88px * var(--stage-scale));
}

.support-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24px * var(--stage-scale));
  isolation: isolate;
  word-break: break-word;
}

.support-stat--one {
  grid-column: 2;
  grid-row: 1;
  width: calc(351px * var(--stage-scale));
}

.support-stat--two {
  grid-column: 4;
  grid-row: 1;
  width: calc(338px * var(--stage-scale));
}

.support-stat--three {
  grid-column: 6;
  grid-row: 1;
  width: calc(345px * var(--stage-scale));
}

.support-stat--four {
  grid-column: 4 / span 2;
  grid-row: 2;
  width: calc(424px * var(--stage-scale));
  gap: calc(27px * var(--stage-scale));
}

.support-stat--five {
  grid-column: 6;
  grid-row: 2;
  width: calc(423px * var(--stage-scale));
  margin-top: calc(1px * var(--stage-scale));
}

.support-stat__value {
  position: relative;
  z-index: 1;
  margin: 0;
  color: transparent;
  font-size: calc(80px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(84px * var(--stage-scale));
  letter-spacing: -1.6px;
  white-space: nowrap;
  background-image: linear-gradient(180deg, #925da9 0%, #5c216e 95.673%);
  background-clip: text;
  -webkit-background-clip: text;
}

.support-stat__value--with-unit {
  display: flex;
  align-items: baseline;
  gap: calc(16px * var(--stage-scale));
}

.support-stat__unit {
  color: #4a4054;
  font-size: calc(32px * var(--stage-scale));
  line-height: calc(84px * var(--stage-scale));
  letter-spacing: 0;
  background: none;
  -webkit-text-fill-color: #4a4054;
}

.support-stat__text {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: #7d7287;
  font-size: calc(24px * var(--stage-scale));
  font-weight: 500;
  line-height: calc(32px * var(--stage-scale));
  letter-spacing: 0;
}

.support-stat__text span {
  display: inline;
}

.support-stat__text span+span::before {
  content: " ";
}

.support-stat__text .support-stat__text-mobile {
  display: none;
}

.support-stat__text-dark {
  color: #322d2f;
}

.support-stat--one .support-stat__text-dark {
  color: #4a4054;
}

/* Section: corporate clients */

.corp-stage {
  --corp-scroll-distance: 0px;
  --corp-scroll-offset: 0px;
  --corp-canvas-height: calc(var(--corp-height) * 1px * var(--stage-scale));
  --corp-sticky-height: var(--corp-canvas-height);
  --corp-sticky-top: min(0px, calc(100vh - var(--corp-sticky-height)));
  position: relative;
  width: 100%;
  height: calc(var(--corp-canvas-height) + var(--corp-scroll-distance));
  overflow: hidden;
  background: var(--page-bg);
}

.corp-stage.is-corp-scroll-ready {
  height: calc(var(--corp-sticky-height) + var(--corp-scroll-distance));
  overflow: visible;
}

.corp-canvas {
  position: relative;
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.corp-stage.is-corp-scroll-ready .corp-canvas {
  position: sticky;
  top: var(--corp-sticky-top);
  height: var(--corp-sticky-height);
}

.corp-background {
  position: absolute;
  top: calc(-6px * var(--stage-scale));
  left: calc(445px * var(--stage-scale));
  width: calc(1154px * var(--stage-scale));
  height: calc(1039px * var(--stage-scale));
  object-fit: cover;
  pointer-events: none;
  border-radius: calc(24px * var(--stage-scale));
}

.corp-title {
  position: relative;
  z-index: 1;
  width: calc(658px * var(--stage-scale));
  margin: calc(113px * var(--stage-scale)) 0 0 calc(88px * var(--stage-scale));
  color: #241b2b;
  font-size: calc(64px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(76px * var(--stage-scale));
  letter-spacing: -1.28px;
}

.corp-cards {
  position: relative;
  z-index: 1;
  display: flex;
  gap: calc(37px * var(--stage-scale));
  width: calc(100% - calc(88px * var(--stage-scale)));
  height: calc(580px * var(--stage-scale));
  margin: calc(41px * var(--stage-scale)) 0 0 calc(88px * var(--stage-scale));
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.corp-stage.is-corp-scroll-ready .corp-cards {
  overflow: visible;
  scroll-snap-type: none;
  touch-action: pan-y;
  margin-top: calc(56px * var(--stage-scale));
  margin-bottom: 0;
  transform: translate3d(var(--corp-scroll-offset), 0, 0);
  will-change: transform;
}

.corp-cards::-webkit-scrollbar {
  display: none;
}

.corp-card {
  position: relative;
  flex-shrink: 0;
  width: calc(518px * var(--stage-scale));
  height: calc(580px * var(--stage-scale));
  border-radius: calc(12px * var(--stage-scale));
  padding: calc(50px * var(--stage-scale)) calc(40px * var(--stage-scale));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(24px * var(--stage-scale));
  isolation: isolate;
  overflow: hidden;
}

.corp-card:last-child {
  margin-right: calc(88px * var(--stage-scale));
}

.corp-card--dark {
  background:
    radial-gradient(ellipse at 50% -17%,
      rgba(106, 87, 155, 1) 0%,
      rgba(77, 58, 118, 1) 50%,
      rgba(48, 29, 80, 1) 100%);
}

.corp-card--light {
  border: var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.corp-card__icon {
  position: relative;
  z-index: 1;
  width: calc(180px * var(--stage-scale));
  height: calc(180px * var(--stage-scale));
  object-fit: contain;
  flex-shrink: 0;
}

.corp-card__icon-wrap {
  display: contents;
}

.corp-card__title {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  font-size: calc(34px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(44px * var(--stage-scale));
  letter-spacing: 0;
  text-align: center;
  word-break: break-word;
}

.corp-card--dark .corp-card__title {
  color: #ffffff;
}

.corp-card--light .corp-card__title {
  color: var(--purple);
}

.corp-card__desc {
  position: relative;
  z-index: 1;
  width: calc(361px * var(--stage-scale));
  margin: 0;
  font-size: calc(20px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(32px * var(--stage-scale));
  letter-spacing: 0;
  text-align: center;
  word-break: break-word;
}

.corp-card--dark .corp-card__desc {
  color: #c4bcd4;
}

.corp-card--light .corp-card__desc {
  color: #7d7287;
}

/* Section: industries */

.industries-stage {
  position: relative;
  width: 100%;
  height: calc(var(--industries-height) * 1px * var(--stage-scale));
  overflow: hidden;
  background: var(--page-bg);
}

.industries-canvas {
  position: relative;
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.industries-title {
  position: relative;
  z-index: 1;
  margin: calc(113px * var(--stage-scale)) 0 0 calc(88px * var(--stage-scale));
  color: #241b2b;
  font-size: calc(64px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(76px * var(--stage-scale));
  letter-spacing: -1.28px;
  white-space: nowrap;
}

.industries-ticker {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(124px * var(--stage-scale));
  margin-top: calc(51px * var(--stage-scale));
  overflow: hidden;
}

.industries-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  white-space: nowrap;
  animation: industries-scroll var(--industries-scroll-duration) linear infinite;
}

.industries-ticker__group {
  display: flex;
  align-items: center;
  gap: calc(32px * var(--stage-scale));
  flex-shrink: 0;
  padding-right: calc(32px * var(--stage-scale));
}

@keyframes industries-scroll {
  0% {
    transform: translateX(0);
  }

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

.industries-ticker__item {
  color: var(--purple);
  font-size: calc(48px * var(--stage-scale));
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}

.industries-ticker__item--semibold {
  font-weight: 600;
}

.industries-ticker__dot {
  width: calc(12px * var(--stage-scale));
  height: calc(12px * var(--stage-scale));
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* Section: projects */

.projects-stage {
  position: relative;
  width: 100%;
  height: calc(var(--projects-height) * 1px * var(--stage-scale));
  overflow: hidden;
}

.projects-canvas {
  position: relative;
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(157.4deg, #f4f1f7 5.17%, #cbced0 84.4%);
}

.projects-title {
  position: relative;
  z-index: 1;
  margin: calc(110px * var(--stage-scale)) 0 0 calc(84px * var(--stage-scale));
  color: #241b2b;
  font-size: calc(64px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(76px * var(--stage-scale));
  letter-spacing: -1.28px;
  white-space: nowrap;
}

.projects-title__accent {
  color: var(--purple);
}

.projects-title__line,
.projects-title__accent {
  display: inline-block;
}

.projects-cards {
  position: relative;
  z-index: 1;
  width: calc(1512px * var(--stage-scale));
  height: calc(393px * var(--stage-scale));
  margin: calc(53px * var(--stage-scale)) 0 0 calc(88px * var(--stage-scale));
  overflow: visible;
}

.projects-cards__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.projects-cards__track {
  display: flex;
  gap: calc(20px * var(--stage-scale));
  height: 100%;
  touch-action: pan-y pinch-zoom;
}

.projects-cards__track>* {
  min-width: 0;
}

.projects-cards__track> :last-child {
  margin-right: calc(20px * var(--stage-scale));
}

.projects-card {
  position: relative;
  flex-shrink: 0;
  width: calc(330px * var(--stage-scale));
  height: calc(393px * var(--stage-scale));
  --projects-card-motion-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --projects-card-motion-duration: 640ms;
  --projects-card-motion-short: 460ms;
  --projects-desc-open-height: calc(150px * var(--stage-scale));
  --projects-desc-open-gap: calc(14px * var(--stage-scale));
  --projects-desc-shift: calc(12px * var(--stage-scale));
  border-radius: calc(12px * var(--stage-scale));
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.projects-card__image {
  display: block;
  width: calc(330px * var(--stage-scale));
  height: calc(222px * var(--stage-scale));
  object-fit: cover;
  object-position: center;
  background: #3e2b62;
  transform-origin: center;
  transition: transform var(--projects-card-motion-duration) var(--projects-card-motion-ease);
}

.projects-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: calc(171px * var(--stage-scale));
  padding: calc(18px * var(--stage-scale)) calc(18px * var(--stage-scale)) calc(22px * var(--stage-scale));
  overflow: hidden;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 3.18%, #ffffff 42.19%);
  transition:
    height var(--projects-card-motion-duration) var(--projects-card-motion-ease),
    backdrop-filter var(--projects-card-motion-duration) var(--projects-card-motion-ease);
}

.projects-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 3.18%, rgba(255, 255, 255, 0.82) 42.19%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--projects-card-motion-duration) var(--projects-card-motion-ease);
}

.projects-card__plus {
  position: absolute;
  z-index: 2;
  top: calc(15px * var(--stage-scale));
  right: calc(18px * var(--stage-scale));
  width: calc(40px * var(--stage-scale));
  height: calc(40px * var(--stage-scale));
  --projects-icon-scale: var(--stage-scale);
  --projects-chevron-offset: calc(3px * var(--projects-icon-scale));
  border: var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    background-color var(--projects-card-motion-short) var(--projects-card-motion-ease),
    transform var(--projects-card-motion-short) var(--projects-card-motion-ease),
    box-shadow var(--projects-card-motion-short) var(--projects-card-motion-ease);
}

.projects-card__plus::before,
.projects-card__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(14px * var(--projects-icon-scale));
  height: calc(1.6px * var(--projects-icon-scale));
  border-radius: 999px;
  background: var(--purple);
  transform: translate(-50%, -50%);
  transition:
    width var(--projects-card-motion-short) var(--projects-card-motion-ease),
    transform var(--projects-card-motion-short) var(--projects-card-motion-ease);
}

.projects-card__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.projects-card__date {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  font-size: calc(15px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(17px * var(--stage-scale));
  color: #7d7287;
}

.projects-card__title {
  position: relative;
  z-index: 1;
  margin: calc(16px * var(--stage-scale)) 0 0;
  font-size: calc(19px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(24px * var(--stage-scale));
  color: #241b2b;
  word-break: break-word;
}

.projects-card__desc {
  position: relative;
  z-index: 1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #5c5265;
  font-size: calc(15px * var(--stage-scale));
  font-weight: 500;
  line-height: calc(21px * var(--stage-scale));
  opacity: 0;
  transform: translateY(var(--projects-desc-shift));
  transition:
    max-height var(--projects-card-motion-duration) var(--projects-card-motion-ease),
    margin-top var(--projects-card-motion-duration) var(--projects-card-motion-ease),
    opacity var(--projects-card-motion-short) var(--projects-card-motion-ease),
    transform var(--projects-card-motion-duration) var(--projects-card-motion-ease);
}

.projects-card.is-project-card-open .projects-card__content {
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.projects-card.is-project-card-open .projects-card__content::before {
  opacity: 1;
}

.projects-card.is-project-card-open .projects-card__desc {
  max-height: var(--projects-desc-open-height);
  margin-top: var(--projects-desc-open-gap);
  opacity: 1;
  transform: translateY(0);
}

.projects-card.is-project-card-open .projects-card__plus {
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.08);
  box-shadow: var(--hover-shadow-light);
}

.projects-card.is-project-card-open .projects-card__image {
  transform: scale(1.035);
}

.projects-card.is-project-card-open .projects-card__plus::before {
  width: calc(10px * var(--projects-icon-scale));
  transform: translate(calc(-50% - var(--projects-chevron-offset)), -50%) rotate(45deg);
}

.projects-card.is-project-card-open .projects-card__plus::after {
  width: calc(10px * var(--projects-icon-scale));
  transform: translate(calc(-50% + var(--projects-chevron-offset)), -50%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
  .projects-card:hover .projects-card__content {
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .projects-card:hover .projects-card__content::before {
    opacity: 1;
  }

  .projects-card:hover .projects-card__desc {
    max-height: var(--projects-desc-open-height);
    margin-top: var(--projects-desc-open-gap);
    opacity: 1;
    transform: translateY(0);
  }

  .projects-card:hover .projects-card__plus {
    background: rgba(255, 255, 255, 0.72);
  }

  .projects-card:hover .projects-card__plus::before {
    width: calc(10px * var(--projects-icon-scale));
    transform: translate(calc(-50% - var(--projects-chevron-offset)), -50%) rotate(45deg);
  }

  .projects-card:hover .projects-card__plus::after {
    width: calc(10px * var(--projects-icon-scale));
    transform: translate(calc(-50% + var(--projects-chevron-offset)), -50%) rotate(-45deg);
  }
}

.projects-carousel {
  position: relative;
  z-index: 1;
  width: calc(1423px * var(--stage-scale));
  height: calc(24px * var(--stage-scale));
  margin: calc(41px * var(--stage-scale)) 0 0 calc(89px * var(--stage-scale));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(24px * var(--stage-scale));
}

.projects-carousel__dots {
  display: flex;
  flex: 1 1 auto;
  gap: calc(8px * var(--stage-scale));
  align-items: center;
  min-width: 0;
}

.projects-carousel__dot {
  flex: 1 1 0;
  width: calc(24px * var(--stage-scale));
  min-width: calc(10px * var(--stage-scale));
  max-width: calc(24px * var(--stage-scale));
  height: calc(2px * var(--stage-scale));
  padding: 0;
  border: 0;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  background: #c6c7e2;
  cursor: pointer;
}

.projects-carousel__dot--active {
  background: #4f52a4;
}

.projects-carousel__arrows {
  display: flex;
  flex: 0 0 auto;
  gap: calc(16px * var(--stage-scale));
  align-items: center;
}

.projects-carousel__arrow {
  width: calc(24px * var(--stage-scale));
  height: calc(24px * var(--stage-scale));
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-carousel__arrow img {
  width: calc(14px * var(--stage-scale));
  height: calc(14px * var(--stage-scale));
}

.projects-carousel__arrow img {
  width: calc(8px * var(--stage-scale));
  height: calc(14px * var(--stage-scale));
}

/* Section: footer */

.footer-stage {
  position: relative;
  width: 100%;
  height: calc(var(--footer-height) * 1px * var(--stage-scale));
  overflow: hidden;
}

.footer-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows:
    calc(133px * var(--stage-scale)) calc(76px * var(--stage-scale)) calc(46px * var(--stage-scale)) calc(45px * var(--stage-scale)) calc(125px * var(--stage-scale)) calc(74.666px * var(--stage-scale)) calc(20.334px * var(--stage-scale)) calc(41px * var(--stage-scale)) calc(73px * var(--stage-scale)) calc(1px * var(--stage-scale)) calc(24px * var(--stage-scale)) auto;
  width: 100%;
  max-width: calc(var(--stage-width) * 1px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(to bottom, #4c4181, #2e1b52);
}

.footer-bg {
  position: absolute;
  top: calc(-7px * var(--stage-scale));
  left: calc(-317px * var(--stage-scale));
  width: calc(2074px * var(--stage-scale));
  height: calc(756px * var(--stage-scale));
  opacity: 0.34;
  overflow: hidden;
  pointer-events: none;
}

.footer-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

.footer-heading {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  margin: 0;
  color: #ece9f1;
  font-size: calc(64px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(76px * var(--stage-scale));
  white-space: nowrap;
  text-align: center;
}

.footer-contacts {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 4;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: calc(48px * var(--stage-scale));
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: calc(12px * var(--stage-scale));
  text-decoration: none;
}

.footer-contact__icon {
  width: calc(29px * var(--stage-scale));
  height: calc(29px * var(--stage-scale));
  flex-shrink: 0;
}

.footer-contact__text {
  font-size: calc(24px * var(--stage-scale));
  font-weight: 700;
  line-height: calc(45px * var(--stage-scale));
  color: #ffffff;
  white-space: nowrap;
}

.footer-logo {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 6;
  justify-self: center;
  width: calc(369.753px * var(--stage-scale));
  height: calc(74.666px * var(--stage-scale));
}

.footer-logo__full {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-url {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 8;
  justify-self: center;
  margin: 0;
  font-size: calc(24px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(41px * var(--stage-scale));
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.footer-contact:focus-visible,
.footer-url:focus-visible {
  outline-color: #ffffff;
}

.footer-divider {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 10;
  justify-self: center;
  width: calc(1423px * var(--stage-scale));
  height: calc(1px * var(--stage-scale));
  background: rgba(232, 225, 239, 0.3);
}

.footer-license {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 12;
  justify-self: start;
  width: calc(303px * var(--stage-scale));
  margin: 0 0 0 calc(89px * var(--stage-scale));
  font-size: calc(18px * var(--stage-scale));
  font-weight: 600;
  line-height: calc(24px * var(--stage-scale));
  color: #c4bcd4;
}

.footer-note {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 12;
  justify-self: start;
  width: calc(859px * var(--stage-scale));
  margin: 0 0 0 calc(653px * var(--stage-scale));
  font-size: calc(18px * var(--stage-scale));
  font-weight: 400;
  line-height: calc(24px * var(--stage-scale));
  color: #c4bcd4;
}

/* Hover interactions */

@media (hover: hover) and (pointer: fine) {

  .hero-logo__link,
  .rating-carousel__dot,
  .rating-carousel__arrow,
  .projects-carousel__dot,
  .projects-carousel__arrow,
  .footer-contact,
  .footer-url {
    transition:
      transform var(--hover-duration) var(--hover-ease),
      opacity var(--hover-duration) var(--hover-ease),
      background-color var(--hover-duration) var(--hover-ease),
      box-shadow var(--hover-duration) var(--hover-ease),
      filter var(--hover-duration) var(--hover-ease);
  }

  .hero-logo__link {
    transform-origin: center;
  }

  .hero-logo__link:hover,
  .hero-logo__link:focus-visible {
    opacity: 0.92;
    transform: scale(1.035);
    filter: drop-shadow(0 10px 18px rgba(92, 33, 110, 0.12));
  }

  .rating-carousel__dot,
  .projects-carousel__dot {
    transform-origin: center;
  }

  .rating-carousel__dot:hover,
  .rating-carousel__dot:focus-visible,
  .projects-carousel__dot:hover,
  .projects-carousel__dot:focus-visible {
    transform: scaleX(1.16) scaleY(1.8);
    background: var(--purple);
  }

  .rating-carousel__arrow,
  .projects-carousel__arrow {
    border-radius: 50%;
  }

  .rating-carousel__arrow img,
  .projects-carousel__arrow img {
    transition:
      transform var(--hover-duration) var(--hover-ease),
      filter var(--hover-duration) var(--hover-ease),
      opacity var(--hover-duration) var(--hover-ease);
  }

  .rating-carousel__arrow:hover,
  .rating-carousel__arrow:focus-visible,
  .projects-carousel__arrow:hover,
  .projects-carousel__arrow:focus-visible {
    transform: scale(1.14);
    background: rgba(92, 33, 110, 0.08);
  }

  .rating-carousel__arrow:hover img,
  .rating-carousel__arrow:focus-visible img,
  .projects-carousel__arrow:hover img,
  .projects-carousel__arrow:focus-visible img {
    opacity: 0.95;
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(92, 33, 110, 0.24));
  }

  .rating-card,
  .rating-agency-card {
    transition:
      box-shadow var(--hover-duration-slow) var(--hover-ease),
      border-color var(--hover-duration-slow) var(--hover-ease),
      filter var(--hover-duration-slow) var(--hover-ease);
  }

  .rating-card__value,
  .rating-card__title,
  .rating-agency-card__logo,
  .rating-agency-card__value {
    transition:
      transform var(--hover-duration-slow) var(--hover-ease),
      color var(--hover-duration) var(--hover-ease),
      filter var(--hover-duration-slow) var(--hover-ease);
    transform-origin: left center;
  }

  .rating-card:hover,
  .rating-agency-card:hover {
    box-shadow: var(--hover-glow);
    filter: saturate(1.03);
  }

  .rating-card:hover .rating-card__value,
  .rating-card:hover .rating-card__title {
    transform: translateY(calc(-4px * var(--stage-scale)));
  }

  .rating-agency-card:hover .rating-agency-card__logo {
    transform: scale(1.045);
    filter: drop-shadow(0 8px 14px rgba(92, 33, 110, 0.12));
  }

  .rating-agency-card:hover .rating-agency-card__value {
    color: var(--purple);
    transform: translateY(calc(-4px * var(--stage-scale)));
  }

  .support-stat__value,
  .support-stat__text-dark {
    transition:
      transform var(--hover-duration-slow) var(--hover-ease),
      color var(--hover-duration) var(--hover-ease),
      filter var(--hover-duration-slow) var(--hover-ease);
    transform-origin: left center;
  }

  .support-stat:hover .support-stat__value {
    transform: translateY(calc(-3px * var(--stage-scale))) scale(1.025);
    filter: drop-shadow(0 10px 16px rgba(92, 33, 110, 0.14));
  }

  .support-stat:hover .support-stat__text-dark {
    color: var(--purple);
  }

  .corp-card {
    transition:
      border-color var(--hover-duration-slow) var(--hover-ease),
      background-color var(--hover-duration-slow) var(--hover-ease),
      box-shadow var(--hover-duration-slow) var(--hover-ease),
      filter var(--hover-duration-slow) var(--hover-ease);
  }

  .corp-card__icon {
    transition:
      transform var(--hover-duration-slow) var(--hover-ease),
      filter var(--hover-duration-slow) var(--hover-ease);
    transform-origin: center;
  }

  .corp-card:hover {
    box-shadow: var(--hover-shadow-soft);
  }

  .corp-card--dark:hover {
    filter: brightness(1.045) saturate(1.03);
  }

  .corp-card--light:hover {
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.64);
  }

  .corp-card:hover .corp-card__icon {
    transform: translateY(calc(-6px * var(--stage-scale))) scale(1.045);
    filter: drop-shadow(0 12px 18px rgba(92, 33, 110, 0.18));
  }

  .industries-ticker:hover .industries-ticker__track {
    animation-play-state: paused;
  }

  .industries-ticker__item,
  .industries-ticker__dot {
    transition:
      opacity var(--hover-duration) var(--hover-ease),
      text-shadow var(--hover-duration) var(--hover-ease),
      transform var(--hover-duration) var(--hover-ease);
  }

  .industries-ticker:hover .industries-ticker__item {
    text-shadow: 0 8px 18px rgba(92, 33, 110, 0.13);
  }

  .industries-ticker:hover .industries-ticker__dot {
    opacity: 0.72;
    transform: scale(0.82);
  }

  .projects-card:hover .projects-card__image,
  .projects-card:focus-within .projects-card__image {
    transform: scale(1.035);
  }

  .projects-card:hover .projects-card__plus,
  .projects-card__plus:hover,
  .projects-card__plus:focus-visible {
    transform: scale(1.08);
    box-shadow: var(--hover-shadow-light);
  }

  .footer-contact {
    transform-origin: center;
  }

  .footer-contact__icon,
  .footer-contact__text {
    transition:
      transform var(--hover-duration) var(--hover-ease),
      color var(--hover-duration) var(--hover-ease),
      text-shadow var(--hover-duration) var(--hover-ease),
      filter var(--hover-duration) var(--hover-ease);
  }

  .footer-contact:hover,
  .footer-contact:focus-visible,
  .footer-url:hover,
  .footer-url:focus-visible {
    transform: translateY(calc(-2px * var(--stage-scale)));
  }

  .footer-contact:hover .footer-contact__icon,
  .footer-contact:focus-visible .footer-contact__icon {
    transform: scale(1.12);
    filter: drop-shadow(0 8px 14px rgba(255, 255, 255, 0.16));
  }

  .footer-contact:hover .footer-contact__text,
  .footer-contact:focus-visible .footer-contact__text,
  .footer-url:hover,
  .footer-url:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-shadow: 0 8px 18px rgba(255, 255, 255, 0.14);
  }
}

/* Responsive */

@media (min-width: 2560px) {
  .hero-stage {
    height: calc(var(--hero-height) * 1px * var(--stage-max-scale));
  }

  .about-stage {
    height: calc(var(--about-height) * 1px * var(--stage-max-scale));
    margin-top: calc(var(--about-overlap) * -1px * var(--stage-max-scale));
  }

  .rating-stage {
    height: calc(var(--rating-height) * 1px * var(--stage-max-scale));
  }

  .support-stage {
    height: calc(var(--support-height) * 1px * var(--stage-max-scale));
  }

  .corp-stage {
    --corp-canvas-height: calc(var(--corp-height) * 1px * var(--stage-max-scale));
    height: calc(var(--corp-canvas-height) + var(--corp-scroll-distance));
  }

  .corp-stage.is-corp-scroll-ready {
    height: calc(var(--corp-sticky-height) + var(--corp-scroll-distance));
  }

  .corp-stage.is-corp-scroll-ready .corp-canvas {
    height: var(--corp-sticky-height);
  }

  .industries-stage {
    height: calc(var(--industries-height) * 1px * var(--stage-max-scale));
  }

  .projects-stage {
    height: calc(var(--projects-height) * 1px * var(--stage-max-scale));
  }

  .footer-stage {
    height: calc(var(--footer-height) * 1px * var(--stage-max-scale));
  }
}

@media (max-width: 755.98px) {
  :root {
    --mobile-width: 375;
    --mobile-scale: calc(100vw / (var(--mobile-width) * 1px));
  }

  html {
    min-width: 0;
  }

  .page {
    overflow-x: clip;
    overflow-y: visible;
  }

  .hero-stage {
    z-index: 1;
    height: calc(773px * var(--mobile-scale));
    overflow: visible;
    background: #f6f4fa;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    overflow: hidden;
    background: #f6f4fa;
  }

  .hero-canvas::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: calc(180 / 375 * 100vw);
    background:
      linear-gradient(to bottom,
        rgba(246, 244, 250, 0) 0%,
        rgba(246, 244, 250, 0.72) 62%,
        #f6f4fa 100%);
    pointer-events: none;
  }

  .hero-gradient {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding-top: calc(34 / 375 * 100vw);
    padding-left: calc(28 / 375 * 100vw);
  }

  .hero-background {
    top: 0;
    left: 0;
    width: 100%;
    height: calc(906 / 375 * 100vw);
    z-index: 1;
  }

  .hero-background__video {
    object-position: 65% top;
  }

  .hero-logo__rostec {
    z-index: 2;
    width: calc(51.27 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
  }

  .hero-logo__novikom {
    z-index: 2;
    width: calc(193.813 / 375 * 100vw);
    height: calc(39.137 / 375 * 100vw);
    margin-top: calc(6.118 / 375 * 100vw);
  }

  .hero-logo {
    gap: calc(50.892 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }

  .hero-title {
    z-index: 2;
    width: calc(304 / 375 * 100vw);
    margin-top: calc(41 / 375 * 100vw);
    font-size: calc(53 / 375 * 100vw);
    font-weight: 700;
    line-height: 0.99;
    color: var(--purple);
  }

  .hero-lead {
    z-index: 2;
    display: block;
    width: calc(247 / 375 * 100vw);
    height: auto;
    margin: calc(36 / 375 * 100vw) 0 0;
    color: #111111;
    font-size: calc(28 / 375 * 100vw);
    font-weight: 700;
    line-height: calc(38 / 375 * 100vw);
  }

  .hero-lead span:last-child {
    margin-top: calc(3 / 375 * 100vw);
    line-height: calc(32 / 375 * 100vw);
  }

  .hero-notice {
    --hero-notice-gap: clamp(0px, calc(100vh - calc(555 / 375 * 100vw)), calc(75 / 375 * 100vw));
    --hero-notice-gap: clamp(0px,
        calc(100svh - (555 / 375 * 100vw)),
        calc(45 / 375 * 100vw));
    z-index: 2;
    width: calc(334 / 375 * 100vw);
    min-height: calc(143 / 375 * 100vw);
    margin: var(--hero-notice-gap) 0 0 calc(-8 / 375 * 100vw);
    padding: calc(16 / 375 * 100vw) calc(14.899 / 375 * 100vw);
    border-radius: 12px;
  }

  .hero-notice__text {
    width: 100%;
    color: var(--purple);
    font-size: calc(18 / 375 * 100vw);
    font-weight: 600;
    line-height: calc(22 / 375 * 100vw);
    white-space: normal;
  }

  .hero-notice__text>span+span {
    margin-top: calc(8 / 375 * 100vw);
  }

  .hero-notice__row {
    gap: calc(8 / 375 * 100vw);
  }

  .about-stage {
    z-index: 2;
    height: calc(815px * var(--mobile-scale));
    margin-top: 0;
    overflow: visible;
    background: transparent;
  }

  .about-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: visible;
    background: transparent;
  }

  .about-canvas::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-33 / 375 * 100vw);
    width: calc(479 / 375 * 100vw);
    height: calc(815 / 375 * 100vw);
    background: linear-gradient(-20.549deg, #ede5f4 16.944%, #ffffff 83.607%);
    filter: blur(calc(40 / 375 * 100vw));
  }

  .about-intro {
    width: calc(321 / 375 * 100vw);
    min-height: calc(322 / 375 * 100vw);
    margin: calc(24 / 375 * 100vw) auto 0;
    gap: calc(24 / 375 * 100vw);
  }

  .about-intro__eyebrow {
    color: rgba(92, 33, 110, 0.5);
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    line-height: calc(30 / 375 * 100vw);
    opacity: 1;
  }

  .about-intro__eyebrow-line {
    display: block;
  }

  .about-intro__title {
    color: #241b2b;
    font-size: calc(28 / 375 * 100vw);
    font-weight: 700;
    line-height: calc(32 / 375 * 100vw);
    letter-spacing: 0;
  }

  .about-intro__title span {
    display: inline;
  }

  .about-map {
    top: calc(297 / 375 * 100vw);
    left: 0;
    width: 100%;
    height: calc(339 / 375 * 100vw);
  }

  .about-map picture {
    position: absolute;
    inset: 0;
  }

  .about-map__shape {
    top: 0;
    left: calc(-21 / 375 * 100vw);
    width: calc(620.491 / 375 * 100vw);
    height: calc(339 / 375 * 100vw);
  }

  .about-map__number {
    top: calc(88 / 375 * 100vw);
    left: calc(90 / 375 * 100vw);
    color: transparent;
    font-size: calc(160.722 / 375 * 100vw);
    font-weight: 700;
    line-height: calc(178.58 / 375 * 100vw);
    background:
      linear-gradient(200.519deg,
        rgba(144, 123, 188, 0.5) 12.208%,
        rgba(255, 255, 255, 0.5) 54.542%,
        rgba(222, 215, 233, 0.5) 94.479%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-map__marker {
    display: block;
  }

  .about-map__marker--big {
    top: calc(128.638 / 375 * 100vw);
    left: calc(69.803 / 375 * 100vw);
    width: calc(40.357 / 375 * 100vw);
    height: calc(48.427 / 375 * 100vw);
  }

  .about-map__marker--sm {
    width: calc(20.179 / 375 * 100vw);
    height: calc(24.214 / 375 * 100vw);
  }

  .about-map__marker--1 {
    top: calc(162.942 / 375 * 100vw);
    left: calc(105.116 / 375 * 100vw);
  }

  .about-map__marker--2 {
    top: calc(103.919 / 375 * 100vw);
    left: calc(49.625 / 375 * 100vw);
  }

  .about-map__marker--3 {
    top: calc(156.888 / 375 * 100vw);
    left: calc(26.42 / 375 * 100vw);
  }

  .about-map__marker--4 {
    top: calc(182.616 / 375 * 100vw);
    left: calc(26.42 / 375 * 100vw);
  }

  .about-map__marker--5 {
    top: calc(196.741 / 375 * 100vw);
    left: calc(162.625 / 375 * 100vw);
  }

  .about-map__marker--6 {
    top: calc(213.892 / 375 * 100vw);
    left: calc(110.161 / 375 * 100vw);
  }

  .about-map__marker--7 {
    top: calc(252.232 / 375 * 100vw);
    left: calc(227.701 / 375 * 100vw);
  }

  .about-map__marker--8 {
    top: calc(203.803 / 375 * 100vw);
    left: calc(217.612 / 375 * 100vw);
  }

  .about-map__marker--9 {
    top: calc(253.241 / 375 * 100vw);
    left: calc(309.929 / 375 * 100vw);
  }

  .about-map__marker--10 {
    top: calc(246.683 / 375 * 100vw);
    left: calc(275.625 / 375 * 100vw);
  }

  .about-map__marker--11 {
    top: calc(178.581 / 375 * 100vw);
    left: calc(56.688 / 375 * 100vw);
  }

  .about-experience {
    width: calc(321 / 375 * 100vw);
    min-height: calc(152 / 375 * 100vw);
    margin: calc(261 / 375 * 100vw) auto 0;
    gap: calc(12 / 375 * 100vw);
  }

  .about-experience__title {
    width: calc(321 / 375 * 100vw);
    color: var(--purple);
    font-size: calc(32 / 375 * 100vw);
    font-weight: 700;
    line-height: calc(34 / 375 * 100vw);
    letter-spacing: 0;
    white-space: normal;
  }

  .about-experience__title span:first-child {
    display: block;
  }

  .about-experience__title span:last-child {
    display: inline;
  }

  html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span:nth-child(1) {
    animation-delay: 0ms;
  }

  html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span:nth-child(2),
  html.is-enhanced [data-animate="about-experience"].is-in-view.is-counter-ready .about-experience__title span:nth-child(3) {
    animation-delay: 220ms;
  }

  .about-experience__muted {
    color: #7d7287;
    letter-spacing: 0;
  }

  .about-experience__text {
    width: calc(323 / 375 * 100vw);
    min-width: 0;
    color: #4a4054;
    font-size: calc(18 / 375 * 100vw);
    font-weight: 600;
    line-height: calc(24 / 375 * 100vw);
  }

  .rating-stage {
    height: calc(496px * var(--mobile-scale));
    overflow: hidden;
    background: #f6f4fa;
  }

  .rating-canvas {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: none;
    background: #ffffff;
  }

  .rating-canvas::before {
    content: none;
  }

  .rating-title {
    z-index: 1;
    top: auto;
    left: auto;
    width: 100%;
    margin: calc(39.014px * var(--mobile-scale)) 0 0;
    color: #241b2b;
    font-size: calc(28px * var(--mobile-scale));
    font-weight: 700;
    line-height: calc(32px * var(--mobile-scale));
    letter-spacing: 0;
    text-align: center;
  }

  .rating-title span {
    display: inline-block;
  }

  .rating-title span:nth-child(3) {
    display: block;
  }

  html.is-enhanced [data-animate="rating-title"].is-in-view span:nth-child(1) {
    animation-delay: 0ms;
  }

  html.is-enhanced [data-animate="rating-title"].is-in-view span:nth-child(2) {
    animation-delay: 140ms;
  }

  html.is-enhanced [data-animate="rating-title"].is-in-view span:nth-child(3) {
    animation-delay: 300ms;
  }

  .rating-slider {
    z-index: 1;
    top: auto;
    left: auto;
    width: calc(816px * var(--mobile-scale));
    height: calc(441px * var(--mobile-scale));
    margin: calc(31px * var(--mobile-scale)) 0 0;
    overflow: visible;
    touch-action: pan-y;
  }

  .rating-slider__viewport {
    width: 100vw;
    height: calc(441px * var(--mobile-scale));
    overflow: hidden;
  }

  .rating-slider__track {
    height: calc(441px * var(--mobile-scale));
    will-change: transform;
  }

  .rating-card--top15 {
    width: calc(246px * var(--mobile-scale));
    height: calc(362px * var(--mobile-scale));
  }

  html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card:nth-child(1) {
    --rating-slide-start-x: calc(-246px * var(--mobile-scale));
  }

  .rating-card--top20 {
    width: calc(242px * var(--mobile-scale));
    height: calc(362px * var(--mobile-scale));
    background:
      linear-gradient(180deg, rgba(102, 78, 149, 0.74) 0%, rgba(36, 27, 43, 0.94) 100%),
      url("./assets/images/shared/industrial-pattern.jpg") center / cover no-repeat,
      linear-gradient(180deg, #664e95 0%, #241b2b 100%);
  }

  html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-card:nth-child(2),
  html.is-enhanced [data-animate="rating-slider"].is-in-view .rating-agency-card {
    --rating-slide-start-x: calc(-242px * var(--mobile-scale));
  }

  .rating-card__accent {
    display: none;
    width: calc(242.418px * var(--mobile-scale));
    height: calc(5.27px * var(--mobile-scale));
  }

  .rating-card__value {
    top: calc(26.349px * var(--mobile-scale));
    left: calc(28.291px * var(--mobile-scale));
    width: calc(184.448px * var(--mobile-scale));
    font-size: calc(43.592px * var(--mobile-scale));
    line-height: calc(38.646px * var(--mobile-scale));
  }

  .rating-card--top20 .rating-card__value {
    left: calc(25.206px * var(--mobile-scale));
  }

  .rating-card__title {
    top: calc(78px * var(--mobile-scale));
    left: calc(28px * var(--mobile-scale));
    width: calc(191.804px * var(--mobile-scale));
    font-size: calc(18px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(24px * var(--mobile-scale));
  }

  .rating-card--top20 .rating-card__title {
    left: calc(24.916px * var(--mobile-scale));
  }

  .rating-card__caption {
    top: calc(294px * var(--mobile-scale));
    left: calc(28.291px * var(--mobile-scale));
    font-size: calc(18px * var(--mobile-scale));
    line-height: calc(24px * var(--mobile-scale));
  }

  .rating-card--top20 .rating-card__caption {
    left: calc(25.206px * var(--mobile-scale));
  }

  .rating-agency-card {
    width: calc(242.772px * var(--mobile-scale));
    height: calc(441px * var(--mobile-scale));
    border-width: calc(0.878px * var(--mobile-scale));
  }

  .rating-agency-card--expert,
  .rating-agency-card--nra {
    width: calc(242.772px * var(--mobile-scale));
    height: calc(441px * var(--mobile-scale));
  }

  .rating-agency-card__logo {
    top: calc(21.252px * var(--mobile-scale));
    left: calc(20.04px * var(--mobile-scale));
    width: calc(67.735px * var(--mobile-scale));
    height: calc(27.496px * var(--mobile-scale));
  }

  .rating-agency-card__logo--expert {
    top: calc(21.92px * var(--mobile-scale));
    left: calc(20.11px * var(--mobile-scale));
    width: calc(111.314px * var(--mobile-scale));
    height: calc(21.452px * var(--mobile-scale));
  }

  .rating-agency-card__logo--nra {
    top: calc(18.773px * var(--mobile-scale));
    left: calc(19.916px * var(--mobile-scale));
    width: calc(107.32px * var(--mobile-scale));
    height: calc(29.522px * var(--mobile-scale));
  }

  .rating-agency-card__logo--nkr {
    top: calc(17.894px * var(--mobile-scale));
    left: calc(19.916px * var(--mobile-scale));
    width: calc(101.283px * var(--mobile-scale));
    height: calc(30.851px * var(--mobile-scale));
  }

  .rating-agency-card__logo--extra {
    top: calc(15.211px * var(--mobile-scale));
    left: calc(19.916px * var(--mobile-scale));
    width: calc(28.839px * var(--mobile-scale));
    height: calc(40.921px * var(--mobile-scale));
  }

  .rating-agency-card__value {
    top: calc(65.52px * var(--mobile-scale));
    left: calc(20.201px * var(--mobile-scale));
    font-size: calc(22.836px * var(--mobile-scale));
    line-height: calc(26.35px * var(--mobile-scale));
  }

  .rating-agency-card__caption {
    top: calc(376.689px * var(--mobile-scale));
    left: calc(20.201px * var(--mobile-scale));
    color: #6e6478;
    font-size: calc(16.095px * var(--mobile-scale));
    line-height: calc(21.461px * var(--mobile-scale));
  }

  .rating-carousel {
    display: none;
  }

  .support-stage {
    height: calc(1072px * var(--mobile-scale));
    overflow: hidden;
    background: #ffffff;
  }

  .support-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
  }

  .support-background {
    --motion-transform-rest: none;
    --motion-transform-start: scale(1.03);
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    transform-origin: center;
  }

  .support-background__image {
    object-position: 7% center;
  }

  .support-title {
    top: auto;
    left: auto;
    width: 100%;
    margin: calc(72px * var(--mobile-scale)) 0 0;
    transform: none;
    color: #000000;
    font-size: calc(28px * var(--mobile-scale));
    font-weight: 700;
    line-height: calc(32px * var(--mobile-scale));
    letter-spacing: 0;
    text-align: center;
  }

  .support-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(16px * var(--mobile-scale));
    margin-top: calc(29px * var(--mobile-scale));
  }

  .support-stat {
    top: auto;
    left: auto;
    width: calc(317px * var(--mobile-scale));
    padding: calc(20px * var(--mobile-scale)) 0;
    gap: calc(10px * var(--mobile-scale));
    align-items: center;
    border-radius: calc(12px * var(--mobile-scale));
    border: var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
  }

  .support-stat--one {
    order: 1;
    width: calc(317px * var(--mobile-scale));
    height: calc(150px * var(--mobile-scale));
  }

  .support-stat--two {
    order: 3;
    width: calc(317px * var(--mobile-scale));
    height: calc(150px * var(--mobile-scale));
  }

  .support-stat--three {
    order: 2;
    width: calc(317px * var(--mobile-scale));
    height: calc(150px * var(--mobile-scale));
  }

  .support-stat--four {
    order: 4;
    width: calc(317px * var(--mobile-scale));
    height: calc(150px * var(--mobile-scale));
    gap: calc(10px * var(--mobile-scale));
  }

  .support-stat--five {
    order: 5;
    width: calc(317px * var(--mobile-scale));
    height: calc(132px * var(--mobile-scale));
    margin-top: 0;
    gap: calc(10px * var(--mobile-scale));
  }

  html.is-enhanced [data-animate="support-stat"].is-in-view {
    animation-duration: 1050ms;
  }

  html.is-enhanced .support-stat--one.is-in-view {
    --support-stat-delay: 180ms;
    --support-stat-x: calc(-14px * var(--mobile-scale));
    --support-stat-y: calc(26px * var(--mobile-scale));
  }

  html.is-enhanced .support-stat--three.is-in-view {
    --support-stat-delay: 340ms;
    --support-stat-x: calc(14px * var(--mobile-scale));
    --support-stat-y: calc(26px * var(--mobile-scale));
  }

  html.is-enhanced .support-stat--two.is-in-view {
    --support-stat-delay: 500ms;
    --support-stat-x: calc(-10px * var(--mobile-scale));
    --support-stat-y: calc(26px * var(--mobile-scale));
  }

  html.is-enhanced .support-stat--four.is-in-view {
    --support-stat-delay: 660ms;
    --support-stat-x: calc(10px * var(--mobile-scale));
    --support-stat-y: calc(26px * var(--mobile-scale));
  }

  html.is-enhanced .support-stat--five.is-in-view {
    --support-stat-delay: 820ms;
    --support-stat-x: 0px;
    --support-stat-y: calc(26px * var(--mobile-scale));
  }

  .support-stat__value {
    color: #5c216e;
    font-size: calc(32.3px * var(--mobile-scale));
    line-height: calc(33.915px * var(--mobile-scale));
    letter-spacing: -0.646px;
    background: none;
    -webkit-text-fill-color: #5c216e;
  }

  .support-stat__value--with-unit {
    gap: calc(4px * var(--mobile-scale));
  }

  .support-stat__unit {
    color: #241b2b;
    font-size: calc(16px * var(--mobile-scale));
    line-height: calc(33.915px * var(--mobile-scale));
    -webkit-text-fill-color: #241b2b;
  }

  .support-stat__text {
    width: calc(294px * var(--mobile-scale));
    color: #7d7287;
    font-size: calc(18px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(22px * var(--mobile-scale));
    text-align: center;
  }

  .support-stat--four .support-stat__text {
    width: calc(294px * var(--mobile-scale));
  }

  .support-stat--five .support-stat__text {
    width: calc(294px * var(--mobile-scale));
  }

  .support-stat__text span {
    display: inline;
  }

  .support-stat__text .support-stat__text-desktop {
    display: none;
  }

  .support-stat__text .support-stat__text-mobile {
    display: inline;
  }

  .support-stat__text span+span::before {
    content: " ";
  }

  .support-stat__text-dark.support-stat__text-mobile::before {
    content: "";
  }

  .support-stat__text-dark,
  .support-stat--one .support-stat__text-dark {
    color: #241b2b;
  }

  .corp-stage {
    --corp-canvas-height: calc(626px * var(--mobile-scale));
    --corp-sticky-height: var(--corp-canvas-height);
    height: calc(var(--corp-canvas-height) + var(--corp-scroll-distance));
    overflow: hidden;
    background: var(--page-bg);
  }

  .corp-stage.is-corp-scroll-ready {
    height: calc(var(--corp-sticky-height) + var(--corp-scroll-distance));
    overflow: visible;
  }

  .corp-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }

  .corp-stage.is-corp-scroll-ready .corp-canvas {
    height: var(--corp-sticky-height);
  }

  .corp-background {
    --motion-opacity: 0.4;
    top: calc(35px * var(--mobile-scale));
    left: calc(-198px * var(--mobile-scale));
    width: calc(787.517px * var(--mobile-scale));
    height: calc(696px * var(--mobile-scale));
    border-radius: 0;
    opacity: 0.4;
    object-fit: cover;
    object-position: bottom center;
  }

  .corp-title {
    top: auto;
    left: auto;
    width: calc(326px * var(--mobile-scale));
    margin: calc(83px * var(--mobile-scale)) auto 0;
    color: #241b2b;
    font-size: calc(28px * var(--mobile-scale));
    font-weight: 700;
    line-height: calc(32px * var(--mobile-scale));
    letter-spacing: -0.56px;
    text-align: center;
  }

  .corp-cards {
    top: auto;
    left: auto;
    right: auto;
    width: calc(335px * var(--mobile-scale));
    height: calc(402px * var(--mobile-scale));
    margin: calc(31px * var(--mobile-scale)) 0 0 calc(27px * var(--mobile-scale));
    gap: calc(20px * var(--mobile-scale));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }

  .corp-stage.is-corp-scroll-ready .corp-cards {
    margin: calc(31px * var(--mobile-scale)) 0 0 calc(27px * var(--mobile-scale));
    overflow: visible;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .corp-card:last-child {
    margin-right: calc(27px * var(--mobile-scale));
  }

  .corp-card {
    width: calc(321px * var(--mobile-scale));
    height: calc(402px * var(--mobile-scale));
    padding: calc(32px * var(--mobile-scale)) calc(24px * var(--mobile-scale));
    gap: calc(16px * var(--mobile-scale));
    border-radius: calc(12px * var(--mobile-scale));
    scroll-snap-align: start;
  }

  .corp-card--light {
    border: var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
  }

  .corp-card__icon {
    width: calc(112px * var(--mobile-scale));
    height: calc(112px * var(--mobile-scale));
  }

  .corp-card__icon-wrap--credit {
    position: relative;
    display: block;
    width: calc(112px * var(--mobile-scale));
    height: calc(112px * var(--mobile-scale));
    overflow: hidden;
    flex-shrink: 0;
  }

  .corp-card__icon-wrap--credit .corp-card__icon {
    position: static;
    width: 100%;
    height: 100%;
    content: normal;
    object-fit: contain;
  }

  .corp-card:nth-child(2) .corp-card__icon {
    content: normal;
    object-fit: contain;
  }

  .corp-card__title {
    font-size: calc(22px * var(--mobile-scale));
    line-height: calc(26px * var(--mobile-scale));
    letter-spacing: 0;
  }

  .corp-card__desc {
    width: calc(252px * var(--mobile-scale));
    font-size: calc(18px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(22px * var(--mobile-scale));
  }

  .corp-card--light .corp-card__desc {
    width: calc(252px * var(--mobile-scale));
    font-size: calc(18px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(22px * var(--mobile-scale));
  }

  .industries-stage {
    height: calc(206px * var(--mobile-scale));
    overflow: hidden;
    background: var(--page-bg);
  }

  .industries-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--page-bg);
  }

  .industries-title {
    top: auto;
    left: auto;
    margin: calc(47px * var(--mobile-scale)) 0 0 calc(28px * var(--mobile-scale));
    color: #241b2b;
    font-size: calc(28px * var(--mobile-scale));
    font-weight: 700;
    line-height: calc(32px * var(--mobile-scale));
    letter-spacing: 0;
  }

  .industries-ticker {
    top: auto;
    left: auto;
    width: calc(2069.613px * var(--mobile-scale));
    height: calc(59px * var(--mobile-scale));
    margin: calc(24px * var(--mobile-scale)) 0 0 calc(-353px * var(--mobile-scale));
    overflow: visible;
  }

  .industries-ticker__track {
    height: calc(59px * var(--mobile-scale));
    animation: industries-scroll var(--industries-scroll-duration) linear infinite;
  }

  .industries-ticker__group {
    gap: calc(15.226px * var(--mobile-scale));
    padding-right: calc(15.226px * var(--mobile-scale));
  }

  .industries-ticker__item {
    font-size: calc(24px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(30px * var(--mobile-scale));
  }

  .industries-ticker__dot {
    width: calc(5.71px * var(--mobile-scale));
    height: calc(5.71px * var(--mobile-scale));
  }

  .projects-stage {
    height: calc(622px * var(--mobile-scale));
    overflow: hidden;
    background: linear-gradient(129.526deg, #f4f1f7 5.174%, #cbcee0 84.404%);
  }

  .projects-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(129.526deg, #f4f1f7 5.174%, #cbcee0 84.404%);
  }

  .projects-title {
    top: auto;
    left: auto;
    width: 100%;
    margin: calc(61px * var(--mobile-scale)) 0 0;
    color: #241b2b;
    font-size: calc(28px * var(--mobile-scale));
    font-weight: 700;
    line-height: calc(32px * var(--mobile-scale));
    letter-spacing: 0;
    text-align: center;
  }

  .projects-title__accent {
    display: block;
  }

  .projects-title__line {
    display: block;
  }

  html.is-enhanced [data-animate="projects-title"] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  html.is-enhanced [data-animate="projects-title"].is-in-view .projects-title__line {
    animation-delay: 0ms;
  }

  html.is-enhanced [data-animate="projects-title"].is-in-view .projects-title__accent {
    animation-delay: 260ms;
  }

  .projects-cards {
    top: auto;
    left: auto;
    width: calc(1401px * var(--mobile-scale));
    height: calc(354px * var(--mobile-scale));
    margin: calc(19px * var(--mobile-scale)) 0 0 calc(28px * var(--mobile-scale));
    overflow: visible;
  }

  .projects-cards__viewport {
    width: calc(100vw - calc(28px * var(--mobile-scale)));
    height: calc(354px * var(--mobile-scale));
  }

  .projects-cards__track {
    gap: calc(20px * var(--mobile-scale));
    height: calc(354px * var(--mobile-scale));
  }

  .projects-cards__track> :last-child {
    margin-right: calc(20px * var(--mobile-scale));
  }

  .projects-card {
    width: calc(321px * var(--mobile-scale));
    height: calc(354px * var(--mobile-scale));
    --projects-desc-open-height: calc(128px * var(--mobile-scale));
    --projects-desc-open-gap: calc(12px * var(--mobile-scale));
    --projects-desc-shift: calc(10px * var(--mobile-scale));
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .projects-card::after {
    content: none;
  }

  .projects-card:last-child {
    margin-right: calc(28px * var(--mobile-scale));
  }

  .projects-card__image {
    width: calc(321px * var(--mobile-scale));
    height: calc(205px * var(--mobile-scale));
    background: #3e2b62;
  }

  .projects-card__content {
    height: calc(149px * var(--mobile-scale));
    padding: calc(16.591px * var(--mobile-scale)) calc(22.12px * var(--mobile-scale)) calc(20px * var(--mobile-scale));
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - calc(8px * var(--mobile-scale))), rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, #000 calc(100% - calc(8px * var(--mobile-scale))), rgba(0, 0, 0, 0) 100%);
  }

  .projects-card__plus {
    top: calc(15px * var(--mobile-scale));
    right: calc(18px * var(--mobile-scale));
    display: flex;
    width: calc(40px * var(--mobile-scale));
    height: calc(40px * var(--mobile-scale));
    --projects-icon-scale: var(--mobile-scale);
  }

  .projects-card__date {
    margin: 0;
    color: #7d7287;
    font-size: calc(13.826px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(15.669px * var(--mobile-scale));
  }

  .projects-card__title {
    width: calc(258.079px * var(--mobile-scale));
    margin: calc(12.589px * var(--mobile-scale)) 0 0;
    color: #241b2b;
    font-size: calc(16.5px * var(--mobile-scale));
    font-weight: 600;
    line-height: calc(20.5px * var(--mobile-scale));
  }

  .projects-card__desc {
    font-size: calc(14px * var(--mobile-scale));
    line-height: calc(19px * var(--mobile-scale));
  }

  .projects-carousel {
    top: auto;
    left: auto;
    width: calc(316px * var(--mobile-scale));
    height: calc(23.2px * var(--mobile-scale));
    margin: calc(28.063px * var(--mobile-scale)) 0 0 calc(28px * var(--mobile-scale));
    gap: calc(14px * var(--mobile-scale));
  }

  .projects-carousel__dots {
    gap: calc(7.733px * var(--mobile-scale));
  }

  .projects-carousel__dot {
    width: calc(23.2px * var(--mobile-scale));
    min-width: calc(8px * var(--mobile-scale));
    max-width: calc(23.2px * var(--mobile-scale));
    height: calc(1.933px * var(--mobile-scale));
  }

  .projects-carousel__dot--active {
    background: var(--purple);
  }

  .projects-carousel__arrows {
    gap: calc(15.467px * var(--mobile-scale));
  }

  .projects-carousel__arrow {
    width: calc(23.2px * var(--mobile-scale));
    height: calc(23.2px * var(--mobile-scale));
  }

  .projects-carousel__arrow img {
    width: calc(8px * var(--mobile-scale));
    height: calc(14px * var(--mobile-scale));
  }

  .footer-stage {
    height: calc(801px * var(--mobile-scale));
    overflow: hidden;
    background: #3a2463;
  }

  .footer-canvas {
    grid-template-rows:
      calc(90px * var(--mobile-scale)) calc(34px * var(--mobile-scale)) calc(27px * var(--mobile-scale)) calc(149px * var(--mobile-scale)) calc(70px * var(--mobile-scale)) calc(51px * var(--mobile-scale)) calc(14px * var(--mobile-scale)) calc(41px * var(--mobile-scale)) calc(102px * var(--mobile-scale)) calc(48px * var(--mobile-scale)) calc(21px * var(--mobile-scale)) calc(1px * var(--mobile-scale)) calc(21px * var(--mobile-scale)) auto;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #3a2463;
  }

  .footer-bg {
    top: calc(-7px * var(--mobile-scale));
    left: calc(-796px * var(--mobile-scale));
    width: calc(2073.6px * var(--mobile-scale));
    height: calc(815px * var(--mobile-scale));
    opacity: 0.34;
  }

  .footer-heading {
    grid-row: 2;
    justify-self: center;
    color: #ffffff;
    font-size: calc(32px * var(--mobile-scale));
    font-weight: 700;
    line-height: calc(34px * var(--mobile-scale));
  }

  .footer-contacts {
    grid-row: 4;
    justify-self: start;
    margin-left: calc(94px * var(--mobile-scale));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(7px * var(--mobile-scale));
    transform: none;
  }

  .footer-contact {
    gap: calc(13px * var(--mobile-scale));
  }

  .footer-contact__icon {
    width: calc(29px * var(--mobile-scale));
    height: calc(29px * var(--mobile-scale));
  }

  .footer-contact__text {
    font-size: calc(18px * var(--mobile-scale));
    line-height: calc(45px * var(--mobile-scale));
  }

  .footer-logo {
    grid-row: 6;
    justify-self: start;
    width: calc(252.556px * var(--mobile-scale));
    height: calc(51px * var(--mobile-scale));
    margin-left: calc(61px * var(--mobile-scale));
    transform: none;
  }

  .footer-url {
    grid-row: 8;
    justify-self: center;
    color: #ffffff;
    font-size: calc(24px * var(--mobile-scale));
    line-height: calc(41px * var(--mobile-scale));
  }

  .footer-license {
    grid-row: 10;
    justify-self: start;
    width: calc(297px * var(--mobile-scale));
    margin-left: calc(39px * var(--mobile-scale));
    color: #c4bcd4;
    font-size: calc(18px * var(--mobile-scale));
    line-height: calc(24px * var(--mobile-scale));
    text-align: center;
  }

  .footer-divider {
    display: none;
    grid-row: 12;
    justify-self: start;
    width: calc(335px * var(--mobile-scale));
    margin-left: calc(20px * var(--mobile-scale));
    background: rgba(196, 188, 212, 0.3);
  }

  .footer-note {
    grid-row: 14;
    justify-self: start;
    width: calc(288px * var(--mobile-scale));
    margin-left: calc(43.5px * var(--mobile-scale));
    color: #c4bcd4;
    font-size: calc(18px * var(--mobile-scale));
    line-height: calc(24px * var(--mobile-scale));
    text-align: center;
  }
}

/* Motion */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .industries-ticker__track {
    animation: none !important;
    transform: none !important;
  }

  html.is-enhanced [data-animate^="hero-"],
  html.is-enhanced [data-animate^="hero-"].is-in-view,
  html.is-enhanced [data-animate="hero-logo"] .hero-logo__mark,
  html.is-enhanced [data-animate="hero-logo"].is-in-view .hero-logo__mark,
  html.is-enhanced [data-animate="hero-title"] span,
  html.is-enhanced [data-animate="hero-title"].is-in-view span,
  html.is-enhanced [data-animate="hero-lead"] span,
  html.is-enhanced [data-animate="hero-lead"].is-in-view span,
  html.is-enhanced [data-animate="about-intro"] .about-intro__eyebrow,
  html.is-enhanced [data-animate="about-intro"] .about-intro__title span,
  html.is-enhanced [data-animate="about-map"] .about-map__shape,
  html.is-enhanced [data-animate="about-map"] .about-map__number,
  html.is-enhanced [data-animate="about-map"] .about-map__marker,
  html.is-enhanced [data-animate="about-experience"] .about-experience__title span,
  html.is-enhanced [data-animate="about-experience"] .about-experience__text span,
  html.is-enhanced [data-animate="rating-title"] span,
  html.is-enhanced [data-animate="rating-slider"] .rating-card,
  html.is-enhanced [data-animate="rating-slider"] .rating-agency-card,
  html.is-enhanced [data-animate="rating-slider"] .rating-card__accent,
  html.is-enhanced [data-animate="rating-slider"] .rating-card__value,
  html.is-enhanced [data-animate="rating-slider"] .rating-card__title,
  html.is-enhanced [data-animate="rating-slider"] .rating-card__caption,
  html.is-enhanced [data-animate="rating-slider"] .rating-agency-card__logo,
  html.is-enhanced [data-animate="rating-slider"] .rating-agency-card__value,
  html.is-enhanced [data-animate="rating-slider"] .rating-agency-card__caption,
  html.is-enhanced [data-animate="rating-slider"]+.rating-carousel,
  html.is-enhanced [data-animate="support-background"],
  html.is-enhanced [data-animate="support-title"]>span,
  html.is-enhanced [data-animate="support-stat"],
  html.is-enhanced [data-animate="support-stat"] .support-stat__value,
  html.is-enhanced [data-animate="support-stat"] .support-stat__text,
  html.is-enhanced [data-animate="corp-background"],
  html.is-enhanced [data-animate="corp-title"],
  html.is-enhanced [data-animate="corp-cards"] .corp-card,
  html.is-enhanced [data-animate="corp-cards"] .corp-card__icon,
  html.is-enhanced [data-animate="corp-cards"] .corp-card__title,
  html.is-enhanced [data-animate="corp-cards"] .corp-card__desc,
  html.is-enhanced [data-animate="industries-title"],
  html.is-enhanced [data-animate="industries-ticker"],
  html.is-enhanced [data-animate="projects-title"] .projects-title__line,
  html.is-enhanced [data-animate="projects-title"] .projects-title__accent,
  html.is-enhanced [data-animate="projects-cards"] .projects-card,
  html.is-enhanced [data-animate="projects-cards"]+.projects-carousel,
  html.is-enhanced [data-animate="footer-heading"],
  html.is-enhanced [data-animate="footer-contacts"],
  html.is-enhanced [data-animate="footer-logo"] {
    animation: none !important;
    opacity: var(--motion-opacity, 1) !important;
    transform: var(--motion-transform-rest, none) !important;
    filter: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  html.is-enhanced [data-animate="rating-slider"] .rating-card::after,
  html.is-enhanced [data-animate="rating-slider"] .rating-agency-card::after,
  html.is-enhanced [data-animate="support-stat"]::after,
  html.is-enhanced [data-animate="corp-cards"] .corp-card::after {
    animation: none !important;
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  html.is-enhanced [data-animate="hero-lead"] span {
    clip-path: inset(0 0 0 0) !important;
  }

  .projects-card__content,
  .projects-card__content::before,
  .projects-card__desc,
  .projects-card__plus,
  .projects-card__plus::before,
  .projects-card__plus::after {
    transition: none !important;
  }

  .hero-logo__link,
  .rating-carousel__dot,
  .rating-carousel__arrow,
  .rating-carousel__arrow img,
  .projects-carousel__dot,
  .projects-carousel__arrow,
  .projects-carousel__arrow img,
  .rating-card,
  .rating-agency-card,
  .rating-card__accent,
  .rating-card__value,
  .rating-card__title,
  .rating-card__caption,
  .rating-agency-card__logo,
  .rating-agency-card__value,
  .rating-agency-card__caption,
  .support-stat__value,
  .support-stat__text,
  .support-stat__text-dark,
  .corp-card,
  .corp-card__icon,
  .corp-card__title,
  .corp-card__desc,
  .industries-ticker__item,
  .industries-ticker__dot,
  .projects-card__image,
  .footer-contact,
  .footer-contact__icon,
  .footer-contact__text,
  .footer-url {
    transition: none !important;
  }

  .hero-logo__link,
  .rating-carousel__dot,
  .rating-carousel__arrow,
  .rating-carousel__arrow img,
  .projects-carousel__dot,
  .projects-carousel__arrow,
  .projects-carousel__arrow img,
  .rating-card__accent,
  .rating-card__value,
  .rating-card__title,
  .rating-card__caption,
  .rating-agency-card__logo,
  .rating-agency-card__value,
  .rating-agency-card__caption,
  .support-stat__value,
  .support-stat__text,
  .support-stat__text-dark,
  .corp-card__icon,
  .corp-card__title,
  .corp-card__desc,
  .industries-ticker__dot,
  .projects-card__image,
  .projects-card__plus,
  .footer-contact,
  .footer-contact__icon,
  .footer-url {
    transform: none !important;
    filter: none !important;
  }
}
