@font-face {
  font-family: "TT Interfaces";
  src: url("fonts/TTInterfaces-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html.cms-pending .hero-copy {
  visibility: hidden;
}

@font-face {
  font-family: "TT Interfaces";
  src: url("fonts/TTInterfaces-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #cceffc;
  --ink: #122d42;
  --ink-soft: rgba(18, 45, 66, 0.7);
  --ink-faint: rgba(18, 45, 66, 0.5);
  --white: rgba(255, 255, 255, 0.78);
  --white-weak: rgba(255, 255, 255, 0.45);
  --panel: rgba(245, 248, 250, 0.26);
  --border: rgba(255, 255, 255, 0.48);
  --bento-bg: rgba(18, 45, 66, 0.03);
  --container: 1380px;
  --blur: url("assets/glass-texture.png");
}

* {
  box-sizing: border-box;
}

a,
button,
[role="button"],
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  overflow-x: clip;
  overflow-y: visible !important;
  background: var(--bg);
  background-image: url("assets/frame-bg.png");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  color: var(--ink);
  font-family: "TT Interfaces", Arial, sans-serif;
  font-weight: 500;
}

body.scroll:not(.preloader-active),
body:not(.preloader-active) {
  position: static;
  height: auto;
  max-height: none;
}

html.preloader-active {
  height: 100%;
  overflow: hidden !important;
  scrollbar-width: none;
  overscroll-behavior: none;
}

html.preloader-active::-webkit-scrollbar,
body.preloader-active::-webkit-scrollbar {
  display: none;
}

body.preloader-active {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  scrollbar-width: none;
  overscroll-behavior: none;
}

body.preloader-active .page {
  opacity: 0;
}

body.preloader-revealing .site-header,
body.preloader-revealing .hero-copy,
body.preloader-revealing .hero-object {
  animation: pageZoomIn 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.preloader-revealing .page {
  opacity: 1;
  transition: opacity 420ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(235, 248, 254, 0.1);
  pointer-events: none;
}

.preloader {
  --preloader-progress: 0%;
  --preloader-bg-progress: 0;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--bg);
  background-image: url("assets/preloader-bg.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 520ms;
}

.preloader::before {
  content: "";
  position: absolute;
  inset: -34% 0 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.36) 28%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0.66) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 100%);
  transform: translateY(calc((72 - (var(--preloader-bg-progress) * 0.72)) * 1%));
  transition: transform 80ms linear;
  pointer-events: none;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader.is-zooming .preloader-stage {
  transform: scale(2.55);
  opacity: 0;
}

.preloader.is-zooming .preloader-tags {
  opacity: 0;
  transform: scale(1.06);
}

.preloader-tags {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 720ms ease 420ms,
    transform 920ms cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.preloader-tag {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(235, 248, 254, 0.4);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.22);
  color: rgba(18, 45, 66, 0.78);
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transform: translate3d(-999px, -999px, 0);
  will-change: transform;
}

.preloader-tags.is-fallback .preloader-tag {
  animation: preloaderTagFall 3s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--tag-delay, 0ms);
}

.preloader-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 30px;
  width: min(62vw, 540px);
  max-width: 86%;
  transform: scale(1);
  opacity: 1;
  transition:
    transform 920ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 520ms ease 260ms;
}

.preloader-logo {
  width: min(22.5vw, 180px);
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.preloader-logo-base {
  fill: #122d42;
  opacity: 0.22;
}

.preloader-logo-liquid {
  fill: #122d42;
}

.preloader-logo-gloss {
  fill: url("#preloader-gloss-gradient");
  opacity: 0.28;
}

.preloader-progress {
  position: fixed;
  left: 0;
  right: 0;
  bottom: clamp(18px, 4dvh, 42px);
  z-index: 3;
  display: flex;
  justify-content: center;
  width: 100%;
  color: var(--ink);
  font-family: "Inter", "TT Interfaces", Arial, sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

@keyframes preloaderTagFall {
  from {
    transform: translate3d(var(--tag-start-x, 0px), -120px, 0) rotate(var(--tag-rotate, 0deg));
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  to {
    transform: translate3d(var(--tag-end-x, 0px), var(--tag-end-y, 74vh), 0) rotate(calc(var(--tag-rotate, 0deg) * -1));
    opacity: 0.72;
  }
}

@keyframes pageZoomIn {
  from {
    transform: scale(1.035) translateY(10px);
    opacity: 0;
  }

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

.cloud-field {
  position: absolute;
  inset: -18% -16% -28%;
  z-index: 1;
  overflow: visible;
  opacity: 0.95;
  pointer-events: none;
}

.cloud {
  position: absolute;
  display: block;
  width: var(--cloud-size);
  aspect-ratio: 1;
  filter: blur(var(--cloud-blur)) saturate(0.85) brightness(1.05);
  opacity: var(--cloud-opacity);
  transform:
    translate3d(
      var(--cloud-local-x, 0px),
      var(--cloud-local-y, 0px),
      0
    )
    scale(var(--cloud-scale));
  will-change: transform;
}

.cloud::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cloud::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/cloud.png") center / contain no-repeat;
}

.cloud-a {
  --cloud-size: 58vw;
  --cloud-scale: 1.18;
  --cloud-blur: 12px;
  --cloud-opacity: 0.34;
  --cloud-depth: -0.16;
  --cloud-ease-duration: 1500ms;
  left: -20%;
  top: -20%;
}

.cloud-b {
  --cloud-size: 64vw;
  --cloud-scale: 1.28;
  --cloud-blur: 14px;
  --cloud-opacity: 0.34;
  --cloud-depth: -0.12;
  --cloud-ease-duration: 1800ms;
  right: -24%;
  top: 10%;
}

.cloud-c {
  --cloud-size: 52vw;
  --cloud-scale: 1.12;
  --cloud-blur: 13px;
  --cloud-opacity: 0.3;
  --cloud-depth: -0.2;
  --cloud-ease-duration: 1400ms;
  left: 16%;
  top: 50%;
}

.cloud-d {
  --cloud-size: 46vw;
  --cloud-scale: 1.2;
  --cloud-blur: 22px;
  --cloud-opacity: 0.22;
  --cloud-depth: -0.1;
  --cloud-ease-duration: 2000ms;
  left: -16%;
  bottom: -42%;
}

.cloud-e {
  --cloud-size: 50vw;
  --cloud-scale: 1.16;
  --cloud-blur: 18px;
  --cloud-opacity: 0.22;
  --cloud-depth: -0.14;
  --cloud-ease-duration: 1700ms;
  right: -18%;
  bottom: -36%;
}

.cloud-f {
  --cloud-size: 34vw;
  --cloud-scale: 1.02;
  --cloud-blur: 5px;
  --cloud-opacity: 0.32;
  --cloud-depth: -0.52;
  --cloud-ease-duration: 760ms;
  right: calc(8vw - 150px);
  top: 8%;
}

.cloud-g {
  --cloud-size: 38vw;
  --cloud-scale: 1.06;
  --cloud-blur: 7px;
  --cloud-opacity: 0.26;
  --cloud-depth: -0.42;
  --cloud-ease-duration: 900ms;
  left: 4vw;
  top: 62%;
}

.cloud-h {
  --cloud-size: 22vw;
  --cloud-scale: 1;
  --cloud-blur: 4px;
  --cloud-opacity: 0.38;
  --cloud-depth: -0.62;
  --cloud-ease-duration: 680ms;
  z-index: 2;
  right: 8vw;
  top: 46%;
}

.cloud-i {
  --cloud-size: 30vw;
  --cloud-scale: 1.08;
  --cloud-blur: 7px;
  --cloud-opacity: 0.3;
  --cloud-depth: -0.34;
  --cloud-ease-duration: 1100ms;
  right: -2vw;
  top: -12%;
}

.cloud-j {
  --cloud-size: 26vw;
  --cloud-scale: 0.98;
  --cloud-blur: 5px;
  --cloud-opacity: 0.28;
  --cloud-depth: -0.48;
  --cloud-ease-duration: 820ms;
  left: 34vw;
  top: -4%;
}

.cloud-k {
  --cloud-size: 42vw;
  --cloud-scale: 1.12;
  --cloud-blur: 12px;
  --cloud-opacity: 0.27;
  --cloud-depth: -0.18;
  --cloud-ease-duration: 1500ms;
  right: 16vw;
  bottom: -30%;
}

.cloud-l {
  --cloud-size: 24vw;
  --cloud-scale: 1.02;
  --cloud-blur: 4px;
  --cloud-opacity: 0.31;
  --cloud-depth: -0.44;
  --cloud-ease-duration: 920ms;
  left: 52vw;
  top: 34%;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin-inline: auto;
  padding-inline: clamp(12px, 3.125vw, 60px);
}

.section-fill {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  align-self: stretch;
  scroll-margin-top: 120px;
}

.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.glass::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: -140%;
  background-image: var(--blur);
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  pointer-events: none;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  backdrop-filter: blur(16px);
}

.glass-card > * {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 24px;
}

.header-island {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  min-height: 82px;
  padding: 20px 20px 20px 40px;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(232, 247, 254, 0.48);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  backdrop-filter: blur(28px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 60px rgba(52, 129, 178, 0.12);
}

.brand {
  position: relative;
  flex: 1 1 0;
  min-width: 180px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 160ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.header-island.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.header-island.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.nav-highlight {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  width: var(--nav-highlight-width, 0px);
  height: calc(100% - 8px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 24px rgba(67, 140, 188, 0.1);
  opacity: var(--nav-highlight-opacity, 0);
  transform: translate3d(var(--nav-highlight-x, 0px), -50%, 0);
  transition:
    width 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-inline: 12px;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #071f32;
}

.pill-link,
.footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.pill-link {
  border-color: rgba(255, 255, 255, 0.66);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("assets/button.png");
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 28px rgba(70, 145, 192, 0.14);
}

.pill-link img {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.pill-link:hover,
.pill-link:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.mini-pill:hover,
.mini-pill:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-4px);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 548px;
  padding-top: 100px;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
}

.hero h1 {
  margin: 0;
  min-height: calc(2em * 1.145);
  font-size: clamp(64px, 5vw, 96px);
  font-weight: 600;
  line-height: 1.145;
  letter-spacing: -2.88px;
}

.hero p {
  max-width: 560px;
  margin: 40px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 40px;
}

.text-link {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-object {
  position: absolute;
  top: -22px;
  right: 46px;
  z-index: 0;
  width: min(44vw, 560px);
  height: auto;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
}

.features {
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  background: var(--bento-bg);
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 340px;
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}

.feature-card::before {
  inset: 0;
  border-radius: inherit;
}

.icon-chip {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(18, 45, 66, 0.05);
}

.icon-chip img {
  width: 22px;
  height: 22px;
}

.feature-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.feature-media::before,
.feature-media::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 26%;
  z-index: 0;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: var(--feature-glow-opacity, 0);
  will-change: opacity, transform;
}

.feature-media::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 10%, transparent 42%),
    radial-gradient(circle, rgba(72, 183, 239, 0.24) 0 28%, transparent 68%);
  filter: blur(22px);
  mix-blend-mode: screen;
  transform:
    translate(-50%, -50%)
    scale(var(--feature-glow-scale, 0.86))
    rotate(var(--feature-glow-rotate, 0deg));
}

.feature-media::after {
  background:
    conic-gradient(
      from 12deg,
      transparent 0 18deg,
      rgba(80, 190, 246, 0.24) 24deg 34deg,
      transparent 44deg 88deg,
      rgba(255, 255, 255, 0.22) 98deg 110deg,
      transparent 124deg 182deg,
      rgba(87, 171, 232, 0.2) 196deg 208deg,
      transparent 226deg 304deg,
      rgba(255, 255, 255, 0.16) 318deg 328deg,
      transparent 340deg 360deg
    );
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: var(--feature-rays-opacity, 0);
  transform:
    translate(-50%, -50%)
    scale(var(--feature-rays-scale, 0.86))
    rotate(var(--feature-rays-rotate, 0deg));
}

.feature-card.is-hovered .feature-media::before,
.feature-card:focus-within .feature-media::before {
  --feature-glow-opacity: 1;
  --feature-glow-scale: 1.02;
  --feature-glow-rotate: 12deg;
}

.feature-card.is-hovered .feature-media::after,
.feature-card:focus-within .feature-media::after {
  --feature-rays-opacity: 0.9;
  --feature-rays-scale: 1;
}

.feature-media img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 130%;
  height: auto;
  max-width: none;
  transform: translate(-50%, calc(-50% + var(--feature-float-y, 0px)));
  will-change: transform;
}

.feature-media-architecture img {
  left: 92%;
  top: 6%;
  width: 140%;
}

.feature-media-design img {
  left: 91%;
  top: 1%;
  width: 158%;
}

.feature-media-intellect img {
  left: 94%;
  top: 4%;
  width: 152%;
}

.feature-media-growth img {
  left: 97%;
  top: 2%;
  width: 182%;
}

@keyframes featureMobileFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

.feature-card h2 {
  z-index: 3;
  margin: auto 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.feature-card p {
  z-index: 3;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.33;
  letter-spacing: 0.18px;
}

.workflow {
  padding-top: 120px;
}

.workflow h2,
.section-heading h2,
.advantages h2,
.faq h2,
.footer h2 {
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(32px, 2.1vw, 40px);
  font-weight: 600;
  line-height: 1.15;
}

.workflow h2 span {
  padding-inline: 10px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  margin-top: 80px;
}

.workflow-step span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 36px;
  overflow: hidden;
  background: rgba(18, 45, 66, 0.14);
}

.workflow-step span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: rgba(18, 45, 66, 0.62);
  animation: workflowProgressOne 9.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.workflow-step:nth-child(2) span::before {
  animation-name: workflowProgressTwo;
}

.workflow-step:nth-child(3) span::before {
  animation-name: workflowProgressThree;
}

.workflow-step:nth-child(4) span::before {
  animation-name: workflowProgressFour;
}

@keyframes workflowProgressOne {
  0%,
  4% {
    transform: scaleX(0);
  }

  18%,
  92% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes workflowProgressTwo {
  0%,
  24% {
    transform: scaleX(0);
  }

  38%,
  92% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes workflowProgressThree {
  0%,
  44% {
    transform: scaleX(0);
  }

  58%,
  92% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes workflowProgressFour {
  0%,
  64% {
    transform: scaleX(0);
  }

  78%,
  92% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.workflow-step h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.workflow-step p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.18px;
}

.services,
.advantages,
.faq,
.footer {
  padding-top: 120px;
}

.section-heading p,
.footer > p {
  max-width: 540px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  width: min(100%, 960px);
  margin: 80px auto 0;
}

.service-row {
  border-top: 1px solid rgba(18, 45, 66, 0.16);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(18, 45, 66, 0.16);
}

.service-row button {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
}

.service-row span {
  color: var(--ink-faint);
  font-size: 16px;
}

.service-row strong {
  color: var(--ink);
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 500;
}

.service-row em {
  font-style: normal;
  color: var(--ink);
  font-size: 28px;
}

.service-row p {
  display: none;
  max-width: 660px;
  margin: -12px 0 28px 84px;
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1.35;
}

.service-row.open p {
  display: block;
}

.advantages-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.95fr);
  gap: 8px;
  width: 100%;
  margin-top: 80px;
  padding: 8px;
  border-radius: 20px;
  background: var(--bento-bg);
}

.story-card,
.advantage-mini,
.stats {
  border-radius: 12px;
}

.story-card {
  --story-parallax-x: 0px;
  --story-parallax-y: 0px;
  --story-float-a: 0px;
  --story-float-b: 0px;
  overflow: hidden;
  min-height: 420px;
  padding: 36px;
  border-color: transparent;
  isolation: isolate;
  background-clip: padding-box;
  background-image:
    linear-gradient(rgba(226, 244, 253, 0.18), rgba(226, 244, 253, 0.18)),
    url("assets/story-bg.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px #fff;
}

.story-card::before {
  content: none;
}

.story-cube {
  position: absolute;
  z-index: 0;
  width: min(46vw, 440px);
  height: auto;
  opacity: 0.84;
  pointer-events: none;
  will-change: transform;
}

.story-cube-top {
  top: -184px;
  right: -74px;
  transform:
    translate3d(
      calc(var(--story-parallax-x) * 0.95),
      calc(var(--story-parallax-y) * 0.85 + var(--story-float-a)),
      0
    )
    rotate(0deg);
}

.story-cube-bottom {
  right: 30px;
  bottom: -318px;
  width: min(50vw, 480px);
  transform:
    translate3d(
      calc(var(--story-parallax-x) * 0.66),
      calc(var(--story-parallax-y) * 0.55 + var(--story-float-b)),
      0
    )
    rotate(0deg);
}

.story-card span {
  position: relative;
  z-index: 1;
  color: var(--ink-faint);
  font-size: 16px;
}

.story-card h3 {
  position: relative;
  z-index: 1;
  margin: 96px 0 16px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.story-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1.3;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 14px;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease;
}

.advantage-list {
  display: grid;
  gap: 8px;
}

.advantage-mini {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 42px;
  column-gap: 16px;
  align-items: center;
  min-height: 99px;
  padding: 18px 18px 18px 14px;
}

.advantage-mini::after {
  content: none;
}

.advantage-icon {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.3)),
    var(--blur);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transform: translateY(-50%);
}

.advantage-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  transform: translate(-50%, -50%);
}

.advantage-mini strong,
.advantage-mini p,
.advantage-mini span {
  position: relative;
  z-index: 2;
}

.advantage-mini strong {
  display: inline-block;
  grid-column: 2;
  font-size: 18px;
  font-weight: 600;
}

.advantage-mini span {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 22px rgba(40, 105, 148, 0.16);
}

.advantage-mini p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--ink-faint);
  font-size: 14px;
  line-height: 1.3;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  padding: 20px 24px;
}

.stats div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats strong {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.stats span {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.faq-list {
  width: min(100%, 1020px);
  margin: 80px auto 0;
  border-radius: 20px;
}

.faq-item {
  padding: 24px;
  border-bottom: 1px solid rgba(123, 124, 125, 0.1);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.faq-item span {
  max-width: 800px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.24px;
}

.faq-item em {
  font-style: normal;
  font-size: 32px;
}

.faq-item p {
  display: none;
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.18px;
}

.faq-item.open p {
  display: block;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}

.footer-cta {
  overflow: hidden;
  margin-top: 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.footer-cta::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -55%;
  width: 42%;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 34%,
      rgba(255, 255, 255, 0.58) 50%,
      rgba(255, 255, 255, 0.18) 66%,
      rgba(255, 255, 255, 0) 100%
    );
  opacity: 0;
  transform: translateX(0) skewX(-18deg);
  pointer-events: none;
}

.footer-cta:hover::after,
.footer-cta:focus-visible::after {
  opacity: 1;
  animation: footerCtaGlint 1.55s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes footerCtaGlint {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }

  18%,
  62% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(370%) skewX(-18deg);
  }
}

.footer-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr));
  gap: 60px;
  width: calc(100% + 120px);
  margin-top: 80px;
  padding: 60px 210px;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.88);
}

.footer-panel > * {
  position: relative;
  z-index: 1;
}

.footer-panel > .footer-mark {
  position: absolute;
  right: -5%;
  bottom: -24%;
  z-index: 0;
  width: 62%;
  height: 132%;
  object-fit: contain;
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 100%);
  pointer-events: none;
}

.footer-panel section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.footer-panel strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.footer-brand {
  font-size: 32px !important;
  font-weight: 700 !important;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.footer-panel a,
.footer-panel span {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.33;
}

.footer-panel a {
  position: relative;
  display: inline;
  width: fit-content;
  transition: color 260ms ease;
}

.footer-panel a::after {
  content: none;
}

.footer-panel a:hover,
.footer-panel a:focus-visible {
  color: #5eb9ff;
}

.footer-panel small {
  position: relative;
  grid-column: 1 / -1;
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1.33;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 780ms ease,
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .preloader {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .header-island {
    padding-left: 24px;
  }

  .nav {
    gap: 32px;
  }

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

  .advantages-grid,
  .footer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .footer-panel {
    width: 100%;
    padding: 48px;
  }

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

@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: clip;
  }

  .cloud-field {
    display: none;
  }

  .preloader-stage {
    width: min(86vw, 420px);
    max-width: 90%;
    gap: 24px;
  }

  .preloader-logo {
    width: min(34.5vw, 138px);
  }

  .cloud::before {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .page {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
    overflow-x: clip;
  }

  .section-fill,
  .site-header,
  .header-island,
  .hero,
  .features,
  .workflow,
  .services,
  .advantages,
  .faq,
  .footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    padding-top: 16px;
    display: block;
  }

  .header-island {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    row-gap: 0;
    width: 100%;
    min-height: 68px;
    padding: 12px 14px 12px 18px;
  }

  .brand {
    min-width: 0;
    align-self: center;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
  }

  .nav {
    position: static;
    grid-column: 1 / -1;
    display: none;
    gap: 8px;
    justify-content: stretch;
    order: 3;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition:
      max-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 180ms ease,
      padding 240ms ease;
  }

  .header-island.menu-open .nav {
    display: grid;
    max-height: 260px;
    padding-top: 16px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-highlight {
    display: none;
  }

  .nav a {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
  }

  .header-island > .pill-link {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 4;
    display: none;
    max-height: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 180ms ease,
      padding 240ms ease;
  }

  .header-island.menu-open > .pill-link {
    display: inline-flex;
    max-height: 60px;
    min-height: 50px;
    margin-top: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    opacity: 1;
    pointer-events: auto;
  }

  .pill-link {
    justify-self: start;
  }

  .header-island > .pill-link {
    justify-self: stretch;
    width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 16px;
    overflow: visible;
    overflow-x: clip;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 58px;
    letter-spacing: 0;
  }

  .hero p {
    margin-top: 26px;
  }

  .hero-object {
    position: relative;
    top: auto;
    right: auto;
    order: 1;
    z-index: 0;
    display: block;
    width: min(100%, 520px);
    max-width: none;
    margin: 0 auto -8px -28px;
    opacity: 1;
  }

  .features,
  .workflow,
  .services,
  .advantages,
  .faq,
  .footer {
    padding-top: 88px;
  }

  .features {
    padding-top: 24px;
  }

  .feature-grid,
  .workflow-grid,
  .advantages-grid,
  .footer-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .feature-grid {
    display: grid;
  }

  .feature-grid,
  .advantages-grid {
    margin-inline: auto;
  }

  .feature-card,
  .workflow-step,
  .service-row,
  .story-card,
  .advantage-mini,
  .faq-item,
  .stats,
  .footer-panel {
    min-width: 0;
  }

  .feature-card {
    min-height: 320px;
  }

  .feature-media img {
    animation: featureMobileFloat 6.2s ease-in-out infinite;
  }

  .feature-card:nth-child(2) .feature-media img {
    animation-delay: -1.4s;
  }

  .feature-card:nth-child(3) .feature-media img {
    animation-delay: -2.8s;
  }

  .feature-card:nth-child(4) .feature-media img {
    animation-delay: -4.1s;
  }

  .feature-media img {
    width: 170%;
  }

  .service-row button {
    grid-template-columns: 48px 1fr auto;
  }

  .service-row p {
    margin-left: 68px;
  }

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

@media (max-width: 520px) {
  .header-island {
    min-height: 64px;
    padding: 10px 12px 10px 14px;
    border-radius: 16px;
  }

  .brand {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-object {
    top: auto;
    right: auto;
    width: min(100vw, 520px);
    margin: 0 auto -4px -34px;
    opacity: 1;
  }

  .hero p,
  .section-heading p,
  .footer > p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .pill-link,
  .text-link,
  .footer-cta {
    width: 100%;
    white-space: normal;
  }

  .hero-actions .text-link {
    text-align: center;
  }

  .header-island > .pill-link {
    width: 100%;
  }

  .feature-card,
  .story-card,
  .faq-item {
    padding: 18px;
  }

  .feature-card {
    min-height: 286px;
  }

  .feature-media-architecture img {
    left: 86%;
    width: 118%;
  }

  .feature-media-design img {
    left: 84%;
    width: 136%;
  }

  .feature-media-intellect img {
    left: 88%;
    width: 132%;
  }

  .feature-media-growth img {
    left: 90%;
    width: 158%;
  }

  .feature-card h2,
  .faq-item span {
    font-size: 22px;
  }

  .advantages-grid {
    margin-top: 48px;
    padding: 6px;
    border-radius: 16px;
  }

  .story-card {
    min-height: 360px;
    background-position: 58% center;
  }

  .story-cube {
    width: min(72vw, 360px);
    opacity: 0.86;
  }

  .story-cube-top {
    top: -118px;
    right: -102px;
    transform:
      translate3d(
        calc(var(--story-parallax-x) * 0.95),
        calc(var(--story-parallax-y) * 0.85 + var(--story-float-a)),
        0
      )
      rotate(0deg);
  }

  .story-cube-bottom {
    right: -48px;
    bottom: -230px;
    width: min(76vw, 380px);
    transform:
      translate3d(
        calc(var(--story-parallax-x) * 0.66),
        calc(var(--story-parallax-y) * 0.55 + var(--story-float-b)),
        0
      )
      rotate(0deg);
  }

  .story-card h3 {
    margin-top: 80px;
    font-size: 28px;
  }

  .advantage-mini {
    grid-template-columns: 54px minmax(0, 1fr) 36px;
    min-height: 90px;
    column-gap: 12px;
    padding: 14px 14px 14px 12px;
  }

  .advantage-icon {
    left: 12px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .advantage-icon svg {
    width: 21px;
    height: 21px;
  }

  .stats {
    gap: 14px 8px;
    padding: 18px;
  }

  .stats strong {
    font-size: 36px;
  }

  .stats span {
    font-size: 13px;
  }

  .workflow-step h3,
  .service-row strong {
    font-size: 26px;
  }

  .footer-panel {
    padding: 32px 20px;
  }

  .footer-panel > .footer-mark {
    right: -50%;
    bottom: -68%;
    width: 124%;
    height: 170%;
    opacity: 0.28;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 10%, #000 26%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, transparent 10%, #000 26%, #000 100%);
  }
}
