:root {
  --page: #07111f;
  --deep: #040a12;
  --surface: rgba(15, 29, 48, 0.74);
  --line: rgba(255, 255, 255, 0.11);
  --line2: rgba(255, 255, 255, 0.2);
  --text: #f6f9fd;
  --muted: #adbbcf;
  --blue: #55a8ff;
  --blue2: #91cbff;
  --cyan: #62e4dc;
  --green: #5dd6a7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius: 30px;
  --content: 1180px;
  --header: 86px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(37, 113, 196, 0.2),
      transparent 42%
    ),
    linear-gradient(180deg, var(--page), var(--deep));
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.siteBackground {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.siteGlow {
  position: absolute;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.17;
}
.siteGlow--one {
  top: -17rem;
  left: -12rem;
  background: #0877ff;
}
.siteGlow--two {
  right: -16rem;
  top: 30rem;
  background: #00b9a7;
}
.siteGrid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 18px max(28px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(7, 17, 31, 0.58);
  backdrop-filter: blur(22px) saturate(140%);
  transition: 0.2s;
}
.siteHeader.isScrolled {
  min-height: 72px;
  border-bottom-color: var(--line);
  background: rgba(5, 13, 24, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brandLogo {
  display: block;

  width: clamp(145px, 14vw, 205px);

  height: auto;

  flex: 0 0 auto;

  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
}

.brandLogo--footer {
  width: 150px;
}
.brandText {
  display: grid;
  line-height: 1.22;
}
.brandText strong {
  font-size: 1rem;
}
.brandText span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}
.siteNav {
  display: flex;
  gap: 8px;
}
.siteNav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: 0.16s;
}
.siteNav a:hover,
.siteNav a:focus-visible,
.siteNav a[aria-current="true"] {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
}
.navToggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.navToggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px;
  background: #fff;
  border-radius: 2px;
}
main {
  width: min(100%, 1500px);
  margin: auto;
}
.hero {
  min-height: calc(100vh - var(--header));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 40px), var(--content));
  margin: auto;
  padding: 96px 0 88px;
  text-align: center;
}
.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #c9d7e9;
  font-size: 0.84rem;
  font-weight: 700;
}
.heroBadgeDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(93, 214, 167, 0.11);
}
.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(4rem, 9.5vw, 9.25rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.89;
}
.hero h1 span {
  display: block;
  margin: 0.1em 0;
  background: linear-gradient(100deg, var(--blue2), #e1f3ff 50%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.heroLead {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.7;
}
.heroActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 760;
  text-decoration: none;
  transition: 0.16s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible {
  outline: 3px solid rgba(85, 168, 255, 0.35);
  outline-offset: 3px;
}
.button--primary {
  background: linear-gradient(135deg, #66b5ff, #2389f0);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.35),
    0 14px 34px rgba(19, 116, 217, 0.27);
  color: #03101d;
}
.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}
.heroTrust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 900px);
  margin-top: 76px;
  border-block: 1px solid var(--line);
}
.heroTrust > div {
  display: grid;
  gap: 3px;
  padding: 23px 22px;
}
.heroTrust > div + div {
  border-left: 1px solid var(--line);
}
.heroTrust strong {
  font-size: 1.05rem;
}
.heroTrust span {
  color: var(--muted);
  font-size: 0.79rem;
}
.contentSection {
  width: min(calc(100% - 40px), var(--content));
  margin: auto;
  padding: 110px 0;
}
.contentSection--compact {
  padding-top: 28px;
}
.sectionHeading {
  max-width: 760px;
  margin-bottom: 42px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue2);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sectionHeading h2,
.momentumCopy h2,
.aboutPanel h2,
.legalHero h1,
.legalContent h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.sectionHeading h2,
.momentumCopy h2,
.aboutPanel h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.sectionHeading p,
.momentumCopy > p,
.aboutPanel > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.featureCard {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(11, 25, 43, 0.72);
  transition: 0.18s;
}
.featureCard:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 185, 255, 0.28);
}
.featureIcon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.35rem;
}
.featureCard h3 {
  margin: 0 0 11px;
  font-size: 1.18rem;
}
.featureCard p {
  margin: 0;
  color: var(--muted);
}
.sectionAction {
  margin-top: 30px;
}
.momentumPanel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(49, 112, 181, 0.14),
    rgba(16, 34, 56, 0.84)
  );
  box-shadow: var(--shadow);
}
.momentumNotice {
  display: flex;
  gap: 13px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}
.momentumNotice div {
  display: grid;
}
.momentumNotice strong {
  font-size: 0.9rem;
}
.momentumNotice span {
  color: var(--muted);
  font-size: 0.82rem;
}
.environmentGrid {
  display: grid;
  gap: 16px;
}
.environmentCard {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(5, 15, 27, 0.56);
  text-decoration: none;
  transition: 0.18s;
}
.environmentCard:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 190, 255, 0.35);
  background: rgba(11, 29, 48, 0.86);
}
.environmentIcon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.3rem;
}
.environmentLabel {
  color: var(--blue2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.environmentBody h3 {
  margin: 3px 0;
  font-size: 1.2rem;
}
.environmentBody p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.environmentArrow {
  font-size: 1.3rem;
}
.aboutPanel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  padding: 48px;
  border-block: 1px solid var(--line);
}
.siteFooter {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 40px), var(--content));
  margin: auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.footerBrand div {
  display: grid;
}
.footerBrand span {
  color: var(--muted);
}
.footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footerLinks a {
  text-decoration: none;
}
.footerLinks a:hover {
  color: #fff;
}
.revealSection {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.revealSection.isVisible {
  opacity: 1;
  transform: none;
}
.legalMain {
  width: min(calc(100% - 40px), 900px);
  margin: auto;
  padding: 88px 0 110px;
}
.legalHero {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.legalHero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}
.legalHero p {
  color: var(--muted);
}
.legalContent {
  padding-top: 28px;
}
.legalContent h2 {
  margin-top: 42px;
  font-size: 1.55rem;
}
.legalContent p,
.legalContent li {
  color: var(--muted);
}
.legalContent a {
  color: var(--blue2);
}
@media (max-width: 820px) {
  .brandLogo {
    width: 145px;
  }
  .brandText span {
    display: none;
  }
  .navToggle {
    display: block;
  }

  .siteNav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 13, 24, 0.97);
    box-shadow: var(--shadow);
  }
  .siteNav.isOpen {
    display: flex;
  }
  .siteNav a {
    padding: 12px 14px;
  }
  .featureGrid,
  .momentumPanel,
  .aboutPanel {
    grid-template-columns: 1fr;
  }
  .momentumPanel {
    gap: 36px;
  }
  .aboutPanel {
    gap: 18px;
  }
  .siteFooter {
    grid-template-columns: 1fr;
  }
  .heroTrust {
    grid-template-columns: 1fr;
  }
  .heroTrust > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 540px) {
  .brandLogo {
    width: 125px;
  }
  .siteHeader {
    padding-inline: 18px;
  }
  .hero {
    padding-top: 66px;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.7rem);
  }
  .heroActions,
  .heroActions .button {
    width: 100%;
  }
  .contentSection {
    padding: 78px 0;
  }
  .momentumPanel {
    padding: 24px;
  }
  .environmentCard {
    grid-template-columns: auto 1fr;
  }
  .environmentArrow {
    display: none;
  }
  .aboutPanel {
    padding: 34px 0;
  }
  .footerLinks {
    display: grid;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .revealSection {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   MO BRANDING + LEGAL PAGES
========================================================= */

.momentumCopy h2 {
  display: flex;
  flex-direction: column;
}

.momentumTitleAccent {
  display: block;
}

.momentumCopy > p {
  margin-top: 1rem;
}

.momentumCopy > p + p {
  margin-top: 0.85rem;
}

.legalMain {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 150px 0 80px;
}

.legalDocument {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.legalDocumentHeader {
  padding: clamp(32px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}

.legalDocumentHeader h1 {
  margin: 10px 0 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legalEffectiveDate {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.legalContent {
  padding: clamp(28px, 5vw, 64px);
}

.legalContent section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legalContent h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.legalContent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.legalContent p + p {
  margin-top: 16px;
}

.legalContent ul {
  margin: 18px 0 0;
  padding-left: 1.3rem;
  color: rgba(255, 255, 255, 0.74);
}

.legalContent li {
  padding-left: 0.35rem;
  line-height: 1.7;
}

.legalContent li + li {
  margin-top: 10px;
}

.legalContent a {
  color: #58dbad;
  text-decoration: none;
}

.legalContent a:hover {
  text-decoration: underline;
}

.legalContact {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  line-height: 1.75;
}

.legalContact strong {
  color: #fff;
}

.legalNav {
  display: flex;
}

@media (max-width: 720px) {
  .legalMain {
    width: min(100% - 20px, 980px);
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .legalDocument {
    border-radius: 22px;
  }

  .legalDocumentHeader,
  .legalContent {
    padding: 28px 22px;
  }

  .legalContent section + section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .legalNav {
    display: flex;
    gap: 14px;
  }

  .legalNav a {
    font-size: 0.85rem;
  }
}

.environmentActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.environmentActions .button {
  flex: 1 1 220px;
  justify-content: center;
}
