:root {
  --bg: #14161d;
  --bg-soft: #191d26;
  --panel: #f8ead0;
  --panel-border: #e0b75e;
  --text: #eef0f8;
  --muted: #b9bfcd;
  --accent: #28c5f5;
  --accent-2: #4331b6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 22%, rgba(64, 50, 178, 0.24), transparent 30%),
    radial-gradient(circle at 52% 26%, rgba(33, 180, 238, 0.12), transparent 42%),
    linear-gradient(180deg, #101218 0%, #151922 38%, #101319 100%);
  min-height: 100vh;
  overflow-x: hidden;
  animation: pageFade 0.7s ease-out both;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20vh -10vw;
  pointer-events: none;
  z-index: -1;
  will-change: transform, opacity;
}

body::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 115, 255, 0.18), transparent 22%),
    radial-gradient(circle at 80% 28%, rgba(39, 197, 242, 0.16), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(67, 49, 182, 0.14), transparent 26%);
  filter: blur(30px);
  opacity: 0.9;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

body::after {
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.035) 50%, transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 100%);
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: sheenDrift 14s linear infinite;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 38px;
  pointer-events: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header--scrolled {
  background: rgba(16, 18, 24, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.brand,
.menu-button {
  pointer-events: auto;
}

.brand__logo {
  display: block;
  width: 122px;
  height: auto;
}

.brand__text {
  display: inline-block;
  color: #eef0f8;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 191, 244, 0.35);
  border-radius: 4px;
  background: rgba(7, 10, 15, 0.9);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #2ed7e8;
  box-shadow: 0 0 10px rgba(46, 215, 232, 0.55);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

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

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  top: 88px;
  right: 38px;
  z-index: 29;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  padding: 16px;
  border: 1px solid rgba(113, 130, 161, 0.22);
  border-radius: 4px;
  background: rgba(10, 13, 19, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.site-menu a {
  padding: 12px 14px;
  border-radius: 4px;
  color: #f5f7fb;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.03);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-menu a:hover {
  background: rgba(47, 191, 244, 0.12);
  color: #2fbff4;
}

.hero {
  position: relative;
  min-height: 112vh;
  display: grid;
  place-items: center;
  padding: 152px 24px 124px;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1120px;
  margin-top: 6px;
  animation: fadeUp 0.8s ease-out both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(113, 130, 161, 0.28);
  border-radius: 999px;
  background: rgba(7, 10, 15, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8ebf5;
  animation: fadeUp 0.8s ease-out 0.05s both;
}

.hero__title {
  margin: 0;
  display: grid;
  gap: 0;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
  text-shadow: 0 0 36px rgba(59, 126, 255, 0.14);
  animation: fadeUp 0.8s ease-out 0.12s both;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  background: linear-gradient(90deg, #6f5cff 0%, #27c5f2 33%, #ffffff 50%, #27c5f2 67%, #6f5cff 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShimmer 6.5s linear infinite;
}

.hero__subtitle {
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  color: var(--muted);
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 42px;
  padding: 20px 34px;
  min-width: 240px;
  min-height: 62px;
  border-radius: 999px;
  border: 2px solid rgba(255, 245, 204, 0.95);
  color: #1a1200;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.45), transparent 58%),
    linear-gradient(90deg, #ffd84d 0%, #ff9f1c 48%, #ff6a00 100%);
  box-shadow:
    0 0 0 2px rgba(255, 190, 61, 0.22),
    0 14px 32px rgba(255, 122, 0, 0.42),
    0 0 36px rgba(255, 171, 38, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
  animation: fadeUp 0.8s ease-out 0.28s both;
}

.hero__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__chips span {
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid rgba(113, 130, 161, 0.28);
  background: rgba(7, 10, 15, 0.62);
  color: #eef0f8;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero__button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.45) 50%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  z-index: -1;
}

.hero__button:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 249, 230, 1);
  filter: saturate(1.08) brightness(1.02);
  box-shadow:
    0 0 0 2px rgba(255, 190, 61, 0.28),
    0 18px 40px rgba(255, 122, 0, 0.54),
    0 0 48px rgba(255, 171, 38, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero__button:hover::before {
  transform: translateX(120%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}

.hero__orb--left {
  width: 720px;
  height: 720px;
  left: -260px;
  top: 10px;
  background: radial-gradient(circle, rgba(80, 40, 206, 0.22), rgba(80, 40, 206, 0) 65%);
}

.hero__orb--right {
  width: 760px;
  height: 760px;
  right: -290px;
  top: 70px;
  background: radial-gradient(circle, rgba(45, 194, 242, 0.14), rgba(45, 194, 242, 0) 60%);
  animation-delay: -4s;
}

.social-proof {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 62px;
  position: relative;
}

.bank-strip {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 110px;
  position: relative;
}

.bank-marquee {
  position: relative;
  overflow: hidden;
  margin: 30px 0 10px 0;
  background: #ffffff;
  border: 1px solid rgba(113, 130, 161, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.bank-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: bankScroll 24s linear infinite;
  will-change: transform;
}

.bank-marquee-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 20px;
  flex-shrink: 0;
}

.bank-logo {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  flex-shrink: 0;
}

.social-proof__header {
  max-width: 920px;
  margin-bottom: 22px;
}

.social-proof__header h2 {
  margin: 0;
  color: #f5f7fb;
  letter-spacing: -0.07em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.social-proof-swiper {
  position: relative;
  padding: 18px 0 54px;
}

.social-proof-swiper .swiper-wrapper {
  align-items: stretch;
}

.social-proof-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}

.proof-card {
  width: min(100%, 760px);
  height: 100%;
  padding: 22px 20px;
  border-radius: 4px;
  border: 1px solid rgba(227, 6, 19, 0.32);
  background:
    linear-gradient(180deg, rgba(14, 15, 19, 0.98), rgba(8, 9, 12, 0.98)),
    radial-gradient(circle at top, rgba(227, 6, 19, 0.2), transparent 46%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.14);
  border: 1px solid rgba(227, 6, 19, 0.28);
  color: #ff5a67;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.proof-card p {
  margin: 0;
  color: #d7dbe5;
  line-height: 1.58;
  font-size: 0.98rem;
}

.social-proof-swiper .swiper-button-prev,
.social-proof-swiper .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border-radius: 999px;
  border: 1px solid rgba(113, 130, 161, 0.26);
  background: rgba(7, 10, 15, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: #f5f7fb;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social-proof-swiper .swiper-button-prev {
  left: 0;
}

.social-proof-swiper .swiper-button-next {
  right: 0;
}

.social-proof-swiper .swiper-button-prev:hover,
.social-proof-swiper .swiper-button-next:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 191, 244, 0.6);
  background: rgba(10, 13, 19, 0.98);
}

.social-proof-swiper .swiper-button-prev::after,
.social-proof-swiper .swiper-button-next::after {
  font-size: 0.95rem;
  font-weight: 800;
}

.social-proof-swiper .swiper-pagination {
  bottom: 14px !important;
}

.social-proof-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(245, 247, 251, 0.34);
  opacity: 1;
}

.social-proof-swiper .swiper-pagination-bullet-active {
  background: #2fbff4;
  box-shadow: 0 0 0 3px rgba(47, 191, 244, 0.12);
}

.promo-video {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 112px;
  position: relative;
}

.promo-video__header {
  max-width: 840px;
  margin-bottom: 22px;
}

.promo-video__header h2 {
  margin: 0;
  color: #f5f7fb;
  letter-spacing: -0.07em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.promo-video__frame {
  padding: 18px;
  border-radius: 4px;
  border: 1px solid rgba(113, 130, 161, 0.24);
  background: rgba(7, 10, 15, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.36);
}

.promo-video__media {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  background: #000;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lead-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(8px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 30px 28px 28px;
  border-radius: 4px;
  border: 1px solid rgba(113, 130, 161, 0.28);
  background: linear-gradient(180deg, rgba(10, 13, 19, 0.98), rgba(16, 20, 27, 0.99));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.56);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f7fb;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover {
  background: rgba(47, 191, 244, 0.14);
}

.lead-modal__dialog .section-kicker {
  margin-right: 52px;
}

.lead-modal__dialog h2 {
  margin: 0 0 22px;
  color: #f5f7fb;
  letter-spacing: -0.07em;
  line-height: 1.02;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form__field {
  display: grid;
  gap: 8px;
}

.lead-form__field span {
  color: #d7dbe5;
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form__field input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(113, 130, 161, 0.3);
  background: rgba(7, 10, 15, 0.92);
  color: #f5f7fb;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form__field input::placeholder {
  color: #7f8797;
}

.lead-form__field input:focus {
  border-color: rgba(47, 191, 244, 0.85);
  box-shadow: 0 0 0 3px rgba(47, 191, 244, 0.12);
}

.lead-form__field input.field--valid {
  border-color: #33c26b;
  box-shadow: 0 0 0 3px rgba(51, 194, 107, 0.14);
  background: rgba(8, 25, 14, 0.96);
}

.lead-form__field input.field--invalid {
  border-color: #ef4d4d;
  box-shadow: 0 0 0 3px rgba(239, 77, 77, 0.14);
  background: rgba(34, 8, 8, 0.96);
}

.lead-form__field input.field--valid:focus {
  border-color: #33c26b;
  box-shadow: 0 0 0 3px rgba(51, 194, 107, 0.2);
}

.lead-form__field input.field--invalid:focus {
  border-color: #ef4d4d;
  box-shadow: 0 0 0 3px rgba(239, 77, 77, 0.2);
}

.lead-form__submit {
  margin-top: 6px;
  padding: 15px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #27c5f2, #6f5cff);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(39, 197, 242, 0.22);
}

.lead-form__submit:hover {
  filter: brightness(1.05);
}

body.lead-modal-open {
  overflow: hidden;
}

.floating-reviews {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 55;
  display: grid;
  gap: 10px;
  width: min(100%, 280px);
  pointer-events: none;
}

.floating-review {
  display: grid;
  gap: 3px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(113, 130, 161, 0.26);
  background: rgba(7, 10, 15, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  animation: reviewPop 0.45s ease-out both;
}

.floating-review__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #eef0f8;
  font-size: 0.84rem;
  font-weight: 800;
}

.floating-review__text {
  color: #d7dbe5;
  font-size: 0.86rem;
  line-height: 1.4;
}

.floating-review__meta {
  color: #98a1b3;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

@keyframes reviewPop {
  from {
    opacity: 0;
    transform: translate3d(18px, 18px, 0) scale(0.96);
  }

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

.reveal-section {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.99);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-section.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  justify-items: start;
  width: 100%;
  min-height: 122vh;
  padding: 56px 40px 108px;
  margin: 0 auto;
}

.about__copy {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.about__copy h2 {
  width: min(100%, 1120px);
  margin: 0 0 18px;
  font-size: clamp(3.4rem, 5.8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.085em;
  color: #f5f7fb;
}

.about__copy h2 span {
  display: block;
  color: #4332b9;
}

.about__copy p {
  width: min(100%, 1120px);
  margin: 0 0 16px;
  color: #d7dbe5;
  line-height: 1.66;
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
}

.about__visual {
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: 6px;
}

.about__visual img {
  width: min(100%, 1220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 44px rgba(24, 143, 255, 0.3));
  animation: floatOrb 8s ease-in-out infinite;
}

.offerings {
  width: min(100%, 1360px);
  margin: 36px auto 0;
  padding: 0 40px 122px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.offer-card {
  min-height: 280px;
  padding: 38px 34px 34px;
  border-radius: 22px;
  border: 1px solid rgba(113, 130, 161, 0.28);
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.98), rgba(14, 17, 22, 0.98)),
    radial-gradient(circle at top, rgba(39, 197, 242, 0.16), transparent 50%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 60px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-position 0.35s ease;
}

.offer-card:hover,
.stats__item:hover,
.mission__text:hover,
.mission__panel:hover,
.roadmap__item:hover,
.contact__copy:hover,
.contact__card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 191, 244, 0.42);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(47, 191, 244, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.offer-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.05;
  color: #2fbff4;
  letter-spacing: -0.05em;
}

.offer-card p {
  margin: 0;
  max-width: 580px;
  color: #d7dbe5;
  line-height: 1.7;
  font-size: 1.08rem;
}

.offer-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 14px 22px;
  min-width: 146px;
  border-radius: 999px;
  border: 1px solid rgba(181, 190, 204, 0.35);
  color: #f5f7fb;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  font-weight: 600;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.offer-card__button:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 191, 244, 0.8);
  box-shadow: 0 0 0 2px rgba(47, 191, 244, 0.16);
  color: #ffffff;
}

.stats {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 104px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stats__item {
  min-height: 170px;
  padding: 28px 26px;
  border-radius: 4px;
  border: 1px solid rgba(113, 130, 161, 0.24);
  background: rgba(7, 10, 15, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.stats__item:nth-child(4) {
  background:
    radial-gradient(circle at top, rgba(64, 50, 178, 0.16), transparent 44%),
    rgba(7, 10, 15, 0.88);
}

.stats__item strong {
  display: block;
  margin-bottom: 10px;
  color: #f5f7fb;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
  word-break: break-word;
}

.stats__item span {
  display: block;
  color: #d7dbe5;
  line-height: 1.6;
  font-size: 1.02rem;
}

.mission {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 114px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: stretch;
}

.mission__text,
.mission__panel {
  min-height: 320px;
  border-radius: 4px;
  padding: 34px 32px;
  border: 1px solid rgba(113, 130, 161, 0.24);
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.96), rgba(14, 17, 22, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.36);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.section-kicker {
  margin: 0 0 12px;
  color: #2fbff4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(47, 191, 244, 0.18);
}

.mission__text h2,
.roadmap__header h2,
.contact__copy h2 {
  margin: 0 0 14px;
  color: #f5f7fb;
  letter-spacing: -0.07em;
  line-height: 1.02;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.mission__text p,
.contact__copy p {
  margin: 0 0 14px;
  color: #d7dbe5;
  line-height: 1.65;
  font-size: 1.06rem;
}

.mission__list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #eef0f8;
  line-height: 1.6;
}

.mission__list li {
  margin-bottom: 8px;
}

.mission__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at top, rgba(64, 50, 178, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.96), rgba(14, 17, 22, 0.98));
}

.mission__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(47, 191, 244, 0.12);
  border: 1px solid rgba(47, 191, 244, 0.35);
  color: #eef0f8;
  font-weight: 700;
}

.mission__panel p {
  margin: 0;
  color: #d7dbe5;
  line-height: 1.68;
  font-size: 1.08rem;
}

.roadmap {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 112px;
  position: relative;
}

.roadmap__header {
  margin-bottom: 24px;
  max-width: 840px;
}

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

.roadmap__item {
  min-height: 220px;
  padding: 26px 22px;
  border-radius: 20px;
  border: 1px solid rgba(113, 130, 161, 0.22);
  background: rgba(7, 10, 15, 0.9);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.roadmap__item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #2fbff4;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
}

.roadmap__item h3 {
  margin: 0 0 10px;
  color: #f5f7fb;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.roadmap__item p {
  margin: 0;
  color: #d7dbe5;
  line-height: 1.6;
}

.contact {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
}

.contact__copy,
.contact__card {
  min-height: 240px;
  padding: 32px 30px;
  border-radius: 24px;
  border: 1px solid rgba(113, 130, 161, 0.24);
  background: rgba(7, 10, 15, 0.9);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact__card {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(10, 13, 19, 0.96), rgba(16, 20, 27, 0.98));
}

.contact__card strong {
  color: #f5f7fb;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.contact__card span {
  color: #d7dbe5;
  line-height: 1.6;
  font-size: 1.02rem;
}

.contact__group {
  display: grid;
  gap: 6px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(113, 130, 161, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.contact__group strong {
  color: #2fbff4;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact__group span,
.contact__group a {
  color: #eef0f8;
  font-size: 1rem;
  line-height: 1.5;
}

.contact__group a {
  text-decoration: none;
}

.contact__group a:hover {
  color: #2fbff4;
  text-decoration: underline;
}

.bottom-cta {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 120px;
  position: relative;
}

.bottom-cta::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 168, 40, 0.65), transparent);
}

.bottom-cta__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 42px 24px 38px;
  border-radius: 4px;
  border: 1px solid rgba(255, 168, 40, 0.28);
  background:
    radial-gradient(circle at top, rgba(255, 168, 40, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.98), rgba(14, 17, 22, 0.98));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bottom-cta__inner h2 {
  margin: 0;
  text-align: center;
  color: #f5f7fb;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  max-width: 900px;
}

.bottom-cta__button {
  margin-top: 8px;
  min-width: min(100%, 420px);
}

.site-footer {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 40px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aeb5c2;
  font-size: 0.95rem;
}

.site-footer a {
  color: #2fbff4;
  font-weight: 600;
}

.stats,
.mission,
.roadmap,
.contact,
.bottom-cta {
  position: relative;
}

.stats::before,
.mission::before,
.roadmap::before,
.contact::before,
.bottom-cta::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 191, 244, 0.28), transparent);
}

.bottom-cta::before {
  background: linear-gradient(90deg, transparent, rgba(255, 168, 40, 0.65), transparent);
}

.offerings {
  margin-top: 20px;
}

.offer-card,
.stats__item,
.mission__text,
.mission__panel,
.roadmap__item,
.contact__copy,
.contact__card,
.bottom-cta__inner {
  backdrop-filter: blur(2px);
}

@media (max-width: 900px) {
  .site-header {
    padding: 20px 20px;
  }

  .site-menu {
    top: 76px;
    right: 20px;
    left: 20px;
    min-width: 0;
  }

  .brand__logo {
    width: 108px;
  }

  .hero {
    padding-top: 118px;
    min-height: 92vh;
  }

  .about {
    padding: 34px 20px 76px;
    min-height: auto;
  }

  .about__copy h2 {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .about__copy p {
    font-size: 1.02rem;
  }

  .about__visual img {
    width: min(100%, 860px);
  }

  .offerings,
  .stats,
  .mission,
  .roadmap,
  .contact,
  .bank-strip,
  .promo-video,
  .bottom-cta {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats::before,
  .mission::before,
  .roadmap::before,
  .contact::before,
  .bottom-cta::before {
    left: 20px;
    right: 20px;
  }

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

  .bottom-cta__inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 108px 16px 72px;
  }

  .site-menu {
    top: 72px;
    right: 16px;
    left: 16px;
  }

  .hero__content {
    width: 100%;
    max-width: 560px;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    padding: 7px 10px;
    letter-spacing: 0.12em;
  }

  .hero__title {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
  }

  .hero__subtitle {
    font-size: 1rem;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__button {
    margin-top: 28px;
    width: 100%;
    min-width: 0;
    max-width: 420px;
  }

  .hero__chips {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .hero__chips span {
    width: min(100%, 320px);
    max-width: none;
  }

  .hero__orb {
    opacity: 0.22;
  }

  .about {
    padding: 24px 16px 56px;
    min-height: auto;
  }

  .about__copy h2 {
    width: 100%;
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .about__copy p {
    width: 100%;
    line-height: 1.6;
  }

  .about__visual {
    margin-top: 2px;
  }

  .about__visual img {
    width: min(100%, 720px);
  }

  .offerings,
  .stats,
  .mission,
  .roadmap,
  .contact,
  .bank-strip,
  .promo-video,
  .bottom-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .offerings,
  .stats,
  .bank-strip__grid {
    grid-template-columns: 1fr;
  }

  .stats::before,
  .mission::before,
  .roadmap::before,
  .contact::before,
  .bottom-cta::before,
  .bank-strip::before {
    left: 16px;
    right: 16px;
  }

  .stats__item,
  .mission__text,
  .mission__panel,
  .roadmap__item,
  .contact__copy,
  .contact__card {
    min-height: auto;
    padding: 24px 20px;
  }

  .bottom-cta {
    padding-bottom: 96px;
  }

  .bottom-cta__inner {
    padding: 30px 18px 28px;
  }

  .bottom-cta__inner h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .bottom-cta__button {
    width: 100%;
    min-width: 0;
  }

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

  .offer-card {
    min-height: 240px;
    padding: 28px 22px 24px;
  }

  .offer-card h3 {
    font-size: 1.9rem;
  }

  .offer-card p {
    font-size: 1rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .floating-reviews {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 20px;
  }

  .hero__content,
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__button,
  .offer-card,
  .stats__item,
  .mission__text,
  .mission__panel,
  .roadmap__item,
  .contact__copy,
  .contact__card,
  .promo-video__frame,
  .about__visual img,
  .hero__orb {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }

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

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.06);
  }
}

@keyframes sheenDrift {
  0% {
    transform: translateX(-8%);
  }

  100% {
    transform: translateX(8%);
  }
}

@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 240% 50%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -14px, 0) scale(1.02);
  }
}

@keyframes bankScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 16px));
  }
}
