body.landing {
  background: linear-gradient(180deg, #f6f2ff 0, #fdfbff 22rem, #fff 100%);
  overflow-x: hidden;
}

html { overflow-x: clip; }
.hero { overflow-x: clip; }

body.landing > main { width: auto; margin: 0; padding: 0; border: 0; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }

section { padding: clamp(56px, 9vw, 108px) 0; }

.section-head { max-width: 46rem; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .eyebrow { font-size: .78rem; }
.section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.75rem, 4.2vw, 2.9rem);
  line-height: 1.12; letter-spacing: -.035em;
}
.section-head p { margin: 0; font-size: 1.05rem; color: var(--muted); }

.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 60;
  background: linear-gradient(90deg, var(--accent), #b593dd);
  transform: scaleX(0); transform-origin: 0 50%;
}

.topbar {
  position: sticky; top: 0; z-index: 50;
  width: auto; margin: 0; border: 0;   
  
  padding: clamp(34px, 4vw, 56px) 0 22px;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.topbar.stuck {
  padding: 11px 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px rgba(56, 38, 124, .06);
}
.topbar .wrap { display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 4px 12px rgba(56, 38, 124, .18); }
.brand b { display: block; font-size: 1rem; letter-spacing: -.02em; line-height: 1.2; }
.brand span { display: block; font-size: .74rem; color: var(--muted); font-weight: 500; line-height: 1.2; }
.topbar nav { margin: 0 0 0 auto; gap: 4px; align-items: center; }
.topbar nav a { border: 0; background: none; padding: 8px 11px; color: var(--muted); font-weight: 600; font-size: .92rem; }
.topbar nav a:hover { background: var(--accent-soft); color: var(--accent-ink); }

.langswitch {
  display: flex; gap: 2px; padding: 3px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
}
.langswitch a {
  padding: 5px 12px; border-radius: 999px; text-decoration: none;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  transition: background .18s ease, color .18s ease;
}
.langswitch a:hover { background: var(--accent-soft); color: var(--accent-ink); }
.langswitch a[aria-current="page"] { background: var(--accent-soft); color: var(--accent-deep); }

@media (max-width: 560px) {
  
  .topbar { padding: calc(38px + env(safe-area-inset-top, 0px)) 0 16px; }
  .topbar.stuck { padding: calc(10px + env(safe-area-inset-top, 0px)) 0 10px; }
  .topbar .wrap { gap: 10px; }
  .topbar nav { display: none; }           
  .brand span { display: none; }
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .96rem; text-decoration: none; white-space: nowrap;
  transition: transform .18s cubic-bezier(.34, 1.56, .64, 1), box-shadow .18s ease, background .18s ease;
}

.btn-primary {
  background: #55349f;
  background: linear-gradient(160deg, #7a58d8, #38267c);
  color: #fff; box-shadow: 0 10px 26px rgba(56, 38, 124, .3);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 34px rgba(56, 38, 124, .36); }
.btn-primary:active { transform: translateY(0) scale(.99); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent-soft); }
.topbar .btn { padding: 9px 16px; font-size: .9rem; }

.btn-static {
  background: #ede7fb; border-color: #ded2fa; color: #38267c;
  font-weight: 600; cursor: default;
}
.btn-static .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #6a4bc8;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.hero { padding-top: clamp(52px, 8vw, 104px); padding-bottom: clamp(52px, 7vw, 96px); }
.hero .wrap {
  display: grid; gap: clamp(32px, 5vw, 64px); align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  line-height: 1.02; letter-spacing: -.045em; margin: 0 0 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #7a4fe0, #a06fd8 52%, #a8702f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34rem; margin: 0 0 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; font-size: .88rem; color: var(--muted); }
.hero-meta b { color: var(--ink); }
.stars { color: #e8a33d; letter-spacing: .06em; }

.hero-stage { position: relative; }
.hero-video {
  position: relative; border-radius: 30px; overflow: hidden;
  background: var(--accent-deep);
  box-shadow: 0 34px 70px rgba(45, 28, 105, .3), 0 3px 0 rgba(255, 255, 255, .55) inset;
  aspect-ratio: 6 / 5;
}
.hero-video video { display: block; width: 100%; height: 100%; object-fit: cover; }

.floaters { position: absolute; inset: -6%; pointer-events: none; }
.floaters img {
  position: absolute; width: clamp(52px, 7vw, 86px); height: auto;
  filter: drop-shadow(0 12px 22px rgba(56, 38, 124, .26));
  animation: bob 7s ease-in-out infinite;
}
.floaters img:nth-child(1) { top: 2%;  left: -3%;  animation-delay: -.4s; }
.floaters img:nth-child(2) { top: 44%; left: -8%;  animation-delay: -2.1s; width: clamp(42px, 5.4vw, 66px); }
.floaters img:nth-child(3) { bottom: 2%; left: 6%;  animation-delay: -3.6s; width: clamp(40px, 5vw, 60px); }
.floaters img:nth-child(4) { top: -4%;  right: 8%;  animation-delay: -1.2s; width: clamp(44px, 5.6vw, 70px); }
.floaters img:nth-child(5) { bottom: 8%; right: -5%; animation-delay: -5s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-16px) rotate(3deg); }
}

.showcase { padding-block: 0 clamp(56px, 9vw, 108px); }
.marquee { padding: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee + .marquee { margin-top: 14px; }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slide 52s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  width: clamp(72px, 8.5vw, 104px); height: auto; flex: none;
  filter: drop-shadow(0 8px 16px rgba(56, 38, 124, .16));
}

.marquee-track.strips { gap: 0; }
.marquee-track .marquee-strip {
  width: auto; height: clamp(72px, 8.5vw, 104px);
}
@keyframes slide { to { transform: translateX(-50%); } }

.stats {
  background: linear-gradient(150deg, #4a3399, #2c1d66);
  color: #fff; border-radius: 34px; padding: clamp(34px, 5vw, 60px) clamp(22px, 4vw, 52px);
}
.stats h2, .stats .eyebrow { color: #fff; }
.stats .eyebrow { color: #b9a4f0; }
.stats p { color: #cdc0ee; }
.stat-grid {
  display: grid; gap: clamp(18px, 3vw, 30px); margin-top: 34px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
.stat b {
  display: block; font-size: clamp(2.1rem, 5vw, 3.1rem); line-height: 1;
  letter-spacing: -.05em; font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: 7px; font-size: .86rem; color: #b9a4f0; }
.stats .footnote { margin: 30px 0 0; font-size: .84rem; color: #a793e2; }

.disclosure-compact {
  padding: 30px 0 34px; border-top: 1px solid var(--line);
  background: #faf8fe; color: var(--muted); font-size: .82rem; line-height: 1.6;
}
.disclosure-compact h2 {
  margin: 0 0 10px; font-size: .82rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent);
}
.disclosure-compact p { margin: 0 0 8px; color: var(--muted); font-size: inherit; }
.disclosure-compact p:last-child { margin-bottom: 0; }
.disclosure-compact strong { color: var(--ink); }

.closer { text-align: center; }
.closer img { width: clamp(84px, 12vw, 118px); height: auto; border-radius: 26px; box-shadow: 0 18px 40px rgba(56, 38, 124, .24); }
.closer h2 { font-size: clamp(1.9rem, 5vw, 3rem); letter-spacing: -.04em; margin: 22px 0 10px; }
.closer p { color: var(--muted); margin: 0 auto 26px; max-width: 32rem; }
.closer .hero-cta { justify-content: center; }

.site-footer {
  width: auto; margin: 0; border: 0;
  padding: clamp(64px, 8vw, 104px) 0 0;
  background: linear-gradient(165deg, #2f2070, #221749 65%, #1d1440);
  color: #ded3fa;
}
.site-footer a { color: inherit; }

.footer-grid {
  display: grid; gap: clamp(44px, 6vw, 88px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer-brand .mark { display: flex; align-items: center; gap: 12px; }
.footer-brand img {
  width: 46px; height: 46px; border-radius: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}
.footer-brand b { display: block; color: #fff; font-size: 1.02rem; letter-spacing: -.02em; }
.footer-brand .mark > span { display: block; }
.footer-brand .mark b + span { font-size: .78rem; color: #9d87e0; line-height: 1.4; }
.footer-brand p {
  margin: 0; max-width: 26rem; color: #a793e2; font-size: .89rem; line-height: 1.6;
}

.footer-h {
  margin: 0 0 16px; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: #8a72d6;
}

.footer-links { display: block; margin: 0; }

.footer-links a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 21px 2px; text-decoration: none;
  background: none; border: 0; border-radius: 8px;
  border-top: 1px solid rgba(190, 168, 255, .16);
  transition: color .2s ease, padding-left .2s ease;
}
.footer-links a:hover { background: none; }
.footer-links a:last-child { border-bottom: 1px solid rgba(190, 168, 255, .16); }
.footer-links a:hover { color: #fff; padding-left: 8px; }
.footer-links .label { color: #efe8ff; font-weight: 650; font-size: 1rem; letter-spacing: -.01em; }
.footer-links a:hover .label { color: #fff; }
.footer-links .sub { color: #8a72d6; font-size: .82rem; }

.footer-links .go {
  margin-left: auto; color: #7e66cf; font-size: 1rem; line-height: 1;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), color .2s ease;
}
.footer-links a:hover .go { color: #cbb8ff; transform: translateX(4px); }

.footer-base {
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
  margin-top: clamp(48px, 6vw, 76px); padding: 26px 0 40px;
  border-top: 1px solid rgba(190, 168, 255, .14);
  font-size: .82rem; color: #8a72d6;
}
.footer-base .spacer { margin-left: auto; }
.footer-base a { color: #b9a4f0; text-decoration: none; }
.footer-base a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 520px) { .footer-base .spacer { margin-left: 0; } }

.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .floaters img { animation: none; }
}
