.cb-explorer, .cb-explorer * { box-sizing: border-box; }
.cb-explorer {
  --explorer-ink: #e6edf9;
  --explorer-muted: #a7b8d0;
  --explorer-line: #233750;
  width: 100%;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #31465f;
  border-radius: 22px;
  color: var(--explorer-ink);
  background: radial-gradient(ellipse at 100% 0, #15364a65, transparent 55%), #091322;
  box-shadow: 0 28px 90px #02081460;
  font-family: var(--cb-display-font);
  text-align: left;
}
.cb-explorer :is(h2, h3, p) { margin: 0; }
.cb-explorer :is(button, a) { font: inherit; -webkit-tap-highlight-color: transparent; }
.cb-explorer a { color: var(--explorer-ink); text-decoration: none; }
.cb-explorer button { cursor: pointer; color: var(--explorer-ink); }
.cb-explorer svg { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cb-explorer :is(button, a):focus-visible { outline: 3px solid #86d9f4; outline-offset: 3px; }
.cb-explorer .cb-explorer__header { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 30px 34px 26px; border-bottom: 1px solid var(--explorer-line); background: transparent; }
.cb-explorer .cb-explorer__eyebrow { font-size: 12px; font-weight: 500; letter-spacing: .08em; line-height: 1.5; color: #96c9dc; }
.cb-explorer .cb-explorer__header h2 { margin: 8px 0 9px; color: var(--cb-display-ink-dark, #cbd7eb); font-size: clamp(27px, 2.4vw, 38px); font-weight: var(--cb-display-weight); letter-spacing: var(--cb-display-tracking); line-height: var(--cb-display-leading); }
.cb-explorer .cb-explorer__intro { font-size: 15px; line-height: 1.45; color: var(--explorer-muted); font-weight: 400; }
.cb-explorer .cb-explorer__close { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid #344b64; border-radius: 50%; background: #14253a; transition: background .18s ease; }
.cb-explorer .cb-explorer__close:hover { background: #263d56; }
.cb-explorer__body { display: grid; grid-template-columns: 255px minmax(0, 1fr) 270px; min-height: 370px; }
.cb-explorer__choices { display: none; padding: 20px 14px; border-right: 1px solid var(--explorer-line); }
.cb-explorer[data-explorer-ready] .cb-explorer__choices { display: flex; flex-direction: column; gap: 6px; }
.cb-explorer:not([data-explorer-ready]) .cb-explorer__body { grid-template-columns: minmax(0, 1fr) 270px; }
.cb-explorer .cb-explorer__choice { position: relative; display: grid; grid-template-columns: 22px minmax(0, 1fr) 16px; align-items: center; gap: 10px; width: 100%; min-height: 70px; padding: 12px; border: 1px solid transparent; border-radius: 10px; text-align: left; background: transparent; transition: background .18s ease, border-color .18s ease; }
.cb-explorer .cb-explorer__choice:hover { background: #13263b; }
.cb-explorer .cb-explorer__choice[aria-pressed="true"] { background: linear-gradient(110deg, #1a314c, #153340); border-color: #4b91ac; }
.cb-explorer__choice[aria-pressed="true"]::before { content: ''; position: absolute; left: -15px; top: 14px; bottom: 14px; width: 3px; border-radius: 3px; background: var(--cb-accent-gradient, linear-gradient(90deg, #567eff, #42bbdf, #67e0b9)); }
.cb-explorer .cb-explorer__choice-number { font-size: 11px; color: #809bb8; font-variant-numeric: tabular-nums; }
.cb-explorer .cb-explorer__choice strong { display: block; color: #e6edf9; font-size: 17px; font-weight: 600; line-height: 1.25; letter-spacing: -.025em; }
.cb-explorer .cb-explorer__choice small { display: block; margin-top: 4px; font-size: 11px; line-height: 1.4; color: #a7b8d0; }
.cb-explorer .cb-explorer__choice > svg { width: 16px; height: 16px; color: #9eb7d2; }
.cb-explorer .cb-explorer__all { display: flex; justify-content: space-between; align-items: center; min-height: 44px; margin: 4px 12px 0; padding: 8px 0; border: 0; border-top: 1px solid var(--explorer-line); background: transparent; font-size: 13px; color: #b3c7df; }
.cb-explorer .cb-explorer__all[aria-pressed="true"] { color: #8de8c8; }
.cb-explorer__all span { padding: 2px 7px; border: 1px solid #36516b; border-radius: 12px; font-size: 11px; }
.cb-explorer__panels { min-width: 0; padding: 28px; }
.cb-explorer__group[hidden] { display: none !important; }
.cb-explorer__group + .cb-explorer__group:not([hidden]) { margin-top: 26px; }
.cb-explorer[data-explorer-ready]:not([data-active-need="all"]) .cb-explorer__group { margin-top: 0; }
.cb-explorer__group-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 22px; }
.cb-explorer__group-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto; color: #79cde4; }
.cb-explorer .cb-explorer__group-heading h3 { margin-bottom: 7px; font-size: 23px; line-height: 1.15; letter-spacing: -.035em; font-weight: 400; color: #dce7f7; }
.cb-explorer .cb-explorer__group-heading p { font-size: 13px; line-height: 1.55; color: var(--explorer-muted); }
.cb-explorer__products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.cb-explorer .cb-explorer__product { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 12px; min-width: 0; min-height: 148px; padding: 18px; border: 1px solid #2c4059; border-radius: 12px; background: #102034; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.cb-explorer a.cb-explorer__product:hover { border-color: #5b9db9; background: #172e45; transform: translateY(-2px); }
.cb-explorer__icon { display: grid; place-items: center; color: #93cbe7; width: 30px; height: 28px; }
.cb-explorer .cb-explorer__product > svg { width: 16px; height: 16px; color: #93aec8; margin: 5px 0 0 auto; order: 1; }
.cb-explorer__product-copy { order: 2; width: 100%; min-width: 0; }
.cb-explorer .cb-explorer__product strong { display: block; color: #edf2fb; font-size: 16px; line-height: 1.3; font-weight: 600; letter-spacing: -.02em; }
.cb-explorer .cb-explorer__product small { display: block; margin-top: 7px; color: #adbed4; font-size: 12px; line-height: 1.5; font-weight: 400; }
.cb-explorer .cb-explorer__product--pending { background: #0c1a2b; border-style: dashed; }
.cb-explorer__badge { display: inline-flex; margin-top: 8px; padding: 2px 8px; font-size: 10px; border-radius: 20px; color: #d0c4a5; background: #393226; }
.cb-explorer .cb-explorer__guide { display: flex; flex-direction: column; padding: 18px 24px 26px; border-left: 1px solid var(--explorer-line); background: linear-gradient(160deg, #102c3b70, #0c192b); }
.cb-explorer__route { margin-bottom: 8px; height: 88px; }
.cb-explorer__route svg { width: 100%; height: 100%; stroke: none; }
.cb-explorer__route circle { fill: #81dcc5; }
.cb-explorer .cb-explorer__guide h3 { margin: 12px 0; color: #dce7f7; font-size: 27px; line-height: 1.12; letter-spacing: -.052em; font-weight: 300; }
.cb-explorer .cb-explorer__guide > p:not(.cb-explorer__eyebrow) { font-size: 13px; line-height: 1.6; color: var(--explorer-muted); }
.cb-explorer a.cb-explorer__cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; padding: 12px 15px; margin-top: 24px; border-radius: 8px; color: #071424; background: #b8def1; font-size: 13px; font-weight: 600; line-height: 1.4; transition: background .18s ease; }
.cb-explorer a.cb-explorer__cta:hover { background: #d2ecf7; }
.cb-explorer__cta svg { width: 18px; height: 18px; }
.cb-explorer .cb-explorer__local { display: flex; align-items: center; gap: 8px; color: #a5c3cc; font-size: 11px; margin-top: 18px; }
.cb-explorer__local i { width: 5px; height: 5px; background: #76d9b9; border-radius: 50%; }
.cb-explorer .cb-explorer__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px; padding: 12px 32px; border-top: 1px solid var(--explorer-line); background: #08101b; }
.cb-explorer .cb-explorer__footer a { display: inline-flex; align-items: center; gap: 10px; min-height: 36px; color: #afc1d6; font-size: 12px; }
.cb-explorer .cb-explorer__footer a:hover { color: #e6edf9; }
.cb-explorer__footer svg { width: 15px; height: 15px; }
.cb-explorer__footer > span { margin-left: auto; font-size: 11px; letter-spacing: .02em; color: #7f97b2; }
.mega-layer[data-active-menu="solutions"]:has(.cb-explorer) { display: block; position: fixed; inset: 100px auto auto 50%; transform: translateX(-50%); width: min(calc(100vw - 64px), 1280px); max-height: calc(100dvh - 116px); overflow: auto; padding: 0; border-radius: 22px; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #44627e #091322; }
.mega-layer[data-active-menu="solutions"]:has(.cb-explorer)::before { display: none; }
.mega-layer[hidden]:has(.cb-explorer) { display: none !important; }
.mega-layer[data-active-menu="solutions"]:has(.cb-explorer) #mega-solutions { padding: 0; margin: 0; width: 100%; }
.cb-native-menu > .cb-native-explorer { position: absolute; z-index: 1300; top: calc(100% + 12px); left: 0; width: 100%; max-height: min(780px, calc(100dvh - 132px)); overflow: auto; border-radius: 22px; overscroll-behavior: contain; }
@media (max-width: 1100px) {
  .cb-explorer__body { grid-template-columns: 225px minmax(0, 1fr); }
  .cb-explorer .cb-explorer__guide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 28px; padding: 20px 28px; border-left: 0; border-top: 1px solid var(--explorer-line); }
  .cb-explorer__route, .cb-explorer__guide .cb-explorer__eyebrow, .cb-explorer__guide .cb-explorer__local { display: none; }
  .cb-explorer .cb-explorer__guide h3 { font-size: 23px; margin: 0; }
  .cb-explorer .cb-explorer__guide > p { grid-column: 1; }
  .cb-explorer a.cb-explorer__cta { grid-column: 2; grid-row: 1 / 3; margin: 0; align-self: center; }
}
@media (max-width: 760px) {
  .mega-layer[data-active-menu="solutions"]:has(.cb-explorer) { display: block !important; inset: var(--cb-topbar-h, 72px) 12px auto; transform: none; width: auto; max-height: calc(100dvh - var(--cb-topbar-h, 72px) - 12px); border-radius: 16px; }
  .mega-layer[hidden]:has(.cb-explorer) { display: none !important; }
  .cb-explorer { border-radius: 16px; }
  .cb-explorer .cb-explorer__header { padding: 20px 18px; gap: 12px; }
  .cb-explorer .cb-explorer__header h2 { font-size: 28px; }
  .cb-explorer .cb-explorer__intro { font-size: 13px; }
  .cb-explorer .cb-explorer__eyebrow { font-size: 10px; }
  .cb-explorer .cb-explorer__close { width: 36px; height: 36px; }
  .cb-explorer__body, .cb-explorer:not([data-explorer-ready]) .cb-explorer__body { display: block; min-height: 0; }
  .cb-explorer[data-explorer-ready] .cb-explorer__choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px; gap: 6px; border: 0; border-bottom: 1px solid var(--explorer-line); }
  .cb-explorer .cb-explorer__choice { grid-template-columns: minmax(0, 1fr) 16px; gap: 5px; padding: 11px; min-height: 66px; }
  .cb-explorer .cb-explorer__choice-number { display: none; }
  .cb-explorer .cb-explorer__choice strong { font-size: 15px; }
  .cb-explorer .cb-explorer__choice small { font-size: 10px; }
  .cb-explorer__choice[aria-pressed="true"]::before { display: none; }
  .cb-explorer .cb-explorer__all { grid-column: 1 / -1; margin: 0 7px; min-height: 36px; }
  .cb-explorer__panels { padding: 20px 18px; }
  .cb-explorer__group-heading { margin-bottom: 16px; }
  .cb-explorer__group-icon { display: none; }
  .cb-explorer .cb-explorer__group-heading h3 { font-size: 22px; }
  .cb-explorer__products { grid-template-columns: 1fr; }
  .cb-explorer .cb-explorer__product { flex-wrap: nowrap; align-items: center; min-height: 85px; padding: 14px; gap: 12px; }
  .cb-explorer__product-copy { order: 0; flex: 1; }
  .cb-explorer__icon { flex: 0 0 24px; width: 24px; }
  .cb-explorer .cb-explorer__product > svg { order: 0; margin: 0; }
  .cb-explorer .cb-explorer__product strong { font-size: 15px; }
  .cb-explorer .cb-explorer__product small { font-size: 11px; margin-top: 5px; }
  .cb-explorer .cb-explorer__guide { display: flex; padding: 20px 18px; gap: 8px; }
  .cb-explorer a.cb-explorer__cta { align-self: stretch; margin-top: 8px; }
  .cb-explorer .cb-explorer__footer { padding: 10px 18px; gap: 2px 18px; }
  .cb-explorer__footer > span { display: none; }
  .cb-native-menu > .cb-native-explorer { max-height: calc(100dvh - 200px); }
}
@media (prefers-reduced-motion: reduce) {
  .cb-explorer *, .cb-explorer *::before { animation: none !important; transition: none !important; }
  .cb-explorer a.cb-explorer__product:hover { transform: none; }
}
