@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --cx-ink: #050817;
  --cx-ink-2: #090d21;
  --cx-ink-3: #10162c;
  --cx-white: #ffffff;
  --cx-soft: #aeb8d0;
  --cx-line: rgba(166, 181, 220, .19);
  --cx-indigo: #4f46e5;
  --cx-indigo-2: #6556ff;
  --cx-violet: #8b43ff;
  --cx-cyan: #35c8ff;
  --cx-magenta: #d64edc;
  --cx-light-bg: #f8fafc;
  --cx-light-ink: #0f172a;
  --cx-light-copy: #475569;
  --cx-light-meta: #64748b;
  --cx-light-border: #e2e8f0;
  --cx-radius: 28px;
  --cx-max: 1440px;
  --cx-marketing: 'Plus Jakarta Sans', sans-serif;
  --cx-display: 'Space Grotesk', sans-serif;
  --cx-product: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body.cx-full-page,
body:has(.cx-site) { margin: 0; background: var(--cx-ink); }
body.cx-modal-open { overflow: hidden; }

.cx-site,
.cx-site * { box-sizing: border-box; }
.cx-site {
  position: relative;
  min-width: 320px;
  overflow: clip;
  color: var(--cx-white);
  background: var(--cx-ink);
  font-family: var(--cx-marketing);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}
.cx-site button,
.cx-site input,
.cx-site textarea { font: inherit; }
.cx-site button,
.cx-site a { -webkit-tap-highlight-color: transparent; }
.cx-site a { color: inherit; text-decoration: none; }
.cx-site img { max-width: 100%; }
.cx-site h1,
.cx-site h2,
.cx-site h3,
.cx-site p { margin-top: 0; }
.cx-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cx-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-content: center;
  gap: 22px;
  justify-items: center;
  background: #040611;
  transition: opacity .7s ease, visibility .7s ease;
}
.cx-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cx-loader__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(119, 105, 255, .35);
  border-radius: 50%;
}
.cx-loader__mark::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-top-color: var(--cx-cyan);
  border-right-color: var(--cx-violet);
  border-radius: inherit;
  animation: cx-spin 1.2s linear infinite;
}
.cx-loader__mark img { width: 38px; height: auto; }
.cx-loader > span {
  color: #9ca8c7;
  font-family: var(--cx-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
@keyframes cx-spin { to { transform: rotate(360deg); } }

.cx-noise {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.cx-cursor-glow {
  position: fixed;
  z-index: -1;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .16;
  background: radial-gradient(circle, rgba(75, 81, 255, .55), rgba(53, 200, 255, .1) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}

.cx-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 92px;
  padding: 0 max(32px, calc((100vw - var(--cx-max)) / 2));
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.cx-nav.is-scrolled {
  height: 76px;
  background: rgba(5, 8, 23, .82);
  border-color: var(--cx-line);
  backdrop-filter: blur(22px) saturate(150%);
}
.cx-brand { display: block; width: 196px; line-height: 0; }
.cx-brand img { display: block; width: 100%; height: auto; }
.cx-menu { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.cx-menu > a:not(.cx-button) {
  position: relative;
  color: #b7bfd3;
  font-family: var(--cx-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.cx-menu > a:not(.cx-button)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--cx-cyan), var(--cx-violet));
  transition: right .25s ease;
}
.cx-menu > a:not(.cx-button):hover { color: #fff; }
.cx-menu > a:not(.cx-button):hover::after { right: 0; }
.cx-menu-toggle { display: none; }

.cx-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--cx-display);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.cx-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.24) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform .6s ease;
}
.cx-button:hover::before { transform: translateX(110%); }
.cx-button:hover { transform: translateY(-2px); }
.cx-button:focus-visible,
.cx-site button:focus-visible,
.cx-site a:focus-visible,
.cx-site input:focus-visible,
.cx-site textarea:focus-visible { outline: 3px solid rgba(53, 200, 255, .52); outline-offset: 3px; }
.cx-button--primary {
  color: #fff;
  background: linear-gradient(115deg, #4f46e5 0%, #6045f0 56%, #723ee4 100%);
  box-shadow: 0 16px 44px rgba(79, 70, 229, .26), inset 0 1px rgba(255,255,255,.18);
}
.cx-button--primary:hover { box-shadow: 0 22px 54px rgba(79, 70, 229, .38), inset 0 1px rgba(255,255,255,.2); }
.cx-button--ghost { color: #fff; background: rgba(7,10,25,.2); border-color: rgba(185,195,222,.3); }
.cx-button--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); }
.cx-button--small { min-height: 48px; padding: 0 22px; border-radius: 12px; font-size: 13px; }
.cx-button--light { color: var(--cx-light-ink); background: #fff; box-shadow: 0 18px 50px rgba(0,0,0,.22); }

.cx-hero {
  position: relative;
  min-height: 1000px;
  padding: 186px max(32px, calc((100vw - var(--cx-max)) / 2)) 100px;
  background:
    linear-gradient(90deg, #050817 0%, #050817 44%, rgba(5,8,23,.72) 68%, rgba(5,8,23,.28) 100%),
    linear-gradient(180deg, transparent 0%, #050817 96%);
  overflow: hidden;
}
.cx-hero__atmosphere { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cx-hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.cx-hero__orb--one { width: 720px; height: 720px; top: -260px; right: -120px; background: radial-gradient(circle, rgba(91,93,140,.34), transparent 67%); }
.cx-hero__orb--two { width: 600px; height: 600px; bottom: -200px; left: 37%; background: radial-gradient(circle, rgba(78,59,209,.15), transparent 70%); }
.cx-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(138,150,196,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(138,150,196,.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent, #000 40%, #000 100%);
}
.cx-hero__copy { position: relative; z-index: 4; max-width: 860px; }
.cx-eyebrow,
.cx-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #bdc7e0;
  font-family: var(--cx-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.cx-eyebrow span { width: 42px; height: 1px; background: linear-gradient(90deg, var(--cx-cyan), var(--cx-violet)); }
.cx-hero h1 {
  margin: 32px 0 30px;
  color: #fff;
  font-family: var(--cx-display);
  font-size: clamp(70px, 7.1vw, 118px);
  font-weight: 500;
  letter-spacing: -.072em;
  line-height: .91;
}
.cx-hero h1 em,
.cx-section-heading h2 em,
.cx-proof__copy h2 em,
.cx-operators__copy h2 em {
  color: #d7d9ff;
  font-style: normal;
}
.cx-hero__copy > p {
  max-width: 760px;
  margin: 0;
  color: #aeb9d4;
  font-family: var(--cx-display);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}
.cx-lifecycle-card {
  position: absolute;
  z-index: 5;
  top: 160px;
  right: max(32px, calc((100vw - var(--cx-max)) / 2));
  width: min(420px, 31vw);
  color: var(--cx-light-ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 20px;
  box-shadow: 0 34px 100px rgba(0,0,0,.34);
  font-family: var(--cx-product);
  backdrop-filter: blur(16px);
}
.cx-lifecycle-card__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--cx-light-border); }
.cx-lifecycle-card__head img { width: 118px; height: auto; }
.cx-lifecycle-card__head span { padding: 8px 11px; color: #64748b; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.cx-lifecycle-card__body { padding: 23px 24px 24px; }
.cx-lifecycle-card__body small { display: block; color: var(--cx-light-meta); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.cx-lifecycle-card__body strong { display: block; margin-top: 5px; font-size: 18px; letter-spacing: -.02em; }
.cx-lifecycle { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 25px; }
.cx-lifecycle__rail { position: absolute; top: 7px; left: 9%; right: 9%; height: 2px; background: #dbe2ec; }
.cx-lifecycle__rail b { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cx-cyan), var(--cx-violet)); transition: width .45s cubic-bezier(.2,.8,.2,1); }
.cx-lifecycle button { position: relative; z-index: 1; display: grid; justify-items: center; gap: 10px; padding: 0; color: #64748b; background: none; border: 0; cursor: pointer; }
.cx-lifecycle button > span { width: 16px; height: 16px; background: #fff; border: 4px solid #cbd5e1; border-radius: 50%; box-shadow: 0 0 0 3px #fff; transition: border-color .25s, transform .25s; }
.cx-lifecycle button > b { font-size: 9px; font-weight: 600; }
.cx-lifecycle button.is-active { color: var(--cx-light-ink); }
.cx-lifecycle button.is-active > span { border-color: var(--cx-indigo); transform: scale(1.12); }

.cx-quote-shell {
  position: relative;
  z-index: 7;
  width: min(100%, 900px);
  margin-top: 42px;
  padding: 16px;
  background: rgba(5, 8, 23, .72);
  border: 1px solid rgba(184,196,225,.28);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}
.cx-quote-shell__label { display: flex; align-items: center; gap: 10px; padding: 1px 7px 12px; color: #bdc6da; font-family: var(--cx-display); font-size: 10px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.cx-quote-shell__label img { width: 18px; height: auto; }
.cx-quote { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr .75fr auto; overflow: hidden; background: #fff; border-radius: 14px; }
.cx-quote label { min-width: 0; padding: 15px 16px; border-right: 1px solid #dce3ee; }
.cx-quote label span,
.cx-lead-form label > span { display: block; margin-bottom: 4px; color: #64748b; font-family: var(--cx-product); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.cx-quote input { width: 100%; padding: 0; color: #0f172a; background: transparent; border: 0; outline: 0; font-family: var(--cx-product); font-size: 13px; font-weight: 600; text-overflow: ellipsis; }
.cx-quote input::placeholder { color: #0f172a; opacity: .88; }
.cx-quote .cx-button { min-height: 56px; margin: 7px; border-radius: 11px; white-space: nowrap; }
.cx-form-error { min-height: 0; margin: 7px 8px 0; color: #ff8e9a; font-family: var(--cx-product); font-size: 12px; }
.cx-form-error:empty { display: none; }

.cx-bus-stage { position: absolute; z-index: 3; right: -4%; bottom: 34px; width: min(980px, 63vw); }
.cx-bus { position: relative; z-index: 2; display: block; width: 100%; filter: drop-shadow(0 40px 40px rgba(0,0,0,.55)); transform: translateZ(0); }
.cx-route-line { position: absolute; z-index: 4; top: -46px; left: 2%; width: 94%; height: 150px; overflow: visible; pointer-events: none; }
[data-cx-route-path] { animation: cx-route 20s linear infinite; }
@keyframes cx-route { to { stroke-dashoffset: -440; } }
.cx-proof-chip { position: absolute; z-index: 5; right: 2%; bottom: -18px; display: flex; align-items: center; gap: 9px; color: #d5dbed; font-family: var(--cx-display); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.cx-proof-chip i { width: 7px; height: 7px; background: var(--cx-cyan); border-radius: 50%; box-shadow: 0 0 18px var(--cx-cyan); }
.cx-scroll-cue { position: absolute; z-index: 8; left: max(32px, calc((100vw - var(--cx-max)) / 2)); bottom: 52px; display: flex; align-items: center; gap: 12px; color: #8590ab; font-family: var(--cx-display); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.cx-scroll-cue span { position: relative; width: 31px; height: 31px; border: 1px solid var(--cx-line); border-radius: 50%; }
.cx-scroll-cue span::after { content: ''; position: absolute; top: 9px; left: 14px; width: 1px; height: 9px; background: var(--cx-cyan); animation: cx-scroll 1.7s ease infinite; }
@keyframes cx-scroll { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(5px); opacity: 1; } }

.cx-proof {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 760px;
  background: #070a19;
}
.cx-proof__image { position: relative; min-height: 680px; overflow: hidden; }
.cx-proof__image > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.08); transform: scale(1.03); transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.cx-proof__image:hover > img { transform: scale(1.07); }
.cx-proof__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,10,25,.05), rgba(7,10,25,.22)), linear-gradient(180deg, rgba(7,10,25,.08), rgba(7,10,25,.78)); }
.cx-proof__signal { position: absolute; left: clamp(28px, 5vw, 84px); bottom: clamp(28px, 5vw, 72px); display: grid; grid-template-columns: auto 1fr; column-gap: 15px; color: #fff; }
.cx-proof__signal span { grid-row: span 2; color: var(--cx-cyan); font-family: var(--cx-display); font-size: 13px; font-weight: 600; letter-spacing: .1em; }
.cx-proof__signal b { font-family: var(--cx-display); font-size: 18px; }
.cx-proof__signal small { color: #bcc5d8; font-size: 12px; }
.cx-proof__copy { display: flex; flex-direction: column; justify-content: center; padding: 100px clamp(44px, 7vw, 120px); background: linear-gradient(145deg, #080c1c, #0c1128); }
.cx-kicker { color: #98a5c3; }
.cx-proof__copy h2,
.cx-section-heading h2,
.cx-operators__copy h2 {
  margin: 25px 0 28px;
  font-family: var(--cx-display);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}
.cx-proof__copy > p,
.cx-section-heading > p,
.cx-operators__copy > p {
  max-width: 690px;
  color: #aab5cd;
  font-family: var(--cx-display);
  font-size: 17px;
  line-height: 1.75;
}
.cx-proof__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.cx-proof__facts article { padding-top: 16px; border-top: 1px solid var(--cx-line); }
.cx-proof__facts span { display: block; margin-bottom: 7px; color: #707e9d; font-family: var(--cx-display); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.cx-proof__facts strong { color: #eaf0ff; font-family: var(--cx-display); font-size: 13px; font-weight: 600; }

.cx-platform { padding: 140px max(32px, calc((100vw - var(--cx-max)) / 2)); background: #f4f7fb; color: var(--cx-light-ink); }
.cx-platform .cx-kicker { color: #64748b; }
.cx-platform .cx-section-heading h2 { color: var(--cx-light-ink); }
.cx-platform .cx-section-heading h2 em { color: #4f46e5; }
.cx-platform .cx-section-heading > p { color: #64748b; }
.cx-section-heading { max-width: 850px; }
.cx-section-heading--center { margin-inline: auto; text-align: center; }
.cx-section-heading--center .cx-kicker { justify-content: center; }
.cx-section-heading--center > p { margin-inline: auto; }
.cx-plane-tabs { display: flex; width: fit-content; margin: 60px 0 28px; padding: 5px; background: #e9eef5; border: 1px solid #dbe3ee; border-radius: 16px; }
.cx-plane-tabs button { display: flex; align-items: center; gap: 10px; min-height: 47px; padding: 0 20px; color: #64748b; background: transparent; border: 0; border-radius: 11px; cursor: pointer; font-family: var(--cx-product); font-size: 13px; font-weight: 600; transition: all .25s ease; }
.cx-plane-tabs button span { color: #94a3b8; font-size: 9px; }
.cx-plane-tabs button.is-active { color: #0f172a; background: #fff; box-shadow: 0 7px 20px rgba(15,23,42,.08); }
.cx-plane-tabs button.is-active span { color: #4f46e5; }
.cx-cockpit { display: grid; grid-template-columns: 92px 1fr; min-height: 640px; overflow: hidden; background: #fff; border: 1px solid #dce4ef; border-radius: 24px; box-shadow: 0 42px 100px rgba(15,23,42,.15); font-family: var(--cx-product); transition: opacity .2s ease, transform .2s ease; }
.cx-cockpit.is-switching { opacity: .2; transform: translateY(5px); }
.cx-cockpit__rail { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 27px 16px; background: #f8fafc; border-right: 1px solid #e2e8f0; }
.cx-cockpit__rail img { width: 58px; }
.cx-cockpit__rail > span { margin-top: auto; color: #94a3b8; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.cx-rail-dot { width: 27px; height: 27px; background: #e2e8f0; border-radius: 8px; }
.cx-rail-dot.is-active { background: #4f46e5; box-shadow: 0 8px 20px rgba(79,70,229,.28); }
.cx-cockpit__main { display: flex; flex-direction: column; min-width: 0; padding: 34px; }
.cx-cockpit__topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid #e2e8f0; }
.cx-cockpit__topbar small { display: block; color: #64748b; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.cx-cockpit__topbar strong { display: block; margin-top: 6px; color: #0f172a; font-size: 22px; letter-spacing: -.03em; }
.cx-status { padding: 8px 12px; color: #4338ca; background: #eef2ff; border: 1px solid #c7d2fe; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.cx-cockpit__grid { display: grid; grid-template-columns: 1fr 310px; gap: 22px; padding: 27px 0; }
.cx-trip-card { overflow: hidden; border: 1px solid #e2e8f0; border-radius: 16px; }
.cx-trip-card__map { position: relative; min-height: 286px; overflow: hidden; background: #eef2f8; background-image: linear-gradient(rgba(148,163,184,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.2) 1px, transparent 1px); background-size: 32px 32px; }
.cx-trip-card__map::before,
.cx-trip-card__map::after { content: ''; position: absolute; border: 13px solid transparent; border-left-color: rgba(148,163,184,.2); transform: rotate(30deg); }
.cx-trip-card__map::before { top: 30px; left: 34%; }
.cx-trip-card__map::after { right: 20%; bottom: 28px; }
.cx-trip-card__map svg { position: absolute; inset: 25px 20px 35px; width: calc(100% - 40px); height: calc(100% - 60px); }
.cx-trip-card__map > i { position: absolute; z-index: 2; width: 13px; height: 13px; background: #fff; border: 4px solid #4f46e5; border-radius: 50%; box-shadow: 0 0 0 5px rgba(79,70,229,.12); }
.cx-trip-card__map > i:nth-child(1) { left: 6%; bottom: 22%; }
.cx-trip-card__map > i:nth-child(2) { left: 55%; top: 38%; border-color: #35c8ff; }
.cx-trip-card__map > i:nth-child(3) { right: 5%; top: 21%; border-color: #8b43ff; }
.cx-trip-card__map > b { position: absolute; left: 20px; bottom: 17px; color: #334155; font-size: 11px; }
.cx-trip-card__details { display: grid; grid-template-columns: repeat(3, 1fr); padding: 20px; background: #fff; }
.cx-trip-card__details div + div { padding-left: 17px; border-left: 1px solid #e2e8f0; }
.cx-trip-card__details small { display: block; color: #94a3b8; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.cx-trip-card__details strong { display: block; margin-top: 5px; color: #334155; font-size: 11px; }
.cx-cockpit__side { display: flex; flex-direction: column; gap: 12px; }
.cx-cockpit__side > article { display: flex; align-items: center; gap: 13px; padding: 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; }
.cx-cockpit__side small { display: block; color: #64748b; font-size: 9px; }
.cx-cockpit__side strong { display: block; margin-top: 2px; color: #0f172a; font-size: 12px; }
.cx-icon-ring { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; color: #4338ca; background: #eef2ff; border-radius: 10px; font-weight: 700; }
.cx-icon-ring--cyan { color: #0369a1; background: #ecfeff; }
.cx-cockpit__side .cx-message-card { display: block; flex: 1; padding: 20px; background: #f8fafc; }
.cx-message-card button { width: 100%; margin-top: 20px; padding: 11px; color: #fff; background: #4f46e5; border: 0; border-radius: 10px; cursor: pointer; font-size: 11px; font-weight: 700; }
.cx-timeline { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: auto; padding-top: 25px; border-top: 1px solid #e2e8f0; }
.cx-timeline > div { position: relative; display: flex; align-items: center; gap: 9px; color: #94a3b8; font-size: 10px; font-weight: 600; }
.cx-timeline > div:not(:last-child)::after { content: ''; position: absolute; left: 29px; right: 8px; top: 11px; height: 1px; background: #e2e8f0; }
.cx-timeline i { position: relative; z-index: 1; display: grid; place-items: center; width: 23px; height: 23px; background: #fff; border: 2px solid #cbd5e1; border-radius: 50%; font-size: 9px; font-style: normal; }
.cx-timeline .is-done i { color: #fff; background: #4f46e5; border-color: #4f46e5; }
.cx-timeline .is-done::after { background: #4f46e5; }
.cx-timeline .is-active { color: #0f172a; }
.cx-timeline .is-active i { color: #4f46e5; border-color: #4f46e5; }

.cx-duality { padding: 140px max(32px, calc((100vw - var(--cx-max)) / 2)); background: #070a19; }
.cx-duality__stage { position: relative; display: grid; grid-template-columns: 1fr 1fr; margin-top: 70px; overflow: hidden; border: 1px solid var(--cx-line); border-radius: 30px; }
.cx-duality__column { min-height: 510px; padding: clamp(42px, 6vw, 78px); }
.cx-duality__column--public { color: #0f172a; background: #fff; }
.cx-duality__column--system { background: radial-gradient(circle at 50% 0%, rgba(78,73,209,.18), transparent 45%), #0b1024; }
.cx-duality__index { color: #7c89a4; font-family: var(--cx-display); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.cx-duality h3 { margin: 22px 0 30px; font-family: var(--cx-display); font-size: clamp(30px, 3.2vw, 48px); font-weight: 500; letter-spacing: -.045em; }
.cx-mini-request { overflow: hidden; border: 1px solid #dbe3ee; border-radius: 16px; box-shadow: 0 16px 40px rgba(15,23,42,.08); }
.cx-mini-request > div { padding: 18px 20px; }
.cx-mini-request small { display: block; color: #64748b; font-family: var(--cx-product); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cx-mini-request strong { display: block; margin-top: 5px; font-family: var(--cx-product); font-size: 14px; }
.cx-mini-request button { width: 100%; padding: 15px 20px; color: #fff; background: #4f46e5; border: 0; cursor: pointer; text-align: left; font-family: var(--cx-product); font-size: 12px; font-weight: 700; }
.cx-duality ul { display: grid; gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; }
.cx-duality li { position: relative; padding-left: 20px; color: #475569; font-family: var(--cx-product); font-size: 12px; }
.cx-duality li::before { content: '✓'; position: absolute; left: 0; color: #4f46e5; font-weight: 700; }
.cx-duality__bridge { position: absolute; z-index: 4; top: 50%; left: 50%; display: grid; place-items: center; width: 82px; height: 82px; background: #080c1c; border: 1px solid rgba(113,99,255,.42); border-radius: 50%; box-shadow: 0 0 0 12px rgba(7,10,25,.6), 0 0 48px rgba(79,70,229,.4); transform: translate(-50%, -50%); }
.cx-duality__bridge img { width: 34px; }
.cx-duality__bridge span { position: absolute; inset: -8px; border: 1px solid rgba(53,200,255,.23); border-radius: 50%; animation: cx-pulse 2.4s ease infinite; }
@keyframes cx-pulse { 0% { transform: scale(.8); opacity: 0; } 45% { opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.cx-system-signals { display: grid; gap: 12px; }
.cx-system-signals i { display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; background: rgba(255,255,255,.03); border: 1px solid rgba(171,184,216,.14); border-radius: 12px; font-style: normal; }
.cx-system-signals b { color: #d8e0f2; font-family: var(--cx-product); font-size: 12px; font-weight: 600; }
.cx-system-signals span { width: 9px; height: 9px; background: var(--cx-cyan); border-radius: 50%; box-shadow: 0 0 18px var(--cx-cyan); animation: cx-signal 2s ease-in-out infinite; }
.cx-system-signals i:nth-child(2) span { background: #6f5cff; box-shadow: 0 0 18px #6f5cff; animation-delay: .3s; }
.cx-system-signals i:nth-child(3) span { background: #9c52ff; box-shadow: 0 0 18px #9c52ff; animation-delay: .6s; }
.cx-system-signals i:nth-child(4) span { background: #d64edc; box-shadow: 0 0 18px #d64edc; animation-delay: .9s; }
@keyframes cx-signal { 50% { transform: scale(.55); opacity: .4; } }
.cx-duality__column--system > p { margin: 24px 0 0; color: #7f8ca8; font-family: var(--cx-product); font-size: 11px; line-height: 1.7; }

.cx-orchestration { padding: 150px max(32px, calc((100vw - var(--cx-max)) / 2)); background: linear-gradient(180deg, #090d20, #050817); }
.cx-orbit { position: relative; display: grid; grid-template-columns: 1fr 90px 1.15fr 90px 1fr; align-items: center; min-height: 390px; margin-top: 70px; padding: 60px; border: 1px solid var(--cx-line); border-radius: 30px; background: radial-gradient(circle at center, rgba(94,73,223,.11), transparent 46%), rgba(255,255,255,.015); overflow: hidden; }
.cx-orbit::before { content: ''; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(138,150,196,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(138,150,196,.08) 1px, transparent 1px); background-size: 36px 36px; }
.cx-orbit__request,
.cx-orbit__outcome { position: relative; z-index: 2; padding: 24px; border: 1px solid rgba(179,190,218,.21); border-radius: 18px; background: rgba(7,10,25,.78); box-shadow: 0 20px 50px rgba(0,0,0,.24); }
.cx-orbit span { display: block; color: #7e8aa6; font-family: var(--cx-product); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.cx-orbit strong { display: block; margin: 8px 0 5px; color: #fff; font-family: var(--cx-display); font-size: 18px; }
.cx-orbit small { color: #8793ad; font-family: var(--cx-product); font-size: 10px; }
.cx-orbit__connector { position: relative; height: 100%; }
.cx-orbit__connector::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #6656ff, transparent); }
.cx-orbit__connector i { position: absolute; top: calc(50% - 3px); width: 6px; height: 6px; background: var(--cx-cyan); border-radius: 50%; animation: cx-packet 2.4s linear infinite; box-shadow: 0 0 14px var(--cx-cyan); }
.cx-orbit__connector i:nth-child(2) { animation-delay: .8s; }
.cx-orbit__connector i:nth-child(3) { animation-delay: 1.6s; }
@keyframes cx-packet { from { left: 0; opacity: 0; } 15%,80% { opacity: 1; } to { left: calc(100% - 6px); opacity: 0; } }
.cx-orbit__units { position: relative; z-index: 2; display: grid; gap: 11px; }
.cx-orbit__units article { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 12px; padding: 17px; background: rgba(13,18,42,.92); border: 1px solid rgba(169,182,213,.15); border-radius: 13px; }
.cx-orbit__units strong { margin: 0; font-size: 13px; }
.cx-orbit__outcome { display: flex; align-items: center; gap: 15px; border-color: rgba(91,78,238,.42); box-shadow: 0 20px 70px rgba(79,70,229,.16); }
.cx-orbit__outcome img { width: 38px; }
.cx-orbit__outcome strong { font-size: 15px; }
.cx-orbit__label { position: absolute; right: 22px; bottom: 17px; color: #65718b; font-family: var(--cx-product); font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.cx-operators { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 860px; background: #090d20; }
.cx-operators__visual { position: relative; min-height: 740px; overflow: hidden; }
.cx-operators__visual > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) brightness(.75); }
.cx-operators__visual-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,10,25,.05), rgba(7,10,25,.38)), linear-gradient(180deg, rgba(7,10,25,.14), rgba(7,10,25,.62)); }
.cx-network-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 14px 16px; background: rgba(7,10,25,.84); border: 1px solid rgba(190,200,225,.21); border-radius: 13px; box-shadow: 0 20px 45px rgba(0,0,0,.34); backdrop-filter: blur(18px); }
.cx-network-card i { width: 8px; height: 8px; background: var(--cx-cyan); border-radius: 50%; box-shadow: 0 0 16px var(--cx-cyan); }
.cx-network-card span { color: #8996b1; font-family: var(--cx-product); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.cx-network-card b { display: block; color: #fff; font-family: var(--cx-product); font-size: 10px; }
.cx-network-card--a { top: 20%; left: 8%; }
.cx-network-card--b { top: 45%; right: 7%; }
.cx-network-card--c { bottom: 14%; left: 18%; }
.cx-operators__copy { display: flex; flex-direction: column; justify-content: center; padding: 110px clamp(44px, 7vw, 120px); background: radial-gradient(circle at 100% 20%, rgba(79,70,229,.15), transparent 38%), #090d20; }
.cx-operators__copy ul { display: grid; gap: 22px; margin: 34px 0 40px; padding: 0; list-style: none; }
.cx-operators__copy li { display: grid; grid-template-columns: 36px 1fr; gap: 13px; padding-top: 18px; border-top: 1px solid var(--cx-line); }
.cx-operators__copy li > span { color: var(--cx-cyan); font-family: var(--cx-display); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.cx-operators__copy li strong { display: block; margin-bottom: 5px; color: #fff; font-family: var(--cx-display); font-size: 15px; }
.cx-operators__copy li small { color: #8f9bb5; font-family: var(--cx-product); font-size: 11px; line-height: 1.6; }
.cx-operators__copy .cx-button { align-self: flex-start; }

.cx-vision { position: relative; padding: 150px max(32px, calc((100vw - var(--cx-max)) / 2)); background: #f8fafc; color: #0f172a; overflow: hidden; }
.cx-vision .cx-kicker { color: #64748b; }
.cx-vision .cx-section-heading h2 em { color: #4f46e5; }
.cx-vision .cx-section-heading > p { color: #64748b; }
.cx-vision__path { position: absolute; left: 10%; right: 10%; top: 54%; height: 1px; background: linear-gradient(90deg, transparent, #a5b4fc, #7dd3fc, transparent); }
.cx-vision__cards { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 70px; }
.cx-vision__cards article { min-height: 250px; padding: 35px; background: rgba(255,255,255,.84); border: 1px solid #e2e8f0; border-radius: 22px; box-shadow: 0 20px 50px rgba(15,23,42,.07); backdrop-filter: blur(12px); transition: transform .3s ease, box-shadow .3s ease; }
.cx-vision__cards article:hover { transform: translateY(-8px); box-shadow: 0 32px 70px rgba(15,23,42,.12); }
.cx-vision__cards span { display: grid; place-items: center; width: 42px; height: 42px; color: #4f46e5; background: #eef2ff; border-radius: 12px; font-family: var(--cx-display); font-size: 11px; font-weight: 700; }
.cx-vision__cards h3 { margin: 54px 0 8px; font-family: var(--cx-display); font-size: 28px; letter-spacing: -.04em; }
.cx-vision__cards p { color: #64748b; font-family: var(--cx-product); font-size: 13px; line-height: 1.7; }

.cx-final { position: relative; display: grid; place-items: center; min-height: 700px; padding: 120px 32px; text-align: center; background: #050817; overflow: hidden; }
.cx-final__orb { position: absolute; width: 780px; height: 780px; border-radius: 50%; background: radial-gradient(circle, rgba(79,70,229,.27), rgba(53,200,255,.06) 38%, transparent 70%); animation: cx-breathe 6s ease-in-out infinite; }
@keyframes cx-breathe { 50% { transform: scale(1.12); opacity: .75; } }
.cx-final__mark { position: absolute; width: 420px; opacity: .035; filter: blur(.2px); }
.cx-final__content { position: relative; z-index: 2; max-width: 900px; }
.cx-final .cx-kicker { justify-content: center; }
.cx-final h2 { margin: 26px 0 22px; font-family: var(--cx-display); font-size: clamp(64px, 8vw, 126px); font-weight: 500; letter-spacing: -.07em; line-height: .95; }
.cx-final p { max-width: 680px; margin: 0 auto; color: #9ca8c1; font-family: var(--cx-display); font-size: 17px; line-height: 1.7; }
.cx-final__actions { display: flex; justify-content: center; gap: 12px; margin-top: 38px; }

.cx-footer { display: grid; grid-template-columns: 1fr auto; gap: 56px; padding: 64px max(32px, calc((100vw - var(--cx-max)) / 2)) 32px; background: #03050e; border-top: 1px solid var(--cx-line); }
.cx-footer > div:first-child img { width: 170px; }
.cx-footer > div:first-child p { margin: 12px 0 0; color: #69758f; font-size: 12px; }
.cx-footer nav { display: flex; gap: 27px; align-items: center; color: #99a5bd; font-family: var(--cx-display); font-size: 12px; }
.cx-footer nav a:hover { color: #fff; }
.cx-footer__meta { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 26px; color: #58647d; border-top: 1px solid rgba(166,181,220,.12); font-family: var(--cx-product); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.cx-footer__meta b { font-weight: inherit; }

.cx-modal[hidden] { display: none; }
.cx-modal { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 20px; }
.cx-modal__backdrop { position: absolute; inset: 0; background: rgba(2,4,12,.8); backdrop-filter: blur(16px); animation: cx-fade .25s ease both; }
.cx-modal__panel { position: relative; z-index: 1; width: min(740px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 30px; color: #0f172a; background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; box-shadow: 0 50px 140px rgba(0,0,0,.55); font-family: var(--cx-product); animation: cx-modal-in .4s cubic-bezier(.2,.8,.2,1) both; }
@keyframes cx-fade { from { opacity: 0; } }
@keyframes cx-modal-in { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.cx-modal__close { position: absolute; top: 19px; right: 20px; display: grid; place-items: center; width: 40px; height: 40px; color: #64748b; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 50%; cursor: pointer; font-size: 24px; line-height: 1; }
.cx-modal__brand { display: flex; align-items: center; gap: 17px; padding-right: 52px; }
.cx-modal__brand img { width: 135px; }
.cx-modal__brand span { padding-left: 17px; color: #64748b; border-left: 1px solid #e2e8f0; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.cx-modal__content h2,
.cx-modal__success h2 { margin: 32px 0 10px; font-family: var(--cx-display); font-size: 38px; letter-spacing: -.05em; }
.cx-modal__content > p,
.cx-modal__success > p { color: #64748b; font-size: 13px; line-height: 1.7; }
.cx-lead-form { margin-top: 26px; }
.cx-lead-form__trip { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 22px; padding: 16px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; }
.cx-lead-form__trip span { min-width: 0; padding: 0 12px; }
.cx-lead-form__trip span + span { border-left: 1px solid #e2e8f0; }
.cx-lead-form__trip small { display: block; color: #94a3b8; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.cx-lead-form__trip b { display: block; margin-top: 4px; overflow: hidden; color: #334155; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.cx-lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cx-lead-form label { display: block; }
.cx-lead-form input,
.cx-lead-form textarea { width: 100%; padding: 13px 14px; color: #0f172a; background: #fff; border: 1px solid #cbd5e1; border-radius: 11px; outline: 0; font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.cx-lead-form input:focus,
.cx-lead-form textarea:focus { border-color: #4f46e5; box-shadow: 0 0 0 4px rgba(79,70,229,.1); }
.cx-lead-form__message { margin-top: 15px; }
.cx-lead-form textarea { resize: vertical; }
.cx-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.cx-lead-form .cx-button { width: 100%; margin-top: 18px; }
.cx-form-privacy { display: block; margin-top: 10px; color: #94a3b8; text-align: center; font-size: 9px; }
.cx-modal__success { padding: 40px 10px 15px; text-align: center; }
.cx-success-mark { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto; color: #047857; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 50%; font-size: 28px; }
.cx-modal__success .cx-button { margin-top: 22px; min-width: 170px; }

.cx-reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1); }
.cx-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .cx-nav { padding-inline: 28px; }
  .cx-menu { gap: 24px; }
  .cx-brand { width: 174px; }
  .cx-hero { min-height: 980px; padding: 165px 28px 95px; }
  .cx-hero__copy { max-width: 720px; }
  .cx-lifecycle-card { top: 158px; right: 28px; width: 360px; }
  .cx-quote-shell { width: min(100%, 830px); }
  .cx-bus-stage { width: min(900px, 69vw); right: -7%; }
  .cx-platform,
  .cx-duality,
  .cx-orchestration,
  .cx-vision { padding-inline: 28px; }
  .cx-cockpit__grid { grid-template-columns: 1fr 270px; }
  .cx-orbit { padding: 42px; grid-template-columns: .9fr 60px 1.2fr 60px .9fr; }
  .cx-operators__copy { padding-inline: 55px; }
  .cx-footer { padding-inline: 28px; }
}

@media (max-width: 980px) {
  .cx-menu-toggle { position: relative; z-index: 3; display: grid; align-content: center; gap: 5px; width: 48px; height: 48px; padding: 0 13px; color: #fff; background: rgba(255,255,255,.03); border: 1px solid rgba(183,195,225,.25); border-radius: 13px; cursor: pointer; }
  .cx-menu-toggle span { display: block; width: 100%; height: 1px; background: #fff; transition: transform .25s, opacity .25s; }
  .cx-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .cx-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .cx-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .cx-menu { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 100px 10vw; background: rgba(5,8,23,.97); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all .3s ease; }
  .cx-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .cx-menu > a:not(.cx-button) { color: #fff; font-size: 28px; letter-spacing: -.03em; }
  .cx-menu .cx-button { margin-top: 14px; }
  .cx-hero { min-height: 1220px; }
  .cx-hero__copy { max-width: 820px; }
  .cx-lifecycle-card { top: 615px; left: 28px; right: auto; width: 430px; }
  .cx-quote-shell { margin-top: 38px; }
  .cx-quote { grid-template-columns: 1fr 1fr; background: transparent; gap: 8px; }
  .cx-quote label { background: #fff; border: 0; border-radius: 11px; }
  .cx-quote .cx-button { grid-column: 1 / -1; margin: 0; }
  .cx-bus-stage { right: -14%; bottom: 34px; width: 112%; }
  .cx-scroll-cue { display: none; }
  .cx-proof,
  .cx-operators { grid-template-columns: 1fr; }
  .cx-proof__image,
  .cx-operators__visual { min-height: 640px; }
  .cx-proof__copy,
  .cx-operators__copy { padding: 90px 42px; }
  .cx-cockpit { grid-template-columns: 70px 1fr; }
  .cx-cockpit__main { padding: 26px; }
  .cx-cockpit__grid { grid-template-columns: 1fr; }
  .cx-cockpit__side { display: grid; grid-template-columns: 1fr 1fr; }
  .cx-cockpit__side .cx-message-card { grid-column: 1 / -1; }
  .cx-duality__stage { grid-template-columns: 1fr; }
  .cx-duality__bridge { top: 50%; }
  .cx-duality__column { min-height: 430px; }
  .cx-orbit { grid-template-columns: 1fr; gap: 28px; }
  .cx-orbit__connector { height: 44px; width: 1px; justify-self: center; }
  .cx-orbit__connector::before { top: 0; bottom: 0; left: 0; width: 1px; height: auto; background: linear-gradient(180deg, transparent, #6656ff, transparent); }
  .cx-orbit__connector i { left: -2px !important; animation: cx-packet-y 2.4s linear infinite; }
  @keyframes cx-packet-y { from { top: 0; opacity: 0; } 15%,80% { opacity: 1; } to { top: calc(100% - 6px); opacity: 0; } }
  .cx-orbit__units article { grid-template-columns: 75px 1fr auto; }
}

@media (max-width: 680px) {
  .cx-cursor-glow { display: none; }
  .cx-nav { height: 76px; padding-inline: 20px; }
  .cx-nav.is-scrolled { height: 68px; }
  .cx-brand { width: 158px; }
  .cx-menu-toggle { width: 44px; height: 44px; }
  .cx-hero { min-height: 1180px; padding: 140px 20px 70px; }
  .cx-eyebrow,
  .cx-kicker { gap: 11px; font-size: 9px; letter-spacing: .2em; }
  .cx-hero h1 { margin: 25px 0 22px; font-size: clamp(54px, 15vw, 76px); letter-spacing: -.07em; }
  .cx-hero__copy > p { font-size: 16px; line-height: 1.65; }
  .cx-quote-shell { margin-top: 34px; padding: 12px; border-radius: 19px; }
  .cx-quote-shell__label { font-size: 9px; }
  .cx-quote { grid-template-columns: 1fr 1fr; }
  .cx-quote label { padding: 14px; }
  .cx-quote input { font-size: 12px; }
  .cx-quote .cx-button { min-height: 56px; }
  .cx-lifecycle-card { top: auto; left: 20px; right: 20px; bottom: 38px; width: auto; border-radius: 18px; }
  .cx-lifecycle-card__head { padding: 16px; }
  .cx-lifecycle-card__head img { width: 104px; }
  .cx-lifecycle-card__head span { padding: 6px 8px; font-size: 7px; }
  .cx-lifecycle-card__body { padding: 16px 16px 18px; }
  .cx-lifecycle-card__body strong { font-size: 15px; }
  .cx-lifecycle button > b { font-size: 7px; }
  .cx-bus-stage { right: auto; left: -36%; bottom: 310px; width: 173%; }
  .cx-proof-chip { display: none; }
  .cx-route-line { top: -34px; }
  .cx-proof__image,
  .cx-operators__visual { min-height: 530px; }
  .cx-proof__image > img { object-position: 65% center; }
  .cx-proof__copy,
  .cx-operators__copy { padding: 75px 20px; }
  .cx-proof__copy h2,
  .cx-section-heading h2,
  .cx-operators__copy h2 { font-size: 43px; }
  .cx-proof__copy > p,
  .cx-section-heading > p,
  .cx-operators__copy > p { font-size: 15px; }
  .cx-proof__facts { grid-template-columns: 1fr; }
  .cx-platform,
  .cx-duality,
  .cx-orchestration,
  .cx-vision { padding: 95px 20px; }
  .cx-plane-tabs { display: grid; grid-template-columns: 1fr; width: 100%; }
  .cx-plane-tabs button { justify-content: flex-start; }
  .cx-cockpit { display: block; min-height: auto; border-radius: 18px; }
  .cx-cockpit__rail { display: none; }
  .cx-cockpit__main { padding: 18px; }
  .cx-cockpit__topbar { align-items: flex-start; gap: 15px; }
  .cx-cockpit__topbar strong { font-size: 18px; }
  .cx-status { font-size: 7px; }
  .cx-trip-card__map { min-height: 220px; }
  .cx-trip-card__details { grid-template-columns: 1fr; gap: 12px; }
  .cx-trip-card__details div + div { padding: 12px 0 0; border-left: 0; border-top: 1px solid #e2e8f0; }
  .cx-cockpit__side { grid-template-columns: 1fr; }
  .cx-cockpit__side .cx-message-card { grid-column: auto; }
  .cx-timeline { overflow-x: auto; grid-template-columns: repeat(5, minmax(90px, 1fr)); padding-bottom: 4px; }
  .cx-duality__stage { margin-top: 45px; border-radius: 20px; }
  .cx-duality__column { min-height: auto; padding: 58px 25px; }
  .cx-duality__bridge { width: 64px; height: 64px; }
  .cx-duality__bridge img { width: 26px; }
  .cx-orbit { margin-top: 45px; padding: 50px 18px; border-radius: 20px; }
  .cx-orbit__units article { grid-template-columns: 64px 1fr; }
  .cx-orbit__units small { grid-column: 2; }
  .cx-operators__visual > img { object-position: 45% center; }
  .cx-network-card { min-width: 165px; padding: 11px; }
  .cx-network-card--a { top: 12%; left: 5%; }
  .cx-network-card--b { top: 44%; right: 4%; }
  .cx-network-card--c { bottom: 8%; left: 8%; }
  .cx-vision__cards { grid-template-columns: 1fr; margin-top: 48px; }
  .cx-vision__cards article { min-height: 220px; }
  .cx-final { min-height: 650px; padding: 90px 20px; }
  .cx-final h2 { font-size: 64px; }
  .cx-final__actions { flex-direction: column; }
  .cx-final__actions .cx-button { width: 100%; }
  .cx-footer { grid-template-columns: 1fr; gap: 32px; padding: 55px 20px 26px; }
  .cx-footer nav { flex-wrap: wrap; gap: 15px 22px; }
  .cx-footer__meta { flex-direction: column; gap: 9px; }
  .cx-modal { padding: 10px; }
  .cx-modal__panel { max-height: calc(100vh - 20px); padding: 22px 18px; border-radius: 19px; }
  .cx-modal__brand img { width: 112px; }
  .cx-modal__brand span { display: none; }
  .cx-modal__content h2,
  .cx-modal__success h2 { font-size: 32px; }
  .cx-lead-form__trip { grid-template-columns: 1fr 1fr; gap: 13px 0; }
  .cx-lead-form__trip span:nth-child(3) { border-left: 0; }
  .cx-lead-form__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cx-site *,
  .cx-site *::before,
  .cx-site *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .cx-reveal { opacity: 1; transform: none; }
  .cx-cursor-glow { display: none; }
}

/* ===== CharterX Experience v1.1 narrative + visual system ===== */
.cx-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #7f8ca8;
  font-family: var(--cx-product);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cx-hero__badges i { width: 4px; height: 4px; border-radius: 50%; background: linear-gradient(135deg, var(--cx-cyan), var(--cx-violet)); box-shadow: 0 0 10px rgba(53,200,255,.65); }

.cx-problem {
  position: relative;
  padding: 145px max(32px, calc((100vw - var(--cx-max)) / 2));
  color: var(--cx-light-ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(99,102,241,.09), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f4f7fb);
  overflow: hidden;
}
.cx-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image: linear-gradient(rgba(100,116,139,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(100,116,139,.07) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.cx-problem > * { position: relative; z-index: 1; }
.cx-problem .cx-kicker { color: #64748b; }
.cx-problem .cx-section-heading h2 { color: #0f172a; }
.cx-problem .cx-section-heading h2 em { color: #4f46e5; }
.cx-problem .cx-section-heading > p { color: #64748b; }
.cx-problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.cx-problem__grid article {
  position: relative;
  min-height: 330px;
  padding: 32px;
  background: rgba(255,255,255,.86);
  border: 1px solid #dfe6f0;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(15,23,42,.075);
  backdrop-filter: blur(14px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cx-problem__grid article:hover { transform: translateY(-7px); border-color: #c7d2fe; box-shadow: 0 36px 90px rgba(15,23,42,.12); }
.cx-problem__grid article > span { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; color: #4f46e5; background: #eef2ff; border-radius: 999px; font-family: var(--cx-product); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.cx-problem__grid h3 { margin: 58px 0 14px; color: #0f172a; font-family: var(--cx-display); font-size: clamp(28px, 2.4vw, 39px); font-weight: 550; letter-spacing: -.045em; line-height: 1.05; }
.cx-problem__grid p { max-width: 390px; color: #64748b; font-family: var(--cx-product); font-size: 13px; line-height: 1.75; }
.cx-problem__grid b { position: absolute; left: 32px; bottom: 30px; color: #334155; font-family: var(--cx-product); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.cx-problem__statement { display: flex; align-items: center; justify-content: center; gap: 18px; max-width: 960px; margin: 58px auto 0; color: #334155; font-family: var(--cx-display); font-size: clamp(18px, 2vw, 27px); font-weight: 550; letter-spacing: -.025em; text-align: center; }
.cx-problem__statement img { width: 34px; flex: 0 0 auto; }

.cx-product-proof {
  padding: 150px max(32px, calc((100vw - var(--cx-max)) / 2));
  background:
    radial-gradient(circle at 50% 15%, rgba(82,68,225,.13), transparent 32%),
    linear-gradient(180deg, #080c1c, #050817);
}
.cx-product-proof .cx-section-heading { max-width: 980px; }
.cx-product-proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 70px; }
.cx-product-shot {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(180,193,221,.21);
  border-radius: 24px;
  box-shadow: 0 38px 90px rgba(0,0,0,.34);
}
.cx-product-shot--wide { grid-column: 1 / -1; }
.cx-product-shot__chrome { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 15px; background: #eef2f7; border-bottom: 1px solid #dce3ed; }
.cx-product-shot__chrome span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.cx-product-shot__chrome span:nth-child(1) { background: #f0a2a6; }
.cx-product-shot__chrome span:nth-child(2) { background: #e8ca76; }
.cx-product-shot__chrome span:nth-child(3) { background: #85c898; }
.cx-product-shot__chrome b { margin-left: 6px; color: #64748b; font-family: var(--cx-product); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.cx-product-shot > img { display: block; width: 100%; aspect-ratio: 1.715 / 1; object-fit: cover; object-position: top center; background: #f8fafc; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.cx-product-shot:hover > img { transform: scale(1.015); }
.cx-product-shot__caption { display: grid; grid-template-columns: 185px 1fr; gap: 20px; padding: 22px 25px 24px; color: #0f172a; background: #fff; border-top: 1px solid #e2e8f0; }
.cx-product-shot__caption span { color: #64748b; font-family: var(--cx-product); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cx-product-shot__caption strong { font-family: var(--cx-display); font-size: 14px; font-weight: 600; line-height: 1.5; }

.cx-microbooking__benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.cx-microbooking__benefits article { padding: 26px; background: rgba(255,255,255,.025); border: 1px solid var(--cx-line); border-radius: 18px; }
.cx-microbooking__benefits span { display: block; margin-bottom: 34px; color: var(--cx-cyan); font-family: var(--cx-product); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.cx-microbooking__benefits strong { display: block; color: #fff; font-family: var(--cx-display); font-size: 20px; font-weight: 550; letter-spacing: -.03em; }
.cx-microbooking__benefits p { margin: 10px 0 0; color: #8490aa; font-family: var(--cx-product); font-size: 11px; line-height: 1.7; }

.cx-deployment {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  padding: 150px max(32px, calc((100vw - var(--cx-max)) / 2));
  background:
    radial-gradient(circle at 20% 30%, rgba(79,70,229,.15), transparent 34%),
    #070a19;
}
.cx-deployment__copy h2 { margin: 25px 0 28px; font-family: var(--cx-display); font-size: clamp(45px, 5vw, 76px); font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.cx-deployment__copy h2 em { color: #d7d9ff; font-style: normal; }
.cx-deployment__copy > p { max-width: 650px; color: #aab5cd; font-family: var(--cx-display); font-size: 17px; line-height: 1.75; }
.cx-deployment__facts { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--cx-line); }
.cx-deployment__facts article { display: grid; grid-template-columns: 105px 1fr; align-items: center; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--cx-line); }
.cx-deployment__facts span { color: var(--cx-cyan); font-family: var(--cx-display); font-size: 12px; font-weight: 700; }
.cx-deployment__facts strong { color: #ecf2ff; font-family: var(--cx-product); font-size: 11px; font-weight: 600; }
.cx-deployment__flow { position: relative; display: grid; gap: 0; padding: 35px; background: rgba(255,255,255,.025); border: 1px solid var(--cx-line); border-radius: 28px; box-shadow: 0 35px 90px rgba(0,0,0,.26); overflow: hidden; }
.cx-deployment__flow::before { content: ''; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(138,150,196,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(138,150,196,.08) 1px, transparent 1px); background-size: 36px 36px; }
.cx-deploy-node { position: relative; z-index: 2; padding: 24px 25px; background: rgba(9,13,32,.94); border: 1px solid rgba(166,181,220,.18); border-radius: 18px; }
.cx-deploy-node--brand { border-color: rgba(53,200,255,.28); }
.cx-deploy-node small { display: block; color: #7f8ba4; font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.cx-deploy-node strong { display: block; margin: 7px 0 6px; color: #fff; font-family: var(--cx-display); font-size: 22px; font-weight: 550; letter-spacing: -.035em; }
.cx-deploy-node span { color: #8995ae; font-family: var(--cx-product); font-size: 10px; line-height: 1.6; }
.cx-deploy-arrow { position: relative; z-index: 2; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 12px; min-height: 70px; padding-left: 22px; }
.cx-deploy-arrow i { position: relative; justify-self: center; width: 1px; height: 100%; background: linear-gradient(180deg, transparent, var(--cx-violet), var(--cx-cyan), transparent); }
.cx-deploy-arrow i::after { content: ''; position: absolute; left: -3px; top: 32px; width: 7px; height: 7px; background: var(--cx-cyan); border-radius: 50%; box-shadow: 0 0 16px var(--cx-cyan); }
.cx-deploy-arrow b { color: #75819a; font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.cx-verticals {
  padding: 150px max(32px, calc((100vw - var(--cx-max)) / 2));
  color: #0f172a;
  background: #f8fafc;
}
.cx-verticals .cx-kicker { color: #64748b; }
.cx-verticals .cx-section-heading h2 { color: #0f172a; }
.cx-verticals .cx-section-heading h2 em { color: #4f46e5; }
.cx-verticals .cx-section-heading > p { color: #64748b; }
.cx-verticals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 65px; }
.cx-verticals__grid article { min-height: 260px; padding: 28px; background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; box-shadow: 0 20px 50px rgba(15,23,42,.05); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.cx-verticals__grid article:hover { transform: translateY(-6px); border-color: #c7d2fe; box-shadow: 0 30px 70px rgba(15,23,42,.09); }
.cx-verticals__grid span { display: inline-flex; padding: 6px 8px; color: #4f46e5; background: #eef2ff; border-radius: 8px; font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.cx-verticals__grid h3 { margin: 70px 0 10px; color: #0f172a; font-family: var(--cx-display); font-size: 24px; font-weight: 550; letter-spacing: -.035em; }
.cx-verticals__grid p { color: #64748b; font-family: var(--cx-product); font-size: 12px; line-height: 1.7; }

@media (max-width: 1180px) {
  .cx-problem,
  .cx-product-proof,
  .cx-deployment,
  .cx-verticals { padding-inline: 28px; }
  .cx-product-shot__caption { grid-template-columns: 150px 1fr; }
  .cx-deployment { gap: 55px; }
}

@media (max-width: 980px) {
  .cx-problem__grid { grid-template-columns: 1fr; }
  .cx-problem__grid article { min-height: 250px; }
  .cx-problem__grid h3 { margin-top: 35px; }
  .cx-product-proof__grid { grid-template-columns: 1fr; }
  .cx-product-shot--wide { grid-column: auto; }
  .cx-microbooking__benefits { grid-template-columns: 1fr; }
  .cx-deployment { grid-template-columns: 1fr; }
  .cx-verticals__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .cx-hero__badges { gap: 8px; font-size: 7px; letter-spacing: .08em; }
  .cx-problem,
  .cx-product-proof,
  .cx-deployment,
  .cx-verticals { padding: 95px 20px; }
  .cx-problem__grid { margin-top: 44px; }
  .cx-problem__grid article { min-height: 265px; padding: 25px; }
  .cx-problem__grid b { left: 25px; bottom: 24px; }
  .cx-problem__statement { align-items: flex-start; text-align: left; }
  .cx-product-proof__grid { margin-top: 45px; gap: 16px; }
  .cx-product-shot { border-radius: 17px; }
  .cx-product-shot__chrome { height: 36px; }
  .cx-product-shot__caption { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .cx-microbooking__benefits { gap: 12px; }
  .cx-deployment__copy h2 { font-size: 43px; }
  .cx-deployment__copy > p { font-size: 15px; }
  .cx-deployment__flow { padding: 18px; border-radius: 20px; }
  .cx-deploy-node { padding: 20px; }
  .cx-deployment__facts article { grid-template-columns: 90px 1fr; }
  .cx-verticals__grid { grid-template-columns: 1fr; margin-top: 45px; }
  .cx-verticals__grid article { min-height: 225px; }
  .cx-verticals__grid h3 { margin-top: 52px; }
}

/* ===== CharterX Experience v1.2 visual authority system ===== */
.cx-hero--arrival {
  min-height: 1040px;
  padding-bottom: 132px;
  background: #050817;
}
.cx-hero--arrival::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #050817 0%, rgba(5,8,23,.96) 39%, rgba(5,8,23,.66) 62%, rgba(5,8,23,.22) 100%),
    linear-gradient(180deg, rgba(5,8,23,.08) 56%, #050817 99%);
}
.cx-hero--arrival .cx-hero__copy,
.cx-hero--arrival .cx-quote-shell,
.cx-hero--arrival .cx-hero-proof { position: relative; z-index: 4; }
.cx-hero--arrival .cx-lifecycle-card { position: absolute; z-index: 5; }
.cx-hero--arrival .cx-scroll-cue { position: absolute; z-index: 8; }
.cx-hero-media { position: absolute; z-index: 0; inset: 0 0 0 37%; overflow: hidden; background: #0a0e1e; }
.cx-hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; filter: saturate(.65) contrast(1.12) brightness(.73); transform: scale(1.015); }
.cx-hero-media__wash { position: absolute; inset: 0; background: radial-gradient(circle at 72% 48%, transparent 0 20%, rgba(5,8,23,.17) 65%), linear-gradient(180deg, rgba(21,29,58,.12), rgba(5,8,23,.6)); mix-blend-mode: multiply; }
.cx-hero-media__route { position: absolute; right: 7%; top: 27%; width: 42%; height: 44%; border-right: 1px solid rgba(92,217,255,.4); border-top: 1px solid rgba(130,93,255,.42); border-radius: 0 85% 0 0; transform: rotate(8deg); }
.cx-hero-media__route::before { content: ''; position: absolute; inset: -2px; border-right: 7px solid rgba(53,200,255,.07); border-top: 7px solid rgba(139,67,255,.06); border-radius: inherit; filter: blur(8px); }
.cx-hero-media__route i { position: absolute; width: 9px; height: 9px; background: #050817; border: 2px solid var(--cx-cyan); border-radius: 50%; box-shadow: 0 0 20px rgba(53,200,255,.9); }
.cx-hero-media__route i:nth-child(1) { left: -4px; top: -5px; border-color: var(--cx-violet); }
.cx-hero-media__route i:nth-child(2) { right: -5px; top: 47%; }
.cx-hero-media__route i:nth-child(3) { right: -5px; bottom: -5px; }
.cx-hero-media__caption { position: absolute; right: max(32px, calc((100vw - var(--cx-max)) / 2)); bottom: 56px; display: grid; gap: 5px; padding: 13px 15px; background: rgba(5,8,23,.65); border: 1px solid rgba(196,207,232,.24); border-radius: 12px; backdrop-filter: blur(16px); }
.cx-hero-media__caption span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cx-hero-media__caption strong { color: #f2f5ff; font-family: var(--cx-display); font-size: 12px; font-weight: 550; }
.cx-hero--arrival .cx-hero__copy { max-width: 790px; }
.cx-hero--arrival .cx-hero__copy > p { max-width: 680px; }
.cx-lifecycle-card--over-media { top: 168px; right: max(28px, calc((100vw - var(--cx-max)) / 2)); width: min(410px, 30vw); }
.cx-hero-proof { display: flex; align-items: center; gap: 10px 18px; width: fit-content; margin-top: 28px; color: #9ba7c2; font-family: var(--cx-product); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.cx-hero-proof i { width: 8px; height: 8px; background: #34d399; border-radius: 50%; box-shadow: 0 0 16px rgba(52,211,153,.7); }
.cx-hero-proof b { padding-left: 18px; color: #d9e0f0; border-left: 1px solid var(--cx-line); font-weight: 650; }
.cx-hero--arrival .cx-scroll-cue { bottom: 46px; }

.cx-proof__mosaic { display: grid; grid-template-columns: 1.36fr .64fr; grid-template-rows: 1fr; gap: 10px; padding: 10px; background: #03050e; }
.cx-proof-photo { position: relative; min-width: 0; height: 100%; margin: 0; overflow: hidden; background: #11182b; }
.cx-proof-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.1); transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.cx-proof-photo:hover > img { transform: scale(1.025); }
.cx-proof-photo--primary > img { object-position: 68% center; }
.cx-proof-photo--secondary > img { object-position: 57% center; }
.cx-proof-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(3,5,14,.88)); }
.cx-proof-photo figcaption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 25px; display: grid; gap: 5px; }
.cx-proof-photo figcaption span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cx-proof-photo figcaption b { color: #fff; font-family: var(--cx-display); font-size: 15px; font-weight: 550; }
.cx-proof-photo--secondary figcaption b { font-size: 12px; }
.cx-proof__mosaic .cx-proof__signal { z-index: 3; left: 36px; bottom: auto; top: 34px; padding: 14px 16px; background: rgba(3,5,14,.72); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; backdrop-filter: blur(15px); }

.cx-product-proof--stories { padding-bottom: 180px; }
.cx-product-story-tabs { display: grid; grid-template-columns: repeat(3,1fr); max-width: 1060px; margin: 64px auto 28px; padding: 6px; background: rgba(255,255,255,.035); border: 1px solid var(--cx-line); border-radius: 20px; }
.cx-product-story-tabs button { display: grid; grid-template-columns: 34px 1fr; gap: 3px 10px; align-items: center; min-height: 74px; padding: 13px 17px; color: #7f8ca7; text-align: left; background: transparent; border: 0; border-radius: 14px; cursor: pointer; transition: color .25s, background .25s, box-shadow .25s; }
.cx-product-story-tabs button > span { grid-row: 1 / 3; color: #59657f; font-family: var(--cx-product); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.cx-product-story-tabs button b { color: inherit; font-family: var(--cx-display); font-size: 14px; font-weight: 600; }
.cx-product-story-tabs button small { color: #65718c; font-family: var(--cx-product); font-size: 9px; }
.cx-product-story-tabs button.is-active { color: #fff; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(146,136,255,.25), 0 14px 30px rgba(0,0,0,.18); }
.cx-product-story-tabs button.is-active > span { color: var(--cx-cyan); }
.cx-product-story-tabs button.is-active small { color: #a9b4ca; }
.cx-product-stories { position: relative; max-width: var(--cx-max); min-height: 690px; margin: 0 auto; }
.cx-product-story[hidden] { display: none; }
.cx-product-story { display: grid; grid-template-columns: minmax(270px,.56fr) minmax(0,1.44fr); gap: clamp(34px,5vw,84px); align-items: center; min-height: 690px; padding: 65px clamp(30px,5vw,75px); background: radial-gradient(circle at 75% 30%, rgba(85,67,227,.18), transparent 36%), rgba(255,255,255,.024); border: 1px solid var(--cx-line); border-radius: 32px; overflow: hidden; animation: cx-product-enter .48s cubic-bezier(.2,.8,.2,1) both; }
@keyframes cx-product-enter { from { opacity: 0; transform: translateY(9px); } }
.cx-product-story__copy > span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cx-product-story__copy h3 { margin: 23px 0 20px; color: #fff; font-family: var(--cx-display); font-size: clamp(35px,4vw,58px); font-weight: 500; letter-spacing: -.052em; line-height: 1.02; }
.cx-product-story__copy p { color: #9eabc5; font-family: var(--cx-display); font-size: 15px; line-height: 1.75; }
.cx-product-story__copy ul { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.cx-product-story__copy li { display: flex; align-items: center; gap: 10px; color: #d9e1f2; font-family: var(--cx-product); font-size: 11px; }
.cx-product-story__copy li::before { content: ''; width: 6px; height: 6px; background: linear-gradient(135deg,var(--cx-cyan),var(--cx-violet)); border-radius: 50%; box-shadow: 0 0 11px rgba(53,200,255,.65); }
.cx-product-canvas { position: relative; min-width: 0; min-height: 520px; }
.cx-product-canvas::before { content: ''; position: absolute; inset: 9% 0 0 6%; background: radial-gradient(circle, rgba(92,74,235,.25), transparent 63%); filter: blur(22px); }
.cx-product-screen { position: absolute; inset: 20px 7% 42px 0; overflow: hidden; background: #f8fafc; border: 1px solid rgba(215,224,239,.8); border-radius: 19px; box-shadow: 0 48px 110px rgba(0,0,0,.46); transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg); transform-origin: center; }
.cx-product-screen__chrome { position: relative; z-index: 2; display: flex; align-items: center; gap: 6px; height: 39px; padding: 0 14px; background: #eef2f7; border-bottom: 1px solid #dce3ed; }
.cx-product-screen__chrome span { width: 7px; height: 7px; background: #cbd5e1; border-radius: 50%; }
.cx-product-screen__chrome span:nth-child(1){background:#ef9da5}.cx-product-screen__chrome span:nth-child(2){background:#e8c875}.cx-product-screen__chrome span:nth-child(3){background:#82c492}
.cx-product-screen__chrome b { margin-left: 5px; color: #64748b; font-family: var(--cx-product); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.cx-product-screen > img { display: block; width: 100%; height: calc(100% - 39px); object-fit: cover; object-position: top center; }
.cx-product-focus { position: absolute; z-index: 4; right: 0; bottom: 0; display: grid; width: min(390px,47%); min-height: 280px; padding: 18px; color: #0f172a; background: rgba(255,255,255,.98); border: 1px solid #e1e7f0; border-radius: 18px; box-shadow: 0 35px 80px rgba(0,0,0,.42), 0 0 0 8px rgba(96,74,235,.07); transform: translate3d(3%,3%,0); }
.cx-product-focus > small { color: #6556ff; font-family: var(--cx-product); font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.cx-product-focus > strong { margin: 5px 0 12px; font-family: var(--cx-display); font-size: 21px; letter-spacing: -.03em; }
.cx-product-focus__viewport { position: relative; min-height: 145px; overflow: hidden; background: #f4f6fa; border: 1px solid #e2e8f0; border-radius: 11px; }
.cx-product-focus__viewport > img { position: absolute; width: 225%; max-width: none; height: auto; }
.cx-product-focus--customer .cx-product-focus__viewport > img { left: -125%; top: -170%; }
.cx-product-focus--operator .cx-product-focus__viewport > img { left: -3%; top: -45%; width: 305%; }
.cx-product-focus--control .cx-product-focus__viewport > img { inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cx-product-focus__viewport > img[data-cx-visual-source="custom"] { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cx-product-focus > b { align-self: end; margin-top: 11px; color: #475569; font-family: var(--cx-product); font-size: 9px; font-weight: 600; }
.cx-visual-placeholder { position: absolute; inset: 39px 0 0; z-index: 1; display: grid; place-content: center; justify-items: center; gap: 9px; padding: 30px; color: #93a0b8; text-align: center; background: radial-gradient(circle at 50% 30%,rgba(101,86,255,.14),transparent 40%), repeating-linear-gradient(135deg,#f7f9fc,#f7f9fc 14px,#f1f4f8 14px,#f1f4f8 28px); }
.cx-visual-placeholder span { color: #6556ff; font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.cx-visual-placeholder strong { color: #334155; font-family: var(--cx-display); font-size: 18px; }
.cx-visual-placeholder p { max-width: 390px; margin: 0; color: #64748b; font-family: var(--cx-product); font-size: 10px; line-height: 1.6; }
.cx-product-focus__viewport .cx-visual-placeholder { inset: 0; padding: 15px; }
.cx-product-focus__viewport .cx-visual-placeholder strong { font-size: 13px; }
.cx-product-focus__viewport .cx-visual-placeholder p { font-size: 8px; }
[data-cx-has-visual="true"] .cx-visual-placeholder { display: none; }

.cx-microbooking-vehicle { display: grid; grid-template-columns: minmax(260px,.8fr) minmax(300px,1.2fr); gap: 40px; align-items: center; margin-top: 30px; padding: 25px 35px; background: linear-gradient(110deg,rgba(255,255,255,.035),rgba(255,255,255,.015)); border: 1px solid var(--cx-line); border-radius: 20px; overflow: hidden; }
.cx-microbooking-vehicle img { width: 100%; filter: drop-shadow(0 22px 25px rgba(0,0,0,.55)); }
.cx-microbooking-vehicle span { display: block; color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cx-microbooking-vehicle strong { display: block; margin-top: 9px; color: #dde5f7; font-family: var(--cx-display); font-size: 18px; font-weight: 550; line-height: 1.5; }

.cx-deployment__evidence { display: grid; gap: 18px; }
.cx-deployment__evidence > figure { position: relative; min-height: 430px; margin: 0; overflow: hidden; border: 1px solid var(--cx-line); border-radius: 25px; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.cx-deployment__evidence > figure img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; filter: saturate(.72) contrast(1.08); }
.cx-deployment__evidence > figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 42%,rgba(3,5,14,.91)); }
.cx-deployment__evidence figcaption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 24px; display: grid; gap: 6px; }
.cx-deployment__evidence figcaption span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.cx-deployment__evidence figcaption strong { max-width: 570px; color: #fff; font-family: var(--cx-display); font-size: 17px; font-weight: 550; line-height: 1.45; }
.cx-deployment__evidence .cx-deployment__flow { grid-template-columns: 1fr 74px 1.25fr; padding: 18px; border-radius: 20px; }
.cx-deployment__evidence .cx-deploy-arrow { min-height: auto; padding: 0; grid-template-columns: 1fr; justify-items: center; }
.cx-deployment__evidence .cx-deploy-arrow i { width: 100%; height: 1px; background: linear-gradient(90deg,transparent,var(--cx-violet),var(--cx-cyan),transparent); }
.cx-deployment__evidence .cx-deploy-arrow i::after { left: 50%; top: -3px; }
.cx-deployment__evidence .cx-deploy-arrow b { text-align: center; }

.cx-industry-stage { position: relative; min-height: 610px; margin-top: 65px; overflow: hidden; background: #11182b; border-radius: 30px; box-shadow: 0 35px 90px rgba(15,23,42,.18); }
.cx-industry-stage > img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center; filter: saturate(.68) contrast(1.09) brightness(.75); }
.cx-industry-stage__wash { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,8,23,.89),rgba(5,8,23,.28) 63%,rgba(5,8,23,.68)),linear-gradient(180deg,transparent 40%,rgba(5,8,23,.7)); }
.cx-industry-stage__labels { position: absolute; inset: auto 35px 35px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cx-industry-stage__labels article { min-height: 145px; padding: 20px; color: #fff; background: rgba(5,8,23,.69); border: 1px solid rgba(255,255,255,.16); border-radius: 15px; backdrop-filter: blur(15px); }
.cx-industry-stage__labels span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; }
.cx-industry-stage__labels strong { display: block; margin: 30px 0 7px; font-family: var(--cx-display); font-size: 15px; }
.cx-industry-stage__labels small { color: #aab5cc; font-family: var(--cx-product); font-size: 9px; line-height: 1.5; }

.cx-final__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 64% center; filter: saturate(.52) contrast(1.15) brightness(.45); }
.cx-final__shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%,rgba(5,8,23,.28),rgba(5,8,23,.88)),linear-gradient(180deg,rgba(5,8,23,.2),#050817); }
.cx-final h2 em { color: #d7d9ff; font-style: normal; }

/* Theme-resistant contrast for every heading rendered on a dark surface. */
.cx-site .cx-proof__copy h2,
.cx-site .cx-product-proof .cx-section-heading h2,
.cx-site .cx-duality .cx-section-heading h2,
.cx-site .cx-orchestration .cx-section-heading h2,
.cx-site .cx-operators__copy h2,
.cx-site .cx-deployment__copy h2,
.cx-site .cx-final h2,
.cx-site .cx-duality__column--system h3 { color: #fff; }

@media (max-width: 1180px) {
  .cx-hero-media { left: 33%; }
  .cx-hero--arrival .cx-hero__copy { max-width: 700px; }
  .cx-product-story { grid-template-columns: .65fr 1.35fr; padding-inline: 38px; }
  .cx-product-canvas { min-height: 480px; }
  .cx-deployment__evidence .cx-deployment__flow { grid-template-columns: 1fr; }
  .cx-deployment__evidence .cx-deploy-arrow { min-height: 55px; }
  .cx-deployment__evidence .cx-deploy-arrow i { width: 1px; height: 100%; background: linear-gradient(180deg,transparent,var(--cx-violet),var(--cx-cyan),transparent); }
}
@media (max-width: 980px) {
  .cx-hero--arrival { min-height: 1210px; }
  .cx-hero-media { inset: 47% 0 0 0; }
  .cx-hero--arrival::after { background: linear-gradient(180deg,#050817 0%,rgba(5,8,23,.94) 40%,rgba(5,8,23,.24) 70%,#050817 100%); }
  .cx-hero-media__caption { display: none; }
  .cx-lifecycle-card--over-media { top: auto; left: 28px; right: auto; bottom: 78px; width: 430px; }
  .cx-hero-proof { max-width: 620px; }
  .cx-proof__mosaic { min-height: 720px; grid-template-columns: 1fr .55fr; }
  .cx-product-story-tabs { grid-template-columns: 1fr; }
  .cx-product-story { grid-template-columns: 1fr; gap: 35px; }
  .cx-product-story__copy { max-width: 680px; }
  .cx-product-canvas { min-height: 590px; }
  .cx-product-focus { width: min(390px,52%); }
  .cx-microbooking-vehicle { grid-template-columns: 1fr; }
  .cx-industry-stage__labels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .cx-hero--arrival { min-height: 1160px; padding-bottom: 70px; }
  .cx-hero-media { inset: 53% 0 0; }
  .cx-hero-media > img { object-position: 67% center; }
  .cx-hero-media__route { display: none; }
  .cx-hero-proof { display: grid; grid-template-columns: 8px 1fr; line-height: 1.5; }
  .cx-hero-proof b { grid-column: 2; padding: 0; border: 0; }
  .cx-lifecycle-card--over-media { left: 20px; right: 20px; bottom: 25px; width: auto; }
  .cx-proof__mosaic { min-height: 690px; grid-template-columns: 1fr; grid-template-rows: 1.3fr .7fr; }
  .cx-proof-photo figcaption { left: 18px; right: 18px; bottom: 18px; }
  .cx-proof__mosaic .cx-proof__signal { left: 20px; top: 20px; }
  .cx-product-proof--stories { padding-bottom: 105px; }
  .cx-product-story-tabs { margin-top: 42px; }
  .cx-product-story { min-height: auto; padding: 36px 18px 44px; border-radius: 21px; }
  .cx-product-story__copy h3 { font-size: 38px; }
  .cx-product-canvas { min-height: 515px; }
  .cx-product-screen { inset: 10px 0 125px; transform: none; border-radius: 14px; }
  .cx-product-focus { right: 8px; left: 8px; bottom: 0; width: auto; min-height: 245px; transform: none; }
  .cx-product-focus__viewport { min-height: 115px; }
  .cx-microbooking-vehicle { padding: 22px 18px; }
  .cx-deployment__evidence > figure { min-height: 500px; }
  .cx-industry-stage { min-height: 760px; margin-top: 42px; border-radius: 20px; }
  .cx-industry-stage > img { min-height: 760px; }
  .cx-industry-stage__labels { inset: auto 14px 14px; grid-template-columns: 1fr; }
  .cx-industry-stage__labels article { min-height: 100px; }
  .cx-industry-stage__labels strong { margin-top: 15px; }
  .cx-final h2 { font-size: 54px; }
}

/* ===== CharterX Experience v1.3 category-arrival system ===== */

/* Media focal points are configured per slot in WordPress. */
[data-cx-visual-frame] img[data-cx-visual],
.cx-operators__visual img[data-cx-visual],
.cx-final img[data-cx-visual] {
  object-position: var(--cx-media-x, 50%) var(--cx-media-y, 50%) !important;
}

/* Hero: richer evidence, cleaner proportions, and a legible passenger field. */
.cx-lifecycle-card--over-media {
  top: 150px;
  width: min(390px, 29vw);
  border-radius: 18px;
}
.cx-lifecycle-card__head { padding: 17px 20px; }
.cx-lifecycle-card__head img { width: 105px; }
.cx-lifecycle-card__head span { padding: 7px 9px; font-size: 8px; }
.cx-lifecycle-card__body { padding: 19px 20px 20px; }
.cx-lifecycle-card__summary > small { font-size: 9px; letter-spacing: .09em; }
.cx-lifecycle-card__summary > strong { margin-top: 4px; font-size: 17px; }
.cx-stage-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}
.cx-stage-metrics span { min-width: 0; }
.cx-stage-metrics small {
  color: #94a3b8;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .08em;
}
.cx-stage-metrics b {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #334155;
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cx-lifecycle { margin-top: 18px; }
.cx-quote-shell { width: min(100%, 930px); }
.cx-quote { grid-template-columns: 1.3fr 1.3fr 1fr .9fr minmax(205px, auto); }
.cx-quote label:nth-of-type(4) { min-width: 112px; }

/* Operating proof: compact, editorial, and honest about the image role. */
.cx-proof { min-height: 680px; }
.cx-proof__image { min-height: 680px; }
.cx-proof__copy { padding: 80px clamp(42px, 6vw, 96px); }
.cx-proof__mosaic { grid-template-columns: 1.2fr .8fr; }
.cx-proof-photo--primary > img,
.cx-proof-photo--secondary > img { object-position: var(--cx-media-x, 50%) var(--cx-media-y, 50%) !important; }

/* Global vertical rhythm. Large gaps are reserved for actual cinematic moments. */
.cx-problem,
.cx-platform,
.cx-orchestration,
.cx-deployment,
.cx-verticals { padding-top: 108px; padding-bottom: 108px; }
.cx-product-proof { padding-top: 112px; padding-bottom: 122px; }
.cx-operators__copy { padding-top: 92px; padding-bottom: 92px; }
.cx-final { min-height: 720px; padding-top: 98px; padding-bottom: 98px; }

/* One request fracturing into decisions, then reconnecting through CharterX. */
.cx-problem { background: #f7f9fc; }
.cx-fracture-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(420px, 1.55fr) minmax(220px, .73fr);
  gap: 28px;
  align-items: stretch;
  max-width: var(--cx-max);
  margin: 58px auto 0;
  padding: 36px;
  color: #0f172a;
  background: #fff;
  border: 1px solid #dfe6ef;
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(15,23,42,.1);
  overflow: hidden;
}
.cx-fracture-system::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(79,70,229,.08), transparent 32%), linear-gradient(90deg, transparent 0 22%, rgba(79,70,229,.035) 22% 78%, transparent 78%);
}
.cx-fracture-request,
.cx-fracture-outcome,
.cx-fracture-streams { position: relative; z-index: 2; }
.cx-fracture-request,
.cx-fracture-outcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 27px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.cx-fracture-request { background: #f8fafc; }
.cx-fracture-request > span,
.cx-fracture-outcome > span {
  color: #64748b;
  font-family: var(--cx-product);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.cx-fracture-request > strong,
.cx-fracture-outcome > strong {
  margin-top: 13px;
  font-family: var(--cx-display);
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.18;
}
.cx-fracture-request > div { display: grid; gap: 8px; margin-top: 28px; }
.cx-fracture-request small { color: #64748b; font-family: var(--cx-product); font-size: 10px; }
.cx-fracture-streams { display: grid; gap: 11px; }
.cx-fracture-streams article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 102px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15,23,42,.045);
}
.cx-fracture-streams article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #4f46e5;
  background: #eef2ff;
  border-radius: 9px;
  font-family: var(--cx-product);
  font-size: 9px;
  font-weight: 800;
}
.cx-fracture-streams strong { display: block; font-family: var(--cx-display); font-size: 17px; }
.cx-fracture-streams small { display: block; margin-top: 4px; color: #64748b; font-family: var(--cx-product); font-size: 10px; }
.cx-fracture-streams article > b { color: #475569; font-family: var(--cx-product); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.cx-fracture-outcome {
  color: #fff;
  background: radial-gradient(circle at 80% 20%, rgba(53,200,255,.2), transparent 35%), linear-gradient(145deg, #101739, #080c1d);
  border-color: rgba(112,101,255,.35);
}
.cx-fracture-outcome img { width: 46px; margin-bottom: 25px; }
.cx-fracture-outcome > span { color: var(--cx-cyan); }
.cx-fracture-outcome > small { margin-top: 18px; color: #aab5cc; font-family: var(--cx-product); font-size: 10px; line-height: 1.6; }
.cx-intelligent-thread {
  position: absolute;
  z-index: 3;
  left: 18%;
  right: 16%;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cx-violet), var(--cx-cyan), transparent);
}
.cx-intelligent-thread i { width: 7px; height: 7px; background: #fff; border: 2px solid #6556ff; border-radius: 50%; box-shadow: 0 0 0 4px rgba(101,86,255,.08); }
.cx-intelligent-thread span { position: absolute; right: 0; bottom: 8px; color: #64748b; font-family: var(--cx-product); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* The signature system moment: one movement, three genuinely different realities. */
.cx-platform { background: #f2f5fa; }
.cx-plane-tabs { margin-top: 50px; }
.cx-plane-shell {
  overflow: hidden;
  min-height: 680px;
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(15,23,42,.14);
  font-family: var(--cx-product);
  transition: opacity .22s ease, transform .22s ease, border-color .3s ease;
}
.cx-plane-shell.is-switching { opacity: .38; transform: translateY(4px); }
.cx-plane-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px 26px;
  background: rgba(248,250,252,.92);
  border-bottom: 1px solid #e2e8f0;
}
.cx-plane-identity { display: flex; align-items: center; gap: 17px; }
.cx-plane-identity > img { width: 96px; }
.cx-plane-identity > div { padding-left: 17px; border-left: 1px solid #dbe3ee; }
.cx-plane-identity small,
.cx-plane-identity strong { display: block; }
.cx-plane-identity small { color: #94a3b8; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cx-plane-identity strong { margin-top: 3px; color: #334155; font-size: 12px; }
.cx-plane-view-status {
  padding: 8px 11px;
  color: #4338ca;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cx-plane-panels { min-height: 515px; }
.cx-plane-panel[hidden] { display: none !important; }
.cx-plane-panel {
  min-height: 515px;
  padding: 30px;
  animation: cx-plane-enter .34s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cx-plane-enter { from { opacity: 0; transform: translateY(7px); } }
.cx-plane-panel__heading > span,
.cx-plane-panel__heading > strong,
.cx-plane-panel__heading > small { display: block; }
.cx-plane-panel__heading > span { color: #4f46e5; font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.cx-plane-panel__heading > strong { margin-top: 7px; color: #0f172a; font-family: var(--cx-display); font-size: 25px; letter-spacing: -.035em; }
.cx-plane-panel__heading > small { margin-top: 5px; color: #64748b; font-size: 10px; }

.cx-plane-panel--customer { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 24px; background: linear-gradient(135deg, #fff, #f7f9fd); }
.cx-plane-panel--customer.is-active { display: grid; }
.cx-customer-journey,
.cx-customer-next { border: 1px solid #e2e8f0; border-radius: 16px; }
.cx-customer-journey { padding: 26px; background: #fff; }
.cx-customer-route { display: grid; grid-template-columns: 1fr minmax(90px, .7fr) 1fr; align-items: center; gap: 18px; margin-top: 34px; padding: 22px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; }
.cx-customer-route > div:last-child { text-align: right; }
.cx-customer-route span,
.cx-customer-route strong,
.cx-customer-route small { display: block; }
.cx-customer-route span { color: #94a3b8; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cx-customer-route strong { margin-top: 5px; font-family: var(--cx-display); font-size: 17px; }
.cx-customer-route small { margin-top: 4px; color: #64748b; font-size: 9px; }
.cx-customer-route > i { position: relative; height: 2px; background: #cbd5e1; }
.cx-customer-route > i::before,
.cx-customer-route > i::after { content: ''; position: absolute; top: -4px; width: 10px; height: 10px; background: #fff; border: 3px solid #4f46e5; border-radius: 50%; }
.cx-customer-route > i::before { left: 0; }
.cx-customer-route > i::after { right: 0; border-color: #8b43ff; }
.cx-customer-route > i b { position: absolute; left: 8px; right: 8px; height: 2px; background: linear-gradient(90deg,#4f46e5,#35c8ff,#8b43ff); }
.cx-customer-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 26px; }
.cx-customer-progress article { position: relative; padding: 15px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; }
.cx-customer-progress i { display: grid; place-items: center; width: 24px; height: 24px; color: #94a3b8; border: 2px solid #cbd5e1; border-radius: 50%; font-size: 8px; font-style: normal; }
.cx-customer-progress span,
.cx-customer-progress strong { display: block; }
.cx-customer-progress span { margin-top: 18px; color: #94a3b8; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.cx-customer-progress strong { margin-top: 4px; color: #334155; font-size: 10px; }
.cx-customer-progress .is-complete i { color: #fff; background: #4f46e5; border-color: #4f46e5; }
.cx-customer-progress .is-active { border-color: #a5b4fc; box-shadow: inset 0 0 0 1px #c7d2fe; }
.cx-customer-progress .is-active i { color: #4f46e5; border-color: #4f46e5; }
.cx-customer-next { display: flex; flex-direction: column; padding: 25px; background: #f8fafc; }
.cx-customer-next > span { color: #4f46e5; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cx-customer-next > strong { margin-top: 10px; font-family: var(--cx-display); font-size: 24px; letter-spacing: -.035em; }
.cx-customer-next > p { margin: 12px 0 24px; color: #64748b; font-size: 11px; line-height: 1.65; }
.cx-vehicle-summary { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 15px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; }
.cx-vehicle-summary > i { display: grid; place-items: center; width: 44px; height: 44px; color: #4338ca; background: #eef2ff; border-radius: 10px; font-style: normal; font-weight: 800; }
.cx-vehicle-summary small,
.cx-vehicle-summary strong { display: block; }
.cx-vehicle-summary small { color: #64748b; font-size: 8px; }
.cx-vehicle-summary strong { margin-top: 3px; font-size: 10px; }
.cx-vehicle-summary > b { color: #047857; font-size: 9px; }
.cx-customer-next button,
.cx-opportunity-detail button,
.cx-control-exception button { margin-top: auto; padding: 13px 15px; color: #fff; background: #4f46e5; border: 0; border-radius: 10px; cursor: pointer; font-size: 10px; font-weight: 750; text-align: left; }

.cx-plane-panel--operator { grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 24px; background: linear-gradient(135deg, #f4fbfd, #f7f8ff); }
.cx-plane-panel--operator.is-active { display: grid; }
.cx-opportunity-list,
.cx-opportunity-detail { padding: 25px; background: #fff; border: 1px solid #dce7ee; border-radius: 16px; }
.cx-opportunity-list > article { display: grid; grid-template-columns: 38px 1fr auto; gap: 13px; align-items: center; margin-top: 11px; padding: 14px; border: 1px solid #e2e8f0; border-radius: 12px; }
.cx-opportunity-list > article.is-selected { border-color: #7dd3fc; box-shadow: inset 0 0 0 1px rgba(53,200,255,.28), 0 12px 28px rgba(14,116,144,.08); }
.cx-opportunity-list article > i { display: grid; place-items: center; width: 34px; height: 34px; color: #0369a1; background: #ecfeff; border-radius: 9px; font-size: 9px; font-style: normal; font-weight: 800; }
.cx-opportunity-list article span,
.cx-opportunity-list article strong,
.cx-opportunity-list article small { display: block; }
.cx-opportunity-list article span { color: #64748b; font-size: 8px; }
.cx-opportunity-list article strong { margin-top: 3px; color: #0f172a; font-size: 11px; }
.cx-opportunity-list article small { margin-top: 3px; color: #94a3b8; font-size: 8px; }
.cx-opportunity-list article > b { padding: 7px 9px; color: #0369a1; background: #ecfeff; border-radius: 999px; font-size: 8px; }
.cx-opportunity-list article > b.is-covered { color: #047857; background: #ecfdf5; }
.cx-opportunity-detail { display: flex; flex-direction: column; }
.cx-opportunity-detail > span { color: #0891b2; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cx-opportunity-detail > strong { margin-top: 9px; font-family: var(--cx-display); font-size: 24px; }
.cx-opportunity-detail dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.cx-opportunity-detail dl div { padding: 12px; background: #f8fafc; border-radius: 10px; }
.cx-opportunity-detail dt { color: #94a3b8; font-size: 7px; text-transform: uppercase; }
.cx-opportunity-detail dd { margin: 5px 0 0; color: #334155; font-size: 10px; font-weight: 650; }
.cx-match-score { padding: 15px; background: #f0fdfa; border: 1px solid #ccfbf1; border-radius: 12px; }
.cx-match-score > span { color: #0f766e; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.cx-match-score > strong { float: right; color: #0f766e; font-size: 16px; }
.cx-match-score > i { display: block; clear: both; height: 5px; margin-top: 11px; overflow: hidden; background: #ccfbf1; border-radius: 99px; }
.cx-match-score > i b { display: block; width: 94%; height: 100%; background: linear-gradient(90deg,#14b8a6,#35c8ff); }
.cx-match-score > small { display: block; margin-top: 9px; color: #47726e; font-size: 8px; line-height: 1.5; }

.cx-plane-panel--control { color: #e7ecfa; background: radial-gradient(circle at 75% 15%, rgba(79,70,229,.2), transparent 28%), #0a0f23; }
.cx-plane-panel--control.is-active { display: block; }
.cx-plane-shell[data-cx-plane="control"] { border-color: #273052; }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-shell__bar { background: #0d132a; border-color: #273052; }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-identity > img { filter: brightness(0) invert(1); }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-identity strong { color: #dce3f5; }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-identity > div { border-color: #273052; }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-view-status { color: #c4b5fd; background: rgba(99,102,241,.15); border-color: rgba(165,180,252,.3); }
.cx-control-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.cx-control-kpis article { padding: 14px 16px; background: rgba(255,255,255,.045); border: 1px solid #273052; border-radius: 12px; }
.cx-control-kpis span,
.cx-control-kpis strong,
.cx-control-kpis small { display: block; }
.cx-control-kpis span { color: #7f8ba6; font-size: 7px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.cx-control-kpis strong { margin-top: 5px; color: #fff; font-family: var(--cx-display); font-size: 20px; }
.cx-control-kpis small { margin-top: 2px; color: #8793ac; font-size: 8px; }
.cx-control-kpis .has-alert { border-color: rgba(251,191,36,.35); }
.cx-control-kpis .has-alert strong { color: #fbbf24; }
.cx-control-workspace { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 18px; margin-top: 18px; }
.cx-coverage-matrix,
.cx-control-exception { padding: 21px; background: rgba(7,10,25,.58); border: 1px solid #273052; border-radius: 14px; }
.cx-plane-panel--control .cx-plane-panel__heading > span { color: var(--cx-cyan); }
.cx-plane-panel--control .cx-plane-panel__heading > strong { color: #fff; }
.cx-plane-panel--control .cx-plane-panel__heading > small { color: #7f8ba6; }
.cx-coverage-head,
.cx-coverage-matrix > article { display: grid; grid-template-columns: 52px 1.35fr 1fr .85fr; gap: 10px; align-items: center; }
.cx-coverage-head { margin-top: 20px; padding: 0 12px 8px; color: #64718d; font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cx-coverage-matrix > article { min-height: 47px; padding: 8px 12px; color: #aeb9d0; border-top: 1px solid #202845; font-size: 9px; }
.cx-coverage-matrix > article b { color: #fff; }
.cx-coverage-matrix > article i { justify-self: start; padding: 6px 8px; color: #fbbf24; background: rgba(251,191,36,.1); border-radius: 999px; font-size: 7px; font-style: normal; }
.cx-coverage-matrix > article i.is-covered { color: #34d399; background: rgba(52,211,153,.1); }
.cx-coverage-matrix > article i.is-offer { color: #67e8f9; background: rgba(103,232,249,.1); }
.cx-coverage-matrix > article.has-alert { background: rgba(251,191,36,.035); }
.cx-control-exception { display: flex; flex-direction: column; }
.cx-control-exception > span { color: #fbbf24; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cx-control-exception > strong { margin-top: 10px; color: #fff; font-family: var(--cx-display); font-size: 23px; line-height: 1.12; }
.cx-control-exception > p { margin: 13px 0 20px; color: #8f9bb4; font-size: 9px; line-height: 1.65; }
.cx-control-exception > div { padding: 13px; background: rgba(255,255,255,.045); border-radius: 10px; }
.cx-control-exception small,
.cx-control-exception b { display: block; }
.cx-control-exception small { color: #64718d; font-size: 7px; text-transform: uppercase; }
.cx-control-exception b { margin-top: 5px; color: #dce4f6; font-size: 9px; }

.cx-plane-thread {
  display: grid;
  grid-template-columns: 145px repeat(6, 1fr);
  gap: 0;
  align-items: center;
  min-height: 72px;
  padding: 14px 26px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.cx-plane-shell[data-cx-plane="control"] .cx-plane-thread { background: #0d132a; border-color: #273052; }
.cx-plane-thread > span { color: #64748b; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cx-plane-thread > div { position: relative; display: grid; justify-items: center; gap: 6px; color: #94a3b8; font-size: 8px; }
.cx-plane-thread > div:not(:last-child)::after { content: ''; position: absolute; z-index: 0; top: 5px; left: calc(50% + 7px); right: calc(-50% + 7px); height: 1px; background: #dbe3ee; }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-thread > div:not(:last-child)::after { background: #273052; }
.cx-plane-thread i { position: relative; z-index: 1; width: 11px; height: 11px; background: #fff; border: 3px solid #cbd5e1; border-radius: 50%; }
.cx-plane-shell[data-cx-plane="control"] .cx-plane-thread i { background: #0d132a; border-color: #3b4668; }
.cx-plane-thread i.is-active { border-color: #4f46e5; box-shadow: 0 0 0 4px rgba(79,70,229,.09); }
.cx-plane-thread b { font-weight: 650; }

/* Real product proof is an editorial sequence, not a second tab system. */
.cx-product-proof--editorial .cx-section-heading { max-width: 1000px; }
.cx-product-proof--editorial .cx-product-stories {
  display: grid;
  gap: 34px;
  max-width: var(--cx-max);
  min-height: 0;
  margin: 66px auto 0;
}
.cx-product-proof--editorial .cx-product-story {
  display: grid !important;
  grid-template-columns: minmax(270px, .52fr) minmax(0, 1.48fr);
  min-height: 570px;
  padding: 48px clamp(30px, 4vw, 62px);
  border-radius: 21px;
  animation: none;
}
.cx-product-proof--editorial .cx-product-story:nth-child(2) {
  grid-template-columns: minmax(0, 1.48fr) minmax(270px, .52fr);
  background: radial-gradient(circle at 20% 30%, rgba(35,177,206,.15), transparent 38%), rgba(255,255,255,.024);
}
.cx-product-proof--editorial .cx-product-story:nth-child(2) .cx-product-story__copy { order: 2; }
.cx-product-proof--editorial .cx-product-story:nth-child(2) .cx-product-canvas { order: 1; }
.cx-product-proof--editorial .cx-product-story:nth-child(3) { background: radial-gradient(circle at 72% 24%, rgba(139,67,255,.18), transparent 38%), rgba(255,255,255,.024); }
.cx-product-proof--editorial .cx-product-canvas { min-height: 460px; }
.cx-product-proof--editorial .cx-product-story__copy h3 { font-size: clamp(34px, 3.4vw, 52px); }

/* Intelligence is embedded in the actual orchestration story. */
.cx-intelligence-rail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  margin-top: 52px;
  padding: 25px 28px;
  background: linear-gradient(110deg, rgba(255,255,255,.05), rgba(79,70,229,.06));
  border: 1px solid var(--cx-line);
  border-radius: 16px;
}
.cx-intelligence-rail > div span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.cx-intelligence-rail > div strong { display: block; margin-top: 7px; color: #fff; font-family: var(--cx-display); font-size: 18px; font-weight: 550; }
.cx-intelligence-rail ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 0; padding: 0; list-style: none; }
.cx-intelligence-rail li { display: flex; align-items: center; gap: 9px; min-height: 36px; padding: 8px 11px; color: #aab5cc; background: rgba(5,8,23,.42); border: 1px solid rgba(153,170,210,.15); border-radius: 9px; font-family: var(--cx-product); font-size: 9px; }
.cx-intelligence-rail li i { width: 6px; height: 6px; background: linear-gradient(135deg,var(--cx-cyan),var(--cx-violet)); border-radius: 50%; box-shadow: 0 0 10px rgba(53,200,255,.65); }

/* Micro-Booking vehicle is neutral by default and becomes real when a cutout is supplied. */
.cx-microbooking-vehicle { grid-template-columns: minmax(300px, .9fr) minmax(300px, 1.1fr); padding: 28px 34px; }
.cx-microbooking-vehicle__asset { position: relative; display: grid; place-items: center; min-height: 180px; }
.cx-microbooking-vehicle__asset > img { position: relative; z-index: 2; display: block; width: 100%; max-height: 210px; object-fit: contain; }
.cx-vehicle-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 8px; color: #7f8ba5; text-align: center; }
[data-cx-has-visual="true"] > .cx-vehicle-placeholder { display: none; }
.cx-coach-silhouette { position: relative; width: min(390px, 90%); height: 86px; margin-bottom: 9px; background: linear-gradient(180deg,#27304a,#12182b); border: 1px solid #3a4565; border-radius: 30px 13px 10px 10px; box-shadow: 0 20px 32px rgba(0,0,0,.3); }
.cx-coach-silhouette::before { content: ''; position: absolute; inset: 13px 16px 35px 22px; background: repeating-linear-gradient(90deg,#0a1021 0 28px,#303a57 28px 31px); border-radius: 14px 8px 4px 4px; }
.cx-coach-silhouette i { position: absolute; bottom: -12px; width: 30px; height: 30px; background: #090d19; border: 6px solid #303a52; border-radius: 50%; }
.cx-coach-silhouette i:first-child { left: 55px; }
.cx-coach-silhouette i:last-child { right: 55px; }
.cx-vehicle-placeholder > span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .11em; }
.cx-vehicle-placeholder > small { color: #7f8ba5; font-family: var(--cx-product); font-size: 8px; }

/* Intentional photographic briefs replace misleading repeated fallback images. */
.cx-photo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 42px;
  color: #8c98b2;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(80,70,229,.2), transparent 30%), repeating-linear-gradient(135deg,#0c1226,#0c1226 18px,#0a0f21 18px,#0a0f21 36px);
}
.cx-photo-placeholder span { color: var(--cx-cyan); font-family: var(--cx-product); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.cx-photo-placeholder strong { max-width: 540px; color: #e2e8f5; font-family: var(--cx-display); font-size: clamp(21px, 2.5vw, 34px); font-weight: 540; }
.cx-photo-placeholder p { max-width: 570px; margin: 0; color: #8996b0; font-family: var(--cx-product); font-size: 10px; line-height: 1.65; }
[data-cx-has-visual="true"] > .cx-photo-placeholder { display: none; }
.cx-operators__visual > img,
.cx-industry-stage > img,
.cx-final__media { position: relative; z-index: 1; }
.cx-photo-placeholder--final { z-index: 0; }
.cx-operators__visual-shade,
.cx-network-card,
.cx-industry-stage__wash,
.cx-industry-stage__labels,
.cx-final__shade,
.cx-final__mark,
.cx-final__content { z-index: 2; }

@media (max-width: 1180px) {
  .cx-lifecycle-card--over-media { width: min(370px, 31vw); }
  .cx-fracture-system { grid-template-columns: .7fr 1.5fr .8fr; padding: 28px; gap: 18px; }
  .cx-fracture-streams article { grid-template-columns: 32px 1fr; }
  .cx-fracture-streams article > b { grid-column: 2; }
  .cx-plane-panel--customer,
  .cx-plane-panel--operator { grid-template-columns: minmax(0, 1fr) minmax(270px, .58fr); }
  .cx-control-workspace { grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); }
  .cx-product-proof--editorial .cx-product-story { grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr); }
  .cx-product-proof--editorial .cx-product-story:nth-child(2) { grid-template-columns: minmax(0, 1.42fr) minmax(240px, .58fr); }
}

@media (max-width: 980px) {
  .cx-problem,
  .cx-platform,
  .cx-orchestration,
  .cx-deployment,
  .cx-verticals,
  .cx-product-proof { padding-top: 88px; padding-bottom: 88px; }
  .cx-lifecycle-card--over-media { width: 430px; }
  .cx-fracture-system { grid-template-columns: 1fr; }
  .cx-fracture-request,
  .cx-fracture-outcome { min-height: 220px; }
  .cx-intelligent-thread { top: 17%; bottom: 17%; left: 16px; right: auto; width: 1px; height: auto; flex-direction: column; }
  .cx-intelligent-thread span { left: 9px; right: auto; bottom: 0; width: 130px; transform: rotate(-90deg); transform-origin: left bottom; }
  .cx-plane-panel--customer.is-active,
  .cx-plane-panel--operator.is-active { grid-template-columns: 1fr; }
  .cx-control-kpis { grid-template-columns: 1fr 1fr; }
  .cx-control-workspace { grid-template-columns: 1fr; }
  .cx-plane-thread { grid-template-columns: 1fr repeat(6, 1fr); overflow-x: auto; }
  .cx-plane-thread > span { min-width: 120px; }
  .cx-product-proof--editorial .cx-product-story,
  .cx-product-proof--editorial .cx-product-story:nth-child(2) { grid-template-columns: 1fr; gap: 35px; }
  .cx-product-proof--editorial .cx-product-story:nth-child(2) .cx-product-story__copy,
  .cx-product-proof--editorial .cx-product-story:nth-child(2) .cx-product-canvas { order: initial; }
  .cx-intelligence-rail { grid-template-columns: 1fr; gap: 22px; }
  .cx-microbooking-vehicle { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .cx-lifecycle-card--over-media { left: 20px; right: 20px; width: auto; }
  .cx-stage-metrics { gap: 7px; }
  .cx-stage-metrics b { font-size: 9px; }
  .cx-quote { grid-template-columns: 1fr; }
  .cx-quote label:nth-of-type(4) { min-width: 0; }
  .cx-proof { min-height: auto; }
  .cx-proof__copy { padding: 64px 22px; }
  .cx-proof__mosaic { min-height: 620px; }
  .cx-problem,
  .cx-platform,
  .cx-orchestration,
  .cx-deployment,
  .cx-verticals,
  .cx-product-proof { padding-top: 72px; padding-bottom: 72px; }
  .cx-fracture-system { margin-top: 42px; padding: 16px; border-radius: 17px; }
  .cx-fracture-request,
  .cx-fracture-outcome { min-height: 200px; padding: 22px; }
  .cx-fracture-streams article { grid-template-columns: 32px 1fr; padding: 15px; }
  .cx-fracture-streams article > b { grid-column: 2; }
  .cx-plane-tabs { display: flex; width: 100%; gap: 4px; overflow-x: auto; scroll-snap-type: x proximity; }
  .cx-plane-tabs button { flex: 0 0 auto; min-width: 155px; padding-inline: 14px; scroll-snap-align: start; }
  .cx-plane-shell { border-radius: 17px; }
  .cx-plane-shell__bar { padding: 14px 16px; }
  .cx-plane-identity > img { width: 72px; }
  .cx-plane-identity > div { padding-left: 11px; }
  .cx-plane-view-status { display: none; }
  .cx-plane-panel { padding: 16px; }
  .cx-customer-journey,
  .cx-customer-next,
  .cx-opportunity-list,
  .cx-opportunity-detail { padding: 18px; }
  .cx-customer-route { grid-template-columns: 1fr; }
  .cx-customer-route > div:last-child { text-align: left; }
  .cx-customer-route > i { width: 2px; height: 45px; margin-left: 6px; }
  .cx-customer-route > i::before { top: 0; left: -4px; }
  .cx-customer-route > i::after { top: auto; right: auto; bottom: 0; left: -4px; }
  .cx-customer-route > i b { inset: 8px auto 8px 0; width: 2px; height: auto; background: linear-gradient(180deg,#4f46e5,#35c8ff,#8b43ff); }
  .cx-customer-progress { grid-template-columns: 1fr 1fr; }
  .cx-opportunity-list > article { grid-template-columns: 34px 1fr; }
  .cx-opportunity-list article > b { grid-column: 2; justify-self: start; }
  .cx-opportunity-detail dl { grid-template-columns: 1fr; }
  .cx-control-kpis { grid-template-columns: 1fr 1fr; }
  .cx-control-workspace { display: block; }
  .cx-control-exception { margin-top: 14px; }
  .cx-coverage-head { display: none; }
  .cx-coverage-matrix > article { grid-template-columns: 34px 1fr; gap: 5px 10px; padding-block: 12px; }
  .cx-coverage-matrix > article span:nth-of-type(2),
  .cx-coverage-matrix > article i { grid-column: 2; }
  .cx-plane-thread { grid-template-columns: repeat(6, 90px); padding-inline: 15px; }
  .cx-plane-thread > span { display: none; }
  .cx-product-proof--editorial .cx-product-stories { margin-top: 44px; gap: 20px; }
  .cx-product-proof--editorial .cx-product-story { min-height: auto; padding: 34px 18px 42px; border-radius: 18px; }
  .cx-product-proof--editorial .cx-product-canvas { min-height: 515px; }
  .cx-intelligence-rail { margin-top: 40px; padding: 21px; }
  .cx-intelligence-rail ul { grid-template-columns: 1fr; }
  .cx-microbooking-vehicle { padding: 22px 18px; }
  .cx-coach-silhouette { height: 72px; }
  .cx-photo-placeholder { padding: 28px 20px; }
}


/* ===== CharterX Experience v1.4 connected operating-system pass ===== */
.cx-hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, #35c8ff 0%, #6556ff 48%, #b85cff 78%, #d64edc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 42px rgba(101, 86, 255, .12);
}

.cx-hero-media > img {
  animation: cx-hero-drift 18s ease-in-out infinite alternate;
  transform-origin: 62% 50%;
}
@keyframes cx-hero-drift {
  from { transform: scale(1.015) translate3d(0,0,0); }
  to { transform: scale(1.055) translate3d(-.6%, -.3%, 0); }
}

.cx-hero-media__route i { animation: cx-route-node 2.8s ease-in-out infinite; }
.cx-hero-media__route i:nth-child(2) { animation-delay: .85s; }
.cx-hero-media__route i:nth-child(3) { animation-delay: 1.7s; }
@keyframes cx-route-node {
  0%, 100% { transform: scale(.86); box-shadow: 0 0 12px rgba(53,200,255,.42); }
  50% { transform: scale(1.18); box-shadow: 0 0 28px rgba(53,200,255,.95); }
}

.cx-lifecycle-card--over-media {
  box-shadow: 0 34px 100px rgba(0,0,0,.34), 0 0 0 1px rgba(53,200,255,.06), 0 0 70px rgba(79,70,229,.08);
}
.cx-quote-shell {
  padding: 13px;
  background: linear-gradient(120deg, rgba(8,12,31,.74), rgba(15,22,48,.48));
  border: 1px solid rgba(173,190,226,.16);
  border-radius: 19px;
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(18px) saturate(145%);
}
.cx-quote-shell__label { padding: 0 7px 10px; }
.cx-quote { box-shadow: 0 12px 36px rgba(0,0,0,.22); }

/* Persistent CX-2048 narrative spine. It appears after the hero and turns the page into one transaction story. */
.cx-movement-spine {
  position: fixed;
  z-index: 880;
  left: 50%;
  bottom: 20px;
  display: grid;
  grid-template-columns: 190px 112px minmax(0, 1fr);
  align-items: center;
  width: min(880px, calc(100vw - 56px));
  min-height: 70px;
  padding: 10px 12px 10px 16px;
  color: #dbe5f7;
  background: linear-gradient(115deg, rgba(5,8,23,.91), rgba(11,16,38,.86));
  border: 1px solid rgba(157,176,218,.22);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.38), 0 0 36px rgba(79,70,229,.08);
  backdrop-filter: blur(22px) saturate(145%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 18px, 0);
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s ease, visibility .3s ease;
}
.cx-movement-spine.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}
.cx-movement-spine__identity,
.cx-movement-spine__state { display: grid; gap: 4px; min-width: 0; }
.cx-movement-spine__identity { padding-right: 15px; border-right: 1px solid rgba(157,176,218,.17); }
.cx-movement-spine__identity span,
.cx-movement-spine__state small {
  color: #73809c;
  font-family: var(--cx-product);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cx-movement-spine__identity strong {
  overflow: hidden;
  color: #f6f8ff;
  font-family: var(--cx-display);
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cx-movement-spine__state { padding-left: 15px; }
.cx-movement-spine__state strong { color: var(--cx-cyan); font-family: var(--cx-display); font-size: 11px; font-weight: 650; }
.cx-movement-spine__steps { position: relative; display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); align-items: start; }
.cx-movement-spine__steps::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 8.5%;
  right: 8.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(53,200,255,.28), rgba(101,86,255,.34), rgba(139,67,255,.28));
}
.cx-movement-spine__steps button {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0 3px;
  color: #69758f;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--cx-product);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.1;
}
.cx-movement-spine__steps button i {
  width: 10px;
  height: 10px;
  background: #0d142d;
  border: 2px solid #4b5875;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(5,8,23,.82);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cx-movement-spine__steps button span { overflow: hidden; max-width: 78px; text-overflow: ellipsis; white-space: nowrap; }
.cx-movement-spine__steps button.is-active { color: #e5ebf9; }
.cx-movement-spine__steps button.is-active i {
  background: var(--cx-cyan);
  border-color: #b8efff;
  box-shadow: 0 0 0 4px rgba(5,8,23,.88), 0 0 18px rgba(53,200,255,.75);
  transform: scale(1.08);
}

/* Micro-Booking becomes a state transition rather than a static diagram. */
.cx-orbit.is-orchestrating .cx-orbit__request { animation: cx-request-enter .55s cubic-bezier(.2,.8,.2,1) both; }
.cx-orbit.is-orchestrating .cx-orbit__units article { animation: cx-unit-resolve .52s cubic-bezier(.2,.8,.2,1) both; }
.cx-orbit.is-orchestrating .cx-orbit__units article:nth-child(1) { animation-delay: .48s; }
.cx-orbit.is-orchestrating .cx-orbit__units article:nth-child(2) { animation-delay: .72s; }
.cx-orbit.is-orchestrating .cx-orbit__units article:nth-child(3) { animation-delay: .96s; }
.cx-orbit.is-orchestrating .cx-orbit__units article:nth-child(4) { animation-delay: 1.2s; }
.cx-orbit.is-orchestrating .cx-orbit__outcome { animation: cx-outcome-resolve .62s 1.62s cubic-bezier(.2,.8,.2,1) both; }
@keyframes cx-request-enter {
  from { opacity: .45; transform: translate3d(-18px,0,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
@keyframes cx-unit-resolve {
  0% { opacity: .3; transform: translate3d(-14px,0,0); border-color: rgba(169,182,213,.1); }
  70% { opacity: 1; transform: translate3d(3px,0,0); border-color: rgba(53,200,255,.34); box-shadow: 0 0 24px rgba(53,200,255,.08); }
  100% { opacity: 1; transform: translate3d(0,0,0); border-color: rgba(169,182,213,.15); box-shadow: none; }
}
@keyframes cx-outcome-resolve {
  from { opacity: .25; transform: translate3d(18px,0,0) scale(.97); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

/* Public fallbacks are finished representative states, never internal production notes. */
.cx-visual-placeholder,
.cx-photo-placeholder,
.cx-vehicle-placeholder { user-select: none; }
.cx-visual-placeholder span,
.cx-photo-placeholder span,
.cx-vehicle-placeholder > span { letter-spacing: .16em; }
.cx-visual-placeholder p,
.cx-photo-placeholder p { max-width: 520px; }
.cx-product-screen--placeholder .cx-visual-placeholder {
  background:
    radial-gradient(circle at 75% 28%, rgba(53,200,255,.12), transparent 24%),
    radial-gradient(circle at 36% 72%, rgba(101,86,255,.12), transparent 28%),
    linear-gradient(145deg,#f8fafc,#eef3f9);
}

.cx-photo-placeholder--final {
  background:
    radial-gradient(circle at 52% 42%, rgba(53,200,255,.11), transparent 17%),
    radial-gradient(circle at 67% 48%, rgba(139,67,255,.14), transparent 24%),
    linear-gradient(180deg, rgba(8,13,32,.2), rgba(5,8,23,.82)),
    repeating-linear-gradient(90deg, rgba(53,200,255,.035) 0 1px, transparent 1px 96px),
    #080d20;
}
.cx-photo-placeholder--final::before {
  content: '';
  position: absolute;
  left: 18%;
  top: 26%;
  width: 64%;
  height: 44%;
  border-top: 1px solid rgba(53,200,255,.24);
  border-right: 1px solid rgba(139,67,255,.28);
  border-radius: 0 80% 0 0;
  transform: rotate(4deg);
  box-shadow: 24px -12px 60px rgba(79,70,229,.06);
}
.cx-photo-placeholder--final::after {
  content: '';
  position: absolute;
  right: 22%;
  top: 47%;
  width: 10px;
  height: 10px;
  background: var(--cx-cyan);
  border: 3px solid #0a1024;
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(53,200,255,.75);
}

@media (max-width: 980px) {
  .cx-movement-spine { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cx-hero-media > img { animation: none !important; transform: scale(1.015); }
  .cx-movement-spine { transition: none; }
}


/* ===== CharterX Experience v1.4.1 responsive hero correction =====
   Keep the lifecycle card cinematic on desktop, but make it part of the
   document flow on tablet/mobile. This prevents top + bottom positioning
   from stretching the card to the height of the hero. */
@media (max-width: 980px) {
  .cx-hero--arrival {
    min-height: auto;
    padding-bottom: 76px;
  }

  .cx-hero--arrival .cx-lifecycle-card--over-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 520px);
    margin-top: 30px;
    transform: none !important;
  }

  .cx-hero--arrival .cx-quote-shell {
    margin-top: 24px;
  }

  .cx-hero--arrival .cx-hero-media {
    inset: 46% 0 0;
  }

  .cx-hero--arrival .cx-hero-proof {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .cx-hero--arrival {
    min-height: auto;
    padding: 118px 20px 62px;
  }

  .cx-hero--arrival .cx-hero-media {
    inset: 49% 0 0;
  }

  .cx-hero--arrival .cx-lifecycle-card--over-media {
    width: 100%;
    margin-top: 26px;
    border-radius: 16px;
  }

  .cx-hero--arrival .cx-lifecycle-card__head {
    padding: 14px 15px;
  }

  .cx-hero--arrival .cx-lifecycle-card__head img {
    width: 96px;
  }

  .cx-hero--arrival .cx-lifecycle-card__head span {
    padding: 5px 7px;
    font-size: 6.5px;
  }

  .cx-hero--arrival .cx-lifecycle-card__body {
    padding: 14px 15px 16px;
  }

  .cx-hero--arrival .cx-lifecycle-card__summary > small {
    font-size: 7px;
  }

  .cx-hero--arrival .cx-lifecycle-card__summary > strong {
    font-size: 15px;
  }

  .cx-hero--arrival .cx-stage-metrics {
    margin-top: 13px;
    padding-top: 12px;
    gap: 6px;
  }

  .cx-hero--arrival .cx-stage-metrics small {
    font-size: 6px;
  }

  .cx-hero--arrival .cx-stage-metrics b {
    font-size: 8px;
  }

  .cx-hero--arrival .cx-lifecycle {
    margin-top: 14px;
  }

  .cx-hero--arrival .cx-lifecycle button {
    gap: 7px;
  }

  .cx-hero--arrival .cx-lifecycle button > span {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .cx-hero--arrival .cx-lifecycle__rail {
    top: 6px;
  }

  .cx-hero--arrival .cx-quote-shell {
    margin-top: 20px;
  }
}
