:root {
  --bg: #06080d;
  --bg-soft: #0b1020;
  --panel: rgba(14, 20, 36, 0.72);
  --panel-border: rgba(255, 255, 255, 0.09);
  --text: #f2f5fb;
  --muted: #a2aec5;
  --headline-200-family: "Alliance No.2","Alliance No.1",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  --line: rgba(255,255,255,0.08);
  --accent: #8f6dff;
  --accent-2: #44b7ff;
  --button-primary: #0686f9;
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
  --radius: 20px;
  --floating-nav-offset: 96px;
}

html[data-theme="light"] {
  --bg: #eef3fb;
  --bg-soft: #f6f8fc;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(12, 21, 36, 0.10);
  --text: #0d1626;
  --muted: #50607a;
  --line: rgba(13, 22, 38, 0.10);
  --accent: #6956ff;
  --accent-2: #1597e5;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  background:
    radial-gradient(circle at top center, rgba(143,109,255,.16), transparent 30%),
    linear-gradient(180deg, #05070b 0%, #06080d 50%, #090d18 100%);
  background-attachment: scroll;
  background-color: #06080d;
}
html[data-theme="light"] {
  background: transparent;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: transparent;
  transition: color .28s ease;
}
html[data-theme="light"] body {
  background:
    radial-gradient(circle at top center, rgba(105,86,255,.10), transparent 28%),
    linear-gradient(180deg, #f4f7fd 0%, #edf2fa 52%, #e8eef8 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }
h1,h2,h3,h4 { margin: 0 0 14px; line-height: 1.08; font-weight: 400; letter-spacing: 1px; }
h1 { font-size: clamp(2.2rem, 4.5vw, 4.2rem); font-family: 'Roboto', sans-serif; }
.hero-content h1, .page-content h1 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}

.hero .hero-content h1,
.page-hero .page-content h1 {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(0,0,0,0.42), 0 0 42px rgba(0,0,0,0.22);
}
h2 { font-size: clamp(1.4rem, 3vw, 2.5rem); font-family: 'Roboto', sans-serif; }
h3 { font-size: 1rem; font-family: 'Roboto', sans-serif; }
h4 { font-family: 'Roboto', sans-serif; }
.shell { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  z-index: 60;
  padding: 18px 0 0;
}
.inner-header { top: 5px; padding-top: 18px; }

main > :first-child:not(.hero):not(.page-hero) {
  margin-top: 0;
}

body > .page-shell {
  margin-top: calc(var(--floating-nav-offset) - 18px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-radius: 25px;
}
.glass {
  background: linear-gradient(180deg, rgba(18,23,37,0.82), rgba(11,16,28,0.72));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.site-header .nav-wrap.glass {
  background: linear-gradient(180deg, rgba(18,23,37,0.5), rgba(11,16,28,0.5));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.brand-image {
  gap: 0;
  letter-spacing: 0;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand-logo-light { display: none; }
html[data-theme="light"] .brand-logo-dark { display: none; }
html[data-theme="light"] .brand-logo-light { display: block; }
.brand-mark {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 4px;
  display: inline-block;
  box-shadow: 12px 0 0 -8px rgba(143,109,255,0.9);
}
.brand-text { font-size: 1rem; }
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}
.site-nav a { color: #c4cee3; font-size: 0.98rem; }
.site-nav a.active { color: var(--button-primary); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.14);
  transition: .25s ease;
}
.button:hover { transform: translateY(-1px); }
.button-light {
  background: var(--button-primary);
  color: #f6f8fc;
  border-color: var(--button-primary);
}
.button.button-light { color: white; }
.button-ghost {
  background: rgba(0,0,0,0.4);
  color: white;
  border: 2px solid var(--button-primary);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero, .page-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  border-bottom: 1px solid var(--line);
}
.page-hero-compact { min-height: 68svh; }
.hero-media, .page-hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img, .page-hero-media img {
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: calc(100% + 220px);
  display: block;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.5);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  backface-visibility: hidden;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .page-hero-media img {
    top: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0.3) 26%, rgba(5, 7, 11, 0.66) 100%),
    radial-gradient(circle at 50% 20%, rgba(143, 109, 255, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.8) 0%, rgba(5, 7, 11, 0.2) 42%, rgba(5, 7, 11, 0.7) 100%);
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-left: none;
  border-right: none;
  opacity: 0.3;
}

.page-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,7,11,0.55) 0%, rgba(5,7,11,0.3) 26%, rgba(5,7,11,0.66) 100%),
    radial-gradient(circle at 50% 20%, rgba(143,109,255,0.18), transparent 32%),
    linear-gradient(90deg, rgba(5,7,11,0.8) 0%, rgba(5,7,11,0.2) 42%, rgba(5,7,11,0.7) 100%);
  opacity: 0.3;
}

.hero-content, .page-content {
  position: relative;
  z-index: 2;
  padding: calc(18vh + 25px) 0 14vh;
}
.hero-content { max-width: 980px; }
.hero .hero-content {
  width: 100%;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(var(--floating-nav-offset) + 4px);
  padding-bottom: calc(var(--floating-nav-offset) + 130px);
}
.hero-content p, .page-content p { max-width: 720px; font-size: 1.1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.hero .eyebrow {
  margin-top: 25px;
  width: min(980px, 100%);
  text-align: left;
}
.hero-actions, .cta-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .hero-content h1,
.page-hero .page-content h1 {
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero .hero-content > p,
.page-hero .page-content > p {
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.usecase-hero-copy {
  max-width: 1220px;
}

.hero .hero-actions,
.page-hero .cta-actions {
  justify-content: center;
}

.hero .button,
.page-hero .button {
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.product-gallery-bubble {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  min-height: 156px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7, 12, 22, 0.58);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.product-hero-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.product-hero-links[hidden] {
  display: none;
}

.product-hero-links .product-gallery-bubble {
  margin: 0;
  width: 100%;
}

.product-gallery-bubble-media {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 16vw, 250px);
}

.product-gallery-thumb {
  height: 130px;
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.2);
}

.product-gallery-thumb-light {
  display: none;
}

.product-gallery-placeholder-thumb {
  height: 130px;
  width: 100%;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  color: #d9e2f5;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.product-gallery-placeholder-build {
  background:
    radial-gradient(circle at 22% 24%, rgba(68,183,255,.55), transparent 34%),
    linear-gradient(135deg, #151d30, #090d16);
}

.product-gallery-placeholder-usecase {
  background:
    radial-gradient(circle at 72% 28%, rgba(143,109,255,.56), transparent 34%),
    linear-gradient(135deg, #1a2134, #0b0f16);
}

.product-gallery-bubble-copy {
  display: grid;
  gap: 2px;
  text-align: left;
  color: white;
}

.product-gallery-bubble-copy strong {
  font-size: 24px;
  margin-left: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.product-gallery-bubble-copy small {
  font-size: 14px;
  margin-left: 10px;
  color: #d8e0f4;
  text-transform: capitalize;
}

.hero-hotspots {
  position: absolute;
  inset: 0;
  margin-top: 0;
  height: auto;
  pointer-events: none;
  z-index: 3;
}
.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--button-primary);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  animation: pulse 2.4s infinite;
  pointer-events: auto;
}
.hotspot span {
  position: absolute;
  left: 28px;
  top: -10px;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: white;
  background: rgba(8,12,20,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.hotspot-a,
.hotspot-c {
  top: auto;
  bottom: 100px;
}
.hotspot-a { left: 100px; }
.hotspot-b {
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
}
.hotspot-c { right: 100px; }
.hotspot-b span {
  left: 50%;
  top: -52px;
  transform: translateX(-50%);
}
.hotspot-c span {
  left: auto;
  right: 28px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42); }
  100% { box-shadow: 0 0 0 22px rgba(255, 255, 255, 0); }
}

@media (max-width: 820px) {
  .hotspot-a,
  .hotspot-b,
  .hotspot-c {
    bottom: 50px;
  }

  .hotspot-a { left: 25px; }
  .hotspot-c { right: 25px; }
}

@media (max-width: 540px) {
  .hotspot-a,
  .hotspot-b,
  .hotspot-c {
    bottom: 25px;
  }

  .hotspot-a { left: 15px; }
  .hotspot-c { right: 15px; }
}

.section { padding: 50px 0; }
#capabilities {
  margin-top: 25px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--floating-nav-offset) + 10px);
}
#platform { border-top: 1px solid var(--line); }
.product-spotlight { border-top: 1px solid var(--line); }
#timeline { border-top: 1px solid var(--line); }
#design-philosophy { border-top: 1px solid var(--line); }
.section-dark { background: linear-gradient(180deg, rgba(9,12,21,.72), rgba(8,10,17,.94)); }
.section-cta { padding-top: 0; }
.split {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
}
.split-wide { grid-template-columns: 1.2fr 0.8fr; }
.gap-lg { gap: 34px; }
.gap-xl { gap: 54px; }
.align-center { align-items: center; }
.align-start { align-items: start; }
.lead { font-size: 1.06rem; max-width: 760px; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metrics-grid article {
  padding: 26px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
}
.metrics-grid strong { display: block; font-size: 2.6rem; margin-bottom: 8px; }
.metrics-grid span { color: var(--muted); }

.tech-grid, .product-grid, .timeline-grid, .resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tech-grid { margin-top: 40px; grid-template-columns: repeat(4, 1fr); }
.tech-card, .product-card, .timeline-card, .resource-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(17,22,37,0.9), rgba(9,13,21,0.9));
  border-radius: 20px;
  padding: 24px;
  min-height: 220px;
  box-shadow: var(--shadow);
}
.tech-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tech-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  filter: brightness(3) invert(1);
}
html[data-theme="light"] .tech-icon {
  filter: brightness(0.2) invert(0);
}
.tech-tag, .product-code, .year, .teaser-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--button-primary);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.product-code-button {
  background: var(--button-primary);
  border-color: var(--button-primary);
  color: #ffffff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.product-code-button:hover,
.product-code-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(6,134,249,0.22);
}
.tech-card .tech-tag { font-weight: 600; }
.tech-card h3 { font-weight: 500; }
.tech-card p { font-weight: 500; }
.panel-stack { display: grid; gap: 14px; }
.micro-panel {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--button-primary);
  font-size: 1.12rem;
  font-weight: 500;
}
.media-card {
  border-radius: 26px;
  overflow: hidden;
  padding: 14px;
}
.media-card img { border-radius: 18px; aspect-ratio: 1.1 / 0.82; object-fit: cover; }
.media-tall img { aspect-ratio: 0.9 / 1.12; }
.laptop-frame { position: relative; }
.laptop-frame::after {
  content: "";
  display: block;
  width: 82%; height: 16px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #7a8290, #2b313b 58%, #0d1118 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.bullet-panels { display: grid; gap: 14px; margin-top: 24px; }
.bullet-panels article, .info-card, .contact-form, .product-toolbar, .cta-panel {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,23,37,0.82), rgba(11,16,28,0.72));
  box-shadow: var(--shadow);
}
.product-teasers { display: grid; gap: 16px; margin-top: 28px; }
.teaser-card { padding: 24px; border-radius: 18px; display: block; }
.teaser-card strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }
.teaser-card em { color: var(--muted); font-style: normal; }

.page-main { padding-top: 0; }
.product-toolbar-wrap {
  display: none;
}
.product-cards-section {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
  padding-bottom: 50px;
}
.product-search-results-section {
  border-top: 1px solid var(--line);
  padding-top: 50px;
  padding-bottom: 50px;
  display: block !important;
  visibility: visible !important;
}
.product-search-results-section[hidden] {
  display: none !important;
}
.core-network-section {
  border-top: 1px solid var(--line);
  padding-top: 50px;
  padding-bottom: 10px;
}
.product-recommendations-wrap {
  padding-top: 28px;
  padding-bottom: 28px;
}
.product-recommendations-head {
  text-align: center;
  margin-bottom: 12px;
}
.product-recommendations-head .eyebrow {
  margin: 0;
}
.core-network-shell {
  padding: 24px;
  border-radius: 28px;
}
.core-network-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.core-network-search-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-width: min(420px, 100%);
}
.core-network-search-shell .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.core-network-search-shell .search-input-wrap input {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  color: #edf2fb;
  font-size: 16px;
  font-weight: 500;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  letter-spacing: 0.2px;
}
.core-network-search-shell .search-input-wrap input::placeholder {
  color: #96a7d2;
  font-weight: 400;
}
.core-network-search-shell .search-input-wrap input:focus {
  outline: none;
  border-color: rgba(123,196,255,.4);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(123,196,255,.08);
}
.core-network-search-shell .search-icon {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  stroke: #96a7d2;
  cursor: pointer;
  transition: stroke .2s ease;
  pointer-events: none;
}
.core-network-search-shell .search-icon:hover {
  stroke: #c7d2eb;
}
.core-network-search-shell .product-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(13,23,42,.98);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  z-index: 1000;
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  pointer-events: auto;
}
.core-network-search-shell .product-search-dropdown[hidden] {
  pointer-events: none;
  display: none;
}
.core-network-title {
  margin-bottom: 0;
  color: #ffffff;
}
.core-network-intro {
  max-width: 620px;
  margin: 0;
  font-size: 11px;
}
.core-network-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #2b7de9;
  background: #0d1730;
}
.core-network-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.core-network-bg-light {
  display: none;
}
.core-network-bg-dark {
  display: block;
}
.core-network-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(108,99,255,.10), transparent 32%),
    linear-gradient(180deg, rgba(7,14,28,.10), rgba(7,14,28,.16));
  pointer-events: none;
}
.core-network-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(96px, var(--spot-size), 270px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease;
}
.core-network-hotspot:hover {
  transform: translate(-50%, -50%) scale(1.03);
}
.core-network-hotspot:focus-visible {
  outline: 2px solid rgba(123,196,255,.9);
  outline-offset: 6px;
  border-radius: 18px;
}
.core-network-hotspot-image-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 4px 6px;
  border-radius: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.core-network-hotspot .core-network-hotspot-image-wrap::before,
.core-network-hotspot .core-network-hotspot-image-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.core-network-hotspot .core-network-hotspot-image-wrap::before {
  background: radial-gradient(circle, rgba(73, 167, 255, 0.22) 0%, rgba(73, 167, 255, 0.08) 46%, rgba(73, 167, 255, 0) 74%);
}
.core-network-hotspot .core-network-hotspot-image-wrap::after {
  border: 1px solid rgba(143, 224, 255, 0.44);
  box-shadow: 0 0 0 0 rgba(123, 196, 255, 0.24);
  animation: core-network-small-radiate 2.8s ease-out infinite;
}
.core-network-hotspot-center .core-network-hotspot-image-wrap::before,
.core-network-hotspot-center .core-network-hotspot-image-wrap::after {
  width: 96%;
}
.core-network-hotspot-center .core-network-hotspot-image-wrap::before {
  background:
    radial-gradient(circle, rgba(73, 167, 255, 0.48) 0%, rgba(73, 167, 255, 0.22) 32%, rgba(73, 167, 255, 0.03) 58%, rgba(73, 167, 255, 0) 80%),
    repeating-radial-gradient(circle, rgba(143, 224, 255, 0.48) 0 1px, rgba(143, 224, 255, 0) 1px 14px);
  opacity: .95;
  filter: blur(.25px) saturate(1.25);
}
.core-network-hotspot-center .core-network-hotspot-image-wrap::after {
  border: 1px solid rgba(159, 228, 255, 0.95);
  box-shadow:
    0 0 0 0 rgba(123, 196, 255, 0.62),
    0 0 0 0 rgba(123, 196, 255, 0.38),
    0 0 24px rgba(123, 196, 255, 0.42);
  animation: core-network-center-radiate 2.6s ease-out infinite;
}
.core-network-hotspot.active .core-network-hotspot-image-wrap,
.core-network-hotspot:hover .core-network-hotspot-image-wrap {
  filter: brightness(1.08);
}
.core-network-hotspot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.28));
}
.core-network-hotspot[data-core-product="mx5pt"] img {
  width: auto;
  height: 125px;
  max-width: 100%;
}
.core-network-hotspot-copy {
  text-align: center;
  padding: 0 6px;
}
.core-network-hotspot-title {
  margin: 0;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  line-height: 1.2;
  color: #edf2fb;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.core-network-hotspot-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--button-primary);
  box-shadow: 0 0 0 0 rgba(255,255,255,.42);
  animation: core-network-bullet-pulse 2.4s infinite;
}
.core-network-hotspot-sub {
  margin: 4px 0 0;
  color: #dbe7ff;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
@media (min-width: 641px) {
  .core-network-hotspot[data-core-product="mx5-mag-hf-sc"] {
    left: calc(67% - 50px) !important;
  }
}
@keyframes core-network-bullet-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.42); }
  100% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}
@keyframes core-network-small-radiate {
  0% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(.86);
    box-shadow: 0 0 0 0 rgba(123, 196, 255, 0.28);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.24);
    box-shadow: 0 0 0 18px rgba(123, 196, 255, 0);
  }
}
@keyframes core-network-center-radiate {
  0% {
    opacity: .96;
    transform: translate(-50%, -50%) scale(.82);
    box-shadow:
      0 0 0 0 rgba(123, 196, 255, 0.66),
      0 0 0 0 rgba(123, 196, 255, 0.42),
      0 0 24px rgba(123, 196, 255, 0.46);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.56);
    box-shadow:
      0 0 0 34px rgba(123, 196, 255, 0),
      0 0 0 66px rgba(123, 196, 255, 0),
      0 0 52px rgba(123, 196, 255, 0);
  }
}
.core-network-footer {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.core-network-detail-card,
.core-network-actions {
  display: none;
}
.core-network-detail-card,
.core-network-thumb-card {
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(108,99,255,.14), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  padding: 22px;
  height: clamp(300px, 30vw, 400px);
}
.core-network-detail-card {
  display: grid;
  grid-template-columns: minmax(220px, .95fr) minmax(0, 1.05fr);
  grid-template-rows: 1fr;
  gap: 22px;
  align-items: stretch;
  min-width: 0;
}
.core-network-detail-image-wrap {
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px;
}
.core-network-detail-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}
.core-network-detail-image-wrap img.is-mx5t-df-detail {
  width: auto;
  height: 125px;
  max-width: 100%;
  max-height: 125px;
}
.core-network-detail-copy {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}
.core-network-detail-label {
  margin: 0 0 10px;
  color: #96a7d2;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}
.core-network-detail-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
}
.core-network-detail-subtitle {
  margin: 12px 0 16px;
  color: #c7d2eb;
  font-size: clamp(16px, 1.3vw, 18px);
}
.core-network-detail-description {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  margin: 0;
  padding-left: 18px;
  font-size: clamp(14px, 1.05vw, 15px);
  color: #c7d2eb;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: rgba(7,14,28,.62) rgba(255,255,255,.05);
}
.core-network-detail-description li {
  margin: 0 0 8px;
}
.core-network-detail-description li:last-child {
  margin-bottom: 0;
}
.core-network-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.core-network-thumb-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-width: 0;
  width: 100%;
}
.core-network-thumb-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.core-network-thumb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.core-network-thumb-head h3 {
  margin: 0;
}
.core-network-thumb-nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.core-network-thumb-nav-button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: #e8eeff;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.core-network-thumb-nav-button:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}
.core-network-thumb-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(144px, 22vw, 180px);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(7,14,28,.62) rgba(255,255,255,.05);
}
.core-network-thumb-scroller::-webkit-scrollbar {
  height: 10px;
}
.core-network-thumb-scroller::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}
.core-network-thumb-scroller::-webkit-scrollbar-thumb {
  background: rgba(7,14,28,.62);
  border-radius: 999px;
}
.core-network-thumb-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.core-network-thumb-link:hover {
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  transform: translateY(-1px);
}
.core-network-thumb-link.active {
  border-color: var(--button-primary);
  box-shadow: 0 0 0 2px rgba(6,134,249,.18) inset;
}
.core-network-thumb-link img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: contain;
}
.core-network-thumb-link p {
  margin: 8px 0 0;
  font-size: 12px;
  color: #c9d4ed;
  line-height: 1.3;
}
.core-network-thumb-link strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  color: #eaf1ff;
  font-weight: 700;
}
.core-network-thumb-link span {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  color: #c9d4ed;
}
.product-grid-title {
  text-align: center;
  margin: 0 0 26px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--button-primary);
}
.usecase-section-title {
  color: #ffffff;
}
.product-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.search-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(420px, 100%);
}
.search-input-wrap {
  position: relative;
  flex: 1;
}
.search-shell input, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 14px 16px;
  color: white;
  font: inherit;
}
.search-input-wrap input {
  padding-right: 44px;
}
.search-input-wrap .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9fb1d6;
  pointer-events: none;
}

.product-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(18,23,37,0.96), rgba(11,16,28,0.94));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.32);
  z-index: 100;
  overflow: hidden;
}

.search-results-preview {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.search-results-count {
  margin: 0;
  font-size: 0.9rem;
  color: #a2aec5;
  font-weight: 500;
}

.search-suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
}

.search-suggestions li {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-suggestions li:last-child {
  border-bottom: none;
}

.search-suggestions li:hover {
  background: rgba(255,255,255,0.08);
}

.search-suggestions li strong {
  color: var(--button-primary);
  font-weight: 600;
}

.search-suggestions li span {
  color: #a2aec5;
  font-size: 0.88rem;
  display: block;
  margin-top: 3px;
}

html[data-theme="light"] .product-search-dropdown {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,253,0.94));
  border-color: rgba(13,22,38,0.12);
  box-shadow: 0 12px 32px rgba(13,22,38,0.16);
}

html[data-theme="light"] .search-results-count {
  color: #3d4f68;
}

html[data-theme="light"] .search-suggestions li {
  border-bottom-color: rgba(13,22,38,0.08);
}

html[data-theme="light"] .search-suggestions li:hover {
  background: rgba(13,22,38,0.06);
}

html[data-theme="light"] .search-suggestions li strong {
  color: #0d1626;
  font-weight: 700;
}

html[data-theme="light"] .search-suggestions li span {
  color: #4f607d;
}
.contact-form select option { color: black; }
.product-grid { grid-template-columns: repeat(3, 1fr); }
#productSearchResults {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}
a.product-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.product-visual {
  min-height: 180px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gradient-purple { background: radial-gradient(circle at 20% 20%, rgba(143,109,255,.6), transparent 28%), linear-gradient(135deg, #192139, #0b0f16); }
.gradient-blue { background: radial-gradient(circle at 70% 30%, rgba(68,183,255,.55), transparent 28%), linear-gradient(135deg, #151d30, #090d16); }
.gradient-slate { background: radial-gradient(circle at 40% 30%, rgba(255,255,255,.18), transparent 24%), linear-gradient(135deg, #2b313d, #0b0f16); }
.product-visual-mx5p3 {
  background-image: url("../images/rfid_combo.jpg");
  background-position: center calc(50% + 33px);
}
.product-visual-all-products {
  background-image: url("../images/thumb-print.jpg");
  background-position: center calc(50% - 50px);
}
.product-visual-use-cases { background-image: url("../images/MX5C-RFID.jpg"); }
.usecase-visual-home { background-image: url("../images/hero-main.jpg"); }
.usecase-visual-about { background-image: url("../images/posh-product-access.png"); }
.usecase-visual-products { background-image: url("../images/field-vision.jpg"); }
.usecase-visual-use-cases { background-image: url("../images/map-ops.jpg"); }
.usecase-visual-downloads { background-image: url("../images/products/operations-grid.png"); }
.usecase-visual-contact { background-image: url("../images/desk-ui.jpg"); }
.product-body {
  padding: 24px;
  overflow-y: auto;
}
.product-card .product-body {
  text-align: center;
}
.product-card .product-body h2 {
  font-size: 17px;
}
.usecase-card-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
}

.usecase-card-title + h2 {
  color: var(--button-primary);
}
.product-card .product-body p {
  font-size: 14px;
}
.spec-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.product-card .spec-list {
  justify-content: center;
  text-align: center;
}
.spec-list span {
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d9e2f5;
  padding: 8px 12px;
  font-size: 0.86rem;
}
.associated-models-label {
  margin: 16px 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.associated-model-pills {
  margin-top: 0;
}
.associated-model-pills span {
  background: rgba(6, 134, 249, 0.14);
  border-color: rgba(6, 134, 249, 0.45);
  color: #d9ecff;
  font-weight: 600;
}
.usecase-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.usecase-placeholder-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  color: #d9e2f5;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}
.search-clear {
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #c7d2eb;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  align-self: start;
}
.search-clear:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #e3ecff;
}
.search-empty {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #d9e2f5;
}
.text-link { color: white; text-decoration: underline; text-underline-offset: 3px; }

.timeline-grid { grid-template-columns: repeat(3, 1fr); }
.clean-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
.info-card h2 {
  margin-bottom: 18px;
}
.contact-info-stack {
  display: grid;
  gap: 12px;
}
.contact-identity {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
}
.contact-identity h3 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  line-height: 1.05;
  font-weight: 700;
}
.contact-identity p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.contact-method-card {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.contact-method-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.contact-method-card a {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
}
.contact-method-card a:hover,
.contact-method-card a:focus-visible {
  color: var(--button-primary);
}
.contact-method-card-primary {
  border-color: rgba(6,134,249,0.28);
  background: rgba(6,134,249,0.08);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0 22px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid .full { grid-column: 1 / -1; }
.resource-grid .resource-card { min-height: 280px; }
.resource-card a, .site-footer a { display: block; color: var(--muted); margin: 10px 0; }

.downloads-shell {
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto;
}

.downloads-bento {
  padding: 18px;
  border-radius: 28px;
}

.downloads-bento-head {
  margin-bottom: 16px;
}

.downloads-bento-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.downloads-bento-head p {
  margin: 0;
  color: var(--muted);
}

.downloads-controls {
  display: block;
  margin-bottom: 18px;
}

.downloads-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.downloads-tab-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.downloads-search {
  display: block;
}

.downloads-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font: inherit;
  outline: none;
}

.downloads-search input:focus {
  border-color: rgba(6,134,249,0.6);
  box-shadow: 0 0 0 2px rgba(6,134,249,0.18);
}

.downloads-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.downloads-tab:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}

.downloads-tab.is-active {
  border-color: rgba(6,134,249,0.56);
  background: rgba(6,134,249,0.18);
  color: #e9f4ff;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at top, rgba(6, 134, 249, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(18,23,37,0.9), rgba(11,16,28,0.88));
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.download-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.download-card-type {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  color: #d7e4ff;
  background: rgba(255,255,255,0.05);
}

.download-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

.download-card-meta {
  margin: 12px 0 0;
  color: #d2dff8;
  font-size: .86rem;
}

.download-card-footer {
  margin-top: auto;
  padding-top: 16px;
}

.download-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--button-primary);
  color: #ffffff;
  border: 1px solid var(--button-primary);
  font-weight: 600;
}

.downloads-empty {
  margin-top: 12px;
  color: var(--muted);
}

html[data-theme="light"] .downloads-tab {
  border-color: rgba(13,22,38,0.18);
  background: rgba(13,22,38,0.04);
  color: #22344e;
}

html[data-theme="light"] .downloads-search input {
  border-color: rgba(13,22,38,0.17);
  background: rgba(13,22,38,0.03);
  color: #0d1626;
}

html[data-theme="light"] .downloads-tabs {
  border-color: rgba(13,22,38,0.1);
  background: rgba(13,22,38,0.03);
}

html[data-theme="light"] .downloads-tab:hover {
  border-color: rgba(13,22,38,0.28);
  background: rgba(13,22,38,0.08);
}

html[data-theme="light"] .downloads-tab.is-active {
  border-color: rgba(6,134,249,0.48);
  background: rgba(6,134,249,0.15);
  color: #11345a;
}

html[data-theme="light"] .download-card {
  border-color: rgba(13,22,38,0.12);
  background:
    radial-gradient(circle at top, rgba(6, 134, 249, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,250,255,0.95));
}

html[data-theme="light"] .download-card-type {
  border-color: rgba(13,22,38,0.14);
  color: #234062;
  background: rgba(13,22,38,0.04);
}

html[data-theme="light"] .download-card-meta {
  color: #3f5f85;
}
.cta-panel {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 22px;
  padding: 46px 0 22px;
}
.footer-grid h4 { font-size: 0.94rem; margin-bottom: 10px; }
.footer-grid p, .footer-grid a {
  color: #97a4be;
  font-size: 0.98rem;
}
.footer-bottom {
  color: #8190ac;
  font-size: 0.98rem;
  padding: 18px 0 32px;
}

.site-alert {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.site-alert[hidden] {
  display: none;
}
.site-alert.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-alert-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 9, 18, 0.64);
  cursor: pointer;
}
.site-alert-card {
  position: relative;
  width: min(430px, 100%);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(18,23,37,0.98), rgba(11,16,28,0.97));
  box-shadow: var(--shadow);
}
.site-alert-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.site-alert-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.site-alert-confirm {
  margin-top: 18px;
}
.quick-message-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  background: var(--button-primary);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(6, 134, 249, 0.42);
  z-index: 130;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-message-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 134, 249, 0.5);
}

.quick-message-fab svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.quick-message-modal {
  position: fixed;
  inset: 0;
  z-index: 129;
  pointer-events: none;
}

.quick-message-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 18, 0.56);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.quick-message-sheet {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 105%);
  width: min(740px, calc(100% - 22px));
  border-radius: 22px 22px 0 0;
  border: 1px solid var(--panel-border);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(18,23,37,0.98), rgba(11,16,28,0.97));
  box-shadow: var(--shadow);
  padding: 18px 18px 20px;
  transition: transform 0.3s ease;
}

.quick-message-modal.is-open {
  pointer-events: auto;
}

.quick-message-modal.is-open .quick-message-backdrop {
  opacity: 1;
}

.quick-message-modal.is-open .quick-message-sheet {
  transform: translate(-50%, 0);
}

.quick-message-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.quick-message-head h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #ffffff;
}

.quick-message-head p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.quick-message-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.quick-message-form {
  display: grid;
  gap: 12px;
}

.quick-message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-message-form label {
  display: grid;
  gap: 6px;
  font-size: 0.83rem;
  color: #c8d2e8;
}

.quick-message-form input,
.quick-message-form textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

.quick-message-form textarea {
  min-height: 88px;
  resize: vertical;
}

.quick-message-form input:focus,
.quick-message-form textarea:focus {
  outline: none;
  border-color: var(--button-primary);
  box-shadow: 0 0 0 3px rgba(6, 134, 249, 0.2);
}

.quick-message-legal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #bdc9e2;
  font-size: 0.84rem;
}

.quick-message-legal input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.quick-message-legal a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-message-submit {
  justify-self: start;
  border-radius: 12px;
  border: 1px solid var(--button-primary);
  background: var(--button-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 11px 18px;
  cursor: pointer;
}

.quick-message-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quick-message-success {
  display: none;
  margin: 2px 0 0;
  color: #9fd6ff;
  font-size: 0.9rem;
}

.quick-message-success.is-error {
  color: #ffb3b3;
}

.quick-message-success.is-visible {
  display: block;
}

.quick-message-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.quick-message-open {
  overflow: hidden;
}

html[data-theme="light"] .quick-message-sheet {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,253,0.97));
  border-color: rgba(13,22,38,0.12);
  box-shadow: 0 26px 64px rgba(16, 24, 40, 0.2);
}

html[data-theme="light"] .quick-message-head h3 {
  color: #0d1626;
}

html[data-theme="light"] .quick-message-close {
  color: #0d1626;
  border-color: rgba(13,22,38,0.2);
  background: rgba(13,22,38,0.05);
}

html[data-theme="light"] .quick-message-form label,
html[data-theme="light"] .quick-message-legal {
  color: #455a79;
}

html[data-theme="light"] .quick-message-form input,
html[data-theme="light"] .quick-message-form textarea {
  border-color: rgba(13,22,38,0.15);
  background: rgba(13,22,38,0.03);
  color: #0d1626;
}

html[data-theme="light"] .quick-message-legal a {
  color: #0d1626;
}

@media (max-width: 820px) {
  .quick-message-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .quick-message-sheet {
    width: calc(100% - 10px);
    padding: 16px 14px 18px;
  }

  .quick-message-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split-wide, .contact-grid, .footer-grid, .timeline-grid, .resource-grid, .product-grid { grid-template-columns: 1fr; }
  .downloads-tabs {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .downloads-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel, .product-toolbar { flex-direction: column; align-items: start; }
  .core-network-heading { flex-direction: column; align-items: start; gap: 16px; }
  .core-network-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .core-network-search-shell { width: 100%; min-width: 100%; }
}

@media (max-width: 820px) {
  .downloads-shell { width: min(1440px, calc(100% - 20px)); }
  .downloads-bento { padding: 14px; border-radius: 22px; }
  .downloads-controls { margin-bottom: 14px; }
  .downloads-tabs { gap: 8px; }
  .downloads-tab { padding: 9px 13px; font-size: 14px; }
  .downloads-grid { grid-template-columns: 1fr; }
  :root { --floating-nav-offset: 92px; }
    .site-header { top: 5px; }
  .hero-media,
  .page-hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .page-hero-compact {
    min-height: 68svh;
  }
  .nav-toggle { display: inline-block; }
  .hero .hero-content {
    min-height: 78svh;
    padding-top: calc(var(--floating-nav-offset) + 10px);
    padding-bottom: calc(9vh + 90px);
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(18,23,37,0.96), rgba(11,16,28,0.95));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: var(--shadow);
  }
  .nav-links,
  .nav-actions {
    width: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }
  html[data-theme="light"] .site-nav {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,249,253,0.96));
    border-color: rgba(13,22,38,0.10);
    box-shadow: 0 18px 38px rgba(13,22,38,0.12);
  }
  .site-nav.open { display: flex; }
  .hero-content, .page-content { padding-top: 20vh; }
  .metrics-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .search-shell { min-width: 0; width: 100%; }
}


.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.theme-option {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,0.10);
  color: var(--button-primary);
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.theme-option.is-active {
  background: var(--button-primary);
}
html[data-theme="light"] .theme-switcher {
  background: rgba(13,22,38,0.03);
  border-color: rgba(13,22,38,0.08);
}
html[data-theme="light"] .theme-option {
  background: rgba(13,22,38,0.08);
  color: var(--button-primary);
}
html[data-theme="light"] .theme-option.is-active {
  background: var(--button-primary);
}
html[data-theme="light"] .text-link { color: #0d1626; }
html[data-theme="light"] .glass,
html[data-theme="light"] .bullet-panels article,
html[data-theme="light"] .info-card,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .product-toolbar,
html[data-theme="light"] .cta-panel,
html[data-theme="light"] .tech-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .timeline-card,
html[data-theme="light"] .resource-card,
html[data-theme="light"] .metrics-grid article {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,249,253,0.82));
  border-color: rgba(12,21,36,0.10);
}
html[data-theme="light"] .site-header .nav-wrap.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,249,253,0.80));
}
html[data-theme="light"] .site-nav a,
html[data-theme="light"] .footer-grid p,
html[data-theme="light"] .footer-grid a,
html[data-theme="light"] .footer-bottom,
html[data-theme="light"] .teaser-card em,
html[data-theme="light"] .spec-list span,
html[data-theme="light"] .micro-panel,
html[data-theme="light"] .clean-list,
html[data-theme="light"] .metrics-grid span { color: var(--muted); }
html[data-theme="light"] .site-nav a.active,
html[data-theme="light"] .button-ghost { color: white; }
html[data-theme="light"] .site-nav a.active { color: #0686f9; }
html[data-theme="light"] .brand { color: var(--text); }
html[data-theme="light"] .eyebrow { color: var(--button-primary); }
html[data-theme="light"] .hero .eyebrow,
html[data-theme="light"] .page-hero .eyebrow { color: #ffffff; }
html[data-theme="light"] .hero .hero-content h1,
html[data-theme="light"] .page-hero .page-content h1 {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(0,0,0,0.42), 0 0 42px rgba(0,0,0,0.22);
}
html[data-theme="light"] .product-gallery-thumb-dark { display: none; }
html[data-theme="light"] .product-gallery-thumb-light { display: block; }
html[data-theme="light"] .product-gallery-bubble {
  background: rgba(255,255,255,0.82);
  border-color: rgba(13,22,38,0.14);
}
html[data-theme="light"] .product-gallery-placeholder-thumb {
  background: rgba(13,22,38,0.03);
  border-color: rgba(13,22,38,0.14);
  color: #4f607d;
}
html[data-theme="light"] .product-gallery-bubble-copy { color: #101a2e; }
html[data-theme="light"] .product-gallery-bubble-copy small { color: #4e607e; }
html[data-theme="light"] .micro-panel {
  color: var(--text);
  background: rgba(13,22,38,0.05);
  border-color: rgba(13,22,38,0.16);
  box-shadow: 0 10px 24px rgba(13,22,38,0.08);
}
html[data-theme="light"] .contact-identity,
html[data-theme="light"] .contact-method-card {
  background: rgba(13,22,38,0.035);
  border-color: rgba(13,22,38,0.12);
}
html[data-theme="light"] .contact-method-card a {
  color: #0d1626;
}
html[data-theme="light"] .contact-method-card a:hover,
html[data-theme="light"] .contact-method-card a:focus-visible {
  color: var(--button-primary);
}
html[data-theme="light"] .contact-method-card-primary {
  background: rgba(6,134,249,0.08);
  border-color: rgba(6,134,249,0.24);
}
html[data-theme="light"] .site-alert-backdrop {
  background: rgba(13,22,38,0.46);
}
html[data-theme="light"] .site-alert-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,253,0.94));
  border-color: rgba(13,22,38,0.12);
}
html[data-theme="light"] .tech-tag,
html[data-theme="light"] .product-code,
html[data-theme="light"] .year,
html[data-theme="light"] .teaser-kicker {
  color: var(--text);
  background: rgba(13,22,38,0.05);
  border-color: rgba(13,22,38,0.16);
}
html[data-theme="light"] .product-code-button {
  color: #ffffff;
  background: var(--button-primary);
  border-color: var(--button-primary);
}
html[data-theme="light"] .button-light {
  background: var(--button-primary);
  color: #f6f8fc;
  border-color: var(--button-primary);
}
html[data-theme="light"] .button.button-light { color: white; }
html[data-theme="light"] .nav-toggle { border-color: rgba(13,22,38,0.12); background: rgba(13,22,38,0.04); }
html[data-theme="light"] .nav-toggle span { background: #101827; }
html[data-theme="light"] .hero-media img,
html[data-theme="light"] .page-hero-media img {
  filter: saturate(0.96) brightness(0.82);
}
html[data-theme="light"] .hero-overlay,
html[data-theme="light"] .page-overlay {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0.3) 26%, rgba(5, 7, 11, 0.66) 100%),
    radial-gradient(circle at 50% 20%, rgba(143, 109, 255, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.8) 0%, rgba(5, 7, 11, 0.2) 42%, rgba(5, 7, 11, 0.7) 100%);
}
html[data-theme="light"] .hero-overlay {
  border-color: rgba(13, 22, 38, 0.18);
}
html[data-theme="light"] .hero,
html[data-theme="light"] .page-hero {
  box-shadow: inset 0 1px 0 rgba(13,22,38,0.10);
}
html[data-theme="light"] .hero-content p,
html[data-theme="light"] .page-content p { color: #ffffff; }
html[data-theme="light"] .site-footer { background: #eaf0f8; border-top-color: rgba(13,22,38,0.08); }
html[data-theme="light"] .section-dark { background: linear-gradient(180deg, rgba(241,245,251,.84), rgba(234,239,247,.96)); }
html[data-theme="light"] .search-shell input,
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .contact-form textarea {
  background: rgba(13,22,38,0.03);
  border-color: rgba(13,22,38,0.10);
  color: var(--text);
}
html[data-theme="light"] .search-input-wrap .search-icon { color: #5a6f8f; }
html[data-theme="light"] .usecase-placeholder-thumb {
  background: rgba(13,22,38,0.03);
  border-color: rgba(13,22,38,0.10);
  color: #4f607d;
}
html[data-theme="light"] .usecase-section-title {
  color: #0d1626;
}
html[data-theme="light"] .usecase-card-title {
  color: #0d1626;
}
html[data-theme="light"] .search-clear {
  border-color: #d0d7e3;
  background: #f5f7fb;
  color: #2b7de9;
}
html[data-theme="light"] .search-empty {
  border-color: rgba(13,22,38,0.12);
  color: #3c4a62;
}
html[data-theme="light"] .associated-models-label {
  color: #60728f;
}
html[data-theme="light"] .associated-model-pills span {
  background: rgba(6, 134, 249, 0.10);
  border-color: rgba(6, 134, 249, 0.26);
  color: #11437a;
}
html[data-theme="light"] .hotspot span {
  color: var(--text);
  background: rgba(255,255,255,0.90);
  border-color: rgba(13,22,38,0.08);
}
@media (max-width: 820px) {
  .theme-switcher { width: 100%; justify-content: space-between; }
  .product-hero-links { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .core-network-footer {
    grid-template-columns: 1fr;
  }
  .core-network-detail-card,
  .core-network-thumb-card {
    height: auto;
  }
}
@media (max-width: 860px) {
  .core-network-heading {
    display: block;
  }
  .core-network-search-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .core-network-search-shell .search-clear {
    justify-self: end;
  }
  .core-network-intro {
    margin-top: 12px;
    max-width: 100%;
  }
  .core-network-detail-card {
    grid-template-columns: 1fr;
  }
  .core-network-stage {
    aspect-ratio: auto;
    min-height: 0;
    width: 100%;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.015));
  }

  .core-network-bg,
  .core-network-overlay {
    position: absolute;
    inset: 0;
    opacity: .32;
  }

  .core-network-hotspot {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(88px, 120px) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(7,14,28,.22);
    box-shadow: 0 10px 26px rgba(0,0,0,.20);
  }

  .core-network-hotspot[data-core-product] {
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .core-network-hotspot:hover {
    transform: none !important;
  }

  .core-network-hotspot-image-wrap {
    padding: 4px;
  }

  .core-network-hotspot-copy {
    text-align: left;
    padding: 0;
  }

  .core-network-hotspot-title {
    justify-content: flex-start;
  }

  html[data-theme="light"] .core-network-hotspot {
    border-color: rgba(13,22,38,.14);
    background: rgba(255,255,255,.74);
    box-shadow: 0 10px 22px rgba(13,22,38,.12);
  }
}
@media (max-width: 640px) {
  .core-network-shell {
    padding: 14px;
  }
  .core-network-stage {
    padding: 10px;
    gap: 10px;
  }
  .core-network-hotspot {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    padding: 9px;
  }
  .core-network-hotspot-copy {
    text-align: left;
  }
  .core-network-hotspot-title {
    justify-content: flex-start;
  }
  .core-network-hotspot-center {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
  .core-network-detail-image-wrap {
    min-height: 220px;
  }
}
html[data-theme="light"] .core-network-title {
  color: #0d1626;
}
html[data-theme="light"] .core-network-hotspot-title {
  color: #0d1626;
}
html[data-theme="light"] .core-network-hotspot-title::before {
  background: #5a67ff;
}
html[data-theme="light"] .core-network-hotspot-center .core-network-hotspot-image-wrap::before {
  background:
    radial-gradient(circle, rgba(66, 150, 232, 0.28) 0%, rgba(66, 150, 232, 0.14) 36%, rgba(66, 150, 232, 0.03) 60%, rgba(66, 150, 232, 0) 82%),
    repeating-radial-gradient(circle, rgba(66, 150, 232, 0.28) 0 1px, rgba(66, 150, 232, 0) 1px 14px);
}
html[data-theme="light"] .core-network-hotspot .core-network-hotspot-image-wrap::before {
  background: radial-gradient(circle, rgba(66, 150, 232, 0.2) 0%, rgba(66, 150, 232, 0.08) 46%, rgba(66, 150, 232, 0) 74%);
}
html[data-theme="light"] .core-network-hotspot .core-network-hotspot-image-wrap::after {
  border-color: rgba(66, 150, 232, 0.42);
  box-shadow: 0 0 0 0 rgba(66, 150, 232, 0.24);
}
html[data-theme="light"] .core-network-hotspot-center .core-network-hotspot-image-wrap::after {
  border-color: rgba(66, 150, 232, 0.74);
  box-shadow:
    0 0 0 0 rgba(66, 150, 232, 0.42),
    0 0 0 0 rgba(66, 150, 232, 0.28),
    0 0 22px rgba(66, 150, 232, 0.3);
}
html[data-theme="light"] .core-network-hotspot-sub {
  color: #33445f;
}
html[data-theme="light"] .core-network-detail-card,
html[data-theme="light"] .core-network-thumb-card {
  background:
    radial-gradient(circle at top, rgba(105,86,255,.10), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,249,253,.82));
  border-color: rgba(12,21,36,0.10);
}
html[data-theme="light"] .core-network-detail-image-wrap,
html[data-theme="light"] .core-network-thumb-link {
  background: linear-gradient(180deg, rgba(13,22,38,.04), rgba(13,22,38,.02));
  border-color: rgba(13,22,38,0.10);
}
html[data-theme="light"] .core-network-hotspot-image-wrap {
  background: transparent;
  border-color: transparent;
}
html[data-theme="light"] .core-network-detail-label {
  color: #2b7de9;
}
html[data-theme="light"] .core-network-detail-subtitle,
html[data-theme="light"] .core-network-thumb-link p,
html[data-theme="light"] .core-network-thumb-link span {
  color: #4f607d;
}
html[data-theme="light"] .core-network-detail-description {
  color: #15263e;
}
html[data-theme="light"] .core-network-thumb-link strong {
  color: #1f2f48;
}
html[data-theme="light"] .core-network-search-shell .search-input-wrap input {
  background: #fafbfc;
  border-color: #cdd5e0;
  color: #1f2f48;
}
html[data-theme="light"] .core-network-search-shell .search-input-wrap input::placeholder {
  color: #6f7d96;
}
html[data-theme="light"] .core-network-search-shell .search-input-wrap input:focus {
  border-color: #2b7de9;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(43,125,233,.08);
}
html[data-theme="light"] .core-network-search-shell .search-icon {
  stroke: #6f7d96;
}
html[data-theme="light"] .core-network-search-shell .search-icon:hover {
  stroke: #3d4f68;
}
html[data-theme="light"] .core-network-search-shell .product-search-dropdown {
  background: rgba(240, 245, 250, .98);
  border-color: rgba(13,22,38,.08);
}
html[data-theme="light"] .core-network-bg-dark {
  display: none;
}
html[data-theme="light"] .core-network-bg-light {
  display: block;
}
html[data-theme="light"] .core-network-overlay {
  background:
    radial-gradient(circle at center, rgba(67, 132, 215, .06), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .12));
}
html[data-theme="light"] .core-network-thumb-scroller {
  scrollbar-color: rgba(13,22,38,.32) rgba(13,22,38,.08);
}
html[data-theme="light"] .core-network-thumb-scroller::-webkit-scrollbar-track {
  background: rgba(13,22,38,.08);
}
html[data-theme="light"] .core-network-thumb-scroller::-webkit-scrollbar-thumb {
  background: rgba(13,22,38,.32);
}
html[data-theme="light"] .core-network-thumb-nav-button {
  color: #0d1626;
  border-color: rgba(13,22,38,.2);
  background: rgba(13,22,38,.06);
}
html[data-theme="light"] .core-network-thumb-nav-button:hover {
  background: rgba(13,22,38,.12);
  border-color: rgba(13,22,38,.32);
}
