:root {
  --pure-white: #ffffff;
  --dark-grey: #9b9b9d;
  --pure-black: #000000;
  --charcoal: #11151d;
  --ink: #07111f;
  --navy-deep: #0c1c4f;
  --navy-mid: #15378f;
  --mist: #eef4ff;
  --mist-blue: #dbe8ff;
  --panel-stroke: rgba(255, 255, 255, 0.12);
  --cobalt: #2d84eb;
  --cobalt-light: #5aa6ff;
  --cobalt-grey: #e1e8ef;
  --azure: #0031ff;
  --ultraviolet: #8259ef;
  --ultraviolet-light: #b47aff;
  --indigo: #00156e;
  --violet: #4f46e5;
  --hero-image: url("src/hero-bg.jpg");
  --container: 1200px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-primary: "Styrene A", "Archivo", "Inter Tight", "Albert Sans", Inter, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--charcoal);
  background:
    radial-gradient(1200px 720px at 50% -12%, rgba(90, 166, 255, 0.1), transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 26%, #f7faff 100%);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg,
img {
  vertical-align: middle;
}

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

.s0 {
  position: relative;
  overflow: clip;
}

.s1 {
  position: relative;
  color: var(--pure-white);
  background:
    linear-gradient(180deg, #05070d 0%, #0a1540 44%, #2b33b2 100%);
  isolation: isolate;
}

.s1::before,
.s1::after,
.net::before,
.net::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}


.cx {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.hd.is-scrolled {
  padding: 14px 0;
  background: rgba(4, 9, 24, 0.76);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hd__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.id0 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.id0__img {
  width: auto;
  height: 31px;
}

.id0__fb {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pure-white);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nv {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.nv > a:not(.bt),
.dd__tg {
  position: relative;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.22s ease, transform 0.22s ease;
}

.nv > a:not(.bt) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.nv > a:not(.bt)::after,
.dd__tg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 166, 255, 0), rgba(180, 122, 255, 0.95), rgba(90, 166, 255, 0));
  opacity: 0;
  transform: scaleX(0.35) translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nv > a:not(.bt):hover,
.nv > a:not(.bt):focus-visible,
.dd__tg:hover,
.dd__tg:focus-visible {
  color: var(--pure-white);
}

.nv > a:not(.bt):hover::after,
.nv > a:not(.bt):focus-visible::after,
.dd__tg:hover::after,
.dd__tg:focus-visible::after,
.dd.is-open .dd__tg::after,
.dd:focus-within .dd__tg::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.dd {
  position: relative;
}

.dd::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 12px;
  pointer-events: none;
}

.dd:hover::before,
.dd:focus-within::before,
.dd.is-open::before {
  pointer-events: auto;
}

.dd__tg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.dd__tg span {
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  font-size: 0;
  line-height: 0;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.82;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.dd.is-open .dd__tg span,
.dd:focus-within .dd__tg span {
  transform: translateY(1px) rotate(225deg);
  opacity: 1;
}

.dd__mn {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border-radius: 3px;
  background: rgba(10, 14, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.dd:hover .dd__mn,
.dd:focus-within .dd__mn,
.dd.is-open .dd__mn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dd__mn a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.dd__mn a:hover,
.dd__mn a:focus-visible {
  color: var(--pure-white);
  background: rgba(255, 255, 255, 0.08);
}

.nv__btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pure-white);
  cursor: pointer;
}

.nv__btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nv__btn[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nv__btn[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.bt {
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.bt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(1.04);
  background-image: radial-gradient(146% 156% at 122% -8%, rgba(90, 166, 255, 0.98) 2%, rgba(79, 70, 229, 0.96) 48%, rgba(0, 21, 110, 0.98) 100%);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.bt:hover::before,
.bt:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.bt--s {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.bt--l {
  min-height: 52px;
  padding: 0 35px;
  font-size: 1.1rem;
}

.bt--b {
  width: 100%;
}

.bt--p {
  color: var(--pure-white);
  background: var(--ultraviolet);
}

.bt--g {
  color: var(--pure-white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.bt--g:hover,
.bt--g:focus-visible {
  border-color: rgba(90, 166, 255, 0.42);
}

.hr {
  position: relative;
  padding: 158px 0 50px;
  background: transparent;
}

.hr__in {
  max-width: 980px;
  min-height: min(58svh, 620px);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
}

.kx {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.kx__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin-left: 0.35em;
  transform: translateY(-0.03em);
  vertical-align: middle;
}

.kx__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.25rem, 5.7vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h2 {
  font-weight: 400;
  letter-spacing: 0.045em;
}

.hr__cp {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.hr__act {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hr__pts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hr__pts span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
}

.hr__lnk {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  padding-top: 8px;
}

.hr__lnk a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 500;
}

.hr__lnk a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(255, 255, 255, 0.44);
  transition: transform 0.2s ease;
}

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

.hr__lnk a:hover::after,
.hr__lnk a:focus-visible::after {
  transform: scaleX(1);
}

.sx {
  position: relative;
  padding: 112px 0;
}

.sx--l {
  color: var(--charcoal);
  background:
    radial-gradient(760px 340px at 50% 0%, rgba(90, 166, 255, 0.12), transparent 72%),
    linear-gradient(180deg, #edf4ff 0%, #ffffff 24%, #f7fbff 100%);
}

.sx--d {
  color: var(--pure-white);
}

.sxh {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.sxh h2,
.net__intro h2,
.rail__intro h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.sxh p,
.net__intro p,
.rail__intro p,
.cap__tile p,
.net__card p,
.ft__btm p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.sxh > p:last-child,
.net__intro > p:last-child,
.rail__intro > p:last-child {
  max-width: 720px;
  color: rgba(17, 21, 29, 0.68);
}

.sxh--l > p:last-child,
.sx--d .net__intro > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.sxh--l .kx {
  color: rgba(255, 255, 255, 0.68);
}

.cap {
  padding-top: 118px;
  padding-bottom: 96px;
  background: transparent;
}

.cap__flow {
  display: grid;
  gap: 34px;
}

.cap__head {
  justify-items: center;
  text-align: center;
  margin-bottom: 0;
}

.cap__head h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.cap__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cap__tile {
  display: grid;
  gap: 14px;
  min-height: 240px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cap__tile--c {
  grid-column: 1 / -1;
  width: min(100%, 580px);
  justify-self: center;
}

.cap__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  justify-self: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cap__tile h3,
.net__card h3,
.ft h3 {
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.cap__tile p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}
.cap__tile h3 {
  margin-top: 10px;
}




.s1 {
  position: relative;
  color: var(--pure-white);
  background: linear-gradient(180deg, #05070d 0%, #0a1540 44%, #2b33b2 100%);
  isolation: isolate;
  overflow: clip;
}

.s1::before,
.s1::after,
.net::before,
.net::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.s1__float {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: min(1100px, 88vw);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0.98;
  filter: saturate(1.18) contrast(1.12) brightness(1.08);
}

.s1__float--mid {
  top: 50%;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.68) 10%, #000 22%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.68) 10%, #000 22%);
}

.s1__float--low {
  top: 95%;
  opacity: 0.77;
}

.s1__float-media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
}

.hr,
.cap {
  position: relative;
  z-index: 2;
}

.hr {
  position: relative;
  padding: 158px 0 50px;
  background: transparent;
}

.hr__in {
  max-width: 980px;
  min-height: min(58svh, 620px);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
}

.hr__cp {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.hr__act {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cap {
  padding-top: 118px;
  padding-bottom: 96px;
  background: transparent;
}

.cap__flow {
  display: grid;
  gap: 34px;
}

.cap__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cap__tile {
  display: grid;
  gap: 14px;
  min-height: 240px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cap__tile--c {
  grid-column: 1 / -1;
  width: min(100%, 580px);
  justify-self: center;
}

.cap__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  justify-self: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cap__tile h3 {
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.cap__tile p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .cap__grid {
    grid-template-columns: 1fr;
  }

  .cap__tile--c {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .s1__float {
    width: min(920px, 118vw);
    opacity: 0.84;
  }

  .s1__float--mid {
    top: 58%;
    opacity: 0.62;
  }

  .s1__float--low {
    top: 92%;
  }

  .hr {
    padding-top: 192px;
  }

  .hr__in {
    min-height: auto;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .hr,
  .sx {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hr {
    padding-top: 172px;
  }

  .cap {
    padding-top: 92px;
    padding-bottom: 84px;
  }

  .s1__float {
    width: 135vw;
    opacity: 0.76;
  }

  .s1__float--mid {
    top: 60%;
    opacity: 0.52;
  }

  .s1__float--low {
    top: 94%;
  }

  .hr__cp {
    font-size: 0.98rem;
  }

  .cap__tile {
    min-height: 220px;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .s1__float {
    transform: translate3d(-50%, -50%, 0) !important;
    opacity: 0.72 !important;
  }
}




.net {
  position: relative;
  display: grid;
  gap: 52px;
  overflow: clip;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, #09101d 0%, #10204f 100%);
  isolation: isolate;
}

.net::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.4; 
  background:
    url("src/op-dl-s-5.webp") center 42% / cover no-repeat;
}

.net__lay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.net .np {
  position: relative;
  z-index: 2;
}

.net__intro {
  display: grid;
  gap: 16px;
  align-content: start;
  align-self: center;
}

.net__intro .kx {
  color: rgba(255, 255, 255, 0.62);
}

.net__content {
  display: grid;
  gap: 26px;
}

.net__lead {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.net__points {
  display: grid;
  gap: 12px;
}

.net__points p {
  margin: 0;
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.5;
}

.net__points p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.np {
  display: grid;
  gap: 30px;
  margin-top: 55px;
}

.np__intro {
  display: grid;
  gap: 16px;
  max-width: 840px;
}

.np__intro h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
}

.np__intro p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.np__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.np__item {
  min-height: 172px;
  padding: 10px 0 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.np__val {
  display: block;
  font-size: clamp(2.9rem, 5.4vw, 5.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: transparent;
  background-image: linear-gradient(135deg, #7ec8ff 0%, #c3abff 32%, #8f7cff 66%, #5aa6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.np__lbl {
  margin: 0;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.45;
}

.rail {
  padding-top: 40px;
}

.rail__intro {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
  justify-items: center;
}

.rail__shell {
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(17, 21, 29, 0.08);
  box-shadow: 0 18px 44px rgba(17, 21, 29, 0.06);
}

.rail__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 20px;
  animation: marquee 30s linear infinite;
}

.rail__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 74px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(17, 21, 29, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.rail__icon {
  max-height: 32px;
  width: auto;
}

.rail__fb {
  display: none;
  align-items: center;
  color: rgba(17, 21, 29, 0.74);
  font-size: 1.08rem;
  font-weight: 600;
  white-space: nowrap;
}

.dl {
  position: relative;
  padding: 0;
  color: var(--pure-white);
  background: transparent;
}

.dl__band {
  width: 100%;
  margin: 0;
  padding: 68px 24px 68px;
  background:  radial-gradient(760px 320px at 18% 0%, rgba(130, 89, 239, 0.18), transparent 72%), radial-gradient(880px 360px at 82% 8%, rgba(90, 166, 255, 0.16), transparent 74%), linear-gradient(180deg, #1f2aa7 0%, #2b33b2 100%);
}

.dl__in {
  display: grid;
  gap: 26px;
}

.dl__head {
  margin-bottom: 0;
  text-align: center;
  justify-items: center;
}

.dl__head > p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.dl__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dl__card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 222px;
  padding: 30px 30px 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dl__card--muted {
  background: rgba(255, 255, 255, 0.025);
}

.dl__meta {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.dl__osline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.dl__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: rgba(255, 255, 255, 0.9);
}

.dl__icon svg {
  width: 64px;
  height: 64px;
  display: block;
}

.dl__os {
  display: block;
  font-size: clamp(1.9rem, 2.3vw, 2.4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.dl__version {
  display: inline-block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.dl__action {
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ultraviolet);
  color: var(--pure-white);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.dl__action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(1.04);
  background-image: radial-gradient(146% 156% at 122% -8%, rgba(90, 166, 255, 0.98) 2%, rgba(79, 70, 229, 0.96) 48%, rgba(0, 21, 110, 0.98) 100%);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.dl__action:hover,
.dl__action:focus-visible {
  background: var(--ultraviolet);
}

.dl__action:hover::before,
.dl__action:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.dl__action--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  cursor: default;
}

.dl__action--muted::before {
  display: none;
}

.dl__action--muted:hover,
.dl__action--muted:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.dl__note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.5;
}

.dl__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dl__note-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fl {
  color: var(--charcoal);
  background:
    radial-gradient(920px 340px at 50% 0%, rgba(90, 166, 255, 0.08), transparent 72%),
    linear-gradient(180deg, #eef5ff 0%, #f7fbff 46%, #ffffff 100%);
}

.fq,
.lk {
  color: var(--charcoal);
  background: transparent;
}

.fq {
  padding-top: 58px;
  padding-bottom: 34px;
}

.lk {
  color: var(--charcoal);
  padding-top: 44px;
  padding-bottom: 70px;
}

.fq__in {
  display: grid;
  gap: 24px;
}

.fq__head {
  margin-bottom: 0;
  text-align: center;
  justify-items: center;
}

.fq__head h2 {
  font-size: clamp(1.5rem, 2.8vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.fq__head > p:last-child {
  max-width: 640px;
  color: rgba(17, 21, 29, 0.62);
}

.fq__list {
  display: grid;
  gap: 0;
}

.fq__item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(17, 21, 29, 0.08);
}


.fq__item summary {
  position: relative;
  list-style: none;
  padding-right: 36px;
  cursor: pointer;
  font-size: clamp(1.1rem, 1.45vw, 1.26rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

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

.fq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: rgba(17, 21, 29, 0.46);
  font-size: 1.45rem;
  line-height: 1;
}

.fq__item[open] summary::after {
  content: "−";
}

.fq__item p {
  max-width: 62ch;
  margin: 12px 0 0;
  color: rgba(17, 21, 29, 0.64);
  font-size: 0.98rem;
  line-height: 1.52;
}

.lk__in {
  display: grid;
  gap: 30px;
}

.lk__head {
  text-align: center;
  justify-items: center;
  margin-bottom: 0;
}

.lk__head h2 {
  font-size: clamp(1.5rem, 2.8vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.lk__head > p:last-child {
  max-width: 760px;
  color: rgba(17, 21, 29, 0.64);
}

.lk__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lk__item {
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding: 20px 0;
  color: var(--charcoal);
  border-bottom: 2px solid rgba(17, 21, 29, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.lk__item:hover,
.lk__item:focus-visible {
  border-bottom-color: rgba(45, 132, 235, 0.40);
}

.lk__item h3 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  font-size: clamp(1.3rem, 1.75vw, 1.75rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.lk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: rgba(45, 132, 235, 1);
}

.lk__icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.lk__item p {
  margin: 0;
  max-width: 28ch;
  color: rgba(17, 21, 29, 0.62);
  font-size: 0.98rem;
  line-height: 1.5;
}

.lkc {
  display: grid;
  gap: 16px;
  padding-top: 2px;
}

.lkc__head {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding-bottom: 10px;
}

.lkc__eyebrow {
  margin: 0;
  color: rgba(17, 21, 29, 0.42);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lkc__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.lkc__icons a {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2b33b2;
  border: 1px solid rgba(17, 21, 29, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.lkc__icons a:hover,
.lkc__icons a:focus-visible {
  border-color: rgba(45, 132, 235, 0.26);
  background: #10204f;
}

.lkc__icons svg,
.lkc__icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ft {
  padding: 52px 0 56px;
  color: var(--pure-white);
  background:
    radial-gradient(760px 320px at 18% 0%, rgba(130, 89, 239, 0.18), transparent 72%),
    radial-gradient(880px 360px at 82% 8%, rgba(90, 166, 255, 0.16), transparent 74%),
    linear-gradient(180deg, #1f2aa7 0%, #2b33b2 100%);
}

.ft__frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 62px 40px 62px;
  border-radius: 4px;
  background: linear-gradient(180deg, #09101d 0%, #10204f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ft__grid {
  display: grid;
  max-width: 1000px;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.ft__brand {
  display: flex;
  align-items: center;
}

.ft__logo {
  display: inline-flex;
  align-items: center;
}

.ft__logo-img {
  width: min(100%, 240px);
  height: auto;
}

.ft__nav {
  justify-self: end;
  width: min(100%, 620px);
}

.ft h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--pure-white);
  letter-spacing: 0.02em;
}

.ft ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ft__nav a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  transition: color 0.22s ease, transform 0.22s ease;
}

.ft__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 166, 255, 0), rgba(180, 122, 255, 0.95), rgba(90, 166, 255, 0));
  opacity: 0;
  transform: scaleX(0.35) translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.ft__nav a:hover::after,
.ft__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.ft__btm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 24px 4px 0;
}

.ft__btm p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.fx {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.fx--soft {
  transform: none;
  filter: blur(4px);
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.fx--soft.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.fx--stagger {
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx--stagger.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.np__item:nth-child(1),
.dl__card:nth-child(1) {
  transition-delay: 0.02s;
}

.np__item:nth-child(2),
.dl__card:nth-child(2) {
  transition-delay: 0.08s;
}

.np__item:nth-child(3),
.dl__card:nth-child(3) {
  transition-delay: 0.14s;
}

.np__item:nth-child(4),
.dl__card:nth-child(4) {
  transition-delay: 0.2s;
}

.t0 {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(18px);
  z-index: 40;
  min-width: 280px;
  max-width: calc(100% - 32px);
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--pure-white);
  background: rgba(17, 21, 29, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.t0.is-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .net__lay,
  .ft__grid,
  .np__grid,
  .lk__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .cap__grid {
    grid-template-columns: 1fr;
  }

  .cap__tile--c {
    width: 100%;
  }

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

@media (max-width: 820px) {
  .nv__btn {
    display: inline-block;
  }

  .nv {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(10, 14, 31, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nv.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nv .bt {
    width: 100%;
  }

  .dd::before {
    display: none;
  }

  .dd__mn {
    position: static;
    min-width: 0;
    padding: 8px 0 0;
    background: transparent;
    border: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    display: none;
    transform: none;
  }

  .dd.is-open .dd__mn {
    display: grid;
    pointer-events: auto;
  }

  .dd__mn a {
    padding: 0 0 0 14px;
    min-height: 36px;
    border-radius: 0;
    background: transparent;
  }

  .hr {
    padding-top: 192px;
  }

  .hr__in {
    min-height: auto;
    gap: 14px;
  }

  .net__lay,
  .ft__grid,
  .np__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cx {
    width: min(calc(100% - 24px), var(--container));
  }

  .hr,
  .sx {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hr {
    padding-top: 172px;
  }

  .cap {
    padding-top: 92px;
    padding-bottom: 84px;
  }

  .dl__band {
    padding: 56px 12px 22px;
  }

  .hr__cp,
  .sxh > p:last-child,
  .net__intro > p:last-child,
  .rail__intro > p:last-child {
    font-size: 0.98rem;
  }

  .ft__grid,
  .net__lay,
  .np__grid,
  .dl__grid,
  .lk__grid {
    grid-template-columns: 1fr;
  }

  .ft__frame {
    width: calc(100% - 24px);
    padding: 24px;
  }

  .ft__brand,
  .ft__nav {
    justify-self: stretch;
    width: 100%;
  }

  .ft ul {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .np {
    padding-top: 40px;
    gap: 24px;
  }

  .np__item {
    min-height: 0;
    padding: 8px 0 0;
  }

  .net__card {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .net__viz,
  .net__fb {
    min-height: 320px;
  }

  .cap__tile {
    min-height: 220px;
    padding: 22px;
  }

  .dl__card {
    min-height: 180px;
    gap: 24px;
    padding: 18px;
  }

  .dl__os {
    font-size: 2rem;
  }

  .dl__meta {
    gap: 12px;
  }

  .dl__icon {
    width: 52px;
    height: 52px;
  }

  .dl__icon svg {
    width: 38px;
    height: 38px;
  }

  .dl__action {
    min-height: 46px;
  }

  .fq {
    padding-top: 64px;
    padding-bottom: 28px;
  }

  .lk {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .lk__item {
    min-height: 0;
    padding: 18px 0;
  }

  .fq__item {
    padding: 18px 0;
  }

  .fq__item summary {
    font-size: 1.04rem;
    padding-right: 30px;
  }

  .lkc__icons a {
    width: 50px;
    height: 50px;
  }

  .lkc__icons img {
    width: 20px;
    height: 20px;
  }

  .ft__btm {
    padding-top: 16px;
  }

  .rail__track {
    animation-duration: 22s;
    gap: 14px;
    padding: 16px;
  }

  .rail__item {
    min-width: 134px;
    min-height: 60px;
    padding: 0 20px;
  }

  .rail__icon {
    max-height: 26px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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