:root {
  --landing-bg: #050b13;
  --landing-panel: #0a131e;
  --landing-panel-soft: #111923;
  --landing-line: rgba(183, 213, 227, 0.18);
  --landing-text: #f6f8fb;
  --landing-muted: rgba(232, 241, 246, 0.72);
  --landing-dim: rgba(232, 241, 246, 0.52);
  --landing-cyan: #5de0e6;
  --landing-cyan-deep: #0d3e47;
}

html {
  scroll-behavior: smooth;
}

.landing-page {
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.landing-page .page-shell,
.landing-page .pb-3 {
  padding: 0 !important;
  width: 100%;
}

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

.landing-page img,
.landing-page video {
  display: block;
  max-width: 100%;
}

.landing {
  overflow: hidden;
  background: radial-gradient(circle at 50% 4%, rgba(93, 224, 230, 0.13), transparent 26rem), radial-gradient(circle at 86% 18%, rgba(93, 224, 230, 0.06), transparent 22rem), var(--landing-bg);
}

.section-pad {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1184px;
  padding: 104px clamp(20px, 4vw, 48px);
  width: 100%;
}

.landing-menu-container {
  align-items: center;
  box-sizing: border-box;
  max-width: 1184px;
  display: flex;
}

.landing-menu {
  align-items: center;
  backdrop-filter: blur(16px);
  background: transparent;
  border-bottom: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  height: 80px;
  left: 0;
  margin: 0 auto;
  max-width: 1184px;
  box-sizing: border-box;
  padding: 0 clamp(20px, 4vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
  width: 100%;
}

.landing-menu::before {
  background: rgba(7, 9, 16, 0.86);
  border-bottom: 1px solid var(--landing-line);
  content: "";
  height: 100%;
  left: 50%;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand__mark {
  background: conic-gradient(from 42deg, #21b7eb 0 34%, #5de0e6 34% 58%, transparent 58% 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(93, 224, 230, 0.35);
  height: 22px;
  width: 22px;
}

.brand__text sup {
  color: var(--landing-cyan);
  font-size: 14px;
  top: -0.7em;
}

.landing-menu__links,
.landing-menu__actions {
  align-items: center;
  display: flex;
  gap: 28px;
}
.landing-menu__links .btn.tablet-only,
.landing-menu__actions .btn.tablet-only {
  display: none;
}

.landing-menu__links {
  font-size: 16px;
  font-weight: 400;
}

.landing-menu__actions {
  justify-content: end;
}

a:hover {
  text-transform: none;
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0, 0, 1, 1);
  color: var(--landing-muted);
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  transition: transform 0.5s ease;
  white-space: nowrap;
}

.btn--primary, a.btn--primary {
  background: var(--landing-cyan);
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 34px rgba(47, 182, 189, 0.34);
  color: #000000;
}
.btn--primary:hover, a.btn--primary:hover {
  color: #000000;
  transition: transform 0.5s ease;
  transform: scale(1.05);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--landing-muted);
  color: #FFFFFF;
}
.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1333333333);
  color: #FFFFFF;
}

.btn--outline {
  backdrop-filter: blur(10px);
  background: rgba(93, 224, 230, 0.12);
  border: 2px solid var(--landing-cyan);
  color: var(--landing-cyan);
  transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
.btn--outline:hover {
  background-color: var(--landing-cyan);
  transition: transform 0.5s ease;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 36px;
  justify-self: end;
  padding: 0;
  width: 36px;
}

.menu-toggle span {
  background: var(--landing-text);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 28px;
}

.fixed-register {
  bottom: 34px;
  position: fixed;
  right: 48px;
  z-index: 35;
}

.hero {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 620px;
  opacity: 0;
  padding-top: 170px;
  text-align: center;
  transform: translateY(54px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 850px;
}

.hero h1,
.statement h2,
.section-heading h2,
.network h2,
.info-block h2,
.faq h2,
.last-cta h2 {
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 200;
  line-height: 1.05;
  max-width: 820px;
}

.hero p {
  color: var(--landing-muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}

.hero h1 .word,
.hero p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.hero.is-visible h1 .word,
.hero.is-visible p .word {
  animation: hero-word-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero.is-visible h1 .word {
  animation-delay: calc(180ms + var(--word-index) * 52ms);
}

.hero.is-visible p .word {
  animation-delay: calc(520ms + var(--word-index) * 26ms);
}

@keyframes hero-word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero h1 .word,
  .hero p .word,
  .statement,
  .statement h2 .word,
  .statement p .word,
  .features,
  .features .section-heading h2 .word,
  .features .section-heading p .word,
  .how .section-heading h2 .word,
  .how .section-heading p .word,
  .faq .section-heading h2 .word,
  .faq .section-heading p .word,
  .last-cta h2 .word,
  .last-cta p .word,
  .network__copy,
  .network-marquee__rail,
  .last-cta {
    animation: none !important;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hero__note {
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 400;
  margin-top: 32px;
}

.video-block {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1184px;
  padding: 0 clamp(20px, 4vw, 48px) 56px;
  position: relative;
}

.video-line {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.42) 0%, rgba(93, 224, 230, 0.28) 18%, rgba(93, 224, 230, 0.08) 48%, transparent 76%), linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.01) 18%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0.01) 82%, transparent 100%);
  filter: blur(1.5px);
  height: 128px;
  left: 50%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 62%, transparent 100%);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  top: -65px;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 62%, transparent 100%);
  width: min(760px, 100% - 120px);
  z-index: 2;
}

.video-line::before,
.video-line::after {
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
}

.video-line::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.54) 34%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0.54) 66%, transparent 100%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.32), 0 0 54px rgba(93, 224, 230, 0.28);
  height: 1px;
  top: 64px;
  width: 68%;
}

.video-line::after {
  background: rgba(93, 224, 230, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(93, 224, 230, 0.54);
  height: 5px;
  top: 78px;
  width: 5px;
}

.video-block video {
  aspect-ratio: 1.62/1;
  background: #06131c;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 -24px 80px rgba(93, 224, 230, 0.12);
  object-fit: cover;
  width: 100%;
}

.statement {
  margin: 0 auto;
  max-width: 850px;
  min-height: 390px;
  opacity: 0;
  text-align: center;
  transform: translateY(54px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.statement h2 {
  font-size: 40px;
  line-height: 1.2;
}

.statement h2 .word,
.statement p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.statement.is-visible h2 .word,
.statement.is-visible p .word {
  animation: statement-word-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(160ms + var(--word-index) * 34ms);
}

@keyframes statement-word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.partners {
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0 112px;
  text-align: center;
  width: 100%;
}

.partners p {
  color: var(--landing-muted);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 42px;
  text-transform: capitalize;
}

.partners__rail {
  display: flex;
  width: max-content;
}

.partners__track {
  animation: partners-marquee 26s linear infinite;
  align-items: center;
  display: flex;
  gap: clamp(56px, 6vw, 90px);
  padding-right: clamp(56px, 6vw, 90px);
}

.partners__track img {
  flex: 0 0 auto;
  height: clamp(34px, 4vw, 56px);
  max-width: none;
  object-fit: contain;
  opacity: 0.94;
  width: auto;
}

@keyframes partners-marquee {
  to {
    transform: translateX(-100%);
  }
}
.section-heading {
  margin: 0 auto 48px;
  max-width: 780px;
  text-align: center;
}

.features {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-heading h2,
.network h2,
.faq h2 {
  font-size: 28px;
}

.features .section-heading h2 {
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.features .section-heading p {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.features .section-heading h2 .word,
.features .section-heading p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.features.is-visible .section-heading h2 .word,
.features.is-visible .section-heading p .word {
  animation: features-word-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.features.is-visible .section-heading h2 .word {
  animation-delay: calc(160ms + var(--word-index) * 44ms);
}

.features.is-visible .section-heading p .word {
  animation-delay: calc(420ms + var(--word-index) * 24ms);
}

@keyframes features-word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-heading p,
.network p,
.faq p,
.last-cta p,
.info-block p {
  color: var(--landing-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 16px 0 0;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading--split {
  align-items: start;
  display: flex;
  justify-content: space-between;
  max-width: none;
  text-align: left;
}

.feature-grid {
  box-sizing: border-box;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1184px;
}

.feature-card {
  border: 1px solid var(--landing-line);
  min-height: 180px;
  padding: 28px 22px;
}

.feature-card__icon {
  align-items: center;
  background: #0d1420;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  color: var(--landing-text);
  display: flex;
  font-size: 11px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 34px;
  width: 48px;
}

.feature-card h3,
.step-card h3 {
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 12px;
}

.feature-card p,
.step-card p {
  color: var(--landing-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.network {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  overflow: hidden;
}

.network__copy {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.network h2 {
  font-size: 40px;
  line-height: 1.2;
}

.network-marquee {
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.network-marquee::before,
.network-marquee::after {
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 72px;
  z-index: 2;
}

.network-marquee::before {
  background: linear-gradient(90deg, var(--landing-bg), transparent);
  left: 0;
}

.network-marquee::after {
  background: linear-gradient(270deg, var(--landing-bg), transparent);
  right: 0;
}

.network-marquee__rail {
  animation: network-marquee 30s linear infinite;
  display: flex;
  transform: translateX(-50%);
  width: max-content;
}

.network-marquee__track {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.3vw, 30px);
  padding-right: clamp(20px, 2.3vw, 30px);
}

.network-marquee__track img {
  aspect-ratio: 0.72/1;
  border-radius: 15px;
  flex: 0 0 auto;
  height: clamp(230px, 18vw, 306px);
  max-width: none;
  object-fit: cover;
  width: auto;
}

@keyframes network-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.how {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.how .section-heading h2 .word,
.how .section-heading p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.how.is-visible .section-heading h2 .word,
.how.is-visible .section-heading p .word {
  animation: how-word-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.how.is-visible .section-heading h2 .word {
  animation-delay: calc(160ms + var(--word-index) * 44ms);
}

.how.is-visible .section-heading p .word {
  animation-delay: calc(360ms + var(--word-index) * 24ms);
}

@keyframes how-word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.how__top {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 396px);
}

.how__top .section-heading {
  margin-bottom: 28px;
}

.how__cta {
  align-items: center;
  border: 1px solid var(--landing-line);
  border-bottom: 0;
  color: var(--landing-cyan);
  display: flex;
  font-size: 18px;
  font-weight: 600;
  gap: 14px;
  justify-content: flex-end;
  min-height: 68px;
  padding: 0 28px;
  transition: opacity 0.2s ease;
}

.how__cta:hover {
  color: var(--landing-cyan);
  opacity: 0.72;
}

.steps {
  border: 1px solid var(--landing-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  background: linear-gradient(145deg, rgba(17, 25, 35, 0.8), rgba(5, 11, 19, 0.9));
  border-right: 1px solid var(--landing-line);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  padding: 20px 23px 24px;
  position: relative;
}

.step-card:nth-child(4n) {
  border-right: 0;
}

.step-card > span {
  align-items: center;
  background: #030915;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  height: 46px;
  justify-content: center;
  left: 20px;
  position: absolute;
  top: 20px;
  width: 46px;
  z-index: 2;
}

.step-card__media {
  aspect-ratio: 1/1;
  margin: -20px -23px 28px;
  overflow: hidden;
  position: relative;
}

.step-card__media::after {
  background: linear-gradient(180deg, transparent 42%, rgba(5, 11, 19, 0.9));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.step-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.info-block {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  padding-top: 64px;
}

.info-block__lead {
  background: linear-gradient(135deg, rgba(31, 39, 51, 0.78), rgba(8, 14, 22, 0.9));
  border: 1px solid var(--landing-line);
  display: flex;
  flex-direction: column;
  grid-row: 1/3;
  justify-content: flex-end;
  padding: 96px 60px 40px;
}

.info-block h2 {
  font-size: 40px;
  line-height: 1.2;
}

.info-block p {
  margin-top: 72px;
  max-width: 720px;
}

.metric {
  align-content: center;
  background: #071722;
  border: 1px solid var(--landing-line);
  display: grid;
  padding: 44px 30px;
}

.metric--accent {
  background: #102f35;
}

.metric strong {
  font-size: clamp(52px, 6vw, 72px);
  line-height: 0.9;
}

.metric span {
  color: var(--landing-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

@media (max-width: 1100px) {
  .how__top,
  .faq__top {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step-card:nth-child(2n) {
    border-right: 0;
  }
  .step-card:nth-child(n+3) {
    border-top: 1px solid var(--landing-line);
  }
  .info-block {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  }
  .info-block__lead {
    padding: 72px 40px 36px;
  }
  .info-block h2 {
    font-size: 34px;
  }
  .metric strong {
    font-size: 56px;
  }
}
.faq {
  border-bottom: 1px solid var(--landing-line);
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq .section-heading h2 .word,
.faq .section-heading p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.faq.is-visible .section-heading h2 .word,
.faq.is-visible .section-heading p .word {
  animation: faq-word-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.faq.is-visible .section-heading h2 .word {
  animation-delay: calc(160ms + var(--word-index) * 44ms);
}

.faq.is-visible .section-heading p .word {
  animation-delay: calc(360ms + var(--word-index) * 24ms);
}

@keyframes faq-word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq__top {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 396px);
}

.faq__top .section-heading {
  margin-bottom: 28px;
}

.faq__cta {
  align-items: center;
  border: 1px solid var(--landing-line);
  border-bottom: 0;
  color: var(--landing-cyan);
  display: flex;
  font-size: 18px;
  font-weight: 600;
  gap: 14px;
  justify-content: flex-end;
  min-height: 68px;
  padding: 0 28px;
  transition: opacity 0.2s ease;
}

.faq__cta:hover {
  color: var(--landing-cyan);
  opacity: 0.72;
}

.faq-grid {
  border: 1px solid var(--landing-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq details {
  border-bottom: 1px solid var(--landing-line);
  min-height: 72px;
  overflow: hidden;
}

.faq details:nth-child(odd) {
  border-right: 1px solid var(--landing-line);
}

.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  padding: 28px 72px 28px 32px;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--landing-cyan);
  content: "+";
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  right: 28px;
  top: 25px;
  transform: rotate(0deg);
  transition: transform 260ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq__answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 320ms ease, opacity 240ms ease;
}

.faq details[open]:not(.is-animating) .faq__answer {
  height: auto;
  opacity: 1;
}

.faq__answer p {
  margin: 0 72px 24px 32px;
  overflow: hidden;
}

.last-cta {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.1), transparent 31rem), radial-gradient(ellipse at 50% 72%, rgba(93, 224, 230, 0.14), transparent 25rem), linear-gradient(180deg, #050b15 0%, #07111b 47%, #04101a 100%);
  border-bottom: 1px solid var(--landing-line);
  border-top: 1px solid var(--landing-line);
  box-sizing: border-box;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  min-height: 420px;
  opacity: 0;
  overflow: hidden;
  padding: 92px clamp(20px, 4vw, 48px);
  position: relative;
  text-align: center;
  transform: translateY(54px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100vw;
}

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

.last-cta h2 {
  color: var(--landing-text);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.08;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.last-cta p {
  color: var(--landing-muted);
  margin: 22px auto 36px;
  max-width: 520px;
}

.last-cta h2 .word,
.last-cta p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.last-cta.is-visible h2 .word,
.last-cta.is-visible p .word {
  animation: last-cta-word-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.last-cta.is-visible h2 .word {
  animation-delay: calc(160ms + var(--word-index) * 44ms);
}

.last-cta.is-visible p .word {
  animation-delay: calc(420ms + var(--word-index) * 24ms);
}

.last-cta .btn {
  box-shadow: 0 0 30px rgba(93, 224, 230, 0.34);
  min-width: 156px;
}

@keyframes last-cta-word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-footer {
  background: var(--landing-bg);
  box-sizing: border-box;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr auto auto;
  margin: 0 auto;
  max-width: 1184px;
  padding: 56px clamp(20px, 5vw, 64px) 72px;
  width: 100%;
}

.landing-footer p {
  color: var(--landing-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 28px 0;
  max-width: 330px;
}

.certs {
  display: flex;
  gap: 34px;
  margin-bottom: 58px;
  max-width: 620px;
}

.certs span,
.landing-footer small {
  color: rgb(213, 213, 213);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.landing-footer small a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.landing-footer nav {
  display: grid;
  align-content: flex-start;
  gap: 22px;
  min-width: 120px;
}

.landing-footer a {
  color: rgb(213, 213, 213);
  font-size: 16px;
  font-weight: 400;
}

.landing-footer strong {
  color: rgb(245, 245, 245);
  font-size: 16px;
  font-weight: 600;
}

.landing-footer a:hover {
  opacity: 0.72;
}

@media (max-width: 900px) {
  .landing-menu {
    grid-template-columns: auto 1fr;
    height: 58px;
    padding: 0 14px;
  }
  .landing-menu__links .btn.tablet-only {
    display: inline-flex;
  }
  .menu-toggle {
    display: block;
  }
  .landing-menu__links,
  .landing-menu__actions {
    display: none;
  }
  .landing-menu.is-open::after {
    backdrop-filter: blur(22px);
    background: rgba(7, 9, 16, 0.92);
    border-bottom: 1px solid var(--landing-line);
    content: "";
    height: 450px;
    left: 0;
    position: fixed;
    right: 0;
    top: 58px;
    z-index: -1;
  }
  .landing-menu.is-open .landing-menu__links {
    display: grid;
    font-size: 18px;
    gap: 24px;
    left: 78px;
    position: fixed;
    top: 90px;
  }
  .landing-menu.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .landing-menu.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .landing-menu.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .brand {
    font-size: 16px;
  }
  .brand__mark {
    height: 18px;
    width: 18px;
  }
  .section-pad {
    padding: 78px 12px;
  }
  .fixed-register {
    bottom: 24px;
    right: 28px;
  }
  .hero {
    min-height: 510px;
    padding-top: 94px;
  }
  .hero h1 {
    font-size: 32px;
    max-width: 350px;
  }
  .hero p {
    font-size: 14px;
    max-width: 330px;
  }
  .video-block {
    padding: 0 8px 60px;
  }
  .video-block video {
    aspect-ratio: 1.46/1;
  }
  .statement {
    min-height: 260px;
  }
  .statement h2 {
    font-size: 24px;
  }
  .partners {
    padding-bottom: 78px;
  }
  .partners__track {
    gap: 54px;
    padding-right: 54px;
  }
  .partners__track img {
    height: 38px;
  }
  .feature-grid,
  .faq-grid {
    display: block;
  }
  .how__top,
  .faq__top {
    display: block;
  }
  .how__top .section-heading,
  .faq__top .section-heading {
    margin-bottom: 0;
  }
  .how__cta,
  .faq__cta {
    border-bottom: 0;
    justify-content: flex-start;
    margin-top: 28px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .faq details,
  .faq details:nth-child(odd) {
    border: 1px solid var(--landing-line);
    border-bottom: 0;
  }
  .step-card,
  .step-card:nth-child(2n),
  .step-card:nth-child(4n) {
    border: 1px solid var(--landing-line);
    border-bottom: 0;
  }
  .feature-card:last-child,
  .step-card:last-child,
  .faq details:last-child {
    border-bottom: 1px solid var(--landing-line);
  }
  .network {
    gap: 36px;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .network h2 {
    font-size: 28px;
  }
  .network-marquee {
    margin: 0 -12px;
    width: calc(100% + 24px);
  }
  .network-marquee::before,
  .network-marquee::after {
    width: 34px;
  }
  .network-marquee__track {
    gap: 18px;
    padding-right: 18px;
  }
  .network-marquee__track img {
    height: 250px;
  }
  .step-card {
    min-height: 360px;
  }
  .step-card__media {
    aspect-ratio: 1.72/1;
    margin-bottom: 24px;
  }
  .info-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding-left: 6px;
    padding-right: 6px;
  }
  .info-block__lead {
    grid-row: auto;
    min-height: 270px;
    padding: 44px 28px;
  }
  .info-block h2 {
    font-size: 28px;
  }
  .info-block p {
    margin-top: 60px;
  }
  .metric {
    min-height: 132px;
    padding: 28px;
  }
  .metric strong {
    font-size: 52px;
  }
  .section-heading--split {
    display: grid;
    gap: 22px;
    text-align: center;
  }
  .section-heading--split .btn {
    justify-self: center;
  }
  .faq summary {
    font-size: 16px;
    padding: 22px 44px 22px 20px;
  }
  .landing-footer {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    padding: 28px 16px 96px;
  }
  .landing-footer > div {
    grid-column: 1/-1;
  }
  .certs {
    gap: 18px;
    margin-bottom: 44px;
  }
}
.framer-ZsV2r .framer-1o54d2s {
  place-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 96px;
  height: min-content;
  overflow: visible;
  padding: 192px 0px 48px;
  position: relative;
  width: 100%;
}

@media (max-width: 900px) {
  .video-line {
    top: -65px;
    width: min(320px, 100% - 56px);
  }
}

/*# sourceMappingURL=landing.css.map */
