:root {
  --ink: #071a2a;
  --muted: #6f8392;
  --line: #d8e7ef;
  --paper: #ffffff;
  --soft: #f5fafc;
  --deep: #061827;
  --deep-2: #0a2234;
  --blue: #15a8ea;
  --mint: #63ddd4;
  --accent-blue: #15a8ea;
  --accent-mint: #63ddd4;
  --teal: var(--accent-blue);
  --amber: var(--accent-mint);
  --slate: #486173;
  --green: #39bfb7;
  --shadow: 0 18px 60px rgba(8, 32, 51, 0.12);
}

html[data-theme="dark"] {
  --ink: #e8f3f8;
  --muted: #a7bac6;
  --line: rgba(141, 178, 198, 0.28);
  --paper: #0e1c28;
  --soft: #12222f;
  --deep: #061827;
  --deep-2: #0a2234;
  --slate: #bfd0da;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(216, 231, 239, 0.74);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 206px;
  min-width: 206px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a,
.nav-item > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.nav-links a,
.header-cta,
.header-search,
.button {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.header-cta:hover,
.header-search:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-search {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--slate);
  background: rgba(245, 250, 252, 0.88);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.theme-toggle {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--slate);
  background: rgba(245, 250, 252, 0.88);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--ink);
  background: white;
  border-color: #b8d6e6;
  transform: translateY(-1px);
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.theme-toggle-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 100% / 2px 4px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 0 50% / 4px 2px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 100% 50% / 4px 2px no-repeat;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  opacity: 0;
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-icon {
  background: currentColor;
  border-color: currentColor;
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-icon::before {
  opacity: 0;
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-icon::after {
  top: -3px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border-radius: 999px;
  opacity: 1;
}

.header-search span {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.header-search span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.header-search:hover,
.header-search:focus-visible {
  color: var(--ink);
  background: white;
  border-color: #b8d6e6;
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #0798dd);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(21, 168, 234, 0.22);
}

.header-cta::before,
.header-cta::after {
  position: absolute;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-cta::before {
  content: "";
  top: calc(100% + 3px);
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: translateY(4px) rotate(45deg);
  z-index: 21;
}

.header-cta::after {
  content: attr(data-fallback);
  top: calc(100% + 9px);
  width: 286px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  z-index: 20;
}

.header-cta:hover::before,
.header-cta:hover::after,
.header-cta:focus-visible::before,
.header-cta:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.header-cta:hover::before,
.header-cta:focus-visible::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.is-search-open {
  overflow: hidden;
}

.site-search[hidden] {
  display: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: clamp(18px, 6vh, 72px) 18px;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 39, 0.64);
  backdrop-filter: blur(12px);
}

.site-search-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(880px, 100%);
  max-height: min(780px, calc(100vh - 36px));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(5, 20, 32, 0.34);
}

.site-search-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 4vw, 30px) clamp(20px, 4vw, 34px) 12px;
}

.site-search-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.site-search-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.site-search-input-wrap {
  display: grid;
  gap: 8px;
  padding: 0 clamp(20px, 4vw, 34px) 14px;
}

.site-search-input-wrap span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-search-input-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  background: #f8fcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 20px;
  font-weight: 750;
  outline: none;
}

.site-search-input-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 168, 234, 0.12);
}

.site-search-meta {
  padding: 0 clamp(20px, 4vw, 34px) 10px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 850;
}

.site-search-results {
  display: grid;
  gap: 10px;
  max-height: min(470px, 54vh);
  overflow: auto;
  padding: 0 clamp(20px, 4vw, 34px) clamp(20px, 4vw, 34px);
}

.site-search-result,
.site-search-empty {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(245, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(216, 231, 239, 0.96);
  border-radius: 8px;
}

.site-search-result {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  transform: translateY(-1px);
  border-color: #9ed8ef;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.1);
}

.site-search-result span {
  width: fit-content;
  padding: 4px 8px;
  color: #067c8e;
  background: rgba(99, 221, 212, 0.18);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-search-result strong,
.site-search-empty h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.site-search-result p,
.site-search-empty p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.section,
.section-band {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.section-band {
  background: var(--soft);
  border-block: 0;
}

main > .section + .section,
main > .section + .section-band,
main > .section-band + .section,
main > .section-band + .section-band {
  border-top: 1px solid rgba(216, 231, 239, 0.78);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: calc(100vh - 70px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 168, 234, 0.28), transparent 32%),
    radial-gradient(circle at 82% 32%, rgba(99, 221, 212, 0.2), transparent 34%),
    linear-gradient(135deg, var(--deep), #0b2a42 54%, #071b2b);
  border-block: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(21, 168, 234, 0.18), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(99, 221, 212, 0.18), transparent 25%),
    radial-gradient(circle at 58% 82%, rgba(21, 168, 234, 0.12), transparent 30%);
  filter: blur(6px);
  opacity: 0.74;
  animation: hero-aura 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  pointer-events: none;
}

.hero > *:not(.hero-network) {
  position: relative;
  z-index: 1;
}

@keyframes hero-aura {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.08);
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  html,
  body {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    overflow: visible !important;
    color: #071827 !important;
    background: #ffffff !important;
    color-scheme: light !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.evidence-page .site-header,
  body.evidence-page .site-footer,
  body.evidence-page .page-hero,
  body.evidence-page .cookie-consent,
  body.evidence-page .site-search {
    display: none !important;
  }

  body.evidence-page main,
  body.evidence-page .evidence-packet-section,
  body.evidence-page .evidence-document {
    display: block !important;
    position: static !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    color: #071827 !important;
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body.evidence-page .evidence-document * {
    visibility: visible !important;
  }

  body.evidence-page :is(
    .packet-export-header,
    .packet-meta-grid,
    .packet-alert-summary,
    .packet-two-column,
    .packet-signature-grid,
    .corrective-action-grid
  ) {
    display: grid !important;
  }

  body.evidence-page .packet-export-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  body.evidence-page .packet-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.evidence-page .packet-alert-summary,
  body.evidence-page .packet-two-column,
  body.evidence-page .packet-signature-grid,
  body.evidence-page .corrective-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.evidence-page :is(
    .packet-meta-grid article,
    .packet-alert-summary > div,
    .packet-card,
    .packet-timeline li,
    .packet-table,
    .packet-signature-grid div,
    .corrective-action-grid div,
    .qa-review-note,
    .qa-review-editor,
    .temperature-chart
  ) {
    color: #071827 !important;
    background: #ffffff !important;
    border-color: #d8e7ef !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  body.evidence-page :is(
    .packet-subtitle,
    .packet-id,
    .packet-meta-grid p,
    .packet-alert-summary p,
    .packet-timeline p,
    .packet-table td,
    .packet-export-footer p,
    .qa-review-autosave
  ) {
    color: #486173 !important;
  }

  body.evidence-page :is(
    .packet-export-header h2,
    .packet-section-title h3,
    .packet-meta-grid strong,
    .packet-alert-summary strong,
    .packet-timeline strong,
    .packet-signature-grid strong,
    .corrective-action-grid strong
  ) {
    color: #071827 !important;
  }

  body.evidence-page :is(.qa-review-note-action, .packet-footer-cta) {
    display: none !important;
  }
}

.page-hero {
  display: grid;
  align-content: center;
  min-height: 420px;
}

.page-hero h1,
.page-hero p {
  max-width: 880px;
}

.page-hero p {
  font-size: clamp(18px, 2vw, 22px);
}

.hardware-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.hardware-hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hardware-hero-stack article {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  overflow: hidden;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.08);
}

.hardware-hero-stack article:first-child {
  grid-row: span 2;
}

.hardware-hero-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hardware-hero-stack span {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero p,
.hero .hero-text {
  color: #c7dbe6;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.home-hero .hero-actions .button {
  flex: 1 1 0;
  min-width: min(100%, 286px);
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font: inherit;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0b9fe1);
  box-shadow: 0 14px 30px rgba(21, 168, 234, 0.22);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.copy-link-status {
  min-height: 22px;
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.page-hero .button.secondary,
.section-actions .button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  backdrop-filter: none;
}

.platform-partner-context .button.secondary,
.decision-actions .button.secondary,
.hardware-software-bridge-card .button.secondary,
.product-partner-cta .button.secondary,
.free-tool-title .button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  backdrop-filter: none;
  box-shadow: none;
}

.context-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 26px;
}

.context-flow article {
  min-height: 150px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.context-flow span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.context-flow strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 15px;
}

.context-flow p {
  margin: 0;
  color: #c7dbe6;
  font-size: 13px;
  line-height: 1.45;
}

.partner-list span {
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: float-panel 7s ease-in-out infinite;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 760px;
  font-size: 18px;
}

.vision-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: white;
}

.vision-copy {
  position: sticky;
  top: 104px;
}

.vision-copy p {
  max-width: 640px;
  font-size: 18px;
}

.vision-cards {
  grid-template-columns: 1fr;
}

.vision-cards article {
  display: grid;
  min-height: 180px;
  background: var(--soft);
}

.vision-cards span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.vision-cards,
.scenario-grid,
.problems-grid,
.persona-grid,
.link-grid,
.product-grid,
.card-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vision-split .vision-cards {
  grid-template-columns: 1fr;
}

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

.vision-cards article,
.scenario-card,
.problems-grid article,
.persona-grid article,
.section-link,
.product-grid article,
.hardware-grid article,
.solution-card,
.resource-grid article,
.product-rail article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
}

.problems-grid article {
  background: var(--soft);
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 320px;
}

.scenario-card span {
  width: fit-content;
  padding: 6px 9px;
  color: #088f8b;
  background: rgba(99, 221, 212, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scenario-card strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.persona-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.persona-grid article {
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: var(--soft);
}

.persona-grid article h3,
.persona-grid article p {
  margin: 0;
}

.link-grid,
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-link {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 230px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.section-link:hover {
  transform: translateY(-2px);
  border-color: #a9bdc7;
  box-shadow: var(--shadow);
}

.section-link span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--accent-blue);
  border-radius: 8px;
  font-weight: 850;
}

.product-grid article {
  min-height: 220px;
  background: white;
  border-top: 5px solid var(--accent-mint);
}

.hardware-grid article {
  background: white;
  border-top: 5px solid var(--blue);
}

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

.hardware-deployment-grid article {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hardware-deployment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 191, 183, 0.5);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.hardware-deployment-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.ai-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.ai-panel h2 {
  margin-bottom: 0;
}

.ai-panel > p {
  margin-bottom: 0;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-size: 18px;
}

.edge-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.edge-map {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(215, 225, 232, 0.7) 1px, transparent 1px),
    linear-gradient(rgba(215, 225, 232, 0.7) 1px, transparent 1px),
    var(--soft);
  background-size: 42px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.edge-map::before,
.edge-map::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px dashed #9db2bd;
  border-radius: 50%;
}

.edge-map::after {
  width: 44%;
  height: 44%;
}

.edge-node {
  position: absolute;
  display: grid;
  min-width: 120px;
  min-height: 48px;
  place-items: center;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.edge-node.main {
  position: static;
  z-index: 2;
  min-width: 150px;
  min-height: 64px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  border-color: var(--blue);
  font-size: 18px;
  animation: pulse-node 3.8s ease-in-out infinite;
}

.edge-node:nth-child(2) {
  top: 34px;
  left: 42%;
}

.edge-node:nth-child(3) {
  top: 70px;
  left: 44px;
}

.edge-node:nth-child(4) {
  top: 86px;
  right: 42px;
}

.edge-node:nth-child(5) {
  left: 34px;
  bottom: 142px;
}

.edge-node:nth-child(6) {
  right: 32px;
  bottom: 142px;
}

.edge-node:nth-child(7) {
  left: 58px;
  bottom: 38px;
}

.edge-node:nth-child(8) {
  right: 54px;
  bottom: 38px;
}

.edge-node:nth-child(9) {
  bottom: 24px;
  left: 42%;
}

.edge-points {
  display: grid;
  gap: 14px;
}

.edge-points article,
.deployment-grid article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.interface-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(99, 221, 212, 0.14), transparent 28%),
    #101d25;
  border: 1px solid #243744;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.interface-shell aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background: #0b1f2a;
}

.interface-shell aside span {
  padding: 11px 12px;
  color: #cfe0e8;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.interface-main {
  padding: 24px;
}

.interface-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: white;
}

.interface-toolbar span {
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
}

.interface-grid,
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.interface-grid article {
  min-height: 140px;
  padding: 18px;
  background: #172b36;
  border: 1px solid #2c4553;
  border-radius: 8px;
}

.interface-grid p {
  margin-bottom: 22px;
  color: #b7c9d2;
}

.interface-grid strong {
  color: white;
  font-size: 38px;
  line-height: 1;
}

.context-console {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 260px;
  gap: 16px;
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 28px);
  background:
    linear-gradient(rgba(21, 168, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 168, 234, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #071827, #102f40);
  background-size: 32px 32px;
  border: 1px solid #243744;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.context-console-nav,
.evidence-panel,
.context-console-main {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 231, 239, 0.16);
  border-radius: 8px;
}

.context-console-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.context-console-nav span {
  padding: 10px 12px;
  color: #d8eef4;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 780;
}

.context-console-main {
  padding: 18px;
}

.context-console-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: white;
}

.context-console-topbar span,
.evidence-panel > span,
.event-source > span,
.context-entity-grid span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.context-event-map {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) 58px minmax(0, 1.2fr);
  gap: 14px;
  align-items: center;
}

.event-source,
.context-entity-grid article,
.evidence-panel {
  padding: 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.event-source h3 {
  margin: 10px 0;
  font-size: 24px;
  line-height: 1.15;
}

.event-source p,
.context-entity-grid p,
.evidence-panel li {
  color: var(--slate);
}

.context-links {
  display: grid;
  gap: 16px;
}

.context-links span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), rgba(99, 221, 212, 0));
  border-radius: 999px;
}

.context-entity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.context-entity-grid article {
  min-height: 136px;
}

.context-entity-grid strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.context-entity-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.evidence-panel {
  display: grid;
  align-content: start;
}

.evidence-panel h3 {
  margin: 10px 0 16px;
}

.evidence-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.evidence-panel li {
  padding-left: 2px;
}

.deployment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deployment-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 850;
}

.stack-list {
  display: grid;
  gap: 10px;
}

.stack-item {
  display: grid;
  grid-template-columns: 60px 220px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stack-item span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.stack-item h3,
.stack-item p {
  margin-bottom: 0;
}

.card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.solution-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  border-radius: 8px;
  font-weight: 850;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.products .product-rail article {
  background: white;
}

.partners,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.partners-copy p,
.contact p {
  font-size: 18px;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-grid article p {
  margin-bottom: 8px;
  color: #0a8fbd;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-botcheck {
  display: none !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-actions .button {
  width: fit-content;
}

.contact-actions .button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  backdrop-filter: none;
  box-shadow: none;
}

.contact-actions .button.secondary:hover,
.contact-actions .button.secondary:focus-visible {
  color: #087e94;
  background: rgba(21, 168, 234, 0.08);
  border-color: rgba(21, 168, 234, 0.34);
  outline: none;
}

.contact-form-status {
  display: grid;
  gap: 8px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  color: var(--slate);
  font-size: 14px;
}

.contact-form-status:empty {
  display: none;
}

.contact-direct-email {
  margin: -4px 0 0;
  color: var(--slate);
  font-size: 14px;
}

.contact-direct-email a,
.contact-form-status a {
  color: #087e94;
  font-weight: 800;
}

.contact-form-status:not(:empty) {
  padding: 14px;
  background: white;
  border: 1px solid rgba(21, 168, 234, 0.2);
  border-radius: 8px;
}

.contact-status-title {
  color: var(--ink);
  font-weight: 850;
}

.contact-copy-button {
  justify-self: start;
  padding: 9px 11px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.2);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

/* Admin prototype */
.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 168, 234, 0.14), transparent 28%),
    linear-gradient(135deg, #f5fafc, #ffffff 52%, #eef8fb);
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(22px, 5vw, 64px);
}

.admin-login[hidden] {
  display: none;
}

.admin-login-card {
  display: grid;
  gap: 20px;
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 231, 239, 0.96);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(8, 32, 51, 0.14);
}

.admin-login-card .admin-brand {
  color: var(--ink);
}

.admin-login-card h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.98;
}

.admin-login-card p:not(.eyebrow) {
  margin: 0;
  color: var(--slate);
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 850;
}

.admin-login-card input {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.admin-login-status {
  min-height: 20px;
  color: #b64242;
  font-size: 14px;
}

.admin-reset-access {
  width: fit-content;
  padding: 0;
  color: var(--slate);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  cursor: pointer;
}

.admin-reset-access:hover,
.admin-reset-access:focus-visible {
  color: var(--ink);
}

.admin-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: grid;
  gap: 22px;
  min-height: 100vh;
  padding: 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(rgba(99, 221, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 212, 0.07) 1px, transparent 1px),
    linear-gradient(160deg, #061827, #0b3148);
  background-size: 30px 30px, 30px 30px, auto;
}

.admin-brand {
  color: white;
  font-size: 26px;
  font-weight: 900;
}

.admin-sidebar p,
.admin-note span,
.admin-helper,
.admin-empty,
.admin-list small {
  color: var(--muted);
}

.admin-sidebar p,
.admin-note span {
  color: rgba(216, 238, 245, 0.72);
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  min-height: 44px;
  padding: 10px 12px;
  color: rgba(216, 238, 245, 0.78);
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.admin-nav button.is-active {
  color: var(--deep);
  background: var(--mint);
  border-color: transparent;
}

.admin-note {
  display: grid;
  gap: 8px;
  align-self: end;
  padding: 16px;
  border: 1px solid rgba(99, 221, 212, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-note strong {
  color: white;
}

.admin-logout {
  min-height: 44px;
  color: rgba(216, 238, 245, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.admin-panel {
  padding: clamp(26px, 5vw, 56px);
}

.admin-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-panel-header h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.admin-panel-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-metrics article,
.admin-card,
.admin-lead-item,
.admin-resource-item,
.admin-event-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 231, 239, 0.96);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.admin-metrics article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.admin-metrics span,
.admin-list article span,
.admin-event-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-metrics strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.admin-card {
  padding: 22px;
}

.admin-filter-row,
.admin-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-filter-row {
  margin-bottom: 16px;
}

.admin-card label,
.admin-settings-form label,
.admin-resource-form label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 850;
}

.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-lead-item,
.admin-resource-item,
.admin-event-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 18px;
  padding: 18px;
}

.admin-lead-item h3,
.admin-event-item h3,
.admin-resource-item h3,
.admin-card h2 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.admin-lead-item p,
.admin-event-item p,
.admin-resource-item p {
  margin: 0 0 10px;
  color: var(--slate);
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 18px;
  align-items: start;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.admin-content-form textarea {
  min-height: 260px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
}

.admin-event-item pre {
  max-height: 220px;
  margin: 0;
  overflow: auto;
  padding: 12px;
  color: var(--slate);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.admin-event-compact {
  grid-template-columns: 1fr;
}

.admin-lead-controls,
.admin-resource-form,
.admin-settings-form {
  display: grid;
  gap: 14px;
}

.admin-resource-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-dashboard-grid .admin-event-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-event-grid article {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.admin-event-grid p {
  margin: 8px 0 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .admin-shell,
  .admin-resource-layout,
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-panel-header,
  .admin-lead-item,
  .admin-resource-item,
  .admin-event-item {
    grid-template-columns: 1fr;
  }

  .admin-panel-header {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .admin-nav,
  .admin-metrics,
  .admin-filter-row,
  .admin-two-col,
  .admin-dashboard-grid,
  .admin-event-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: #f8fcfe;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 10px;
  max-width: 360px;
}

.footer-logo {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.footer-brand p {
  margin: 0;
  color: var(--slate);
}

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

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-nav span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--slate);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 231, 239, 0.86);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.96);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 32, 51, 0.05);
}

.cookie-settings-link {
  appearance: none;
  padding: 4px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--ink);
}

.cookie-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  width: min(1120px, 100%);
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 32, 51, 0.18);
  pointer-events: auto;
}

.cookie-consent-copy {
  display: grid;
  gap: 8px;
}

.cookie-consent-copy .eyebrow {
  margin: 0;
}

.cookie-consent-copy h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.cookie-consent-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-copy a {
  width: fit-content;
  color: #087e94;
  font-size: 13px;
  font-weight: 850;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-consent-actions .button,
.cookie-consent-save .button {
  min-height: 42px;
  padding-block: 11px;
}

.cookie-consent-preferences {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 231, 239, 0.92);
}

.cookie-consent-option {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--ink);
  background: rgba(244, 250, 253, 0.9);
  border: 1px solid rgba(216, 231, 239, 0.95);
  border-radius: 8px;
}

.cookie-consent-option-header {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-option strong {
  font-size: 14px;
}

.cookie-consent-option input {
  inline-size: 42px;
  block-size: 22px;
  accent-color: #15a8ea;
  cursor: pointer;
}

.cookie-consent-option input:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.cookie-consent-option > span:last-child {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent-save {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a:hover {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.social-linkedin {
  font-size: 15px;
}

.social-facebook {
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.social-x {
  font-size: 13px;
}

.social-youtube {
  padding-left: 2px;
  font-size: 13px;
}

.social-email {
  font-size: 17px;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  bottom: -48px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 168, 234, 0.16), transparent 68%);
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.vision-cards article,
.scenario-card,
.problems-grid article,
.persona-grid article,
.section-link,
.product-grid article,
.hardware-grid article,
.solution-card,
.resource-grid article,
.edge-points article,
.deployment-grid article {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vision-cards article:hover,
.scenario-card:hover,
.problems-grid article:hover,
.persona-grid article:hover,
.product-grid article:hover,
.hardware-grid article:hover,
.solution-card:hover,
.resource-grid article:hover,
.edge-points article:hover,
.deployment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-panel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-node {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(21, 168, 234, 0.28);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(99, 221, 212, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero,
  .ai-panel,
  .edge-layout,
  .hardware-hero,
  .context-console,
  .partners,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .vision-cards,
  .hardware-grid,
  .hardware-deployment-grid,
  .interface-grid,
  .deployment-grid,
  .link-grid,
  .product-grid,
  .card-grid,
  .scenario-grid,
  .problems-grid,
  .persona-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .site-header {
    gap: 14px;
    padding-inline: 22px;
  }

  .brand {
    width: 172px;
    min-width: 172px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .header-search {
    padding: 9px 10px;
  }

  .header-search strong {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(132px, 1fr) auto auto auto;
    gap: 12px;
  }

  .brand {
    width: 162px;
    min-width: 162px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .header-search {
    width: 38px;
    height: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 9px 10px;
    font-size: 0;
  }

  .header-search span {
    width: 13px;
    height: 13px;
  }

  .header-cta::after {
    right: -52px;
    width: min(260px, calc(100vw - 32px));
  }

  .header-cta::before {
    right: 18px;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    padding: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .site-search {
    align-items: start;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: auto;
    padding: 12px;
  }

  .site-search-panel {
    grid-template-rows: auto auto auto minmax(0, 1fr);
    height: calc(100vh - 24px);
    height: calc(100dvh - 24px);
    max-height: none;
    min-height: 0;
  }

  .site-search-head {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 18px 10px;
  }

  .site-search-head h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .site-search-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .site-search-input-wrap,
  .site-search-meta,
  .site-search-results {
    padding-inline: 18px;
  }

  .site-search-results {
    max-height: none;
    min-height: 0;
    overscroll-behavior: contain;
  }

  .site-search-input-wrap input {
    min-height: 52px;
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
  }

  .context-flow,
  .ai-panel,
  .vision-split,
  .interface-shell,
  .context-event-map,
  .context-entity-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section-band {
    padding-block: 48px;
  }

  .hardware-grid,
  .hardware-deployment-grid,
  .interface-grid,
  .deployment-grid,
  .link-grid,
  .product-grid,
  .card-grid,
  .scenario-grid,
  .problems-grid,
  .persona-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .persona-grid {
    grid-auto-rows: auto;
  }

  .persona-grid article {
    min-height: 0;
    padding: 20px;
  }

  .stack-item {
    grid-template-columns: 52px 1fr;
  }

  .stack-item p {
    grid-column: 2;
  }

  .vision-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 18px;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }

  .cookie-consent-actions .button,
  .cookie-consent-save .button {
    width: 100%;
    justify-content: center;
  }

  .cookie-consent-preferences {
    grid-template-columns: 1fr;
  }

  .hardware-hero-stack {
    grid-template-columns: 1fr;
  }

  .hardware-hero-stack article:first-child {
    grid-row: auto;
  }
}


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

.system-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 360px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.system-card.featured {
  grid-column: span 2;
  min-height: 280px;
  background: var(--soft);
}

.system-card:hover,
.package-grid article:hover,
.workflow-grid article:hover,
.solution-domain-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.system-card > span,
.solution-domain-grid article > span,
.package-grid article > span {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.system-layers {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.system-layers strong {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.system-layers p {
  margin-bottom: 8px;
  font-size: 14px;
}

.package-grid,
.workflow-grid,
.solution-domain-grid {
  display: grid;
  gap: 16px;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.incident-walkthrough {
  background:
    radial-gradient(circle at 16% 14%, rgba(99, 221, 212, 0.14), transparent 34%),
    linear-gradient(180deg, #f6fbfd 0%, #eef7fb 100%);
}

.incident-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.incident-scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: -8px auto 24px;
}

.incident-scenario-tabs button {
  padding: 10px 16px;
  color: var(--muted);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(8, 32, 51, 0.05);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.incident-scenario-tabs button:hover,
.incident-scenario-tabs button:focus-visible,
.incident-scenario-tabs button.is-active {
  color: #062032;
  background: var(--mint);
  border-color: rgba(99, 221, 212, 0.72);
  transform: translateY(-1px);
}

.incident-steps {
  display: grid;
  gap: 10px;
}

.incident-steps button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  color: var(--muted);
  text-align: left;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 32, 51, 0.05);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.incident-steps button:hover,
.incident-steps button:focus-visible,
.incident-steps button.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1)), white;
  border-color: rgba(21, 168, 234, 0.62);
  box-shadow: 0 16px 38px rgba(8, 32, 51, 0.1);
  transform: translateY(-2px);
}

.incident-steps button span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.incident-steps button.is-active span {
  color: #062032;
  background: var(--mint);
}

.incident-steps strong {
  color: inherit;
  font-size: 16px;
  line-height: 1.18;
}

.incident-steps small {
  grid-column: 2;
  color: inherit;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.84;
}

.incident-console {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  height: 740px;
  padding: clamp(18px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 72% 12%, rgba(99, 221, 212, 0.16), transparent 36%),
    linear-gradient(135deg, #071a27 0%, #0c3041 100%);
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(8, 32, 51, 0.18);
}

.incident-console-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.incident-console-top span,
.incident-time {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.incident-console-top strong {
  color: white;
  font-size: 14px;
}

.incident-panel {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 16px;
  overflow: hidden;
}

.incident-panel[hidden] {
  display: none;
}

.incident-panel h3 {
  max-width: 860px;
  margin: 0;
  color: white;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.02;
}

.incident-metric-row,
.incident-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.incident-metric-row article,
.incident-context-grid article,
.incident-review-card,
.incident-timeline li,
.incident-packet-grid span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.incident-metric-row article,
.incident-context-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.incident-metric-row span,
.incident-context-grid span,
.incident-review-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.incident-metric-row strong {
  color: white;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
}

.incident-context-grid strong,
.incident-review-card strong {
  color: white;
  font-size: 18px;
  line-height: 1.25;
}

.incident-metric-row small,
.incident-context-grid small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.4;
}

.incident-chart {
  width: 100%;
  height: 180px;
  padding: 12px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.incident-chart text {
  fill: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-weight: 800;
}

.incident-label rect {
  fill: rgba(7, 26, 42, 0.74);
  stroke: rgba(99, 221, 212, 0.32);
  stroke-width: 1;
}

.incident-label text {
  fill: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.incident-callout {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  stroke-width: 2;
}

.incident-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.incident-threshold {
  fill: none;
  stroke: #ffb15e;
  stroke-dasharray: 10 10;
  stroke-width: 3;
}

.incident-line {
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.incident-point {
  fill: #ff6d6d;
  stroke: white;
  stroke-width: 3;
}

.incident-timeline {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.incident-timeline li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 3px 14px;
  padding: 10px 14px;
}

.incident-timeline span {
  grid-row: span 2;
  color: var(--mint);
  font-size: 18px;
  font-weight: 900;
}

.incident-timeline strong {
  color: white;
  font-size: 16px;
}

.incident-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.34;
}

.incident-review-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 18px;
}

.incident-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.incident-checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.incident-checklist li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--mint);
  border-radius: 999px;
}

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

.incident-packet-grid span {
  position: relative;
  padding: 16px 16px 16px 38px;
  color: white;
  font-weight: 850;
}

.incident-packet-grid span::before {
  position: absolute;
  top: 19px;
  left: 16px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(99, 221, 212, 0.16);
}

.incident-outcome {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.5;
}

.incident-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 4px;
}

.incident-actions .button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
}

.deployment-fit-check {
  background:
    radial-gradient(circle at 85% 12%, rgba(99, 221, 212, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
}

.deployment-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.deployment-fit-questions {
  display: grid;
  gap: 14px;
}

.deployment-fit-question {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.deployment-fit-question legend {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.deployment-fit-question legend span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 12px;
}

.deployment-fit-question button {
  width: 100%;
  padding: 13px 14px;
  color: var(--muted);
  text-align: left;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.95);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.34;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.deployment-fit-question button:hover,
.deployment-fit-question button:focus-visible,
.deployment-fit-question button.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1)), white;
  border-color: rgba(21, 168, 234, 0.48);
  transform: translateY(-1px);
}

.deployment-fit-result {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 80% 14%, rgba(99, 221, 212, 0.16), transparent 34%),
    linear-gradient(135deg, #071a27 0%, #0c3041 100%);
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(8, 32, 51, 0.14);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.deployment-fit-result.is-updating {
  opacity: 0.42;
  transform: translateY(5px);
  border-color: rgba(99, 221, 212, 0.18);
  box-shadow: 0 16px 38px rgba(8, 32, 51, 0.1);
}

.deployment-fit-result > span {
  width: fit-content;
  padding: 7px 10px;
  color: #062032;
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.deployment-fit-result h3 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
}

.deployment-fit-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.48;
}

.deployment-fit-result ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deployment-fit-result li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.deployment-fit-result li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--mint);
  border-radius: 50%;
}

.deployment-fit-actions {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.deployment-fit-actions a {
  display: flex;
  justify-content: space-between;
  padding: 11px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.deployment-fit-actions a::after {
  content: "→";
  color: var(--mint);
}

.deployment-fit-actions a:hover,
.deployment-fit-actions a:focus-visible {
  color: #062032;
  background: var(--mint);
}

.deployment-fit-actions a:hover::after,
.deployment-fit-actions a:focus-visible::after {
  color: #062032;
}

@media (max-width: 980px) {
  .incident-layout {
    grid-template-columns: 1fr;
  }

  .deployment-fit-layout {
    grid-template-columns: 1fr;
  }

  .incident-scenario-tabs {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .incident-scenario-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .incident-steps {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 2px 12px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .incident-steps button {
    flex: 0 0 min(260px, 72vw);
    min-width: 0;
    scroll-snap-align: start;
  }

  .incident-steps::-webkit-scrollbar {
    height: 6px;
  }

  .incident-steps::-webkit-scrollbar-track {
    background: rgba(216, 231, 239, 0.7);
    border-radius: 999px;
  }

  .incident-steps::-webkit-scrollbar-thumb {
    background: rgba(21, 168, 234, 0.55);
    border-radius: 999px;
  }

  .incident-console {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .incident-metric-row,
  .incident-context-grid,
  .incident-review-card,
  .incident-packet-grid {
    grid-template-columns: 1fr;
  }

  .incident-panel h3 {
    font-size: 30px;
    line-height: 1.05;
  }

  .incident-chart {
    height: 160px;
  }

  .incident-steps button {
    flex-basis: min(280px, 82vw);
  }

  .incident-timeline li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px;
  }

  .incident-timeline span {
    display: inline-flex;
    grid-row: auto;
    width: fit-content;
    padding: 4px 8px;
    color: #062032;
    background: var(--mint);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
  }

  .incident-timeline strong,
  .incident-timeline p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .incident-actions {
    justify-content: stretch;
  }

  .incident-actions .button {
    flex: 1;
  }
}

.lab-map-shell {
  margin-bottom: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1)),
    white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(8, 32, 51, 0.08);
}

.integrated-scenes-section {
  padding-bottom: clamp(26px, 5vw, 58px);
}

.integrated-scenes-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #071827;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(8, 32, 51, 0.12);
}

.integrated-scenes-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 11 / 6;
  object-fit: cover;
}

.integrated-scenes-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(520px, calc(100% - 36px));
  padding: 12px 14px;
  color: #eaf8fc;
  background: rgba(7, 24, 39, 0.78);
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.lab-scene-map {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
}

.lab-building {
  fill: white;
  stroke: #c8dde8;
  stroke-width: 2;
  filter: url(#lab-map-shadow);
}

.lab-wall {
  fill: none;
  stroke: #d8e7ef;
  stroke-width: 3;
  stroke-linecap: square;
}

.lab-corridor {
  fill: rgba(229, 242, 248, 0.86);
  stroke: rgba(200, 221, 232, 0.84);
  stroke-width: 1.5;
}

.lab-door {
  fill: none;
  stroke: white;
  stroke-width: 11;
  stroke-linecap: round;
}

.lab-map-zone {
  color: inherit;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.lab-map-zone .room-shell {
  fill: url(#lab-room-fill);
  stroke: #c8dde8;
  stroke-width: 2;
  transition:
    fill 180ms ease,
    stroke 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.lab-map-zone .lab-object {
  fill: #ffffff;
  stroke: #496779;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 180ms ease,
    transform 180ms ease;
}

.lab-map-zone .lab-detail {
  fill: none;
  stroke: rgba(73, 103, 121, 0.72);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 180ms ease;
}

.lab-map-zone .lab-signal {
  fill: #63ddd4;
  stroke: #087e94;
  stroke-width: 3;
  transition:
    fill 180ms ease,
    stroke 180ms ease,
    transform 180ms ease;
}

.lab-map-zone .room-label {
  fill: #062032;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: fill 180ms ease;
}

.lab-map-zone:hover .room-shell,
.lab-map-zone:focus-visible .room-shell {
  fill: rgba(21, 168, 234, 0.12);
  stroke: rgba(21, 168, 234, 0.72);
  filter: drop-shadow(0 12px 18px rgba(8, 32, 51, 0.12));
}

.lab-map-zone:hover .lab-object,
.lab-map-zone:hover .lab-detail,
.lab-map-zone:focus-visible .lab-object,
.lab-map-zone:focus-visible .lab-detail {
  stroke: #087e94;
}

.lab-map-zone:hover .lab-signal,
.lab-map-zone:focus-visible .lab-signal {
  fill: var(--blue);
  stroke: #062032;
}

.lab-map-zone:hover .room-label,
.lab-map-zone:focus-visible .room-label {
  fill: #087e94;
}

.zone-cryo .room-shell,
.zone-space .room-shell {
  fill: rgba(99, 221, 212, 0.1);
}

.zone-gas .room-shell {
  fill: rgba(21, 168, 234, 0.08);
}

.lab-map-center rect {
  fill: #071827;
  stroke: rgba(99, 221, 212, 0.42);
  stroke-width: 2;
}

.lab-map-center text:first-of-type {
  fill: white;
  font-size: 25px;
  font-weight: 900;
}

.lab-map-center text:last-of-type {
  fill: rgba(229, 242, 248, 0.82);
  font-size: 16px;
  font-weight: 720;
}

.lab-map-links {
  pointer-events: none;
}

.lab-map-links path {
  fill: none;
  stroke: rgba(73, 103, 121, 0.28);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.lab-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.lab-map-legend a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.lab-map-legend a:hover,
.lab-map-legend a:focus-visible {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.solution-domain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid article,
.workflow-grid article,
.solution-domain-grid article {
  min-height: 220px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.workflow-grid article span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .package-grid,
  .workflow-grid,
  .solution-domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .system-grid,
  .package-grid,
  .workflow-grid,
  .solution-domain-grid {
    grid-template-columns: 1fr;
  }

  .system-card.featured {
    grid-column: auto;
  }

  .lab-map-shell {
    margin-right: 0;
    margin-left: 0;
    border-radius: 8px;
  }

  .integrated-scenes-visual figcaption {
    position: static;
    max-width: none;
    color: var(--slate);
    background: white;
    border: 0;
    border-top: 1px solid rgba(216, 231, 239, 0.9);
    border-radius: 0;
    backdrop-filter: none;
  }

  .lab-scene-map {
    min-width: 0;
  }
}

html[data-theme="dark"] .integrated-scenes-visual {
  border-color: rgba(141, 178, 198, 0.3);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .integrated-scenes-visual figcaption {
  color: #eaf8fc;
  background: rgba(7, 24, 39, 0.84);
  border-color: rgba(99, 221, 212, 0.24);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .integrated-scenes-visual {
    border-color: rgba(141, 178, 198, 0.3);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  }

  html:not([data-theme="light"]) .integrated-scenes-visual figcaption {
    color: #eaf8fc;
    background: rgba(7, 24, 39, 0.84);
    border-color: rgba(99, 221, 212, 0.24);
  }
}


.nav-item {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 14px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 20;
  display: none;
  min-width: 236px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--slate);
  border-radius: 8px;
  white-space: nowrap;
}

.nav-submenu a:hover {
  color: var(--ink);
  background: var(--soft);
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  display: grid;
}

.product-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-subnav a {
  padding: 10px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.software-grid,
.hardware-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.software-grid article,
.hardware-summary-grid article {
  min-height: 230px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.software-grid article {
  border-top: 5px solid var(--blue);
}

.software-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.software-detail-grid article {
  display: grid;
  min-height: 360px;
  align-content: start;
  gap: 12px;
}

.software-detail-grid article p {
  margin-bottom: 0;
}

.software-module-visual {
  display: grid;
  aspect-ratio: 1.56;
  place-items: center;
  margin: 0 0 4px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1)),
    var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.software-module-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.software-grid article:hover,
.hardware-summary-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.software-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.module-feature-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding-left: 18px;
  color: var(--slate);
}

.module-feature-list li {
  padding-left: 2px;
}

.module-context {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 231, 239, 0.86);
  color: var(--muted);
  font-size: 14px;
}

.module-context strong {
  color: var(--ink);
}

.partner-module-cta {
  color: var(--slate);
  background: rgba(21, 168, 234, 0.055);
  border-top-color: rgba(21, 168, 234, 0.22);
}

.partner-module-cta a {
  color: var(--blue);
  font-weight: 850;
}

.product-partner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 22%, rgba(99, 221, 212, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.product-partner-cta p {
  max-width: 760px;
}

.partner-context {
  background: rgba(21, 168, 234, 0.06);
  border-top-color: rgba(21, 168, 234, 0.18);
}

.partner-context a {
  color: #087e94;
  font-weight: 850;
}

.platform-partner-context {
  display: grid;
  gap: 12px;
  justify-items: start;
  max-width: 860px;
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--slate);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
}

.platform-partner-context strong {
  color: var(--ink);
}

.platform-partner-context p {
  margin-bottom: 0;
}

.hardware-series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.hardware-series-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hardware-series-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 191, 183, 0.5);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.hardware-series-card h3 {
  margin-bottom: 10px;
}

.hardware-series-card p:last-child {
  margin-bottom: 0;
}

.hardware-series-media {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.1), rgba(99, 221, 212, 0.12)),
    var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.hardware-series-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hardware {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.product-hardware .button {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .software-grid,
  .hardware-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-hardware {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header.is-open .nav-item {
    display: grid;
  }

  .site-header.is-open .has-submenu::after {
    display: none;
  }

  .site-header.is-open .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header.is-open .nav-submenu a {
    padding: 10px 12px;
  }

  .context-flow,
  .software-grid,
  .hardware-summary-grid {
    grid-template-columns: 1fr;
  }

  .hardware-series-card {
    grid-template-columns: 1fr;
  }
}


.product-hero {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.8fr);
}

.product-architecture-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(rgba(21, 168, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 168, 234, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.74);
  background-size: 30px 30px;
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 32, 51, 0.12);
}

.product-hero-card-grid {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.product-hero-card-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 24px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(8, 32, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-hero-card-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 22px 64px rgba(8, 32, 51, 0.12);
}

.product-hero-card-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-hero-card-grid strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.12;
}

.product-hero-card-grid p {
  margin: 0;
  color: var(--slate);
}

.architecture-column {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 320px;
  padding: clamp(18px, 2.5vw, 26px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.architecture-column-edge {
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: 22px 22px, 22px 22px, auto;
  border-color: rgba(99, 221, 212, 0.42);
}

.architecture-column span,
.architecture-column strong {
  display: block;
}

.architecture-column span {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.architecture-column-edge span {
  color: var(--mint);
}

.architecture-column strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.architecture-column-edge strong,
.architecture-column-edge p {
  color: white;
}

.architecture-column p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.architecture-bridge {
  display: grid;
  width: 44px;
  place-items: center;
  color: #087e94;
  font-size: 28px;
  font-weight: 900;
}

.product-line-grid {
  display: grid;
  gap: 24px;
}

.product-line-card {
  display: grid;
  grid-template-columns: minmax(400px, 0.62fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: stretch;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(8, 32, 51, 0.08);
}

.product-line-card-edge {
  border-color: rgba(21, 168, 234, 0.24);
}

.product-line-media {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.1), rgba(99, 221, 212, 0.13)),
    var(--soft);
}

.product-line-media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.product-line-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
}

.product-line-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(188, 218, 231, 0.72);
  border-radius: 8px;
}

.product-line-photo img {
  width: min(100%, 520px);
  max-height: 360px;
  filter: drop-shadow(0 22px 34px rgba(8, 32, 51, 0.16));
}

.product-line-photo-light {
  background:
    linear-gradient(rgba(21, 168, 234, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 168, 234, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.12)),
    #f8fcfe;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.product-line-photo-dark {
  background:
    linear-gradient(rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: 32px 32px, 32px 32px, auto;
}

.product-line-photo-dark::before {
  border-color: rgba(99, 221, 212, 0.2);
}

.product-line-photo-dark img {
  width: min(100%, 560px);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
}

.product-line-device-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background:
    linear-gradient(rgba(21, 168, 234, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 168, 234, 0.1) 1px, transparent 1px),
    #071827;
  background-size: 30px 30px;
}

.product-line-device-stage-light {
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.1), rgba(99, 221, 212, 0.13)),
    var(--soft);
}

.product-line-device-stage img {
  width: min(100%, 230px);
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(128, 212, 235, 0.22);
  border-radius: 8px;
}

.product-line-device-stage img:first-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 340px);
}

.product-line-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
}

.product-line-copy h3 {
  font-size: clamp(30px, 4vw, 52px);
}

.product-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.first-rollout {
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1)),
    var(--soft);
}

.rollout-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: rollout;
}

.rollout-timeline article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 32, 51, 0.07);
}

.rollout-timeline article::before {
  counter-increment: rollout;
  content: "0" counter(rollout);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 8px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.rollout-timeline span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rollout-timeline h3,
.rollout-timeline p {
  margin: 0;
}

.product-decision-grid,
.edge-capability-grid,
.edge-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-decision-grid article,
.edge-capability-grid article,
.edge-usecase-grid article {
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.product-decision-grid span,
.edge-capability-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.product-category-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-category-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  padding: 30px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.product-category-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.product-category-card h2 {
  max-width: 620px;
}

.product-category-card-edge {
  border-color: rgba(21, 168, 234, 0.24);
}

@media (max-width: 1040px) {
  .product-hero,
  .product-line-card,
  .product-category-grid-three,
  .rollout-timeline,
  .product-decision-grid,
  .edge-capability-grid,
  .edge-usecase-grid {
    grid-template-columns: 1fr;
  }

  .product-architecture-visual {
    grid-template-columns: 1fr;
  }

  .architecture-bridge {
    width: 100%;
    min-height: 42px;
  }
}

@media (max-width: 760px) {
  .product-category-grid {
    grid-template-columns: 1fr;
  }

  .product-line-media {
    min-height: 280px;
  }

  .product-line-photo {
    min-height: 300px;
  }
}


.solution-flow-visual {
  margin-bottom: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.08);
}

.solution-flow-visual img,
.solution-card-visual {
  display: block;
  width: 100%;
}

.solution-image-button {
  position: relative;
  display: block;
  width: calc(100% + 48px);
  margin: -24px -24px 18px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: var(--soft);
  border: 0;
  border-radius: 8px 8px 0 0;
  cursor: zoom-in;
}

.solution-image-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(21, 168, 234, 0.16), transparent 42%),
    linear-gradient(24deg, rgba(99, 221, 212, 0.12), transparent 44%),
    linear-gradient(180deg, transparent 38%, rgba(6, 24, 39, 0.42));
  opacity: 0.74;
  transition: opacity 180ms ease;
}

.solution-image-button span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 10px;
  color: white;
  background: rgba(6, 24, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.solution-image-button:hover::after,
.solution-image-button:focus-visible::after {
  opacity: 0.96;
}

.solution-image-button:hover span,
.solution-image-button:focus-visible span {
  opacity: 1;
}

.solution-image-button:hover span,
.solution-image-button:focus-visible span {
  transform: translateY(0);
}

.solution-image-button:focus-visible {
  outline: 3px solid rgba(21, 168, 234, 0.38);
  outline-offset: 3px;
}

.solution-card-visual {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
  transition: transform 220ms ease;
}

.solution-image-button:hover .solution-card-visual,
.solution-image-button:focus-visible .solution-card-visual {
  transform: scale(1.025);
}

.smart-gauge-visual {
  margin: 16px 0 18px;
  padding: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(99, 221, 212, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(21, 168, 234, 0.07), rgba(99, 221, 212, 0.08));
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
}

.smart-gauge-visual svg {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
}

.smart-gauge-visual .gauge-bg {
  fill: rgba(255, 255, 255, 0.84);
  stroke: rgba(216, 231, 239, 0.95);
}

.smart-gauge-visual .gauge-face,
.smart-gauge-visual .gauge-node-card,
.smart-gauge-visual .camera-body,
.smart-gauge-visual .reading-card,
.smart-gauge-visual .supplier-card {
  fill: url(#gauge-card-fill);
  stroke: rgba(21, 168, 234, 0.32);
  stroke-width: 2.4;
}

.smart-gauge-visual .gauge-tick,
.smart-gauge-visual .camera-scan,
.smart-gauge-visual .supplier-icon {
  fill: none;
  stroke: #486173;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.smart-gauge-visual .gauge-needle {
  fill: none;
  stroke: #15a8ea;
  stroke-linecap: round;
  stroke-width: 4.5;
}

.smart-gauge-visual .gauge-hub,
.smart-gauge-visual .camera-lens {
  fill: #63ddd4;
  stroke: #062032;
  stroke-width: 3;
}

.smart-gauge-visual .gauge-flow {
  fill: none;
  stroke: rgba(72, 97, 115, 0.48);
  stroke-linecap: round;
  stroke-width: 3.2;
}

.smart-gauge-visual marker path {
  fill: rgba(72, 97, 115, 0.68);
}

.smart-gauge-visual text {
  fill: #486173;
  font-size: 11px;
  font-weight: 850;
}

.smart-gauge-visual .reading-value {
  fill: #062032;
  font-size: 20px;
  font-weight: 900;
}

.smart-gauge-visual .reading-label {
  fill: #087e94;
  font-size: 9px;
  text-transform: uppercase;
}

.solution-operating-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(15, 66, 84, 0.92)),
    var(--ink);
  border: 1px solid rgba(128, 212, 235, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(8, 32, 51, 0.16);
}

.solution-operating-flow article {
  position: relative;
  min-height: 360px;
  padding: clamp(22px, 2.8vw, 34px);
  color: #d8eef4;
  border-right: 1px solid rgba(128, 212, 235, 0.18);
}

.solution-operating-flow article:last-child {
  border-right: 0;
}

.solution-operating-flow article::after {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 1;
  width: 20px;
  height: 20px;
  content: "";
  background: inherit;
  border-top: 1px solid rgba(128, 212, 235, 0.24);
  border-right: 1px solid rgba(128, 212, 235, 0.24);
  transform: translateY(-50%) rotate(45deg);
}

.solution-operating-flow article:last-child::after {
  display: none;
}

.solution-operating-flow span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-operating-flow h3 {
  color: white;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.solution-operating-flow p {
  margin-bottom: 18px;
  color: #b7c9d2;
  font-size: 15px;
}

.solution-operating-flow ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-operating-flow li {
  position: relative;
  padding-left: 18px;
  color: #d8eef4;
  font-size: 14px;
  line-height: 1.45;
}

.solution-operating-flow li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--mint);
  border-radius: 999px;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .solution-operating-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-operating-flow article:nth-child(2) {
    border-right: 0;
  }

  .solution-operating-flow article:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .solution-operating-flow {
    grid-template-columns: 1fr;
  }

  .solution-operating-flow article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(128, 212, 235, 0.18);
  }

  .solution-operating-flow article::after {
    display: none;
  }

  .solution-operating-flow span {
    margin-bottom: 18px;
  }
}

.lims-gap-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(99, 221, 212, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.lims-gap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.lims-gap-column {
  display: grid;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.lims-gap-column > span,
.lims-gap-answer strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lims-gap-column h3 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
}

.lims-gap-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lims-gap-column li {
  padding: 16px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.lims-gap-column li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
}

.lims-gap-column li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.lims-gap-column-missing {
  border-color: rgba(21, 168, 234, 0.32);
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.05), rgba(99, 221, 212, 0.08)),
    white;
}

.lims-gap-column-missing > span {
  color: #062032;
  background: var(--mint);
}

.lims-gap-column-missing li {
  background: white;
  border-left: 4px solid rgba(21, 168, 234, 0.52);
}

.lims-gap-bridge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 100%;
  padding: 16px 10px;
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #061827, #0b3149);
  background-size: 20px 20px, 20px 20px, auto;
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
}

.lims-gap-bridge strong {
  font-size: 18px;
  line-height: 1.08;
}

.lims-gap-bridge span {
  color: #b7c9d2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.lims-gap-answer {
  margin-top: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.1), rgba(99, 221, 212, 0.14)),
    #eefaff;
  border: 1px solid rgba(21, 168, 234, 0.28);
  border-radius: 8px;
}

.lims-gap-answer strong {
  margin-bottom: 10px;
  color: #062032;
  background: rgba(99, 221, 212, 0.28);
}

.lims-gap-answer p {
  margin: 0;
  color: var(--slate);
  font-weight: 650;
}

@media (max-width: 980px) {
  .lims-gap-grid {
    grid-template-columns: 1fr;
  }

  .lims-gap-bridge {
    min-height: 112px;
  }
}

.solution-domain-grid article {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 108px;
}

.solution-domain-grid article:target,
.solution-domain-grid article.scene-target-highlight {
  border-color: rgba(21, 168, 234, 0.78);
  box-shadow:
    0 0 0 4px rgba(99, 221, 212, 0.18),
    0 22px 62px rgba(8, 32, 51, 0.16);
}

.solution-domain-grid article.scene-target-highlight::after {
  content: "Selected scene";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: white;
  background: rgba(6, 24, 39, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.solution-domain-grid article:target .solution-image-button span,
.solution-domain-grid article.scene-target-highlight .solution-image-button span {
  opacity: 1;
  transform: translateY(0);
}

.solution-domain-grid article:target .scene-detail-button,
.solution-domain-grid article.scene-target-highlight .scene-detail-button {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}


.partner-ecosystem,
.partner-value-layout,
.partner-workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.partner-copy p {
  max-width: 640px;
  font-size: 18px;
}

.partner-customer-questions {
  background:
    radial-gradient(circle at 82% 18%, rgba(99, 221, 212, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.partner-question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-question-grid article {
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-top: 3px solid rgba(21, 168, 234, 0.34);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(8, 32, 51, 0.06);
}

.partner-question-grid span {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-question-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 850;
  line-height: 1.18;
}

.partner-question-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.partner-path-link {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 4px;
  color: #087e94;
  font-size: 13px;
  font-weight: 850;
}

.partner-path-link strong {
  color: var(--ink);
}

.partner-path-link::after {
  content: "→";
  color: var(--blue);
  font-weight: 900;
  transition: transform 160ms ease;
}

.partner-path-link:hover::after,
.partner-path-link:focus-visible::after {
  transform: translateX(3px);
}

.partner-scenario-grid,
.partner-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.partner-scenario-grid article,
.partner-model-grid article {
  min-height: 230px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-scenario-grid span,
.partner-model-grid span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.partner-visual {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.08);
}

.partner-visual img {
  display: block;
  width: 100%;
}

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

.current-partner-card {
  display: grid;
  gap: 18px;
  min-height: 300px;
  padding: clamp(20px, 3vw, 30px);
  color: inherit;
  text-decoration: none;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.current-partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.48);
  box-shadow: 0 20px 46px rgba(8, 32, 51, 0.11);
}

.current-partner-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.current-partner-logo {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(235, 246, 251, 0.78), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(216, 231, 239, 0.95);
  border-radius: 8px;
}

.current-partner-logo img {
  display: block;
  width: min(100%, 360px);
  max-height: 78px;
  object-fit: contain;
}

.current-partner-logo-dark {
  background:
    radial-gradient(circle at 50% 50%, rgba(164, 91, 232, 0.18), transparent 58%),
    linear-gradient(135deg, #0b0d12, #101a2a);
  border-color: rgba(99, 221, 212, 0.22);
}

.current-partner-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.current-partner-card p {
  color: var(--muted);
}

.partner-value-grid,
.partner-type-grid {
  display: grid;
  gap: 16px;
}

.partner-value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-fit-matrix {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.08);
}

.partner-fit-head,
.partner-fit-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
}

.partner-fit-head {
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.partner-fit-head div,
.partner-fit-row div {
  padding: 20px 24px;
}

.partner-fit-head div + div,
.partner-fit-row div + div {
  border-left: 1px solid rgba(216, 231, 239, 0.86);
}

.partner-fit-row {
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid rgba(216, 231, 239, 0.86);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.partner-fit-row:nth-child(odd) {
  background: rgba(245, 250, 252, 0.7);
}

.partner-fit-row:hover {
  background: linear-gradient(90deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1));
  box-shadow: inset 4px 0 0 rgba(21, 168, 234, 0.72);
}

.partner-fit-row:focus-visible {
  background: rgba(245, 250, 252, 0.96);
  box-shadow: inset 4px 0 0 rgba(99, 221, 212, 0.62);
  outline: none;
}

.partner-fit-row div {
  display: grid;
  align-content: center;
  min-height: 98px;
  color: var(--slate);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
}

.partner-fit-row div:first-child {
  color: var(--ink);
}

.partner-fit-row span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border: 1px solid rgba(99, 221, 212, 0.38);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.api-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.api-preview-cards {
  display: grid;
  gap: 14px;
}

.api-preview-cards article {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 128px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 32, 51, 0.06);
}

.api-preview-cards span {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.api-preview-cards code {
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.api-preview-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
}

.api-preview-code {
  min-height: 100%;
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  overflow: visible;
  color: rgba(235, 249, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(99, 221, 212, 0.08), transparent 34%),
    linear-gradient(180deg, #071e2e, #082033);
  border: 1px solid rgba(99, 221, 212, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(8, 32, 51, 0.14);
}

.api-preview-code code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.partner-first-30 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-first-30 div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(245, 250, 252, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.partner-first-30 div::before {
  content: attr(data-phase);
  width: fit-content;
  padding: 6px 9px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.partner-first-30 span {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-first-30 h3 {
  margin: 0;
  font-size: 18px;
}

.partner-first-30 p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.partner-first-30-summary {
  grid-column: 1 / -1;
  padding: 16px 18px;
  color: var(--ink) !important;
  background: rgba(21, 168, 234, 0.07);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-left: 4px solid rgba(21, 168, 234, 0.62);
  border-radius: 8px;
  font-size: 16px !important;
  font-weight: 850 !important;
}

.partner-workflow-integrated {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.08);
}

.partner-value-grid article,
.partner-type-grid article {
  min-height: 210px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-type-grid article {
  background: var(--soft);
}

.partner-gain {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 231, 239, 0.86);
  color: var(--slate);
  font-size: 14px;
}

.partner-gain strong {
  color: var(--ink);
}

.partner-deployment-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 231, 239, 0.9);
}

.partner-deployment-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.partner-deployment-note p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.partner-value-grid article:hover,
.partner-type-grid article:hover,
.partner-scenario-grid article:hover,
.partner-model-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.partner-value-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .partner-ecosystem,
  .partner-value-layout,
  .partner-workflow-layout,
  .api-preview-layout {
    grid-template-columns: 1fr;
  }

  .partner-type-grid,
  .partner-scenario-grid,
  .partner-question-grid,
  .partner-first-30,
  .current-partner-grid,
  .partner-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .partner-value-grid,
  .partner-type-grid,
  .partner-scenario-grid,
  .partner-question-grid,
  .partner-first-30,
  .partner-model-grid {
    grid-template-columns: 1fr;
  }

  .partner-first-30 div {
    min-height: 0;
  }

  .partner-question-grid article {
    min-height: 0;
  }

  .product-partner-cta {
    grid-template-columns: 1fr;
  }

  .current-partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-fit-head {
    display: none;
  }

  .partner-fit-row {
    grid-template-columns: 1fr;
  }

  .partner-fit-row div {
    min-height: 0;
    padding: 18px;
    font-size: 16px;
  }

  .partner-fit-row div + div {
    border-top: 1px solid rgba(216, 231, 239, 0.86);
    border-left: 0;
  }

  .partner-fit-row div:first-child::before,
  .partner-fit-row div:last-child::before {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .partner-fit-row div:first-child::before {
    content: "What you already have";
  }

  .partner-fit-row div:last-child::before {
    content: "Customer gets";
  }

  .api-preview-cards article {
    min-height: 0;
  }

  .api-preview-code {
    padding: 18px;
  }

  .api-preview-code code {
    font-size: 12px;
    line-height: 1.75;
  }
}

.about-hero h1 {
  max-width: 980px;
}

.about-intro {
  display: block;
}

.about-intro-copy {
  max-width: 980px;
}

.about-intro-copy p {
  font-size: 18px;
}

.about-proof-grid {
  display: grid;
  gap: 14px;
}

.leadership-grid,
.investor-signal-grid,
.global-readiness-grid {
  display: grid;
  gap: 16px;
}

.leadership-grid {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.8fr));
}

.investor-signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oem-proof-callout {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  margin-top: 18px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.1)),
    white;
  border: 1px solid rgba(21, 168, 234, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.06);
}

.oem-proof-callout h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.14;
}

.oem-proof-callout p {
  max-width: 880px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.global-readiness-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-proof-grid article,
.investor-grid article,
.leadership-grid article,
.investor-signal-grid article,
.global-readiness-grid article,
.vision-principle-grid article {
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.06);
}

.about-proof-grid span,
.leadership-grid span,
.investor-signal-grid span,
.global-readiness-grid span,
.vision-principle-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 10px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.about-proof-grid p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 750;
}

.leadership-grid article:first-child {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 255, 0.98)),
    white;
  border-color: rgba(21, 168, 234, 0.22);
}

.leadership-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.leadership-links a {
  padding: 10px 12px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.investor-signal-grid span {
  min-height: 40px;
  color: var(--ink);
  background: rgba(99, 221, 212, 0.22);
  font-size: 15px;
}

.global-readiness-grid article {
  background: var(--soft);
}

.about-timeline {
  display: grid;
  position: relative;
  gap: 0;
  max-width: 1080px;
  margin-inline: auto;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 144px;
  width: 2px;
  background: linear-gradient(180deg, rgba(21, 168, 234, 0.2), rgba(21, 168, 234, 0.78), rgba(99, 221, 212, 0.26));
}

.about-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 48px;
  padding: 0 0 30px;
}

.about-timeline article:last-child {
  padding-bottom: 0;
}

.about-timeline article::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 137px;
  z-index: 1;
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(21, 168, 234, 0.1);
}

.about-timeline span {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.about-timeline div {
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.06);
}

.about-timeline h3 {
  margin-bottom: 8px;
}

.about-investors .section-heading {
  max-width: 900px;
}

.investor-ecosystem-groups {
  display: grid;
  gap: 28px;
}

.investor-logo-group {
  display: grid;
  gap: 14px;
}

.investor-logo-group h3 {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.individual-investor-group,
.ecosystem-logo-group {
  padding-top: 22px;
  border-top: 1px solid rgba(216, 231, 239, 0.86);
}

.individual-investor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.individual-investor-card {
  min-height: 156px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 22px 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.06);
  text-align: center;
}

.individual-investor-card:hover {
  border-color: rgba(21, 168, 234, 0.38);
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.1);
}

.individual-investor-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(216, 231, 239, 0.92);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 22px rgba(8, 32, 51, 0.12);
}

.individual-investor-card span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.25;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.investor-grid article {
  min-height: 124px;
  display: grid;
  align-content: center;
  place-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.investor-grid a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.investor-grid img {
  width: min(190px, 82%);
  max-height: 72px;
  object-fit: contain;
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
}

.ecosystem-grid article {
  min-height: 150px;
  background: #fff;
}

.ecosystem-grid img {
  width: auto;
  height: 94px;
  max-width: 84%;
  object-fit: contain;
}

.investor-grid .investor-card-dark {
  background:
    linear-gradient(rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0a2234);
  background-size: 28px 28px, 28px 28px, auto;
  border-color: rgba(99, 221, 212, 0.22);
}

.about-vision {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.about-vision-copy {
  position: sticky;
  top: 100px;
}

.about-vision-copy p {
  font-size: 18px;
}

.vision-principle-grid {
  display: grid;
  gap: 16px;
}

.vision-principle-grid article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 252, 0.98)),
    white;
}

.vision-principle-grid span {
  color: var(--ink);
  background: rgba(21, 168, 234, 0.12);
}

@media (max-width: 980px) {
  .about-intro,
  .about-vision {
    grid-template-columns: 1fr;
  }

  .leadership-grid,
  .investor-signal-grid,
  .global-readiness-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-vision-copy {
    position: static;
  }

  .investor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .individual-investor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oem-proof-callout {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .leadership-grid,
  .investor-signal-grid,
  .global-readiness-grid,
  .individual-investor-grid,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline::before {
    left: 13px;
  }

  .about-timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 36px;
  }

  .about-timeline article::before {
    left: 6px;
  }
}


.scene-detail-button {
  width: fit-content;
  margin-top: auto;
  padding: 10px 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.scene-detail-button:hover,
.scene-detail-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(21, 168, 234, 0.48);
  background: #f8fcfe;
  outline: none;
}

.solution-resource-link {
  width: fit-content;
  color: #087e94;
  font-size: 13px;
  font-weight: 850;
}

.solution-resource-link::after {
  content: " →";
  color: var(--blue);
  font-weight: 900;
}

.solution-resource-link:hover,
.solution-resource-link:focus-visible {
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

.scene-modal[hidden] {
  display: none;
}

.scene-modal,
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.scene-modal-backdrop,
.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 39, 0.58);
  border: 0;
  cursor: pointer;
}

.image-modal[hidden] {
  display: none;
}

.scene-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(6, 24, 39, 0.28);
}

.image-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(6, 24, 39, 0.28);
}

.image-modal-panel h2 {
  max-width: 960px;
  margin-bottom: 18px;
  padding-right: 48px;
  font-size: clamp(28px, 4vw, 48px);
}

.image-modal-panel img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.scene-modal-close,
.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.scene-modal-summary {
  max-width: 820px;
  font-size: 18px;
}

.scene-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.scene-mode-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.manual-mode {
  background: #fbfdfe;
}

.aiot-mode {
  background: var(--soft);
  border-left: 5px solid var(--blue) !important;
}

.scene-mode-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scene-mode-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--slate);
}

.scene-outcome {
  margin-top: 16px;
  padding: 20px;
  background: #0b1f2a;
  border-radius: 8px;
}

.scene-outcome strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
}

.scene-outcome p {
  margin: 0;
  color: #cfe0e8;
}

@media (max-width: 760px) {
  .scene-modal,
  .image-modal {
    padding: 12px;
  }

  .scene-mode-grid {
    grid-template-columns: 1fr;
  }

  .image-modal-panel {
    padding: 18px;
  }

  .image-modal-panel h2 {
    padding-right: 44px;
  }
}


.platform-wedge,
.platform-stack-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.platform-wedge-copy p {
  max-width: 640px;
  font-size: 18px;
}

.platform-wedge-grid,
.expansion-grid {
  display: grid;
  gap: 16px;
}

.platform-wedge-grid {
  grid-template-columns: 1fr;
}

.expansion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-wedge-grid article,
.expansion-grid article {
  min-height: 210px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.platform-wedge-grid article {
  background: var(--soft);
}

.platform-wedge-grid article:hover,
.expansion-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.1);
}

.platform-wedge-grid span,
.expansion-grid span {
  display: grid;
  width: fit-content;
  min-width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.platform-stack-visual {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.08);
}

.platform-stack-visual img {
  display: block;
  width: 100%;
}

.platform-stack-list .stack-item {
  grid-template-columns: 56px 190px 1fr;
}

@media (max-width: 1100px) {
  .platform-wedge,
  .platform-stack-layout {
    grid-template-columns: 1fr;
  }

  .expansion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .expansion-grid {
    grid-template-columns: 1fr;
  }

  .platform-stack-list .stack-item {
    grid-template-columns: 52px 1fr;
  }
}


.platform-stack-section .section-heading p {
  max-width: 860px;
}

.platform-layer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.platform-layer-map {
  position: relative;
  display: grid;
  gap: 12px;
}

.platform-layer-map::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 29px;
  width: 2px;
  background: linear-gradient(0deg, rgba(21, 168, 234, 0.22), rgba(99, 221, 212, 0.9));
}

.platform-layer {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(138px, auto);
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 20px 22px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 32, 51, 0.06);
}

.platform-layer h3 {
  margin-bottom: 6px;
}

.platform-layer p {
  margin: 0;
  color: var(--muted);
}

.layer-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: var(--ink);
  border: 5px solid white;
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 10px 20px rgba(8, 32, 51, 0.16);
}

.platform-layer strong {
  justify-self: end;
  width: fit-content;
  max-width: 180px;
  padding: 8px 10px;
  color: #0a4254;
  background: rgba(99, 221, 212, 0.16);
  border: 1px solid rgba(99, 221, 212, 0.34);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.layer-context {
  border-color: rgba(21, 168, 234, 0.36);
  background: linear-gradient(135deg, #ffffff, #eefaff);
}

.layer-intelligence {
  color: white;
  background: linear-gradient(135deg, var(--deep), #0d3853);
  border-color: rgba(99, 221, 212, 0.28);
}

.layer-intelligence p {
  color: #c8dce5;
}

.layer-intelligence .layer-index {
  color: var(--ink);
  background: var(--mint);
}

.layer-intelligence strong {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.platform-flow-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--deep), #0c344d);
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.12);
}

.platform-flow-panel h3 {
  margin-bottom: 4px;
}

.platform-flow-step {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.platform-flow-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-weight: 850;
}

.platform-flow-step p {
  margin: 0;
  color: #d6e7ef;
}

.ai4s-value-layout {
  display: grid;
  gap: 22px;
}

.ai4s-signal-grid,
.ai4s-outcome-grid {
  display: grid;
  gap: 16px;
}

.ai4s-signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai4s-outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai4s-signal-grid article,
.ai4s-outcome-grid article {
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.ai4s-signal-grid article {
  background: var(--soft);
}

.ai4s-signal-grid span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.ai4s-outcome-grid article {
  border-color: rgba(21, 168, 234, 0.22);
}

@media (max-width: 1080px) {
  .platform-layer-layout,
  .ai4s-signal-grid,
  .ai4s-outcome-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .platform-layer {
    grid-template-columns: 52px 1fr;
  }

  .platform-layer strong {
    grid-column: 2;
    justify-self: start;
    max-width: none;
  }

  .layer-index {
    width: 52px;
    height: 52px;
  }
}


.home-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(28px, 4vw, 54px);
}

.home-hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
}

.home-hero .hero-text {
  max-width: 640px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-proof-row span {
  padding: 8px 10px;
  color: #d8eef5;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
}

.home-role-onramp {
  padding-block: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(180deg, #edf8fc 0%, #f7fbfd 34%, #ffffff 100%);
  box-shadow: inset 0 18px 42px rgba(8, 32, 51, 0.04);
}

.role-onramp-head {
  display: grid;
  gap: 8px;
  align-items: start;
  max-width: 830px;
  margin: 0 0 24px;
}

.role-onramp-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}

.role-onramp-head .eyebrow {
  margin: 0;
  font-size: 18px;
}

.role-onramp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.role-onramp-controls {
  display: none;
}

.role-slide-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(178, 217, 234, 0.92);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(8, 32, 51, 0.06);
  cursor: pointer;
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.role-slide-button:hover,
.role-slide-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 168, 234, 0.54);
  box-shadow: 0 16px 36px rgba(8, 32, 51, 0.12);
  outline: none;
}

.role-onramp-grid a {
  display: grid;
  height: 180px;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.96));
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-top: 3px solid rgba(21, 168, 234, 0.34);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(8, 32, 51, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.role-onramp-grid a:hover,
.role-onramp-grid a:focus-visible {
  border-color: rgba(21, 168, 234, 0.48);
  box-shadow: 0 18px 46px rgba(8, 32, 51, 0.12);
  outline: none;
  transform: translateY(-3px);
}

.role-onramp-grid span {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.role-onramp-grid strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.role-onramp-grid em {
  align-self: end;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.home-video-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
}

.home-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-platform-grid article {
  min-height: 260px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.home-platform-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.home-wedge {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.home-wedge-copy p {
  max-width: 640px;
  font-size: 18px;
}

.home-wedge-grid {
  display: grid;
  gap: 14px;
}

.home-wedge-card {
  min-height: 176px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.home-wedge-card span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-scenario-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -10px 0 16px;
}

.scenario-slide-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(178, 217, 234, 0.92);
  border-radius: 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(8, 32, 51, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.scenario-slide-button:hover,
.scenario-slide-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 168, 234, 0.54);
  box-shadow: 0 16px 36px rgba(8, 32, 51, 0.12);
  outline: none;
}

.home-scenario-slider {
  position: relative;
}

.home-scenario-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 31.5%);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(21, 168, 234, 0.38) rgba(216, 231, 239, 0.5);
}

.home-scenario-card {
  display: flex;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-scenario-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 168, 234, 0.44);
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.12);
}

.home-scenario-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.home-scenario-card div {
  padding: 20px;
}

.home-scenario-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #088f8b;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-scenario-card p {
  margin-bottom: 0;
}

.home-ai > p {
  border-left-color: var(--blue);
}

.home-site-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .home-platform-grid,
  .home-site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-scenario-track {
    grid-auto-columns: minmax(280px, 44%);
  }
}

@media (max-width: 1180px) {
  .role-onramp-controls {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    max-width: var(--max);
    margin: 0 auto 12px;
  }

  .role-onramp-grid {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 14px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(21, 168, 234, 0.38) rgba(216, 231, 239, 0.5);
    -webkit-overflow-scrolling: touch;
  }

  .role-onramp-grid::-webkit-scrollbar {
    height: 6px;
  }

  .role-onramp-grid::-webkit-scrollbar-track {
    background: rgba(216, 231, 239, 0.62);
    border-radius: 999px;
  }

  .role-onramp-grid::-webkit-scrollbar-thumb {
    background: rgba(21, 168, 234, 0.45);
    border-radius: 999px;
  }

  .role-onramp-grid a {
    flex: 0 0 min(310px, 78vw);
    height: 180px;
    scroll-snap-align: start;
  }
}

@media (max-width: 1100px) {
  .home-hero,
  .home-wedge {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-platform-grid,
  .home-site-grid {
    grid-template-columns: 1fr;
  }

  .role-onramp-head {
    display: grid;
    align-items: start;
  }

  .role-onramp-head .eyebrow {
    white-space: normal;
  }

  .role-onramp-grid a {
    flex-basis: min(300px, 84vw);
    height: 180px;
  }

  .home-scenario-controls {
    justify-content: flex-start;
  }

  .home-scenario-track {
    grid-auto-columns: minmax(260px, 86%);
  }
}


.lab-context-hero {
  position: relative;
  display: grid;
  margin: 0;
  overflow: hidden;
  background: rgba(3, 14, 24, 0.76);
  border: 1px solid rgba(128, 212, 235, 0.3);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(99, 221, 212, 0.04) inset;
  animation: float-panel 7s ease-in-out infinite;
}

.lab-context-hero::before {
  display: none;
}

.command-carousel-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061827;
}

.command-carousel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, rgba(99, 221, 212, 0.12), transparent 24%, transparent 72%, rgba(21, 168, 234, 0.1)),
    linear-gradient(180deg, rgba(3, 14, 24, 0.04), rgba(3, 14, 24, 0.14));
  pointer-events: none;
}

.command-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.025) translateX(18px);
  clip-path: inset(0 0 0 12%);
  filter: saturate(1.08) contrast(1.03);
  transition:
    opacity 820ms ease,
    transform 1200ms cubic-bezier(0.2, 0.74, 0.2, 1),
    clip-path 1200ms cubic-bezier(0.2, 0.74, 0.2, 1);
}

.command-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1) translateX(0);
  clip-path: inset(0 0 0 0);
}

.lab-context-hero figcaption {
  position: static;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 18px 20px 16px;
  background: rgba(6, 24, 39, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  backdrop-filter: blur(14px);
}

.lab-context-hero figcaption span {
  display: block;
  margin-bottom: 0;
  color: var(--mint);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.lab-context-hero figcaption strong {
  display: block;
  color: white;
  max-width: 880px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.18;
}

.command-carousel-dots {
  display: flex;
  gap: 7px;
  margin-top: 4px;
  justify-self: start;
}

.command-carousel-dots i {
  display: block;
  width: 34px;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.command-carousel-dots i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--mint);
  border-radius: inherit;
}

.command-carousel-dots i.is-active::before {
  animation: command-dot-progress 6s linear forwards;
}

@keyframes command-dot-progress {
  to {
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .lab-context-hero {
    animation: none;
  }

  .lab-context-hero figcaption {
    grid-template-columns: 1fr;
    border-inline: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .command-carousel-dots {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .lab-context-hero,
  .command-carousel-dots i.is-active::before {
    animation: none;
  }

  .command-slide {
    transition: none;
  }
}


.home-challenges {
  background:
    linear-gradient(180deg, #f8fcfd 0%, #f5fafc 100%);
}

.challenge-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.challenge-lead {
  position: sticky;
  top: 104px;
  padding: 26px;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--deep), #0c344d);
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.14);
}

.challenge-lead span,
.challenge-outcome strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.challenge-lead h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.challenge-lead p {
  margin-bottom: 0;
  color: #cfe0e8;
}

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

.challenge-grid article {
  min-height: 230px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.challenge-grid article span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.challenge-grid article:nth-child(2n) span {
  color: var(--ink);
  background: var(--mint);
}

.challenge-outcome {
  margin-top: 18px;
  padding: 24px;
  background: #eefaff;
  border: 1px solid rgba(21, 168, 234, 0.28);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.challenge-outcome strong {
  color: #087e94;
}

.challenge-outcome p {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 18px;
}

.week-exposure-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 12% 12%, rgba(99, 221, 212, 0.14), transparent 28%),
    linear-gradient(135deg, #061827, #0c344d);
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(8, 32, 51, 0.14);
}

.week-exposure-copy h3 {
  max-width: 640px;
  margin-bottom: 12px;
  color: white;
  font-size: clamp(24px, 3vw, 38px);
}

.week-exposure-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 18px;
  color: #cfe0e8;
  font-size: 18px;
}

.week-exposure-callout {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(128, 212, 235, 0.22);
  border-radius: 8px;
}

.week-exposure-callout strong {
  color: var(--mint);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
}

.week-exposure-callout span {
  max-width: 210px;
  color: #d7e8ef;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
}

.week-exposure-dashboard {
  display: grid;
  gap: 14px;
}

.week-map-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.week-map-header span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.week-map-header strong {
  color: white;
  font-size: 15px;
}

.week-map-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-color: rgba(99, 221, 212, 0.45) rgba(255, 255, 255, 0.08);
  -webkit-overflow-scrolling: touch;
}

.week-map {
  display: grid;
  gap: 7px;
  min-width: 660px;
  padding: 16px;
  background: #05131f;
  border: 1px solid rgba(128, 212, 235, 0.28);
  border-radius: 8px;
}

.week-map-labels,
.week-day-row {
  display: grid;
  gap: 10px;
  align-items: center;
}

.week-map-labels {
  grid-template-columns: 44px repeat(5, minmax(0, 1fr));
}

.week-day-row {
  grid-template-columns: 44px minmax(0, 1fr);
}

.week-map-labels {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.week-map-labels span:nth-child(2) { grid-column: 2; justify-self: start; }
.week-map-labels span:nth-child(3) { grid-column: 3; justify-self: start; }
.week-map-labels span:nth-child(4) { grid-column: 4; justify-self: start; }
.week-map-labels span:nth-child(5) { grid-column: 5; justify-self: start; }
.week-map-labels span:nth-child(6) { grid-column: 6; justify-self: end; }

.week-day-row > strong {
  color: white;
  font-size: 12px;
  font-weight: 880;
}

.week-day-track {
  position: relative;
  min-height: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: calc(100% / 24) 100%;
  border: 1px solid rgba(128, 212, 235, 0.14);
  border-radius: 8px;
}

.is-weekend .week-day-track {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(3, 11, 19, 0.72);
  background-size: calc(100% / 24) 100%;
}

.staffed-window {
  position: absolute;
  inset: 4px auto 4px 37.5%;
  width: 41.67%;
  background:
    linear-gradient(135deg, rgba(99, 221, 212, 0.92), rgba(55, 191, 183, 0.68));
  border: 1px solid rgba(99, 221, 212, 0.6);
  border-radius: 7px;
  box-shadow: 0 0 20px rgba(99, 221, 212, 0.13);
}

.week-event {
  position: absolute;
  top: 50%;
  left: var(--x);
  z-index: 2;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border: 2px solid #061827;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(21, 168, 234, 0.13);
  transform: translate(-50%, -50%);
}

.week-event::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  top: 50%;
  padding: 4px 6px;
  color: #d7e8ef;
  background: rgba(6, 24, 39, 0.88);
  border: 1px solid rgba(128, 212, 235, 0.18);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
  transform: translateY(-50%);
}

.event-temp {
  background: #ffcc66;
  box-shadow: 0 0 0 5px rgba(255, 204, 102, 0.12);
}

.event-gas {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(99, 221, 212, 0.12);
}

.event-door {
  background: var(--blue);
}

.week-event.is-critical {
  width: 14px;
  height: 14px;
  background: #ff6b6b;
  box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.15);
}

.week-exposure-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.week-exposure-stats div {
  min-height: 84px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(128, 212, 235, 0.2);
  border-radius: 8px;
}

.week-exposure-stats strong {
  display: block;
  color: var(--mint);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1;
}

.week-exposure-stats span {
  display: block;
  margin-top: 8px;
  color: #d7e8ef;
  font-size: 13px;
  font-weight: 760;
}

.week-signal-stream {
  display: grid;
  gap: 8px;
}

.week-signal-stream article,
.week-signal-stream a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(128, 212, 235, 0.17);
  border-radius: 8px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.week-signal-stream a {
  position: relative;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  border-color: rgba(99, 221, 212, 0.4);
  background: rgba(99, 221, 212, 0.09);
  animation: week-signal-pulse 2.8s ease-in-out infinite;
}

.week-signal-stream a:hover,
.week-signal-stream a:focus-visible {
  background: rgba(99, 221, 212, 0.14);
  border-color: rgba(99, 221, 212, 0.68);
  transform: translateY(-1px);
  animation-play-state: paused;
}

.week-signal-stream time {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.week-signal-stream p {
  margin: 0;
  color: #d7e8ef;
  font-size: 13px;
}

.week-signal-stream p span {
  display: inline-block;
  margin-left: 4px;
  color: var(--mint);
  font-weight: 900;
}

.week-signal-stream a > strong {
  justify-self: end;
  padding: 6px 9px;
  color: #062032;
  background: var(--mint);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes week-signal-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 221, 212, 0);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(99, 221, 212, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .week-signal-stream a {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .challenge-layout {
    grid-template-columns: 1fr;
  }

  .challenge-lead {
    position: static;
  }

  .week-exposure-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .week-exposure-card {
    padding: 18px;
  }

  .week-map-header {
    display: grid;
    gap: 4px;
    align-items: start;
  }

  .week-map-scroll {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .week-map {
    min-width: 0;
    gap: 6px;
    padding: 10px;
  }

  .week-map-labels {
    grid-template-columns: 30px repeat(5, minmax(0, 1fr));
    gap: 5px;
    font-size: 9px;
  }

  .week-day-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 5px;
  }

  .week-day-row > strong {
    font-size: 10px;
  }

  .week-day-track {
    min-height: 28px;
    border-radius: 6px;
  }

  .staffed-window {
    top: 4px;
    bottom: 4px;
    border-radius: 5px;
  }

  .week-event::after {
    display: none;
  }

  .week-exposure-stats {
    grid-template-columns: 1fr;
  }

  .week-signal-stream article,
  .week-signal-stream a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .week-signal-stream a > strong {
    justify-self: start;
    margin-top: 4px;
  }
}


.home-compliance {
  background: #f5fafc;
}

.compliance-grid,
.onramp-grid,
.compare-story-grid {
  display: grid;
  gap: 16px;
}

.compliance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.onramp-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compliance-card,
.onramp-grid article,
.compare-story-card {
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.compliance-card {
  min-height: 250px;
}

.compliance-card span,
.onramp-grid span,
.compare-story-head span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compliance-card:nth-child(2) span,
.compare-story-card:nth-child(2) .compare-story-head span {
  color: #073047;
  background: rgba(99, 221, 212, 0.24);
}

.onramp-grid article {
  min-height: 220px;
}

.manual-vs-aiot-section {
  scroll-margin-top: 92px;
}

.compare-story-grid {
  grid-template-columns: 1fr;
}

.compare-story-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.friday-test-card {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}

.friday-test-timeline {
  padding: clamp(24px, 4vw, 34px);
  color: white;
  background:
    radial-gradient(circle at 18% 16%, rgba(99, 221, 212, 0.18), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.friday-test-timeline > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: #062032;
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.friday-test-timeline h3 {
  max-width: 460px;
  margin-bottom: 28px;
  color: white;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.friday-test-timeline ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.friday-test-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 0 0 18px 22px;
}

.friday-test-timeline li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(99, 221, 212, 0.14);
}

.friday-test-timeline li::after {
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 4px;
  width: 2px;
  content: "";
  background: rgba(128, 212, 235, 0.24);
}

.friday-test-timeline li:last-child {
  padding-bottom: 0;
}

.friday-test-timeline li:last-child::after {
  display: none;
}

.friday-test-timeline time {
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.friday-test-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.friday-test-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: stretch;
  padding: clamp(20px, 3vw, 30px);
  background: white;
}

.friday-test-evidence div {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  gap: 16px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.friday-test-evidence div:last-child {
  background: linear-gradient(135deg, rgba(21, 168, 234, 0.09), rgba(99, 221, 212, 0.13));
  border-color: rgba(21, 168, 234, 0.28);
}

.friday-test-evidence strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.friday-test-evidence ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.friday-test-evidence li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.42;
}

.friday-test-evidence li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
}

.friday-test-evidence div:first-child li::before {
  background: #7d94a4;
}

.friday-evidence-summary {
  align-self: end;
  margin-top: 12px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.friday-test-evidence div:last-child .friday-evidence-summary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 250, 255, 0.98)),
    white;
  border-color: rgba(21, 168, 234, 0.22);
}

.friday-evidence-summary span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.friday-evidence-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}

.friday-evidence-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.scenario-strip-card {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  min-height: 250px;
}

.scenario-strip-head {
  display: grid;
  align-content: start;
  gap: 12px;
}

.scenario-strip-head span {
  margin-bottom: 0;
}

.scenario-strip-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.scenario-strip-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 14px;
}

.scenario-mini-timeline,
.scenario-mode-compare ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-mini-timeline {
  padding: 20px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.scenario-mini-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding-left: 18px;
}

.scenario-mini-timeline li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
}

.scenario-mini-timeline time {
  color: #087e94;
  font-size: 13px;
  font-weight: 900;
}

.scenario-mini-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.scenario-mode-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scenario-mode-compare div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.scenario-mode-compare div:last-child {
  background: linear-gradient(135deg, rgba(21, 168, 234, 0.09), rgba(99, 221, 212, 0.13));
  border-color: rgba(21, 168, 234, 0.28);
}

.scenario-mode-compare strong {
  color: var(--ink);
  font-size: 18px;
}

.scenario-mode-compare li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.42;
}

.scenario-mode-compare li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: #7d94a4;
  border-radius: 999px;
}

.scenario-mode-compare div:last-child li::before {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(99, 221, 212, 0.18);
}

.compare-story-head {
  padding: 20px;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--deep), #0c344d);
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: 8px;
}

.compare-story-head h3 {
  margin-bottom: 0;
}

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

.compare-columns div {
  padding: 20px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.compare-columns div:last-child {
  background: #eefaff;
  border-color: rgba(21, 168, 234, 0.26);
}

.compare-columns strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.compare-columns p {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .compare-story-card,
  .friday-test-card,
  .friday-test-evidence,
  .scenario-strip-card,
  .scenario-strip-body,
  .scenario-mode-compare,
  .compare-columns,
  .onramp-grid {
    grid-template-columns: 1fr;
  }

  .friday-test-timeline li {
    grid-template-columns: 76px 1fr;
  }
}

@media (max-width: 640px) {
  .friday-test-timeline {
    padding: 20px 18px;
  }

  .friday-test-timeline h3 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .friday-test-timeline li,
  .scenario-mini-timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .friday-test-timeline li {
    padding-left: 20px;
  }

  .scenario-mini-timeline {
    padding: 16px;
  }

  .friday-test-timeline time,
  .scenario-mini-timeline time {
    width: fit-content;
    line-height: 1.2;
  }

  .friday-test-timeline p,
  .scenario-mini-timeline p {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}


.customer-proof {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
}

.customer-proof-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.customer-scale-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.customer-proof-summary article {
  min-height: 126px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.customer-proof-summary span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.customer-proof-summary strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.customer-scale-row article {
  padding: 20px;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--deep), #0c344d);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(99, 221, 212, 0.24);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 32, 51, 0.08);
}

.customer-scale-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--mint);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 0.96;
}

.customer-scale-row p {
  margin: 0;
  color: #d8eef5;
  font-weight: 760;
  line-height: 1.25;
}

.oem-proof-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
  padding: 14px 16px;
  background: rgba(21, 168, 234, 0.07);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-left: 4px solid rgba(21, 168, 234, 0.62);
  border-radius: 8px;
}

.oem-proof-note span,
.oem-proof-callout > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 7px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.16);
  border: 1px solid rgba(99, 221, 212, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.oem-proof-note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.customer-case-tabs {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

.customer-case-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-case-tablist button {
  min-height: 42px;
  padding: 10px 14px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.08);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 880;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.customer-case-tablist button:hover,
.customer-case-tablist button:focus-visible {
  color: #062032;
  background: rgba(99, 221, 212, 0.22);
  border-color: rgba(21, 168, 234, 0.34);
  outline: none;
  transform: translateY(-1px);
}

.customer-case-tablist button.is-active {
  color: white;
  background: var(--blue);
  border-color: rgba(21, 168, 234, 0.44);
}

.customer-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.06), rgba(99, 221, 212, 0.08)),
    white;
  border: 1px solid rgba(188, 218, 231, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 32, 51, 0.07);
}

.customer-case-card[hidden] {
  display: none;
}

.customer-case-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.customer-case-copy span {
  width: fit-content;
  padding: 7px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.16);
  border: 1px solid rgba(99, 221, 212, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.customer-case-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.customer-case-copy p {
  max-width: 820px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.customer-case-points {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.customer-case-points li {
  position: relative;
  padding-left: 18px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.38;
}

.customer-case-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

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

.customer-case-metrics div {
  display: grid;
  align-content: start;
  min-height: 116px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
}

.customer-case-metrics strong {
  color: var(--blue);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
}

.customer-case-metrics span {
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
}

.customer-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  overflow: hidden;
  background: rgba(216, 231, 239, 0.92);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.customer-logo-wall li {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  background: white;
}

.customer-logo-wall img {
  width: min(164px, 100%);
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(100%) saturate(0.85);
  opacity: 0.78;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.customer-logo-wall :is(li, .customer-logo-item):hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .customer-logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .customer-proof-summary {
    grid-template-columns: 1fr;
  }

  .customer-scale-row {
    grid-template-columns: 1fr;
  }

  .customer-case-card {
    grid-template-columns: 1fr;
  }

  .customer-case-tablist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  }

  .customer-case-tablist button {
    width: 100%;
    padding-inline: 10px;
  }

  .customer-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oem-proof-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .customer-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .customer-case-metrics div {
    min-height: 0;
    padding: 12px;
  }

  .customer-case-metrics strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .customer-case-metrics span {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (max-width: 380px) {
  .customer-case-tablist {
    grid-template-columns: 1fr;
  }
}

.customer-logo-marquee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(235, 246, 251, 0.72), rgba(255, 255, 255, 0.95));
}

.customer-logo-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.customer-logo-track {
  display: flex;
  width: max-content;
  animation: customer-logo-marquee 38s linear infinite;
  will-change: transform;
}

.customer-logo-row.is-reverse .customer-logo-track {
  animation-direction: reverse;
  animation-duration: 44s;
}

.customer-logo-item {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(150px, 13vw, 218px);
  min-height: 88px;
  margin-right: 12px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.86);
  border-radius: 8px;
}

.customer-logo-marquee:hover .customer-logo-track {
  animation-play-state: paused;
}

@keyframes customer-logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-logo-row {
    overflow-x: auto;
    mask-image: none;
  }

  .customer-logo-track {
    animation: none;
  }
}


/* Hardware catalog styles */
.hardware-catalog-hero {
  min-height: 560px;
}

.hardware-catalog-hero .hero-actions {
  justify-content: flex-start;
}

.hardware-intro {
  padding-bottom: clamp(52px, 7vw, 88px);
}

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

.hardware-principle-grid article {
  min-height: 230px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.hardware-principle-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

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

.sci-device-grid article {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: clamp(22px, 3vw, 30px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.sci-device-media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 10;
  place-items: center;
  margin: 0 0 20px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.12)),
    #f8fcfe;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.sci-device-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(8, 32, 51, 0.12));
}

.sci-device-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #087e94);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.sci-device-grid h3 {
  max-width: 360px;
}

.sci-device-grid p {
  margin-bottom: 0;
}

.hardware-scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hardware-scene-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hardware-scene-map-card {
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hardware-scene-map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 18px 46px rgba(8, 32, 51, 0.1);
}

.hardware-scene-map-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 9px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.hardware-scene-map-card h3 {
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.1;
}

.hardware-scene-map-card strong {
  margin-top: 12px;
  padding-top: 12px;
  color: #087e94;
  border-top: 1px solid rgba(216, 231, 239, 0.9);
  font-size: 12px;
  line-height: 1.35;
}

.hardware-scene-map-card em {
  align-self: end;
  margin-top: 14px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.hardware-scene-map-card em::after {
  content: " →";
  color: var(--blue);
}

.hardware-ehs-note {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(99, 221, 212, 0.12), rgba(21, 168, 234, 0.08)),
    white;
  border: 1px solid rgba(21, 168, 234, 0.22);
  border-radius: 8px;
}

.hardware-ehs-note span {
  color: #087e94;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hardware-ehs-note p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hardware-scenario-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 360px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.08);
}

.hardware-scenario-media {
  display: grid;
  align-self: start;
  height: clamp(340px, 31vw, 460px);
  min-height: 0;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.1), rgba(99, 221, 212, 0.12)),
    var(--soft);
}

.hardware-scenario-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.hardware-scenario-copy {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.hardware-scenario-copy p {
  margin-bottom: 0;
}

.hardware-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hardware-chip-row span {
  padding: 7px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.hardware-outcome {
  padding-top: 14px;
  color: var(--ink);
  border-top: 1px solid rgba(216, 231, 239, 0.9);
  font-weight: 720;
}

.hardware-series-list {
  display: grid;
  gap: 26px;
}

.hardware-series-detail {
  padding: clamp(20px, 4vw, 32px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(8, 32, 51, 0.08);
  scroll-margin-top: 92px;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.hardware-series-main {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: start;
}

.hardware-series-detail .hardware-series-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  padding: 0;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}

.hardware-series-detail .hardware-series-media img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 84%;
  height: 84%;
  max-width: 430px;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.hardware-series-copy > p {
  max-width: 920px;
}

.hardware-series-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.76);
  border-radius: 8px;
}

.series-scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.series-scene-tags span,
.series-scene-tags strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.2;
}

.series-scene-tags span {
  color: white;
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.series-scene-tags strong {
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.16);
  font-weight: 820;
}

.hardware-series-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 14px;
  margin-top: 18px;
}

.hardware-series-columns > div {
  min-height: 170px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.hardware-series-columns strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.hardware-series-columns p {
  margin-bottom: 0;
  color: var(--slate);
}

.series-evaluation-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(99, 221, 212, 0.1);
  border: 1px solid rgba(99, 221, 212, 0.32);
  border-radius: 8px;
}

.series-evaluation-note strong {
  display: block;
  margin-bottom: 8px;
  color: #087e94;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.series-evaluation-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hardware-principle-grid a,
.hardware-series-copy a,
.hardware-series-columns a {
  color: #087e94;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hardware-principle-grid a:hover,
.hardware-series-copy a:hover,
.hardware-series-columns a:hover {
  color: var(--blue);
}

.hardware-gallery {
  display: none !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 231, 239, 0.9);
}

.hardware-image-tile {
  display: none !important;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.hardware-image-tile img {
  width: 100%;
  height: 136px;
  object-fit: contain;
}

.hardware-image-tile figcaption {
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1180px) {
  .hardware-principle-grid,
  .sci-device-grid,
  .hardware-scenario-grid,
  .hardware-series-columns {
    grid-template-columns: 1fr;
  }

  .hardware-scene-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardware-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hardware-scenario-card,
  .hardware-series-main {
    grid-template-columns: 1fr;
  }

  .hardware-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hardware-scene-map-grid {
    grid-template-columns: 1fr;
  }

  .hardware-ehs-note {
    grid-template-columns: 1fr;
  }

  .hardware-scene-map-card {
    min-height: auto;
  }

  .hardware-scenario-media {
    height: 300px;
    padding: 18px;
  }

  .hardware-gallery {
    grid-template-columns: 1fr;
  }
}


/* Hardware scenario image galleries */
.hardware-scenario-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.hardware-scenario-gallery figure {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 10px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.hardware-scenario-gallery img {
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.hardware-scenario-gallery figcaption {
  color: var(--slate);
  font-size: 12px;
  font-weight: 760;
}

@media (max-width: 560px) {
  .hardware-scenario-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Role review secondary updates */
.decision-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.decision-cta h2,
.decision-cta p {
  max-width: 820px;
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.readiness-grid,
.resource-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.readiness-grid article,
.resource-checklist article,
.resource-detail-grid article {
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.readiness-grid span,
.resource-checklist span,
.resource-detail-grid p {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.readiness-grid a {
  color: #087e94;
  font-weight: 800;
}

.system-boundary-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.07), rgba(99, 221, 212, 0.08)),
    white;
  border: 1px solid rgba(21, 168, 234, 0.22);
  border-left: 4px solid rgba(21, 168, 234, 0.62);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.security-checklist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-cert-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.security-cert-grid article {
  display: grid;
  min-height: 150px;
  align-content: start;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.06), rgba(99, 221, 212, 0.08)),
    white;
  border: 1px solid rgba(188, 218, 231, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.security-cert-grid span {
  width: fit-content;
  padding: 6px 8px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.security-cert-grid strong {
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
}

.security-cert-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.security-questionnaire {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.06), rgba(99, 221, 212, 0.1)),
    white;
}

.security-questionnaire h2,
.security-questionnaire p {
  max-width: 820px;
}

.system-boundary-note span {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.system-boundary-note h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.system-boundary-note p {
  max-width: 980px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.readiness-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.readiness-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  background: rgba(99, 221, 212, 0.14);
  border: 1px solid rgba(99, 221, 212, 0.32);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.15;
  text-decoration: none;
}

.readiness-links a:first-child {
  color: white;
  background: var(--ink);
  border-color: rgba(8, 32, 51, 0.86);
}

.compliance-hero,
.scientist-hero {
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.62fr);
}

.compliance-hero {
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.compliance-summary-card {
  display: grid;
  gap: 18px;
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  padding: clamp(26px, 3.4vw, 42px);
  background: white;
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(8, 32, 51, 0.08);
}

.compliance-summary-card > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance-summary-card .module-feature-list {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compliance-summary-card .module-feature-list li {
  padding: 14px 16px;
  color: var(--slate);
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-left: 4px solid rgba(21, 168, 234, 0.58);
  border-radius: 8px;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 650;
  line-height: 1.42;
}

.qa-self-test {
  background:
    radial-gradient(circle at 86% 12%, rgba(99, 221, 212, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.qa-self-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.qa-self-test-list {
  display: grid;
  gap: 12px;
}

.qa-self-test-list article {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 32, 51, 0.05);
}

.qa-question-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.qa-question-head span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.qa-question-head h3 {
  margin: 0;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.18;
}

.qa-answer-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 56px;
}

.qa-answer-toggle button {
  min-width: 78px;
  padding: 10px 14px;
  color: var(--slate);
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.95);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.qa-answer-toggle button:hover,
.qa-answer-toggle button:focus-visible,
.qa-answer-toggle button.is-active {
  color: var(--ink);
  background: white;
  border-color: rgba(21, 168, 234, 0.5);
  outline: none;
  transform: translateY(-1px);
}

.qa-self-test-list article.is-no {
  border-color: rgba(21, 168, 234, 0.48);
  box-shadow: 0 14px 36px rgba(8, 32, 51, 0.08);
}

.qa-no-explain {
  margin: 0 0 0 56px;
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  color: var(--slate);
  background: rgba(21, 168, 234, 0.07);
  border: solid transparent;
  border-width: 0 1px 0 4px;
  border-left-color: rgba(21, 168, 234, 0.6);
  border-radius: 8px;
  opacity: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
  transform: translateY(-4px);
  transition: max-height 240ms ease, padding 240ms ease, opacity 180ms ease, transform 220ms ease, border-color 220ms ease, border-width 220ms ease;
}

.qa-self-test-list article.is-no .qa-no-explain {
  max-height: 240px;
  padding: 14px 16px;
  border-width: 1px 1px 1px 4px;
  border-color: rgba(21, 168, 234, 0.18);
  border-left-color: rgba(21, 168, 234, 0.6);
  opacity: 1;
  transform: translateY(0);
}

.qa-self-test-result {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 84% 14%, rgba(99, 221, 212, 0.18), transparent 34%),
    linear-gradient(135deg, #071a27 0%, #0c3041 100%);
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(8, 32, 51, 0.14);
}

.qa-self-test-result > span {
  width: fit-content;
  padding: 7px 10px;
  color: #062032;
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.qa-self-test-result h3 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.qa-self-test-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.48;
}

.qa-self-test-result .button {
  width: fit-content;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.qa-summary-form {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.qa-summary-form[hidden] {
  display: none;
}

.qa-summary-form label {
  color: rgba(255, 255, 255, 0.82);
}

.qa-summary-form input[type="email"] {
  color: #071827;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
}

.qa-summary-form .button {
  width: 100%;
  justify-content: center;
}

.qa-summary-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.42;
  white-space: pre-wrap;
}

.audit-example-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.audit-trail-panel {
  overflow: hidden;
  background: #071827;
  border: 1px solid rgba(99, 221, 212, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(8, 32, 51, 0.14);
}

.audit-panel-header {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  color: white;
  background:
    linear-gradient(rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: 24px 24px, 24px 24px, auto;
  border-bottom: 1px solid rgba(99, 221, 212, 0.18);
}

.audit-panel-header span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-panel-header strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.audit-event-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-event-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(99, 221, 212, 0.14);
}

.audit-event-list li:last-child {
  border-bottom: 0;
}

.audit-event-list span {
  color: var(--mint);
  font-weight: 900;
}

.audit-event-list p {
  margin: 0;
}

.audit-event-list strong {
  display: block;
  color: white;
}

.audit-evidence-cards {
  display: grid;
  gap: 14px;
}

.audit-evidence-cards article {
  padding: 22px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.audit-evidence-cards span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compliance-question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Guardian evidence packet sample */
.evidence-page {
  background: #f3f8fb;
}

.evidence-hero h1 {
  max-width: 980px;
}

.evidence-packet-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(21, 168, 234, 0.08), transparent 30%),
    linear-gradient(180deg, #f4f9fb 0%, #ffffff 100%);
}

.evidence-document {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  background: white;
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(8, 32, 51, 0.14);
}

.packet-export-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(216, 231, 239, 0.94);
}

.packet-kicker,
.packet-section-title span,
.packet-meta-grid span,
.packet-alert-summary span,
.corrective-action-grid span,
.packet-signature-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: #087e94;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-export-header h2 {
  max-width: 780px;
  margin-bottom: 10px;
}

.packet-subtitle {
  max-width: 720px;
  margin-bottom: 0;
}

.packet-status-stack {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
}

.packet-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-status-warning {
  color: #7c4d00;
  background: #fff2cc;
  border: 1px solid #f0d58a;
}

.packet-id {
  color: var(--slate);
  font-size: 13px;
  font-weight: 780;
}

.packet-meta-grid,
.packet-alert-summary,
.packet-two-column {
  display: grid;
  gap: 14px;
}

.packet-meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.packet-meta-grid article,
.packet-alert-summary > div,
.packet-card {
  background: #fbfdfe;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
}

.packet-meta-grid article {
  min-height: 148px;
  padding: 18px;
}

.packet-meta-grid strong,
.packet-alert-summary strong,
.corrective-action-grid strong,
.packet-signature-grid strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}

.packet-meta-grid p,
.packet-alert-summary p {
  margin: 8px 0 0;
  font-size: 14px;
}

.packet-alert-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.packet-alert-summary > div {
  padding: 20px;
  border-left: 4px solid rgba(21, 168, 234, 0.52);
}

.packet-card {
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 12px 34px rgba(8, 32, 51, 0.05);
}

.packet-chart-card,
.packet-card,
.packet-two-column {
  margin-top: 16px;
}

.packet-section-title {
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
}

.packet-section-title h3 {
  margin-bottom: 0;
}

.temperature-chart {
  overflow: hidden;
  background: #f7fbfd;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
}

.temperature-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.packet-two-column {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.packet-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.packet-timeline li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.packet-timeline time {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.packet-timeline p {
  margin: 0;
  font-size: 14px;
}

.packet-timeline strong {
  display: block;
  color: var(--ink);
}

.packet-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.packet-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: white;
}

.packet-table th,
.packet-table td {
  padding: 12px 13px;
  border-bottom: 1px solid rgba(216, 231, 239, 0.92);
  color: var(--slate);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.packet-table th {
  color: white;
  background: #071827;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-table tr:last-child td {
  border-bottom: 0;
}

.corrective-action-grid,
.packet-signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.corrective-action-grid div,
.packet-signature-grid div {
  min-height: 104px;
  padding: 15px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.qa-review-card {
  border-color: rgba(240, 213, 138, 0.92);
  background: linear-gradient(135deg, rgba(255, 242, 204, 0.56), rgba(255, 255, 255, 0.98));
}

.qa-review-card.is-reviewed {
  border-color: rgba(99, 221, 212, 0.9);
  background: linear-gradient(135deg, rgba(99, 221, 212, 0.16), rgba(255, 255, 255, 0.98));
}

.packet-signature-grid {
  margin-top: 14px;
}

.qa-review-note-action {
  width: fit-content;
  margin-top: 14px;
  padding: 10px 12px;
  color: #071827;
  background: white;
  border: 1px solid rgba(21, 168, 234, 0.34);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 32, 51, 0.06);
}

.qa-review-note-action:hover,
.qa-review-note-action:focus-visible {
  border-color: rgba(21, 168, 234, 0.64);
  outline: none;
}

.qa-review-note {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
}

.qa-review-note[hidden] {
  display: none;
}

.qa-review-note span {
  color: #087e94;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.qa-review-editor {
  min-height: 88px;
  padding: 12px;
  color: var(--ink);
  background: #f7fbfd;
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  outline: none;
}

.qa-review-editor:focus {
  border-color: rgba(21, 168, 234, 0.72);
  box-shadow: 0 0 0 3px rgba(21, 168, 234, 0.12);
}

.qa-review-editor:empty::before {
  content: attr(data-placeholder);
  color: var(--muted);
  font-weight: 650;
}

.qa-review-autosave {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.packet-export-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 231, 239, 0.94);
}

.packet-export-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.packet-footer-cta {
  flex-basis: 100%;
  width: fit-content;
  color: #087e94;
  font-size: 12px;
  font-weight: 850;
}

.packet-footer-cta span {
  color: var(--ink);
}

.packet-footer-cta::after {
  content: " →";
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 980px) {
  .packet-export-header,
  .packet-meta-grid,
  .packet-alert-summary,
  .packet-two-column {
    grid-template-columns: 1fr;
  }

  .packet-status-stack {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .packet-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .packet-table,
  .packet-table thead,
  .packet-table tbody,
  .packet-table tr,
  .packet-table td {
    display: block;
    width: 100%;
  }

  .packet-table {
    min-width: 0;
    background: transparent;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .packet-table thead {
    display: none;
  }

  .packet-table tr {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(8, 32, 51, 0.05);
  }

  .packet-table td {
    display: grid;
    grid-template-columns: minmax(86px, 0.36fr) minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--slate);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .packet-table td:last-child {
    border-bottom: 0;
  }

  .packet-table td::before {
    content: attr(data-label);
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
}

@media (max-width: 640px) {
  .evidence-document {
    padding: 16px;
  }

  .packet-timeline li,
  .corrective-action-grid,
  .packet-signature-grid {
    grid-template-columns: 1fr;
  }

  .packet-timeline li {
    gap: 7px;
    padding: 12px;
  }

  .packet-timeline time {
    display: inline-flex;
    width: fit-content;
    padding: 5px 8px;
    color: #062032;
    background: rgba(99, 221, 212, 0.28);
    border-radius: 8px;
    line-height: 1;
  }

  .packet-timeline p,
  .packet-timeline strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .packet-meta-grid article,
  .corrective-action-grid div,
  .packet-signature-grid div {
    min-height: 0;
  }
}

.scientist-cta {
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.04), rgba(99, 221, 212, 0.08)),
    white;
}

.scientist-question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.free-role-tools {
  background:
    radial-gradient(circle at 12% 8%, rgba(99, 221, 212, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.free-tool-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.free-tool-cards a {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 12px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-top: 4px solid rgba(21, 168, 234, 0.38);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.free-tool-cards a:hover,
.free-tool-cards a:focus-visible {
  border-color: rgba(21, 168, 234, 0.5);
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.12);
  outline: none;
  transform: translateY(-3px);
}

.free-tool-cards span,
.free-tool-title .eyebrow {
  width: fit-content;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.free-tool-cards strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.free-tool-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.free-tool-cards em {
  align-self: end;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.free-tool-detail-grid {
  display: grid;
  gap: 18px;
}

.free-tool-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 38px);
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.94);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 32, 51, 0.07);
  scroll-margin-top: 96px;
}

.free-tool-title {
  display: grid;
  gap: 14px;
  align-content: start;
  position: sticky;
  top: 88px;
}

.free-tool-title h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
}

.free-tool-title p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.free-tool-title .button {
  width: fit-content;
}

.free-tool-body {
  display: grid;
  gap: 18px;
}

.free-tool-body section,
.near-miss-template {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 210px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.free-tool-body h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.free-tool-body p {
  margin: 0;
  color: var(--muted);
}

.free-tool-body .module-feature-list {
  margin: 0;
}

.free-tool-body .module-feature-list li {
  margin: 0;
}

.qa-question-list section {
  background: linear-gradient(135deg, rgba(21, 168, 234, 0.06), rgba(99, 221, 212, 0.08));
}

.tool-table {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(178, 217, 234, 0.82);
  border-radius: 8px;
}

.tool-table span,
.tool-table strong {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  border-right: 1px solid rgba(216, 231, 239, 0.9);
}

.tool-table span:nth-child(5n),
.tool-table strong:nth-child(5n) {
  border-right: 0;
}

.tool-table span {
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-table strong {
  color: var(--slate);
  background: white;
  font-size: 13px;
  line-height: 1.3;
}

.free-tool-body .free-tool-link {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 0;
  padding: 12px 14px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.2);
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 850;
}

.free-tool-body .free-tool-link:hover,
.free-tool-body .free-tool-link:focus-visible {
  border-color: rgba(21, 168, 234, 0.42);
  box-shadow: 0 10px 24px rgba(8, 32, 51, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.free-tool-body .free-tool-link span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--accent-blue);
  border-radius: 8px;
  font-weight: 850;
}

.resource-feature {
  background: white;
}

.resource-feature-readable {
  border-top: 1px solid rgba(21, 168, 234, 0.14);
  border-bottom: 1px solid rgba(21, 168, 234, 0.14);
  background:
    linear-gradient(180deg, rgba(235, 246, 251, 0.72), rgba(255, 255, 255, 0.98)),
    white;
}

.resource-feature-readable .section-heading {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(178, 217, 234, 0.72);
}

.resource-open-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 8px 10px;
  color: #073047;
  background: rgba(99, 221, 212, 0.2);
  border: 1px solid rgba(99, 221, 212, 0.38);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.resource-detail-grid {
  align-items: stretch;
}

.resource-detail-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 240px;
}

.resource-detail-grid span {
  color: var(--slate);
}

.resource-detail-grid a {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 12px;
  color: #087e94;
  background: rgba(21, 168, 234, 0.1);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.resource-open-card {
  border-color: rgba(21, 168, 234, 0.28) !important;
  background:
    linear-gradient(180deg, rgba(235, 246, 251, 0.72), rgba(255, 255, 255, 0.98)),
    white !important;
}

.resource-open-card details {
  padding: 14px;
  background: white;
  border: 1px solid rgba(178, 217, 234, 0.74);
  border-radius: 8px;
}

.resource-open-card summary {
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.resource-open-card .module-feature-list {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .readiness-grid,
  .resource-checklist,
  .free-tool-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-tool-detail {
    grid-template-columns: 1fr;
  }

  .free-tool-title {
    position: static;
  }
}

@media (max-width: 900px) {
  .decision-cta {
    grid-template-columns: 1fr;
  }

  .security-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .security-questionnaire {
    grid-template-columns: 1fr;
  }

  .decision-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .readiness-grid,
  .resource-checklist,
  .free-tool-cards {
    grid-template-columns: 1fr;
  }

  .security-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-tool-cards a {
    min-height: 0;
  }

  .free-tool-body section,
  .near-miss-template {
    min-height: 0;
    align-content: center;
    gap: 12px;
    padding: 18px;
  }

  .free-tool-body h4,
  .free-tool-body p,
  .free-tool-body .module-feature-list {
    margin-block: 0;
  }

  .tool-table {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .tool-table span,
  .tool-table strong {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .tool-table span {
    display: grid;
    gap: 8px;
    padding: 14px;
    color: #087e94;
    background: rgba(21, 168, 234, 0.08);
    border: 1px solid rgba(178, 217, 234, 0.82);
    border-radius: 8px;
    line-height: 1.25;
  }

  .tool-table span::after {
    color: var(--slate);
    font-size: 14px;
    font-weight: 720;
    line-height: 1.35;
    text-transform: none;
  }

  .tool-table strong {
    display: none;
  }

  .tool-table span:nth-of-type(1)::after {
    content: "Freezer / cryo / incubator / gas / inventory";
  }

  .tool-table span:nth-of-type(2)::after {
    content: "High / Medium / Low";
  }

  .tool-table span:nth-of-type(3)::after {
    content: "Name or team";
  }

  .tool-table span:nth-of-type(4)::after {
    content: "What cannot be proven today?";
  }

  .tool-table span:nth-of-type(5)::after {
    content: "P1 / P2 / P3";
  }

  .near-miss-template .tool-table span:nth-of-type(1)::after {
    content: "O2 / N2 / CO2 / cylinder pressure / combustible / toxic";
  }

  .near-miss-template .tool-table span:nth-of-type(2)::after {
    content: "Room or utility area";
  }

  .near-miss-template .tool-table span:nth-of-type(3)::after {
    content: "Configured limit";
  }

  .near-miss-template .tool-table span:nth-of-type(4)::after {
    content: "Local + digital";
  }

  .near-miss-template .tool-table span:nth-of-type(5)::after {
    content: "Supplier refill or corrective follow-up";
  }

  .scientist-window-table span:nth-of-type(1)::after {
    content: "Start / end time";
  }

  .scientist-window-table span:nth-of-type(2)::after {
    content: "CO2 / temp / door / equipment";
  }

  .scientist-window-table span:nth-of-type(3)::after {
    content: "Yes / No";
  }

  .scientist-window-table span:nth-of-type(4)::after {
    content: "High / Medium / Low";
  }

  .scientist-window-table span:nth-of-type(5)::after {
    content: "Repeat / accept / review";
  }
}

@media (max-width: 460px) {
  .security-cert-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .free-tool-cards,
  .resource-feature,
  .resource-grid,
  .free-tool-title .button {
    display: none !important;
  }

  .section,
  .section-band {
    padding: 18px 0 !important;
    border: 0 !important;
  }

  .free-tool-detail {
    break-inside: avoid;
    box-shadow: none;
  }

  body.print-single-tool .page-hero,
  body.print-single-tool .free-role-tools > .section-heading {
    display: none !important;
  }

  body.print-single-tool .free-tool-detail:not(.is-print-target) {
    display: none !important;
  }

  .evidence-page .page-hero {
    display: none !important;
  }

  .evidence-page,
  .evidence-packet-section {
    background: white !important;
  }

  .evidence-document {
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .packet-card,
  .packet-meta-grid article,
  .packet-alert-summary > div {
    break-inside: avoid;
    box-shadow: none;
  }

  .qa-review-note-action {
    display: none !important;
  }

  .qa-review-note,
  .qa-review-editor {
    background: white !important;
    box-shadow: none !important;
  }

  .qa-review-editor {
    min-height: 0;
  }
}


/* Hardware hero context visual */
.hardware-context-visual {
  display: grid;
  min-height: 520px;
  align-items: stretch;
}

.hardware-context-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(150px, 0.9fr) auto minmax(170px, 1fr);
  gap: 22px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(rgba(21, 168, 234, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 168, 234, 0.09) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 34px 34px;
  border: 1px solid rgba(188, 218, 231, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 32, 51, 0.12);
}

.hardware-context-card::before,
.hardware-context-card::after {
  content: "";
  position: absolute;
  inset: auto 14% 48% 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 168, 234, 0.52), transparent);
}

.hardware-context-card::after {
  inset: 52% 14% auto 14%;
}

.signal-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.signal-cloud span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px;
  color: #087e94;
  background: rgba(237, 250, 255, 0.92);
  border: 1px solid rgba(21, 168, 234, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.hardware-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-self: center;
  width: min(360px, 100%);
  min-height: 138px;
  place-items: center;
  padding: 22px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid rgba(99, 221, 212, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(8, 32, 51, 0.2);
}

.hardware-core span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.hardware-core strong {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.06;
}

.context-path {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: end;
}

.context-path article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
}

.context-path span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.context-path p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 780;
}

@media (max-width: 1100px) {
  .hardware-context-visual {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .signal-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-page-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  gap: 18px;
  overflow: hidden;
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 8px;
  isolation: isolate;
}

.product-page-visual::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 32px);
  z-index: -1;
  border: 1px solid rgba(188, 218, 231, 0.72);
  border-radius: 8px;
}

.product-page-visual img {
  width: min(100%, 680px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(8, 32, 51, 0.16));
}

.product-page-visual-light {
  background:
    linear-gradient(rgba(21, 168, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 168, 234, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(21, 168, 234, 0.08), rgba(99, 221, 212, 0.12)),
    #f8fcfe;
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(188, 218, 231, 0.96);
  box-shadow: 0 24px 70px rgba(8, 32, 51, 0.12);
}

.product-page-visual-dark {
  background:
    linear-gradient(rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(128, 212, 235, 0.28);
  box-shadow: 0 24px 70px rgba(8, 32, 51, 0.18);
}

.product-page-visual-dark::before {
  border-color: rgba(99, 221, 212, 0.2);
}

.product-page-visual-dark img {
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.34));
}


/* Sci-Edge product page */
.sci-edge-hero {
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.82fr);
}

.product-name-bridge {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  max-width: 680px;
}

.product-name-bridge div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(188, 218, 231, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.product-name-bridge span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-name-bridge strong {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.08;
}

.sci-edge-hero-visual {
  display: grid;
  gap: 18px;
  min-height: 520px;
  align-content: center;
}

.edge-device-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.edge-device-cluster img {
  width: 100%;
  min-height: 150px;
  max-height: 210px;
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(128, 212, 235, 0.22);
  border-radius: 8px;
}

.edge-device-cluster img:first-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 430px);
  max-height: 240px;
}

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

.edge-signal-stack span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 10px;
  color: var(--mint);
  background: rgba(99, 221, 212, 0.1);
  border: 1px solid rgba(99, 221, 212, 0.24);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 880;
  text-align: center;
  text-transform: uppercase;
}

.edge-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.edge-capability-grid article {
  display: grid;
  min-height: 220px;
  align-content: start;
}

.sci-edge-architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.sci-edge-architecture article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.sci-edge-architecture article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: rgba(21, 168, 234, 0.38);
}

.sci-edge-architecture span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sci-edge-architecture .architecture-focus {
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0c344d);
  background-size: 24px 24px, 24px 24px, auto;
  border-color: rgba(99, 221, 212, 0.42);
  box-shadow: 0 18px 54px rgba(8, 32, 51, 0.14);
}

.architecture-focus span {
  color: var(--mint);
}

.architecture-focus h3,
.architecture-focus p {
  color: white;
}

.sci-edge-signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.signal-model-panel {
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 255, 0.96)),
    white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(8, 32, 51, 0.07);
}

.signal-model-panel > span,
.sci-edge-edition-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border: 1px solid rgba(99, 221, 212, 0.3);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-token-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.signal-token-grid div {
  min-height: 132px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
}

.signal-token-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.15;
}

.signal-token-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.signal-model-panel-dark {
  color: white;
  background:
    radial-gradient(circle at 20% 18%, rgba(99, 221, 212, 0.2), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0b3149);
  background-size: auto, 22px 22px, 22px 22px, auto;
  border-color: rgba(99, 221, 212, 0.36);
}

.signal-model-panel-dark h3,
.signal-model-panel-dark p {
  color: white;
}

.protocol-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.protocol-row strong {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px;
  color: var(--mint);
  background: rgba(99, 221, 212, 0.1);
  border: 1px solid rgba(99, 221, 212, 0.26);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.sci-edge-edition-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.sci-edge-edition-grid article {
  display: grid;
  min-height: 198px;
  align-content: start;
  padding: 22px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 32, 51, 0.06);
}

.sci-edge-edition-grid h3 {
  font-size: clamp(18px, 1.7vw, 24px);
}

.sci-edge-edition-grid p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.sci-edge-edition-grid ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(216, 231, 239, 0.86);
  list-style: none;
}

.sci-edge-edition-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.sci-edge-edition-grid li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  transform: translateY(-50%);
}

.sci-edge-edition-grid .edition-marketplace {
  grid-column: 1 / -1;
  align-content: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(21, 168, 234, 0.2), rgba(99, 221, 212, 0.14)),
    #061827;
  border-color: rgba(99, 221, 212, 0.34);
}

.edition-marketplace h3,
.edition-marketplace p,
.edition-marketplace li {
  color: white;
}

.edition-marketplace ul {
  border-color: rgba(99, 221, 212, 0.24);
}

.edge-usecase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.edge-usecase-grid article {
  display: grid;
  min-height: 188px;
  align-content: start;
}

.comparison-table {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(8, 32, 51, 0.08);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.comparison-table [role="row"]:not(:last-child) {
  border-bottom: 1px solid rgba(216, 231, 239, 0.9);
}

.comparison-table span,
.comparison-table strong {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(216, 231, 239, 0.9);
}

.comparison-table span:last-child,
.comparison-table strong:last-child {
  border-right: 0;
}

.comparison-table strong {
  color: white;
  background: #071827;
  font-size: 13px;
  text-transform: uppercase;
}

.comparison-table span {
  color: var(--slate);
  font-size: 14px;
  font-weight: 720;
}

@media (max-width: 1180px) {
  .edge-capability-grid,
  .edge-usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-token-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sci-edge-edition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .sci-edge-hero,
  .sci-edge-architecture,
  .sci-edge-signal-layout {
    grid-template-columns: 1fr;
  }

  .sci-edge-architecture article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .edge-capability-grid,
  .edge-usecase-grid,
  .edge-signal-stack,
  .product-name-bridge,
  .signal-token-grid,
  .protocol-row,
  .sci-edge-edition-grid,
  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .sci-edge-edition-grid .edition-marketplace {
    grid-column: auto;
  }

  .edge-capability-grid article,
  .sci-edge-architecture article,
  .signal-token-grid div,
  .sci-edge-edition-grid article,
  .edge-usecase-grid article {
    min-height: auto;
  }

  .comparison-table span,
  .comparison-table strong {
    border-right: 0;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .comparison-table [role="row"]:first-child {
    display: none;
  }

  .comparison-table [role="row"] {
    overflow: hidden;
    background: white;
    border: 1px solid rgba(216, 231, 239, 0.92);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(8, 32, 51, 0.06);
  }

  .comparison-table [role="row"]:not(:last-child) {
    border-bottom: 1px solid rgba(216, 231, 239, 0.92);
  }

  .comparison-table span {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(216, 231, 239, 0.86);
    font-size: 15px;
    line-height: 1.45;
  }

  .comparison-table span:last-child {
    border-bottom: 0;
  }

  .comparison-table span::before {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .comparison-table span:nth-child(1) {
    color: var(--ink);
    background: rgba(21, 168, 234, 0.06);
    font-weight: 850;
  }

  .comparison-table span:nth-child(1)::before {
    content: "Site condition";
  }

  .comparison-table span:nth-child(2)::before {
    content: "Cloud path";
  }

  .comparison-table span:nth-child(3)::before {
    content: "Edge path";
  }
}


/* Resource article content */
.resource-article {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-article article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.resource-feature-readable .resource-article article {
  position: relative;
  padding-top: 56px;
  border-color: rgba(21, 168, 234, 0.22);
  border-left: 4px solid rgba(99, 221, 212, 0.72);
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.08);
}

.resource-feature-readable .resource-article article::before {
  content: "Read now";
  position: absolute;
  top: 22px;
  left: 26px;
  padding: 6px 9px;
  color: #087e94;
  background: rgba(99, 221, 212, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-article h3 {
  margin-bottom: 0;
}

.guide-deeper-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 6px;
  color: #087e94;
  font-size: 14px;
  font-weight: 850;
}

.guide-deeper-link span {
  color: var(--blue);
  transition: transform 160ms ease;
}

.guide-deeper-link:hover span,
.guide-deeper-link:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 1180px) {
  .resource-article {
    grid-template-columns: 1fr;
  }
}

/* Homepage overview video */
.home-video-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.home-video-copy p {
  max-width: 640px;
}

.home-inline-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071827;
  border: 1px solid rgba(128, 212, 235, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(8, 32, 51, 0.18);
}

.home-inline-video-player {
  display: block;
  width: 106%;
  height: 100%;
  max-width: none;
  margin-left: -3%;
  object-fit: cover;
  background: #071827;
  opacity: 0;
  transition: opacity 180ms ease;
}

.home-inline-video.is-playing .home-inline-video-player {
  opacity: 1;
}

.home-video-poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 42px);
  color: white;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 48%, rgba(99, 221, 212, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(5, 16, 27, 0.97), rgba(7, 24, 39, 0.98));
  border: 0;
  text-align: left;
}

.home-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(4, 18, 30, 0.42) 100%),
    linear-gradient(90deg, rgba(21, 168, 234, 0.08), transparent 28%, transparent 72%, rgba(99, 221, 212, 0.08));
  pointer-events: none;
}

.home-video-poster strong {
  position: absolute;
  right: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 42px);
  left: clamp(24px, 4vw, 44px);
  z-index: 1;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.home-video-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(74px, 8vw, 104px);
  aspect-ratio: 1;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(99, 221, 212, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--ink);
}

.home-video-poster:hover .home-video-play {
  transform: scale(1.04);
  box-shadow: 0 22px 54px rgba(99, 221, 212, 0.28);
}

.home-video-poster:focus-visible {
  outline: 3px solid rgba(21, 168, 234, 0.65);
  outline-offset: -6px;
}

.home-inline-video.is-playing .home-video-poster {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .home-video-band {
    grid-template-columns: 1fr;
  }
}

/* Platform command center screenshots */
.command-center-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.command-center-frame {
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(14, 48, 66, 0.92)),
    #071827;
  border: 1px solid rgba(128, 212, 235, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(8, 32, 51, 0.2);
}

.command-center-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #071827;
}

.command-center-frame figcaption {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  align-content: start;
  color: #d8eef4;
  border-top: 1px solid rgba(128, 212, 235, 0.18);
}

.command-center-frame figcaption span,
.command-context-grid span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.command-center-frame figcaption strong {
  color: white;
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.16;
}

.command-context-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.command-context-grid article {
  min-height: 190px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(216, 231, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.06);
}

.command-context-grid h3 {
  margin: 12px 0 8px;
}

.command-context-grid p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .command-center-showcase,
  .command-context-grid,
  .audit-example-layout,
  .qa-self-test-layout,
  .compliance-question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qa-self-test-result {
    position: static;
  }
}

@media (max-width: 760px) {
  .command-center-showcase,
  .command-context-grid,
  .compliance-hero,
  .scientist-hero,
  .audit-example-layout,
  .qa-self-test-layout,
  .compliance-question-grid,
  .scientist-question-grid {
    grid-template-columns: 1fr;
  }

  .qa-answer-toggle {
    margin-left: 0;
    padding-left: 0;
  }

  .qa-no-explain {
    margin-left: 0;
  }
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --ink: #e8f3f8;
    --muted: #a7bac6;
    --line: rgba(141, 178, 198, 0.28);
    --paper: #0e1c28;
    --soft: #12222f;
    --deep: #061827;
    --deep-2: #0a2234;
    --slate: #bfd0da;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
    color-scheme: dark;
  }

  html:not([data-theme="light"]) body {
    background:
      radial-gradient(circle at 18% 0%, rgba(21, 168, 234, 0.08), transparent 32%),
      var(--paper);
  }

  html:not([data-theme="light"]) .site-header {
    background: rgba(9, 24, 35, 0.86);
    border-bottom-color: rgba(141, 178, 198, 0.24);
  }

  html:not([data-theme="light"]) .site-footer,
  html:not([data-theme="light"]) .section {
    background: var(--paper);
  }

  html:not([data-theme="light"]) .footer-social a {
    color: #062032;
    background: rgba(232, 243, 248, 0.96);
    border-color: rgba(99, 221, 212, 0.38);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  }

  html:not([data-theme="light"]) .section-band,
  html:not([data-theme="light"]) .page-hero,
  html:not([data-theme="light"]) .home-role-onramp,
  html:not([data-theme="light"]) .qa-self-test,
  html:not([data-theme="light"]) .deployment-fit-check {
    background:
      radial-gradient(circle at 86% 12%, rgba(99, 221, 212, 0.08), transparent 34%),
      linear-gradient(180deg, #0e1c28 0%, #12222f 100%);
  }

  html:not([data-theme="light"]) .hero {
    background:
      radial-gradient(circle at 18% 18%, rgba(21, 168, 234, 0.28), transparent 32%),
      radial-gradient(circle at 82% 32%, rgba(99, 221, 212, 0.2), transparent 34%),
      linear-gradient(135deg, var(--deep), #0b2a42 54%, #071b2b);
  }

  html:not([data-theme="light"]) main > .section + .section,
  html:not([data-theme="light"]) main > .section + .section-band,
  html:not([data-theme="light"]) main > .section-band + .section,
  html:not([data-theme="light"]) main > .section-band + .section-band {
    border-top-color: rgba(141, 178, 198, 0.24);
  }

  html:not([data-theme="light"]) .site-search-panel,
  html:not([data-theme="light"]) .nav-dropdown,
  html:not([data-theme="light"]) .header-search,
  html:not([data-theme="light"]) .theme-toggle,
  html:not([data-theme="light"]) .menu-toggle,
  html:not([data-theme="light"]) .page-hero .button.secondary,
  html:not([data-theme="light"]) .button.secondary,
  html:not([data-theme="light"]) .site-search-close,
  html:not([data-theme="light"]) .site-search-input-wrap input,
  html:not([data-theme="light"]) .site-search-result,
  html:not([data-theme="light"]) .site-search-empty,
  html:not([data-theme="light"]) .role-onramp-card,
  html:not([data-theme="light"]) .home-proof-card,
  html:not([data-theme="light"]) .home-scenario-card,
  html:not([data-theme="light"]) .home-video-shell,
  html:not([data-theme="light"]) .scenario-card,
  html:not([data-theme="light"]) .deployment-fit-question,
  html:not([data-theme="light"]) .qa-self-test-list article,
  html:not([data-theme="light"]) .command-context-grid article,
  html:not([data-theme="light"]) .product-card,
  html:not([data-theme="light"]) .product-category-card,
  html:not([data-theme="light"]) .product-hero-card-grid a,
  html:not([data-theme="light"]) .hardware-scenario-card,
  html:not([data-theme="light"]) .hardware-series-detail,
  html:not([data-theme="light"]) .hardware-series-card,
  html:not([data-theme="light"]) .software-module-card,
  html:not([data-theme="light"]) .resource-card,
  html:not([data-theme="light"]) .tool-card,
  html:not([data-theme="light"]) .partner-card,
  html:not([data-theme="light"]) .investor-card,
  html:not([data-theme="light"]) .timeline-card,
  html:not([data-theme="light"]) .leadership-card,
  html:not([data-theme="light"]) .evidence-card,
  html:not([data-theme="light"]) .compliance-aside,
  html:not([data-theme="light"]) .audit-example-card,
  html:not([data-theme="light"]) .sci-edge-capability-card,
  html:not([data-theme="light"]) .sci-edge-edition-card,
  html:not([data-theme="light"]) .sci-device-card {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.9);
    border-color: rgba(141, 178, 198, 0.24);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  }

  html:not([data-theme="light"]) .site-search-backdrop {
    background: rgba(3, 10, 16, 0.74);
  }

  html:not([data-theme="light"]) .site-search-input-wrap input,
  html:not([data-theme="light"]) .site-search-result,
  html:not([data-theme="light"]) .site-search-empty {
    background: rgba(14, 28, 40, 0.98);
  }

  html:not([data-theme="light"]) .nav-links,
  html:not([data-theme="light"]) p,
  html:not([data-theme="light"]) .site-search-meta,
  html:not([data-theme="light"]) .deployment-fit-question button,
  html:not([data-theme="light"]) .qa-answer-toggle button {
    color: var(--muted);
  }

  html:not([data-theme="light"]) .deployment-fit-question button,
  html:not([data-theme="light"]) .qa-answer-toggle button,
  html:not([data-theme="light"]) .sci-edge-hero-visual,
  html:not([data-theme="light"]) .hardware-hero-stack article,
  html:not([data-theme="light"]) .hardware-image-shell,
  html:not([data-theme="light"]) .solution-image-button,
  html:not([data-theme="light"]) .image-modal-panel,
  html:not([data-theme="light"]) .scene-modal-panel {
    background: rgba(17, 31, 44, 0.94);
    border-color: rgba(141, 178, 198, 0.24);
  }

  html:not([data-theme="light"]) .deployment-fit-question button:hover,
  html:not([data-theme="light"]) .deployment-fit-question button:focus-visible,
  html:not([data-theme="light"]) .deployment-fit-question button.is-active,
  html:not([data-theme="light"]) .qa-answer-toggle button:hover,
  html:not([data-theme="light"]) .qa-answer-toggle button:focus-visible,
  html:not([data-theme="light"]) .qa-answer-toggle button.is-active {
    color: var(--ink);
    background: rgba(21, 168, 234, 0.14);
  }

  html:not([data-theme="light"]) .header-cta::before,
  html:not([data-theme="light"]) .header-cta::after {
    background: #12222f;
    border-color: rgba(141, 178, 198, 0.28);
  }

  html:not([data-theme="light"]) .header-cta::after {
    color: var(--ink);
  }

  html:not([data-theme="light"]) .brand-logo,
  html:not([data-theme="light"]) .investor-logo img,
  html:not([data-theme="light"]) .ecosystem-logo img,
  html:not([data-theme="light"]) .partner-logo img {
    filter: brightness(1.08) contrast(0.96);
  }

  html:not([data-theme="light"]) .packet-page,
  html:not([data-theme="light"]) .packet-export,
  html:not([data-theme="light"]) body.print-single-tool {
    background: #0e1c28;
  }
}

html[data-theme="dark"] :is(
  .role-onramp-grid a,
  .challenge-lead,
  .challenge-grid article,
  .challenge-outcome,
  .platform-wedge-grid article,
  .platform-layer,
  .ai4s-signal-grid article,
  .ai4s-outcome-grid article,
  .command-center-frame,
  .lab-context-hero,
  .decision-cta,
  .readiness-grid article,
  .resource-checklist article,
  .resource-article article,
  .audit-evidence-cards article,
  .security-cert-grid article,
  .security-questionnaire,
  .customer-proof-summary article,
  .oem-proof-note,
  .customer-case-card,
  .customer-case-metrics div,
  .compliance-card,
  .onramp-grid article,
  .compare-story-card,
  .home-platform-grid article,
  .home-wedge-card,
  .expansion-grid article,
  .hardware-grid article,
  .hardware-principle-grid article,
  .hardware-image-tile,
  .software-grid article,
  .hardware-summary-grid article,
  .product-line-card,
  .product-decision-grid article,
  .edge-capability-grid article,
  .edge-usecase-grid article,
  .sci-edge-architecture article,
  .workflow-grid article,
  .solution-domain-grid article,
  .current-partner-card,
  .partner-value-grid article,
  .partner-type-grid article,
  .partner-step-grid article,
  .resource-grid article,
  .free-tool-cards a,
  .free-tool-detail,
  .free-tool-body section,
  .resource-open-card,
  .resource-open-card details,
  .manual-mode,
  .aiot-mode,
  .scene-outcome,
  .admin-login-card,
  .admin-metrics article,
  .admin-card,
  .admin-lead-item,
  .admin-resource-item,
  .admin-event-item
) {
  color: var(--ink);
  background: rgba(17, 31, 44, 0.92);
  border-color: rgba(141, 178, 198, 0.26);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] :is(
  .role-onramp-grid span,
  .home-scenario-card span,
  .scenario-card span,
  .free-tool-cards span,
  .free-tool-title .eyebrow,
  .resource-open-card p,
  .audit-evidence-cards span,
  .security-cert-grid span,
  .solution-domain-grid article > span,
  .current-partner-card span,
  .partner-type-grid span,
  .partner-step-grid span,
  .software-grid article > span,
  .hardware-grid article > span
) {
  color: var(--mint);
  background: rgba(99, 221, 212, 0.1);
}

html[data-theme="dark"] :is(
  .role-onramp-grid strong,
  .home-scenario-card h3,
  .challenge-grid h3,
  .challenge-lead h3,
  .free-tool-cards strong,
  .free-tool-title h3,
  .free-tool-body h4,
  .resource-open-card h3,
  .audit-evidence-cards h3,
  .solution-domain-grid h3,
  .current-partner-card h3,
  .partner-type-grid h3,
  .partner-step-grid h3
) {
  color: var(--ink);
}

html[data-theme="dark"] :is(
  .role-onramp-grid em,
  .home-scenario-card p,
  .free-tool-cards p,
  .free-tool-title p:not(.eyebrow),
  .free-tool-body p,
  .free-tool-body .module-feature-list,
  .resource-open-card span,
  .audit-evidence-cards p,
  .customer-case-copy p,
  .customer-case-points li,
  .challenge-grid p,
  .challenge-lead p
) {
  color: var(--muted);
}

html[data-theme="dark"] .customer-case-tablist button {
  color: var(--ink);
  background: rgba(17, 31, 44, 0.94);
  border-color: rgba(141, 178, 198, 0.28);
}

html[data-theme="dark"] .customer-case-tablist button:hover,
html[data-theme="dark"] .customer-case-tablist button:focus-visible {
  color: #062032;
  background: var(--mint);
  border-color: rgba(99, 221, 212, 0.62);
}

html[data-theme="dark"] .customer-case-tablist button.is-active {
  color: #062032;
  background: var(--mint);
  border-color: rgba(99, 221, 212, 0.68);
}

html[data-theme="dark"] .resource-open-card {
  background: rgba(17, 31, 44, 0.92) !important;
  border-color: rgba(141, 178, 198, 0.26) !important;
}

html[data-theme="dark"] .resource-open-card details {
  background: rgba(9, 24, 35, 0.76);
  border-color: rgba(141, 178, 198, 0.24);
}

html[data-theme="dark"] .resource-open-card summary {
  color: var(--ink);
}

html[data-theme="dark"] .admin-event-item pre {
  color: var(--muted);
  background: rgba(9, 24, 35, 0.78);
  border-color: rgba(141, 178, 198, 0.24);
}

html[data-theme="dark"] .cookie-settings-link {
  color: var(--muted);
}

html[data-theme="dark"] .cookie-settings-link:hover,
html[data-theme="dark"] .cookie-settings-link:focus-visible {
  color: var(--ink);
}

html[data-theme="dark"] .cookie-consent-card {
  color: var(--ink);
  background: rgba(17, 31, 44, 0.97);
  border-color: rgba(141, 178, 198, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .cookie-consent-copy p,
html[data-theme="dark"] .cookie-consent-option > span:last-child {
  color: var(--muted);
}

html[data-theme="dark"] .cookie-consent-option {
  color: var(--ink);
  background: rgba(9, 24, 35, 0.82);
  border-color: rgba(141, 178, 198, 0.24);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) :is(
    .role-onramp-grid a,
    .challenge-lead,
    .challenge-grid article,
    .challenge-outcome,
    .platform-wedge-grid article,
    .platform-layer,
    .ai4s-signal-grid article,
    .ai4s-outcome-grid article,
    .command-center-frame,
    .lab-context-hero,
    .decision-cta,
    .readiness-grid article,
    .resource-checklist article,
  .resource-article article,
  .audit-evidence-cards article,
  .security-cert-grid article,
  .security-questionnaire,
  .customer-proof-summary article,
    .oem-proof-note,
    .customer-case-card,
    .customer-case-metrics div,
    .compliance-card,
    .onramp-grid article,
    .compare-story-card,
    .home-platform-grid article,
    .home-wedge-card,
    .expansion-grid article,
    .hardware-grid article,
    .hardware-principle-grid article,
    .hardware-image-tile,
    .software-grid article,
    .hardware-summary-grid article,
    .product-line-card,
    .product-decision-grid article,
    .edge-capability-grid article,
    .edge-usecase-grid article,
    .sci-edge-architecture article,
    .workflow-grid article,
    .solution-domain-grid article,
    .current-partner-card,
    .partner-value-grid article,
    .partner-type-grid article,
    .partner-step-grid article,
    .resource-grid article,
    .free-tool-cards a,
    .free-tool-detail,
    .free-tool-body section,
    .resource-open-card,
    .resource-open-card details,
    .manual-mode,
    .aiot-mode,
    .scene-outcome,
    .admin-login-card,
    .admin-metrics article,
    .admin-card,
    .admin-lead-item,
    .admin-resource-item,
    .admin-event-item
  ) {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.92);
    border-color: rgba(141, 178, 198, 0.26);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  }

  html:not([data-theme="light"]) :is(
    .role-onramp-grid span,
    .home-scenario-card span,
    .scenario-card span,
    .free-tool-cards span,
    .free-tool-title .eyebrow,
    .resource-open-card p,
    .audit-evidence-cards span,
    .security-cert-grid span,
    .solution-domain-grid article > span,
    .current-partner-card span,
    .partner-type-grid span,
    .partner-step-grid span,
    .software-grid article > span,
    .hardware-grid article > span
  ) {
    color: var(--mint);
    background: rgba(99, 221, 212, 0.1);
  }

  html:not([data-theme="light"]) :is(
    .role-onramp-grid strong,
    .home-scenario-card h3,
    .challenge-grid h3,
    .challenge-lead h3,
    .free-tool-cards strong,
    .free-tool-title h3,
    .free-tool-body h4,
    .resource-open-card h3,
    .audit-evidence-cards h3,
    .solution-domain-grid h3,
    .current-partner-card h3,
    .partner-type-grid h3,
    .partner-step-grid h3
  ) {
    color: var(--ink);
  }

  html:not([data-theme="light"]) :is(
    .role-onramp-grid em,
    .home-scenario-card p,
    .free-tool-cards p,
    .free-tool-title p:not(.eyebrow),
    .free-tool-body p,
    .free-tool-body .module-feature-list,
    .resource-open-card span,
    .audit-evidence-cards p,
    .customer-case-copy p,
    .customer-case-points li,
    .challenge-grid p,
    .challenge-lead p
  ) {
    color: var(--muted);
  }

  html:not([data-theme="light"]) .customer-case-tablist button {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.94);
    border-color: rgba(141, 178, 198, 0.28);
  }

  html:not([data-theme="light"]) .customer-case-tablist button:hover,
  html:not([data-theme="light"]) .customer-case-tablist button:focus-visible {
    color: #062032;
    background: var(--mint);
    border-color: rgba(99, 221, 212, 0.62);
  }

  html:not([data-theme="light"]) .customer-case-tablist button.is-active {
    color: #062032;
    background: var(--mint);
    border-color: rgba(99, 221, 212, 0.68);
  }

  html:not([data-theme="light"]) .resource-open-card {
    background: rgba(17, 31, 44, 0.92) !important;
    border-color: rgba(141, 178, 198, 0.26) !important;
  }

  html:not([data-theme="light"]) .resource-open-card details {
    background: rgba(9, 24, 35, 0.76);
    border-color: rgba(141, 178, 198, 0.24);
  }

  html:not([data-theme="light"]) .resource-open-card summary {
    color: var(--ink);
  }

  html:not([data-theme="light"]) .admin-event-item pre {
    color: var(--muted);
    background: rgba(9, 24, 35, 0.78);
    border-color: rgba(141, 178, 198, 0.24);
  }

  html:not([data-theme="light"]) .cookie-settings-link {
    color: var(--muted);
  }

  html:not([data-theme="light"]) .cookie-settings-link:hover,
  html:not([data-theme="light"]) .cookie-settings-link:focus-visible {
    color: var(--ink);
  }

  html:not([data-theme="light"]) .cookie-consent-card {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.97);
    border-color: rgba(141, 178, 198, 0.3);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  html:not([data-theme="light"]) .cookie-consent-copy p,
  html:not([data-theme="light"]) .cookie-consent-option > span:last-child {
    color: var(--muted);
  }

  html:not([data-theme="light"]) .cookie-consent-option {
    color: var(--ink);
    background: rgba(9, 24, 35, 0.82);
    border-color: rgba(141, 178, 198, 0.24);
  }
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% 0%, rgba(21, 168, 234, 0.08), transparent 32%),
    var(--paper);
}

html[data-theme="dark"] .site-header {
  background: rgba(9, 24, 35, 0.86);
  border-bottom-color: rgba(141, 178, 198, 0.24);
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .section {
  background: var(--paper);
}

html[data-theme="dark"] .footer-social a {
  color: #062032;
  background: rgba(232, 243, 248, 0.96);
  border-color: rgba(99, 221, 212, 0.38);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .section-band,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .home-role-onramp,
html[data-theme="dark"] .qa-self-test,
html[data-theme="dark"] .deployment-fit-check {
  background:
    radial-gradient(circle at 86% 12%, rgba(99, 221, 212, 0.08), transparent 34%),
    linear-gradient(180deg, #0e1c28 0%, #12222f 100%);
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 168, 234, 0.28), transparent 32%),
    radial-gradient(circle at 82% 32%, rgba(99, 221, 212, 0.2), transparent 34%),
    linear-gradient(135deg, var(--deep), #0b2a42 54%, #071b2b);
}

html[data-theme="dark"] main > .section + .section,
html[data-theme="dark"] main > .section + .section-band,
html[data-theme="dark"] main > .section-band + .section,
html[data-theme="dark"] main > .section-band + .section-band {
  border-top-color: rgba(141, 178, 198, 0.24);
}

html[data-theme="dark"] .site-search-panel,
html[data-theme="dark"] .nav-submenu,
html[data-theme="dark"] .header-search,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .page-hero .button.secondary,
html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .site-search-close,
html[data-theme="dark"] .site-search-input-wrap input,
html[data-theme="dark"] .site-search-result,
html[data-theme="dark"] .site-search-empty,
html[data-theme="dark"] .role-onramp-card,
html[data-theme="dark"] .home-proof-card,
html[data-theme="dark"] .home-scenario-card,
html[data-theme="dark"] .home-video-shell,
html[data-theme="dark"] .scenario-card,
html[data-theme="dark"] .deployment-fit-question,
html[data-theme="dark"] .qa-self-test-list article,
html[data-theme="dark"] .command-context-grid article,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .product-category-card,
html[data-theme="dark"] .product-hero-card-grid a,
html[data-theme="dark"] .hardware-scenario-card,
html[data-theme="dark"] .hardware-series-detail,
html[data-theme="dark"] .hardware-series-card,
html[data-theme="dark"] .software-module-card,
html[data-theme="dark"] .resource-card,
html[data-theme="dark"] .tool-card,
html[data-theme="dark"] .partner-card,
html[data-theme="dark"] .investor-card,
html[data-theme="dark"] .timeline-card,
html[data-theme="dark"] .leadership-card,
html[data-theme="dark"] .evidence-card,
html[data-theme="dark"] .compliance-aside,
html[data-theme="dark"] .audit-example-card,
html[data-theme="dark"] .sci-edge-capability-card,
html[data-theme="dark"] .sci-edge-edition-card,
html[data-theme="dark"] .sci-device-card {
  color: var(--ink);
  background: rgba(17, 31, 44, 0.9);
  border-color: rgba(141, 178, 198, 0.24);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .nav-submenu,
  html:not([data-theme="light"]) .theme-toggle {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.9);
    border-color: rgba(141, 178, 198, 0.24);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  }
}

html[data-theme="dark"] .site-search-backdrop {
  background: rgba(3, 10, 16, 0.74);
}

html[data-theme="dark"] .site-search-input-wrap input,
html[data-theme="dark"] .site-search-result,
html[data-theme="dark"] .site-search-empty {
  background: rgba(14, 28, 40, 0.98);
}

html[data-theme="dark"] .nav-links,
html[data-theme="dark"] p,
html[data-theme="dark"] .site-search-meta,
html[data-theme="dark"] .deployment-fit-question button,
html[data-theme="dark"] .qa-answer-toggle button {
  color: var(--muted);
}

html[data-theme="dark"] .deployment-fit-question button,
html[data-theme="dark"] .qa-answer-toggle button,
html[data-theme="dark"] .sci-edge-hero-visual,
html[data-theme="dark"] .hardware-hero-stack article,
html[data-theme="dark"] .hardware-image-shell,
html[data-theme="dark"] .solution-image-button,
html[data-theme="dark"] .image-modal-panel,
html[data-theme="dark"] .scene-modal-panel {
  background: rgba(17, 31, 44, 0.94);
  border-color: rgba(141, 178, 198, 0.24);
}

html[data-theme="dark"] .deployment-fit-question button:hover,
html[data-theme="dark"] .deployment-fit-question button:focus-visible,
html[data-theme="dark"] .deployment-fit-question button.is-active,
html[data-theme="dark"] .qa-answer-toggle button:hover,
html[data-theme="dark"] .qa-answer-toggle button:focus-visible,
html[data-theme="dark"] .qa-answer-toggle button.is-active {
  color: var(--ink);
  background: rgba(21, 168, 234, 0.14);
}

html[data-theme="dark"] .header-cta::before,
html[data-theme="dark"] .header-cta::after {
  background: #12222f;
  border-color: rgba(141, 178, 198, 0.28);
}

html[data-theme="dark"] .header-cta::after {
  color: var(--ink);
}

html[data-theme="dark"] .brand-logo,
html[data-theme="dark"] .investor-logo img,
html[data-theme="dark"] .ecosystem-logo img,
html[data-theme="dark"] .partner-logo img {
  filter: brightness(1.08) contrast(0.96);
}

html[data-theme="dark"] .packet-page,
html[data-theme="dark"] .packet-export,
html[data-theme="dark"] body.print-single-tool {
  background: #0e1c28;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .admin-login-card input,
html[data-theme="dark"] .admin-card input,
html[data-theme="dark"] .admin-card select,
html[data-theme="dark"] .admin-card textarea,
html[data-theme="dark"] .nav-submenu a,
html[data-theme="dark"] .role-slide-button,
html[data-theme="dark"] .scenario-slide-button,
html[data-theme="dark"] .scene-detail-button,
html[data-theme="dark"] .incident-scenario-tabs button,
html[data-theme="dark"] .incident-steps button,
html[data-theme="dark"] .deployment-fit-question button,
html[data-theme="dark"] .qa-answer-toggle button,
html[data-theme="dark"] .contact-copy-button,
html[data-theme="dark"] .free-tool-title .button,
html[data-theme="dark"] .product-subnav a,
html[data-theme="dark"] .resource-open-card a,
html[data-theme="dark"] .guide-deeper-link,
html[data-theme="dark"] .section-link,
html[data-theme="dark"] .packet-footer-cta {
  color: var(--ink);
  background: rgba(17, 31, 44, 0.94);
  border-color: rgba(141, 178, 198, 0.28);
}

html[data-theme="dark"] :is(input, select, textarea)::placeholder {
  color: rgba(232, 243, 248, 0.62);
}

html[data-theme="dark"] .nav-submenu a:hover,
html[data-theme="dark"] .nav-submenu a:focus-visible,
html[data-theme="dark"] .role-slide-button:hover,
html[data-theme="dark"] .role-slide-button:focus-visible,
html[data-theme="dark"] .scenario-slide-button:hover,
html[data-theme="dark"] .scenario-slide-button:focus-visible,
html[data-theme="dark"] .scene-detail-button:hover,
html[data-theme="dark"] .scene-detail-button:focus-visible,
html[data-theme="dark"] .incident-scenario-tabs button:hover,
html[data-theme="dark"] .incident-scenario-tabs button:focus-visible,
html[data-theme="dark"] .incident-scenario-tabs button.is-active,
html[data-theme="dark"] .incident-steps button:hover,
html[data-theme="dark"] .incident-steps button:focus-visible,
html[data-theme="dark"] .incident-steps button.is-active {
  color: var(--ink);
  background: rgba(21, 168, 234, 0.16);
  border-color: rgba(99, 221, 212, 0.42);
}

html[data-theme="dark"] .incident-scenario-tabs button.is-active,
html[data-theme="dark"] .incident-steps button.is-active span,
html[data-theme="dark"] .admin-nav button.is-active,
html[data-theme="dark"] .button.primary {
  color: #062032;
}

html[data-theme="dark"] .contact-actions .button.secondary:hover,
html[data-theme="dark"] .contact-actions .button.secondary:focus-visible {
  color: var(--ink);
  background: rgba(21, 168, 234, 0.16);
  border-color: rgba(99, 221, 212, 0.42);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) input,
  html:not([data-theme="light"]) select,
  html:not([data-theme="light"]) textarea,
  html:not([data-theme="light"]) .admin-login-card input,
  html:not([data-theme="light"]) .admin-card input,
  html:not([data-theme="light"]) .admin-card select,
  html:not([data-theme="light"]) .admin-card textarea,
  html:not([data-theme="light"]) .nav-submenu a,
  html:not([data-theme="light"]) .role-slide-button,
  html:not([data-theme="light"]) .scenario-slide-button,
  html:not([data-theme="light"]) .scene-detail-button,
  html:not([data-theme="light"]) .incident-scenario-tabs button,
  html:not([data-theme="light"]) .incident-steps button,
  html:not([data-theme="light"]) .deployment-fit-question button,
  html:not([data-theme="light"]) .qa-answer-toggle button,
  html:not([data-theme="light"]) .contact-copy-button,
  html:not([data-theme="light"]) .free-tool-title .button,
  html:not([data-theme="light"]) .product-subnav a,
  html:not([data-theme="light"]) .resource-open-card a,
  html:not([data-theme="light"]) .guide-deeper-link,
  html:not([data-theme="light"]) .section-link,
  html:not([data-theme="light"]) .packet-footer-cta {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.94);
    border-color: rgba(141, 178, 198, 0.28);
  }

  html:not([data-theme="light"]) :is(input, select, textarea)::placeholder {
    color: rgba(232, 243, 248, 0.62);
  }

  html:not([data-theme="light"]) .nav-submenu a:hover,
  html:not([data-theme="light"]) .nav-submenu a:focus-visible,
  html:not([data-theme="light"]) .role-slide-button:hover,
  html:not([data-theme="light"]) .role-slide-button:focus-visible,
  html:not([data-theme="light"]) .scenario-slide-button:hover,
  html:not([data-theme="light"]) .scenario-slide-button:focus-visible,
  html:not([data-theme="light"]) .scene-detail-button:hover,
  html:not([data-theme="light"]) .scene-detail-button:focus-visible,
  html:not([data-theme="light"]) .incident-scenario-tabs button:hover,
  html:not([data-theme="light"]) .incident-scenario-tabs button:focus-visible,
  html:not([data-theme="light"]) .incident-scenario-tabs button.is-active,
  html:not([data-theme="light"]) .incident-steps button:hover,
  html:not([data-theme="light"]) .incident-steps button:focus-visible,
  html:not([data-theme="light"]) .incident-steps button.is-active {
    color: var(--ink);
    background: rgba(21, 168, 234, 0.16);
    border-color: rgba(99, 221, 212, 0.42);
  }

  html:not([data-theme="light"]) .incident-scenario-tabs button.is-active,
  html:not([data-theme="light"]) .incident-steps button.is-active span,
  html:not([data-theme="light"]) .admin-nav button.is-active,
  html:not([data-theme="light"]) .button.primary {
    color: #062032;
  }

  html:not([data-theme="light"]) .contact-actions .button.secondary:hover,
  html:not([data-theme="light"]) .contact-actions .button.secondary:focus-visible {
    color: var(--ink);
    background: rgba(21, 168, 234, 0.16);
    border-color: rgba(99, 221, 212, 0.42);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(132px, 1fr) repeat(4, auto);
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: minmax(112px, 1fr) repeat(4, auto);
    gap: 6px;
    padding-inline: 12px;
  }

  .brand {
    width: 126px;
    min-width: 126px;
  }

  .header-search,
  .theme-toggle,
  .menu-toggle {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .header-search {
    padding: 8px 9px;
  }

  .header-cta {
    max-width: 76px;
    padding: 8px 9px;
    justify-content: center;
    text-align: center;
    line-height: 1.05;
    white-space: normal;
  }
}

html[data-theme="dark"] .customer-logo-wall {
  background: rgba(216, 231, 239, 0.92);
  border-color: rgba(216, 231, 239, 0.92);
  box-shadow: none;
}

html[data-theme="dark"] .customer-logo-marquee {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(235, 246, 251, 0.72), rgba(255, 255, 255, 0.95));
}

html[data-theme="dark"] :is(.customer-logo-wall li, .customer-logo-item) {
  background: white;
  border-color: rgba(216, 231, 239, 0.86);
  box-shadow: none;
}

html[data-theme="dark"] .customer-logo-wall img {
  filter: grayscale(100%) saturate(0.85);
  opacity: 0.78;
}

html[data-theme="dark"] .customer-logo-wall :is(li, .customer-logo-item):hover img {
  filter: none;
  opacity: 1;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .customer-logo-wall {
    background: rgba(216, 231, 239, 0.92);
    border-color: rgba(216, 231, 239, 0.92);
    box-shadow: none;
  }

  html:not([data-theme="light"]) .customer-logo-marquee {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(235, 246, 251, 0.72), rgba(255, 255, 255, 0.95));
  }

  html:not([data-theme="light"]) :is(.customer-logo-wall li, .customer-logo-item) {
    background: white;
    border-color: rgba(216, 231, 239, 0.86);
    box-shadow: none;
  }

  html:not([data-theme="light"]) .customer-logo-wall img {
    filter: grayscale(100%) saturate(0.85);
    opacity: 0.78;
  }

  html:not([data-theme="light"]) .customer-logo-wall :is(li, .customer-logo-item):hover img {
    filter: none;
    opacity: 1;
  }
}

html[data-theme="dark"] :is(
  .site-header.is-open .nav-links,
  .context-flow article,
  .vision-split,
  .vision-cards article,
  .problems-grid article,
  .persona-grid article,
  .product-grid article,
  .product-rail article,
  .partner-list,
  .contact-form,
  .contact-form-status:not(:empty),
  .admin-event-grid article,
  .system-card,
  .package-grid article,
  .hardware-deployment-grid article,
  .stack-item,
  .architecture-column,
  .lims-gap-column,
  .lims-gap-column li,
  .partner-question-grid article,
  .partner-scenario-grid article,
  .partner-model-grid article,
  .partner-visual,
  .partner-fit-matrix,
  .partner-fit-row,
  .api-preview-cards article,
  .partner-first-30 div,
  .partner-workflow-integrated,
  .partner-first-30-summary,
  .about-proof-grid article,
  .oem-proof-callout,
  .about-timeline div,
  .individual-investor-card,
  .ecosystem-grid article,
  .investor-grid article,
  .leadership-grid article,
  .investor-signal-grid article,
  .global-readiness-grid article,
  .vision-principle-grid article,
  .platform-stack-visual,
  .compliance-summary-card,
  .compliance-summary-card .module-feature-list li,
  .week-exposure-callout,
  .week-signal-stream article,
  .week-signal-stream a,
  .friday-test-evidence,
  .friday-test-evidence div,
  .friday-evidence-summary,
  .scenario-mini-timeline,
  .scenario-mode-compare div,
  .compare-columns div,
  .hardware-principle-grid article,
  .hardware-scene-map-card,
  .hardware-ehs-note,
  .hardware-series-copy,
  .hardware-series-columns > div,
  .hardware-scenario-gallery figure,
  .comparison-table,
  .tool-table strong,
  .sci-edge-edition-grid article:not(.edition-marketplace),
  .context-path article,
  .product-name-bridge div,
  .signal-token-grid div,
  .evidence-page,
  .evidence-document,
  .packet-meta-grid article,
  .packet-alert-summary > div,
  .packet-card,
  .temperature-chart,
  .packet-timeline li,
  .packet-table,
  .corrective-action-grid div,
  .packet-signature-grid div,
  .qa-review-note,
  .qa-review-editor,
  .qa-review-note-action,
  .resource-feature,
  .resource-feature-readable
) {
  color: var(--ink);
  background: rgba(17, 31, 44, 0.94);
  border-color: rgba(141, 178, 198, 0.28);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] :is(
  .site-header.is-open .nav-links a,
  .site-header.is-open .nav-submenu a
) {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

html[data-theme="dark"] :is(
  .site-header.is-open .nav-links a:hover,
  .site-header.is-open .nav-links a:focus-visible,
  .site-header.is-open .nav-submenu a:hover,
  .site-header.is-open .nav-submenu a:focus-visible,
  .header-search:hover,
  .header-search:focus-visible,
  .theme-toggle:hover,
  .theme-toggle:focus-visible
) {
  color: var(--ink);
  background: rgba(21, 168, 234, 0.16);
  border-color: rgba(99, 221, 212, 0.42);
}

html[data-theme="dark"] :is(
  .hardware-deployment-grid span,
  .stack-item span,
  .incident-steps button:not(.is-active) span,
  .deployment-fit-question legend span,
  .workflow-grid article span,
  .product-category-card > span,
  .partner-fit-head,
  .partner-value-grid span,
  .about-proof-grid span,
  .leadership-grid span,
  .global-readiness-grid span,
  .vision-principle-grid span,
  .platform-wedge-grid span,
  .expansion-grid span,
  .platform-layer:not(.layer-intelligence) .layer-index,
  .ai4s-signal-grid span,
  .home-platform-grid span,
  .challenge-grid article span,
  .hardware-scene-map-card span,
  .series-scene-tags span,
  .qa-question-head span,
  .tool-table span
) {
  color: #f5fbff;
  background: #071827;
  border-color: rgba(99, 221, 212, 0.3);
}

html[data-theme="dark"] .rollout-timeline article::before,
html[data-theme="dark"] .partner-first-30 div::before,
html[data-theme="dark"] .about-timeline article::before {
  color: #f5fbff;
  background: #071827;
  border-color: rgba(99, 221, 212, 0.3);
}

html[data-theme="dark"] :is(
  .incident-steps button.is-active span,
  .challenge-grid article:nth-child(2n) span,
  .investor-signal-grid span,
  .layer-intelligence .layer-index,
  .solution-operating-flow span,
  .button.primary
) {
  color: #062032;
}

html[data-theme="dark"] :is(
  .footer-social a:hover,
  .footer-social a:focus-visible,
  .lab-map-legend a:hover,
  .lab-map-legend a:focus-visible,
  .solution-domain-grid article:target .scene-detail-button,
  .solution-domain-grid article.scene-target-highlight .scene-detail-button,
  .readiness-links a:first-child
) {
  color: #062032;
  background: var(--mint);
  border-color: rgba(99, 221, 212, 0.62);
}

html[data-theme="dark"] :is(
  .partner-fit-row div,
  .hardware-series-columns p,
  .hardware-scenario-gallery figcaption,
  .comparison-table span,
  .tool-table strong,
  .sci-edge-edition-grid li
) {
  color: var(--muted);
}

html[data-theme="dark"] :is(
  .partner-fit-row div:first-child,
  .hardware-series-columns strong,
  .hardware-scene-map-card em,
  .hardware-outcome,
  .free-tool-body h4
) {
  color: var(--ink);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) :is(
    .site-header.is-open .nav-links,
    .context-flow article,
    .vision-split,
    .vision-cards article,
    .problems-grid article,
    .persona-grid article,
    .product-grid article,
    .product-rail article,
    .partner-list,
    .contact-form,
    .contact-form-status:not(:empty),
    .admin-event-grid article,
    .system-card,
    .package-grid article,
    .hardware-deployment-grid article,
    .stack-item,
    .architecture-column,
    .lims-gap-column,
    .lims-gap-column li,
    .partner-question-grid article,
    .partner-scenario-grid article,
    .partner-model-grid article,
    .partner-visual,
    .partner-fit-matrix,
    .partner-fit-row,
    .api-preview-cards article,
    .partner-first-30 div,
    .partner-workflow-integrated,
    .partner-first-30-summary,
    .about-proof-grid article,
    .oem-proof-callout,
    .about-timeline div,
    .individual-investor-card,
    .ecosystem-grid article,
    .investor-grid article,
    .leadership-grid article,
    .investor-signal-grid article,
    .global-readiness-grid article,
    .vision-principle-grid article,
    .platform-stack-visual,
    .compliance-summary-card,
    .compliance-summary-card .module-feature-list li,
    .week-exposure-callout,
    .week-signal-stream article,
    .week-signal-stream a,
    .friday-test-evidence,
    .friday-test-evidence div,
    .friday-evidence-summary,
    .scenario-mini-timeline,
    .scenario-mode-compare div,
    .compare-columns div,
    .hardware-principle-grid article,
    .hardware-scene-map-card,
    .hardware-ehs-note,
    .hardware-series-copy,
    .hardware-series-columns > div,
    .hardware-scenario-gallery figure,
    .comparison-table,
    .tool-table strong,
    .sci-edge-edition-grid article:not(.edition-marketplace),
    .context-path article,
    .product-name-bridge div,
    .signal-token-grid div,
    .evidence-page,
    .evidence-document,
    .packet-meta-grid article,
    .packet-alert-summary > div,
    .packet-card,
    .temperature-chart,
    .packet-timeline li,
    .packet-table,
    .corrective-action-grid div,
    .packet-signature-grid div,
    .qa-review-note,
    .qa-review-editor,
    .qa-review-note-action,
    .resource-feature,
    .resource-feature-readable
  ) {
    color: var(--ink);
    background: rgba(17, 31, 44, 0.94);
    border-color: rgba(141, 178, 198, 0.28);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  }

  html:not([data-theme="light"]) :is(
    .site-header.is-open .nav-links a,
    .site-header.is-open .nav-submenu a
  ) {
    color: var(--ink);
    background: transparent;
    border-color: transparent;
  }

  html:not([data-theme="light"]) :is(
    .site-header.is-open .nav-links a:hover,
    .site-header.is-open .nav-links a:focus-visible,
    .site-header.is-open .nav-submenu a:hover,
    .site-header.is-open .nav-submenu a:focus-visible,
    .header-search:hover,
    .header-search:focus-visible,
    .theme-toggle:hover,
    .theme-toggle:focus-visible
  ) {
    color: var(--ink);
    background: rgba(21, 168, 234, 0.16);
    border-color: rgba(99, 221, 212, 0.42);
  }

  html:not([data-theme="light"]) :is(
    .hardware-deployment-grid span,
    .stack-item span,
    .incident-steps button:not(.is-active) span,
    .deployment-fit-question legend span,
    .workflow-grid article span,
    .product-category-card > span,
    .partner-fit-head,
    .partner-value-grid span,
    .about-proof-grid span,
    .leadership-grid span,
    .global-readiness-grid span,
    .vision-principle-grid span,
    .platform-wedge-grid span,
    .expansion-grid span,
    .platform-layer:not(.layer-intelligence) .layer-index,
    .ai4s-signal-grid span,
    .home-platform-grid span,
    .challenge-grid article span,
    .hardware-scene-map-card span,
    .series-scene-tags span,
    .qa-question-head span,
    .tool-table span
  ) {
    color: #f5fbff;
    background: #071827;
    border-color: rgba(99, 221, 212, 0.3);
  }

  html:not([data-theme="light"]) .rollout-timeline article::before,
  html:not([data-theme="light"]) .partner-first-30 div::before,
  html:not([data-theme="light"]) .about-timeline article::before {
    color: #f5fbff;
    background: #071827;
    border-color: rgba(99, 221, 212, 0.3);
  }

  html:not([data-theme="light"]) :is(
    .incident-steps button.is-active span,
    .challenge-grid article:nth-child(2n) span,
    .investor-signal-grid span,
    .layer-intelligence .layer-index,
    .solution-operating-flow span,
    .button.primary
  ) {
    color: #062032;
  }

  html:not([data-theme="light"]) :is(
    .footer-social a:hover,
    .footer-social a:focus-visible,
    .lab-map-legend a:hover,
    .lab-map-legend a:focus-visible,
    .solution-domain-grid article:target .scene-detail-button,
    .solution-domain-grid article.scene-target-highlight .scene-detail-button,
    .readiness-links a:first-child
  ) {
    color: #062032;
    background: var(--mint);
    border-color: rgba(99, 221, 212, 0.62);
  }

  html:not([data-theme="light"]) :is(
    .partner-fit-row div,
    .hardware-series-columns p,
    .hardware-scenario-gallery figcaption,
    .comparison-table span,
    .tool-table strong,
    .sci-edge-edition-grid li
  ) {
    color: var(--muted);
  }

  html:not([data-theme="light"]) :is(
    .partner-fit-row div:first-child,
    .hardware-series-columns strong,
    .hardware-scene-map-card em,
    .hardware-outcome,
    .free-tool-body h4
  ) {
    color: var(--ink);
  }
}

html[data-theme="dark"] .about-investors .investor-grid article:not(.investor-card-dark),
html[data-theme="dark"] .about-investors .ecosystem-grid article {
  background: #ffffff;
  border-color: rgba(216, 231, 239, 0.86);
  box-shadow: none;
}

html[data-theme="dark"] .about-investors .investor-grid article:not(.investor-card-dark) img,
html[data-theme="dark"] .about-investors .ecosystem-grid img {
  filter: none;
  opacity: 0.94;
}

html[data-theme="dark"] .about-investors .investor-card-dark {
  background:
    linear-gradient(rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 212, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #061827, #0a2234);
  background-size: 28px 28px, 28px 28px, auto;
  border-color: rgba(99, 221, 212, 0.22);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .about-investors .investor-card-dark img {
  filter: none;
  opacity: 1;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .about-investors .investor-grid article:not(.investor-card-dark),
  html:not([data-theme="light"]) .about-investors .ecosystem-grid article {
    background: #ffffff;
    border-color: rgba(216, 231, 239, 0.86);
    box-shadow: none;
  }

  html:not([data-theme="light"]) .about-investors .investor-grid article:not(.investor-card-dark) img,
  html:not([data-theme="light"]) .about-investors .ecosystem-grid img {
    filter: none;
    opacity: 0.94;
  }

  html:not([data-theme="light"]) .about-investors .investor-card-dark {
    background:
      linear-gradient(rgba(99, 221, 212, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(99, 221, 212, 0.08) 1px, transparent 1px),
      linear-gradient(135deg, #061827, #0a2234);
    background-size: 28px 28px, 28px 28px, auto;
    border-color: rgba(99, 221, 212, 0.22);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  }

  html:not([data-theme="light"]) .about-investors .investor-card-dark img {
    filter: none;
    opacity: 1;
  }
}
