:root{
  --cx-bg:#ffffff;
  --cx-bg-soft:#f7f9fc;
  --cx-bg-tint:#eef4ff;
  --cx-card:#ffffff;
  --cx-card-soft:#fbfcff;
  --cx-ink:#15181d;
  --cx-ink-soft:#5e6675;
  --cx-ink-faint:#7f8796;
  --cx-line:#e6eaf1;
  --cx-line-strong:#d9e0eb;
  --cx-primary:#5b7cff;
  --cx-primary-strong:#3f63f5;
  --cx-primary-soft:#edf2ff;
  --cx-accent:#14b8a6;
  --cx-shadow-sm:0 8px 24px rgba(18,27,46,.06);
  --cx-shadow-md:0 18px 46px rgba(18,27,46,.08);
  --cx-shadow-lg:0 28px 80px rgba(18,27,46,.12);
  --cx-radius-xl:28px;
  --cx-radius-lg:22px;
  --cx-radius-md:16px;
  --cx-radius-sm:12px;
  --cx-max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.cx-page{
  margin:0;
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--cx-ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(91,124,255,.08), transparent 45%),
    radial-gradient(760px 420px at 100% 10%, rgba(20,184,166,.07), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 42%, #ffffff 100%);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;width:100%;max-width:100%}
button,input,textarea{font:inherit}

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

.cx-topbar{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(230,234,241,.95);
}
.cx-topbar__inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cx-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.03em;
}
.cx-brand__mark{
  width:40px;height:40px;border-radius:999px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,#5b7cff 0%,#7aa2ff 100%);
  color:#fff;
  box-shadow:0 10px 24px rgba(91,124,255,.24);
}
.cx-brand__text{font-size:1rem;color:var(--cx-ink)}
.cx-nav{
  display:flex;
  gap:26px;
  font-size:.94rem;
  color:var(--cx-ink-soft);
}
.cx-nav a:hover{color:var(--cx-primary-strong)}
.cx-topbar__actions{display:flex;align-items:center;gap:10px}
.cx-menuButton{
  display:none;
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--cx-line);
  background:#fff;color:var(--cx-ink);
}
.cx-mobileNav{
  display:none;
  flex-direction:column;
  gap:4px;
  padding:0 20px 16px;
  border-top:1px solid var(--cx-line);
  background:rgba(255,255,255,.98);
}
.cx-mobileNav.is-open{display:flex}
.cx-mobileNav a{
  padding:12px 0;
  color:var(--cx-ink-soft);
  border-bottom:1px solid #eef2f7;
}

.cx-chip,
.cx-button,
.cx-dock__item,
.cx-dock__toggle{
  border:0;
  border-radius:999px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.cx-chip:hover,.cx-button:hover,.cx-dock__item:hover,.cx-dock__toggle:hover{transform:translateY(-1px)}
.cx-chip{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:42px;padding:0 16px;font-size:.88rem;font-weight:700;
  border:1px solid transparent;
}
.cx-chip--ghost{
  background:#fff;border-color:var(--cx-line);
  color:var(--cx-ink);
  box-shadow:var(--cx-shadow-sm);
}
.cx-chip--primary{
  background:linear-gradient(135deg,var(--cx-primary) 0%, var(--cx-primary-strong) 100%);
  color:#fff;
  box-shadow:0 12px 24px rgba(91,124,255,.28);
}
.cx-chip--soft{
  background:var(--cx-primary-soft);
  color:var(--cx-primary-strong);
  border-color:#dfe6ff;
}

.cx-hero{padding:56px 0 30px}
.cx-hero--platform{padding:84px 0 34px}
.cx-platformHero{
  display:grid;
  grid-template-columns:minmax(0,.48fr) minmax(0,.52fr);
  gap:34px;
  align-items:center;
  min-height:calc(100svh - 190px);
}
.cx-platformHero__intro{max-width:580px}
.cx-pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background:#f3f7ff;border:1px solid #dfe7ff;
  color:var(--cx-primary-strong);
  font-size:.76rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
}
.cx-pill__dot{
  width:8px;height:8px;border-radius:999px;background:var(--cx-primary);
  box-shadow:0 0 0 4px rgba(91,124,255,.12);
}
.cx-platformHero__title{
  margin:18px 0 14px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(2.4rem,5.4vw,5.3rem);
  line-height:.92;
  letter-spacing:-.05em;
  color:var(--cx-ink);
  max-width:12ch;
}
.cx-platformHero__copy{
  margin:0;
  max-width:58ch;
  font-size:clamp(1rem,1.5vw,1.16rem);
  line-height:1.74;
  color:var(--cx-ink-soft);
}
.cx-platformHero__actions{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:28px;
}
.cx-button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:0 22px;font-size:.96rem;font-weight:700;cursor:pointer;
}
.cx-button--primary{
  background:linear-gradient(135deg,var(--cx-primary) 0%, var(--cx-primary-strong) 100%);
  color:#fff;box-shadow:0 14px 30px rgba(91,124,255,.26);
}
.cx-button--secondary{
  background:var(--cx-primary-soft);
  color:var(--cx-primary-strong);
  border:1px solid #dfe6ff;
}
.cx-button--ghost{
  background:#fff;color:var(--cx-ink);
  border:1px solid var(--cx-line);
  box-shadow:var(--cx-shadow-sm);
}

.cx-heroProofStrip{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;margin-top:32px;
}
.cx-heroProofItem,
.cx-platformAgentCard,
.cx-platformNarrativeCard,
.cx-journeyCard,
.cx-galleryCard,
.cx-panel,
.form-card,
.cx-immersiveCard,
.cx-hero__mediaCard{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(230,234,241,.96);
  box-shadow:var(--cx-shadow-md);
}
.cx-heroProofItem{
  padding:16px 18px;border-radius:20px;
}
.cx-heroProofItem span,
.cx-label,
.cx-galleryMeta span,
.cx-paymentStat span,
.wc-kicker,
.wc-miniHead span{
  display:block;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--cx-primary-strong);
}
.cx-heroProofItem strong{
  display:block;margin-top:7px;
  color:var(--cx-ink);
  font-size:.96rem;line-height:1.45;
}

.cx-platformHero__rail{display:grid;gap:18px}
.cx-hero__mediaCard{
  padding:16px;border-radius:30px;
}
.cx-hero__media{
  width:100%;
  min-height:620px;
  height:620px;
  overflow:hidden;
  border-radius:22px;
  background:#e9eef8;
}
.cx-hero__media iframe{
  width:100%;height:100%;border:0;display:block;background:#e9eef8;
}
.cx-platformAgentCard{
  padding:22px;border-radius:24px;margin-top:18px;
}
.cx-agentStack{display:grid;gap:12px;margin-top:12px}
.cx-agentStack__item{
  padding:16px;border-radius:16px;
  background:var(--cx-card-soft);
  border:1px solid #eef2f7;
}
.cx-agentStack__item strong{
  display:block;margin-bottom:6px;color:var(--cx-ink);font-size:1.02rem;
}
.cx-agentStack__item p{
  margin:0;color:var(--cx-ink-soft);line-height:1.62;
}

.cx-section{padding:78px 0}
.cx-section--flushTop{padding-top:24px}
.cx-sectionHead{
  max-width:840px;
  margin:0 auto 30px;
  text-align:center;
}
.cx-sectionHead h2,
.wc-sectionHead h2,
.cx-panel h3,
.cx-panel h2,
.cx-platformNarrativeCard h3,
.cx-journeyCard h3,
.cx-shelfCard h4,
.cx-immersiveCard h4,
.cx-immersiveStage__content h3{
  margin:12px 0 0;
  font-family:"Cormorant Garamond", Georgia, serif;
  letter-spacing:-.04em;
  line-height:.98;
}
.cx-sectionHead h2,
.wc-sectionHead h2{
  font-size:clamp(2rem,4vw,3.7rem);
  color:var(--cx-ink);
}
.cx-sectionHead p,
.cx-panel p,
.cx-galleryCard__body p,
.cx-faqAnswer p,
.cx-footer__copy,
.cx-platformNarrativeCard p,
.cx-journeyCard p,
.cx-immersiveCard p,
.cx-immersiveStage__content p{
  color:var(--cx-ink-soft);
  line-height:1.75;
}

.cx-galleryGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.cx-galleryCard{
  overflow:hidden;border-radius:24px;
}
.cx-galleryCard__media{
  height:260px;background:#eef3fa;
}
.cx-galleryCard__media img,.cx-galleryCard__media video{
  width:100%;height:100%;object-fit:cover;
}
.cx-galleryCard__body{
  padding:20px;display:flex;flex-direction:column;gap:10px;
}
.cx-galleryCard__body strong{
  font-size:1.12rem;color:var(--cx-ink);
}
.cx-galleryMeta{
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:auto;
}
.cx-galleryMeta>div{
  padding:12px;border-radius:14px;background:#f8faff;border:1px solid #edf1f7;
}
.cx-galleryMeta strong{
  display:block;margin-top:6px;font-size:.92rem;color:var(--cx-ink);
}

.cx-section--immersive{position:relative}
.cx-sectionHead--immersive{max-width:820px}
.cx-immersiveShowcase{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(320px,.9fr);
  gap:22px;
  align-items:stretch;
}
.cx-immersiveStage__media{
  position:relative;
  min-height:640px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--cx-line);
  box-shadow:var(--cx-shadow-lg);
  background:#e9eef8;
}
.cx-immersiveIframe{
  position:absolute;inset:0;width:100%;height:100%;border:0;
}
.cx-immersiveStage__topBadge{
  position:absolute;top:18px;left:18px;z-index:3;
}
.cx-immersiveStage__topBadge span,
.cx-shelfCard__tag{
  display:inline-flex;align-items:center;
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(230,234,241,.96);
  color:var(--cx-ink);
  font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
}
.cx-immersiveStage__content{
  position:absolute;left:24px;right:24px;bottom:24px;z-index:3;
  max-width:620px;padding:22px;border-radius:24px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(230,234,241,.96);
  box-shadow:var(--cx-shadow-md);
}
.cx-immersiveStage__content h3{
  font-size:clamp(2rem,3vw,3rem);
  color:var(--cx-ink);
}
.cx-immersiveActions{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:20px;
}
.cx-immersiveRail{
  display:grid;gap:14px;align-content:start;
}
.cx-immersiveCard{
  display:block;padding:22px;border-radius:22px;
}
.cx-immersiveCard.is-active{
  border-color:#d9e4ff;
  background:linear-gradient(180deg,#ffffff 0%, #f5f8ff 100%);
}
.cx-immersiveCard__eyebrow{
  display:inline-block;margin-bottom:10px;
  font-size:.7rem;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--cx-primary-strong);
}
.cx-immersiveCard h4{
  margin:0 0 8px;font-size:1.22rem;color:var(--cx-ink);
}
.cx-immersiveCard p{margin:0;font-size:.95rem}

.cx-shelfSection{margin-top:34px}
.cx-shelfHeader{
  display:flex;align-items:end;justify-content:space-between;
  gap:16px;margin-bottom:18px;
}
.cx-shelfHeader h3{
  margin:0;font-size:clamp(1.45rem,2vw,2rem);color:var(--cx-ink);
}
.cx-shelfHeader span{color:var(--cx-ink-faint)}
.cx-shelfRow{
  display:grid;
  grid-template-columns:1.2fr repeat(3,.88fr);
  gap:16px;
}
.cx-shelfCard{
  position:relative;
  min-height:380px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--cx-line);
  box-shadow:var(--cx-shadow-md);
  background:#eff3fa;
  transform:translateY(0);
  transition:transform .24s ease, box-shadow .24s ease;
}
.cx-shelfCard:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 66px rgba(18,27,46,.14);
}
.cx-shelfCard img{
  width:100%;height:100%;object-fit:cover;
}
.cx-shelfCard__overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(16,20,30,.02) 0%, rgba(16,20,30,.16) 38%, rgba(16,20,30,.62) 100%);
}
.cx-shelfCard__content{
  position:absolute;left:0;right:0;bottom:0;padding:22px;z-index:1;
}
.cx-shelfCard h4{margin:0 0 8px;color:#fff;font-size:clamp(1.2rem,2vw,1.8rem)}
.cx-shelfCard p{margin:0;color:rgba(255,255,255,.88);line-height:1.62}
.cx-shelfCard__meta{
  display:flex;flex-wrap:wrap;gap:8px;margin-top:14px;
}
.cx-shelfCard__meta span{
  display:inline-flex;padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.12);color:#fff;font-size:.78rem;
}
.cx-shelfCard--feature{min-height:450px}

.cx-journeyGrid,
.cx-platformNarrativeGrid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;
}
.cx-journeyCard,.cx-platformNarrativeCard{
  padding:24px;border-radius:24px;
}
.cx-journeyCard span{
  display:inline-flex;width:44px;height:44px;border-radius:50%;
  align-items:center;justify-content:center;margin-bottom:16px;
  background:var(--cx-primary-soft);color:var(--cx-primary-strong);font-weight:800;
}
.cx-journeyCard h3,.cx-platformNarrativeCard h3{
  color:var(--cx-ink);font-size:1.35rem;
}
.cx-textAction{
  display:inline-flex;margin-top:16px;color:var(--cx-primary-strong);font-weight:700;
}

.cx-panel{
  border-radius:26px;
  padding:26px;
}
.wc-sectionHead{display:grid;gap:10px;margin-bottom:20px}
.wc-formGrid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;
}
.wc-miniHead{
  display:grid;gap:8px;margin-bottom:14px;
}
.wc-miniHead strong{
  font-size:1.18rem;line-height:1.1;letter-spacing:-.03em;color:var(--cx-ink);
}
.wc-form{display:grid;gap:12px}
.wc-form input,
.cx-amountGroup input{
  width:100%;min-height:50px;padding:0 14px;
  border-radius:15px;border:1px solid var(--cx-line);
  background:#fff;color:var(--cx-ink);outline:none;
}
.wc-form input::placeholder,
.cx-amountGroup input::placeholder{color:#9aa3b2}
.wc-form input:focus,
.cx-amountGroup input:focus{
  border-color:#c8d6ff;
  box-shadow:0 0 0 4px rgba(91,124,255,.10);
}
.wc-otpRow{
  display:grid;grid-template-columns:1fr auto auto;gap:10px;
}
.wc-otpRow .cx-chip{min-height:48px}
.form-note,.cx-formNote{
  min-height:22px;margin-top:12px;font-size:14px;line-height:1.55;color:var(--cx-ink-soft);
}

.cx-paymentGrid{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:16px;
}
.cx-paymentPanel{display:flex;flex-direction:column;gap:22px}
.cx-paymentIntro{display:grid;gap:10px}
.cx-paymentStats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.cx-paymentStat{
  padding:16px;border-radius:18px;background:#f8fbff;border:1px solid #edf1f7;
}
.cx-paymentStat strong{
  display:block;margin-top:7px;color:var(--cx-ink);font-size:.98rem;line-height:1.5;
}
.cx-amountGroup{display:grid;gap:10px}
.cx-amountGroup label{
  font-size:.72rem;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--cx-primary-strong);
}
.cx-inlineActions{display:flex;flex-wrap:wrap;gap:12px}

.cx-faqList{
  margin-top:18px;display:grid;gap:0;border-top:1px solid #edf1f7;
}
.cx-faqItem{border-bottom:1px solid #edf1f7}
.cx-faqQuestion{
  width:100%;background:none;border:0;padding:22px 0;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  text-align:left;font-size:1rem;font-weight:700;letter-spacing:-.01em;
  cursor:pointer;color:var(--cx-ink);
}
.cx-faqQuestion span:last-child{
  font-size:1.65rem;line-height:1;color:var(--cx-primary-strong);
}
.cx-faqAnswer{
  display:grid;grid-template-rows:0fr;transition:grid-template-rows .22s ease;
}
.cx-faqItem.is-open .cx-faqAnswer{grid-template-rows:1fr}
.cx-faqAnswerInner{overflow:hidden}
.cx-faqAnswer p{margin:0;padding:0 0 18px;max-width:60ch}

.cx-footer{
  padding:34px 0 74px;
  border-top:1px solid #edf1f7;
}
.cx-footer__grid{
  display:grid;grid-template-columns:1.35fr .65fr .5fr;gap:20px;
}
.cx-footer__brand{
  font-size:1.16rem;font-weight:800;letter-spacing:-.03em;color:var(--cx-ink);
}
.cx-footer__copy{max-width:60ch}
.cx-footer h4{
  font-size:.76rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  color:var(--cx-primary-strong);
}
.cx-footer a{color:var(--cx-ink-soft)}
.cx-footer a:hover{color:var(--cx-primary-strong)}

.cx-dock{
  position:fixed;right:20px;bottom:20px;z-index:70;
  display:flex;align-items:center;gap:8px;flex-direction:row-reverse;
}
.cx-dock__toggle{
  width:48px;height:48px;background:linear-gradient(135deg,var(--cx-primary) 0%, var(--cx-primary-strong) 100%);
  color:#fff;font-weight:900;box-shadow:0 16px 34px rgba(91,124,255,.28);
}
.cx-dock__items{
  display:flex;flex-direction:column;gap:6px;transition:all .24s ease;align-items:flex-end;
}
.cx-dock.is-collapsed .cx-dock__items{
  opacity:0;transform:translateX(8px);pointer-events:none;
}
.cx-dock__item{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  min-width:124px;padding:10px 14px;font-size:.74rem;font-weight:700;
  color:var(--cx-ink);background:#fff;border:1px solid var(--cx-line);box-shadow:var(--cx-shadow-sm);
}
.cx-dock__item--primary{
  color:#fff;background:linear-gradient(135deg,var(--cx-primary) 0%, var(--cx-primary-strong) 100%);
}
.cx-dock__item em{font-style:normal}
.cx-dock:hover .cx-dock__items{
  opacity:1;transform:translateX(0);pointer-events:auto;
}

/* Nova modal support classes, aligned to the lighter theme */
.novaLeadOverlay{
  position:fixed;inset:0;background:rgba(17,24,39,.28);backdrop-filter:blur(10px);
  display:none;align-items:center;justify-content:center;z-index:2000;padding:16px;
}
.novaLeadOverlay.is-open{display:flex}
.novaLeadCard{
  width:min(100%,440px);max-height:min(88vh,760px);overflow:auto;
  border-radius:24px;background:#fff;border:1px solid var(--cx-line);box-shadow:var(--cx-shadow-lg);
}
.novaLeadHead{padding:18px 18px 8px}
.novaLeadTitle{
  margin:8px 0 6px;font-size:1.28rem;line-height:1.15;letter-spacing:-.04em;color:var(--cx-ink);font-weight:800;
}
.novaLeadDesc{margin:0;color:var(--cx-ink-soft);font-size:.92rem;line-height:1.45}
.novaLeadForm{padding:14px 18px 18px;display:grid;gap:12px}
.novaLeadField{display:grid;gap:6px}
.novaLeadLabel{font-size:13px;font-weight:700;color:var(--cx-ink)}
.novaLeadInput{
  width:100%;min-height:46px;padding:0 14px;border-radius:14px;border:1px solid var(--cx-line);
  background:#fff;color:var(--cx-ink);font-size:15px;outline:none;
}
.novaLeadActions{display:flex;gap:10px;margin-top:4px;flex-wrap:wrap}
.novaLeadBtn{
  flex:1 1 120px;min-height:46px;border:0;border-radius:999px;cursor:pointer;font-size:15px;font-weight:800;
}
.novaLeadBtnPrimary{color:#fff;background:linear-gradient(135deg,var(--cx-primary) 0%, var(--cx-primary-strong) 100%)}
.novaLeadBtnSecondary{background:#fff;color:var(--cx-ink);border:1px solid var(--cx-line)}
.novaLeadNote{min-height:22px;margin:2px 0 0;font-size:14px;line-height:1.4;color:var(--cx-ink-soft)}
.novaLeadNote.is-error{color:#b42318}
.novaLeadNote.is-success{color:#067647}
.otpRow{display:grid;grid-template-columns:1fr auto;gap:10px;align-items:center;margin-top:4px}
.otpActionBtn{
  min-height:42px;padding:0 14px;border-radius:999px;border:1px solid var(--cx-line);
  background:#fff;cursor:pointer;font-weight:700;white-space:nowrap;
}

@media (max-width:1180px){
  .cx-platformHero,
  .cx-immersiveShowcase,
  .cx-paymentGrid,
  .cx-footer__grid{
    grid-template-columns:1fr;
  }
  .cx-platformHero{min-height:auto}
  .cx-platformHero__intro{max-width:100%}
  .cx-galleryGrid{grid-template-columns:repeat(2,1fr)}
  .cx-shelfRow{grid-template-columns:repeat(2,1fr)}
  .cx-shelfCard--feature{grid-column:span 2}
  .cx-journeyGrid,
  .cx-platformNarrativeGrid,
  .wc-formGrid,
  .cx-paymentStats,
  .cx-heroProofStrip{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:900px){
  .cx-nav,.cx-chip{display:none}
  .cx-menuButton{display:inline-grid;place-items:center}
  .cx-shell{width:min(calc(100% - 28px), var(--cx-max))}
  .cx-section{padding:58px 0}
  .cx-hero{padding:30px 0 18px}
  .cx-hero__media{min-height:420px;height:420px}
  .cx-immersiveStage__media{min-height:520px}
}
@media (max-width:760px){
  .cx-platformHero,
  .cx-galleryGrid,
  .cx-shelfRow,
  .cx-journeyGrid,
  .cx-platformNarrativeGrid,
  .wc-formGrid,
  .cx-paymentStats,
  .cx-heroProofStrip{
    grid-template-columns:1fr;
  }
  .cx-platformHero{gap:20px}
  .cx-platformHero__actions{flex-direction:column;align-items:stretch}
  .cx-button{width:100%}
  .cx-shelfHeader{align-items:start;flex-direction:column}
  .cx-shelfCard,.cx-shelfCard--feature{min-height:340px}
  .cx-shelfCard--feature{grid-column:auto}
  .cx-wc-formGrid{grid-template-columns:1fr}
  .wc-otpRow{grid-template-columns:1fr}
  .cx-hero__mediaCard,.cx-panel,.form-card,.cx-immersiveCard{border-radius:22px}
  .otpRow,.novaLeadActions{grid-template-columns:1fr;flex-direction:column}
}
@media (max-width:560px){
  .cx-platformHero__title{
    font-size:clamp(2.1rem,11vw,3.2rem);
    max-width:11ch;
  }
  .cx-platformHero__copy{font-size:.98rem;line-height:1.66}
  .cx-topbar__inner{min-height:64px}
  .cx-dock{right:14px;bottom:14px}
  .cx-dock__item{min-width:108px}
  .cx-hero__media{min-height:280px;height:280px}
  .cx-immersiveStage__content{left:16px;right:16px;bottom:16px;padding:18px}
  .cx-immersiveStage__content h3{font-size:clamp(1.7rem,8vw,2.2rem)}
}


/* ===== QUICK PREMIUM REBALANCE ===== */
:root{
  --cx-max:1280px;
  --cx-shadow-sm:0 10px 28px rgba(17,24,39,.06);
  --cx-shadow-md:0 20px 52px rgba(17,24,39,.08);
  --cx-shadow-lg:0 34px 90px rgba(17,24,39,.12);
}
body.cx-page{
  background:
    radial-gradient(920px 420px at 8% 0%, rgba(91,124,255,.10), transparent 48%),
    radial-gradient(920px 460px at 92% 8%, rgba(111,76,255,.08), transparent 46%),
    linear-gradient(180deg,#ffffff 0%,#f8faff 40%,#ffffff 100%);
}
.cx-shell{width:min(calc(100% - 56px), var(--cx-max));}
.cx-topbar__inner{min-height:78px;}
.cx-hero--platform{padding:44px 0 34px;min-height:auto;}
.cx-platformHero{grid-template-columns:minmax(340px,.42fr) minmax(0,.58fr);gap:44px;align-items:center;min-height:auto;}
.cx-platformHero__intro{max-width:520px;padding:18px 0 12px;}
.cx-platformHero__title{font-size:clamp(2.8rem,5vw,5.35rem);line-height:.92;letter-spacing:-.065em;max-width:10.5ch;margin:16px 0 16px;}
.cx-platformHero__copy{font-size:1.08rem;line-height:1.76;color:#5d6677;max-width:48ch;}
.cx-platformHero__actions{margin-top:24px;gap:14px;}
.cx-pill{background:rgba(91,124,255,.08);border-color:rgba(91,124,255,.14);color:#4360d8;padding:10px 14px;}
.cx-pill__dot{background:linear-gradient(135deg,#5b7cff 0%,#7b5cff 100%);box-shadow:0 0 0 4px rgba(91,124,255,.10);}
.cx-heroProofStrip{grid-template-columns:1fr;gap:10px;margin-top:26px;}
.cx-heroProofItem{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.86);border:1px solid #e7ebf4;box-shadow:var(--cx-shadow-sm);}
.cx-heroProofItem span{margin:0;font-size:.72rem;color:#6c7383;min-width:72px;}
.cx-heroProofItem strong{font-size:.94rem;color:#202636;}
.cx-platformAgentCard{margin-top:14px;padding:16px 18px;border-radius:22px;background:linear-gradient(180deg,#ffffff 0%,#f8faff 100%);border:1px solid #e8edf6;box-shadow:var(--cx-shadow-sm);}
.cx-label{color:#56657f;font-size:.72rem;letter-spacing:.14em;}
.cx-agentStack--inline{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:12px;}
.cx-agentStack__item{padding:14px 14px 13px;border-radius:16px;background:#f6f8fc;border:1px solid #e9edf5;}
.cx-agentStack__item strong{margin-bottom:4px;color:#1e2533;font-size:.96rem;}
.cx-agentStack__item p{color:#6a7282;font-size:.9rem;line-height:1.45;}
.cx-platformHero__rail{display:block;}
.cx-hero__mediaCard{padding:18px;border-radius:30px;background:linear-gradient(180deg,#fbfcff 0%,#f5f8ff 100%);border:1px solid #dfe7f5;box-shadow:0 28px 80px rgba(43,72,145,.14);}
.cx-hero__mediaHead{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:16px;}
.cx-hero__mediaKicker{display:block;font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#5b7cff;margin-bottom:8px;}
.cx-hero__mediaTitle{margin:0;font-size:clamp(1.4rem,2vw,2rem);line-height:1.05;letter-spacing:-.04em;color:#15181d;max-width:16ch;}
.cx-hero__mediaBadge{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;background:linear-gradient(135deg,#5b7cff 0%,#7b5cff 100%);color:#fff;font-size:.74rem;font-weight:700;white-space:nowrap;box-shadow:0 12px 26px rgba(91,124,255,.20);}
.cx-hero__media{min-height:760px;height:760px;border-radius:24px;background:#000;box-shadow:0 20px 52px rgba(10,20,44,.18);overflow:hidden;position:relative;}
.cx-hero__media iframe{width:100%;height:100%;display:block;border:0;background:#000;}
.cx-hero__mediaActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px;}
.cx-hero__mediaAction{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;background:#eef3ff;color:#3550c9;font-size:.9rem;font-weight:700;border:1px solid #d8e1fb;}
.cx-hero__mediaAction--primary{background:linear-gradient(135deg,#5b7cff 0%,#7b5cff 100%);color:#fff;border-color:transparent;box-shadow:0 12px 26px rgba(91,124,255,.24);}
.cx-section{padding:92px 0;}
.cx-sectionHead{max-width:860px;margin:0 auto 40px;}
.cx-sectionHead h2,.wc-sectionHead h2{font-size:clamp(2.3rem,3.6vw,3.8rem);line-height:.96;letter-spacing:-.05em;color:#131722;}
.cx-sectionHead p,.wc-sectionHead p{font-size:1.05rem;line-height:1.8;color:#657084;}
.cx-galleryGrid{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.cx-galleryCard,.cx-platformNarrativeCard,.cx-journeyCard,.cx-panel,.form-card,.cx-immersiveCard{border-radius:24px;border:1px solid #e8edf6;box-shadow:var(--cx-shadow-sm);}
.cx-galleryCard{background:#fff;}
.cx-galleryCard__media{height:250px;}
.cx-galleryCard__body{padding:22px 22px 24px;}
.cx-galleryCard__body strong{font-size:1.08rem;color:#171b26;}
.cx-galleryCard__body p{color:#667084;line-height:1.7;}
.cx-galleryMeta>div{background:#f8faff;border:1px solid #ecf0f7;}
.cx-galleryMeta span{color:#73809a;}
.cx-galleryMeta strong{color:#202636;}
.cx-immersiveShowcase{grid-template-columns:minmax(0,1.5fr) minmax(320px,.78fr);gap:20px;}
.cx-immersiveStage__media{min-height:760px;border-radius:30px;box-shadow:0 30px 90px rgba(20,35,70,.12);}
.cx-shelfSection{margin-top:18px;}
.cx-shelfHeader{margin-bottom:22px;}
.cx-shelfHeader h3{font-size:clamp(1.6rem,2.2vw,2.25rem);line-height:1.02;color:#161b26;}
.cx-shelfHeader span{font-size:.98rem;color:#667084;}
.cx-shelfRow{grid-template-columns:1.35fr .88fr .88fr .88fr;gap:18px;}
.cx-shelfCard{min-height:420px;border-radius:26px;box-shadow:var(--cx-shadow-md);}
.cx-shelfCard--feature{min-height:520px;}
.cx-shelfCard__content{padding:28px;}
.cx-shelfCard h4{font-size:clamp(1.4rem,2vw,2rem);}
.cx-shelfCard p{max-width:44ch;}
.cx-journeyGrid,.cx-platformNarrativeGrid{gap:18px;margin-top:24px;}
.cx-journeyCard,.cx-platformNarrativeCard{padding:28px;background:#fff;}
.cx-journeyCard h3,.cx-platformNarrativeCard h3{font-size:1.28rem;color:#171b26;}
.cx-journeyCard p,.cx-platformNarrativeCard p{color:#667084;}
.cx-platformShelf{gap:16px;margin-top:22px;}
.cx-platformShelf .cx-panel{background:linear-gradient(180deg,#ffffff 0%,#f8faff 100%);min-height:210px;padding:24px;}
.wc-formGrid{gap:18px;}
.form-card{padding:28px;background:#fff;}
.wc-miniHead strong{color:#171b26;font-size:1.32rem;}
#contact .wc-form input,#contact .wc-form input[type="text"],#contact .wc-form input[type="email"],#contact .wc-form input[type="tel"]{background:#f8faff !important;color:#171b26 !important;border:1px solid #e4e9f2 !important;-webkit-text-fill-color:#171b26 !important;}
#contact .wc-form input::placeholder{color:#8a93a5 !important;-webkit-text-fill-color:#8a93a5 !important;}
#contact .wc-form input:focus{background:#fff !important;border-color:#8aa0ff !important;box-shadow:0 0 0 4px rgba(91,124,255,.10)!important;color:#171b26!important;-webkit-text-fill-color:#171b26!important;}
.cx-paymentGrid{grid-template-columns:.95fr 1.05fr;gap:18px;}
.cx-panel--dark{background:linear-gradient(180deg,#5b7cff 0%,#425ef2 100%);border-color:transparent;box-shadow:0 24px 64px rgba(66,94,242,.22);}
.cx-panel--dark .cx-label,.cx-panel--dark .cx-paymentStat span,.cx-panel--dark p{color:rgba(255,255,255,.84);}
.cx-paymentStat{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);}
.cx-faqList{margin-top:8px;}
.cx-faqQuestion{padding:24px 0;font-size:1.04rem;color:#1a2130;}
.cx-faqAnswer p{color:#667084;}
.cx-footer{padding:42px 0 76px;border-top:1px solid #e8edf6;background:linear-gradient(180deg,#ffffff 0%,#f8faff 100%);}
.cx-footer__brand{color:#161b26;}
.cx-footer__copy,.cx-footer a{color:#667084;}
.cx-dock__toggle{background:linear-gradient(135deg,#5b7cff 0%,#7b5cff 100%);color:#fff;box-shadow:0 16px 34px rgba(91,124,255,.24);}
.cx-dock__item{background:#fff;color:#171b26;border:1px solid #e3e9f4;}
.cx-dock__item--dark{background:linear-gradient(135deg,#5b7cff 0%,#7b5cff 100%);color:#fff;border-color:transparent;}
@media (max-width:1180px){
  .cx-shell{width:min(calc(100% - 38px), var(--cx-max));}
  .cx-platformHero{grid-template-columns:1fr;gap:28px;}
  .cx-platformHero__intro{max-width:100%;}
  .cx-hero__media{min-height:620px;height:620px;}
  .cx-galleryGrid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .cx-immersiveShowcase,.cx-shelfRow,.cx-paymentGrid,.wc-formGrid,.cx-platformShelf{grid-template-columns:1fr 1fr;}
  .cx-shelfCard--feature{grid-column:span 2;}
}
@media (max-width:760px){
  .cx-shell{width:min(calc(100% - 24px), var(--cx-max));}
  .cx-topbar__actions .cx-chip{display:none;}
  .cx-menuButton{display:inline-grid;place-items:center;}
  .cx-hero--platform{padding:20px 0 16px;}
  .cx-platformHero__title{font-size:clamp(2.35rem,10vw,3.4rem);max-width:11ch;}
  .cx-platformHero__copy{font-size:1rem;}
  .cx-hero__mediaHead{flex-direction:column;align-items:flex-start;}
  .cx-hero__media{min-height:58vh;height:58vh;}
  .cx-agentStack--inline,.cx-galleryGrid,.cx-immersiveShowcase,.cx-shelfRow,.cx-journeyGrid,.cx-platformNarrativeGrid,.cx-platformShelf,.wc-formGrid,.cx-paymentGrid{grid-template-columns:1fr;}
  .cx-shelfCard,.cx-shelfCard--feature{min-height:340px;}
  .cx-shelfCard--feature{grid-column:auto;}
  .cx-section{padding:72px 0;}
  .cx-heroProofItem{display:grid;justify-content:start;}
}
