:root {
  --ink: #071b2b;
  --ink-soft: #0d2b42;
  --cream: #f3efe5;
  --paper: #fbfaf5;
  --blue: #1262ff;
  --contact-accent: #0b6178;
  --contact-tint: #e8f2f1;
  --cyan: #43caf1;
  --green: #b8ff48;
  --line: rgba(7, 27, 43, 0.18);
  --light-line: rgba(255, 255, 255, 0.14);
  --muted: #61707d;
  --max: 1460px;
  --pad: clamp(20px, 4vw, 74px);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
}

.form-honeypot {
  position: absolute !important;
  inset-inline-start: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html.site-preloader-active::before,
html.site-preloader-active::after {
  position: fixed;
  pointer-events: none;
}

html.site-preloader-active::before {
  content: "ZHILIANHAI\A页面加载中 / LOADING";
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 142px 24px 24px;
  color: #fff;
  background:
    url("./zhilianhai-mark.png") center calc(50% - 42px) / 84px 84px no-repeat,
    radial-gradient(circle at 50% 42%, rgba(18, 98, 255, 0.22), transparent 34%),
    var(--ink);
  opacity: 1;
  visibility: visible;
  white-space: pre;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 2.2;
  letter-spacing: 0.16em;
  transition: opacity 80ms ease-out, visibility 0s linear 80ms;
  animation: site-preloader-safety-hide 1ms linear 320ms forwards;
}

html.site-preloader-active::after {
  content: "";
  z-index: 1001;
  top: calc(50% + 102px);
  left: 50%;
  width: min(240px, 68vw);
  height: 2px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, var(--green), var(--cyan)) -55% 0 / 42% 100% no-repeat,
    rgba(255, 255, 255, 0.18);
  opacity: 1;
  visibility: visible;
  transition: opacity 80ms ease-out, visibility 0s linear 80ms;
  animation:
    site-preloader-progress 0.35s ease-in-out infinite,
    site-preloader-safety-hide 1ms linear 320ms forwards;
}

@keyframes site-preloader-progress {
  0% { background-position: -55% 0, 0 0; }
  55% { background-position: 75% 0, 0 0; }
  100% { background-position: 155% 0, 0 0; }
}

@keyframes site-preloader-safety-hide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

html.site-preloader-leaving::before,
html.site-preloader-leaving::after {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

html.site-preloader-done::before,
html.site-preloader-done::after {
  content: none;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  html.site-preloader-active::before,
  html.site-preloader-active::after {
    transition: none;
  }

  html.site-preloader-active::after {
    background:
      linear-gradient(90deg, var(--green), var(--cyan)) 0 0 / 100% 100% no-repeat,
      rgba(255, 255, 255, 0.18);
    animation: site-preloader-safety-hide 1ms linear 0s forwards;
  }
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.prototype-bar {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 5px var(--pad);
  background: var(--green);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.prototype-bar i {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 14px var(--pad);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 900;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}

.brand-name {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.075em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.locale-switch {
  display: flex;
  border: 1px solid var(--line);
}

.locale-switch button {
  min-width: 40px;
  height: 36px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.locale-switch button.active {
  background: var(--ink);
  color: white;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.button-light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
}

.route-location {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px var(--pad);
  border-bottom: 1px solid var(--line);
  background: #eae5d9;
  font-size: 11px;
}

.route-location span {
  color: var(--muted);
}

.hero {
  --hero-pad-block: clamp(70px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(40px, 7vw, 120px);
  min-height: 620px;
  padding: var(--hero-pad-block) var(--pad);
  background-color: var(--ink);
  background-image: linear-gradient(var(--light-line) 1px, transparent 1px), linear-gradient(90deg, var(--light-line) 1px, transparent 1px);
  background-size: 84px 84px;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 42%, rgba(18, 98, 255, 0.26), transparent 34%);
  pointer-events: none;
}

body[data-page="about"] .hero--about-global {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background-color: #06111b;
  background-image: url("about-us-global-intelligence-hero-1672x941.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body[data-page="about"] .hero--about-global::before {
  content: none;
}

body[data-page="post"] .hero--procurement-request {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  background-color: #06111b;
  background-image: url("procurement-request-hero-1672x941.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body[data-page="post"] .hero--procurement-request::before {
  content: none;
}

body[data-page="companies"] .hero--company-map {
  --company-glow-x: 70%;
  --company-glow-y: 48%;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background-color: #020b1b;
  background-image: url("./company-us-map-hero.webp?v=222d915a");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
}

body[data-page="companies"] .hero--company-map::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 40%;
  background: linear-gradient(
    90deg,
    #020b1b 0%,
    #020b1b 91%,
    rgba(2, 11, 27, 0.98) 95%,
    rgba(2, 11, 27, 0) 100%
  );
  pointer-events: none;
}

body[data-page="companies"] .company-map-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

body[data-page="companies"] .company-map-state {
  outline: none;
  pointer-events: auto;
}

body[data-page="companies"] .company-map-state path {
  fill: rgba(75, 197, 255, 0.001);
  stroke: rgba(183, 255, 60, 0);
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
  transition: fill 140ms ease-out, stroke 140ms ease-out, filter 140ms ease-out;
}

body[data-page="companies"] .company-map-state:hover path,
body[data-page="companies"] .company-map-state:focus-visible path {
  fill: rgba(76, 207, 255, 0.3);
  stroke: #b7ff3c;
  stroke-width: 3px;
  filter: drop-shadow(0 0 7px rgba(91, 214, 255, 0.95));
}

body[data-page="companies"] .company-map-state.is-selected path {
  fill: rgba(183, 255, 60, 0.22);
  stroke: #b7ff3c;
  stroke-width: 3px;
  filter: drop-shadow(0 0 9px rgba(183, 255, 60, 0.7));
}

body[data-page="companies"] .company-map-inset-hit {
  fill: rgba(75, 197, 255, 0.001);
  stroke: rgba(183, 255, 60, 0);
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
  pointer-events: all;
  transition: fill 140ms ease-out, stroke 140ms ease-out, filter 140ms ease-out;
}

body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"] path {
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 140ms ease-out, stroke 140ms ease-out, filter 140ms ease-out, transform 140ms ease-out;
}

body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"]:hover .company-map-inset-hit,
body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"]:focus-visible .company-map-inset-hit {
  fill: rgba(76, 207, 255, 0.005);
  stroke: rgba(91, 214, 255, 0.42);
  stroke-width: 1.5px;
  filter: drop-shadow(0 0 5px rgba(91, 214, 255, 0.42));
}

body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"]:hover path,
body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"]:focus-visible path {
  fill: rgba(183, 255, 60, 0.86);
  stroke: #b7ff3c;
  stroke-width: 3px;
  filter: drop-shadow(0 0 3px rgba(238, 255, 255, 0.92)) drop-shadow(0 0 10px rgba(183, 255, 60, 0.82));
  transform: scale(1.025);
}

body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"].is-selected .company-map-inset-hit {
  fill: rgba(183, 255, 60, 0.006);
  stroke: rgba(183, 255, 60, 0.52);
  stroke-width: 2px;
  filter: drop-shadow(0 0 6px rgba(183, 255, 60, 0.42));
}

body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"].is-selected path {
  fill: rgba(183, 255, 60, 0.96);
  stroke: #b7ff3c;
  stroke-width: 3.5px;
  filter: drop-shadow(0 0 3px rgba(238, 255, 255, 0.95)) drop-shadow(0 0 12px rgba(183, 255, 60, 0.9));
  transform: scale(1.03);
}

body[data-page="companies"] .company-map-state[data-map-inset-hotspot="hawaii"]:active path {
  fill: rgba(238, 255, 255, 0.92);
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body[data-page="companies"] .hero--company-map.is-glow-ready {
    cursor: none;
  }

  body[data-page="companies"] .hero--company-map .company-state-panel,
  body[data-page="companies"] .hero--company-map .company-country-overview,
  body[data-page="companies"] .hero--company-map .company-country-switcher {
    cursor: default;
  }

  body[data-page="companies"] .hero--company-map .state-card,
  body[data-page="companies"] .hero--company-map .company-country-switcher button {
    cursor: pointer;
  }

  body[data-page="companies"] .hero--company-map .company-map-state {
    cursor: none;
  }

  body[data-page="companies"] .hero--company-map::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        circle 34px at var(--company-glow-x) var(--company-glow-y),
        rgba(230, 252, 255, 0.72) 0%,
        rgba(142, 229, 255, 0.44) 46%,
        rgba(89, 203, 255, 0) 100%
      ),
      radial-gradient(
        circle 112px at var(--company-glow-x) var(--company-glow-y),
        rgba(77, 209, 255, 0.42) 0%,
        rgba(37, 166, 255, 0.22) 46%,
        rgba(37, 166, 255, 0) 82%
      ),
      radial-gradient(
        circle 270px at var(--company-glow-x) var(--company-glow-y),
        rgba(32, 161, 255, 0.24) 0%,
        rgba(18, 99, 230, 0.11) 44%,
        rgba(18, 99, 230, 0) 76%
      );
    clip-path: inset(0 0 0 33%);
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 160ms ease-out;
    will-change: opacity;
  }

  body[data-page="companies"] .hero--company-map:has(.company-map-state[data-map-inset-hotspot="hawaii"]:hover)::after {
    background:
      radial-gradient(
        circle 12px at var(--company-glow-x) var(--company-glow-y),
        rgba(175, 237, 255, 0.36) 0%,
        rgba(105, 211, 255, 0.2) 48%,
        rgba(89, 203, 255, 0) 100%
      ),
      radial-gradient(
        circle 58px at var(--company-glow-x) var(--company-glow-y),
        rgba(77, 209, 255, 0.2) 0%,
        rgba(37, 166, 255, 0.09) 50%,
        rgba(37, 166, 255, 0) 84%
      ),
      radial-gradient(
        circle 150px at var(--company-glow-x) var(--company-glow-y),
        rgba(32, 161, 255, 0.12) 0%,
        rgba(18, 99, 230, 0.05) 46%,
        rgba(18, 99, 230, 0) 78%
      );
  }

  body[data-page="companies"] .hero--company-map.is-pointer-active::after {
    opacity: 1;
  }
}

body[data-page="news"] .hero--industry-news {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background-color: #020b1b;
  background-image: url("./industry-news-command-center.png?v=bc4ef30d");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
}

body[data-page="news"] .hero--industry-news::before {
  display: none;
}

body[data-page="companies"] .company-state-panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 33%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(6px, 0.7vw, 10px);
  border-right: 1px solid rgba(120, 202, 255, 0.72);
  background: #020b1b;
  scrollbar-color: #78caff #07152a;
  scrollbar-width: thin;
}

body[data-page="companies"] .company-state-panel:focus-visible {
  outline: 3px solid #78caff;
  outline-offset: -3px;
}

body[data-page="companies"] .company-state-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  gap: clamp(5px, 0.55vw, 8px);
  min-height: 100%;
}

body[data-page="companies"] .state-card {
  display: grid;
  grid-template-rows: auto minmax(22px, 1fr) auto;
  place-items: center;
  min-width: 0;
  min-height: 0;
  gap: 2px;
  padding: clamp(3px, 0.42vw, 6px) 4px;
  border: 1px solid rgba(120, 202, 255, 0.48);
  border-radius: 4px;
  background: rgba(2, 14, 32, 0.82);
  color: #eaf7ff;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

body[data-page="companies"] .state-card:hover,
body[data-page="companies"] .state-card:focus-visible,
body[data-page="companies"] .state-card.active {
  border-color: #a8ff3e;
  background: rgba(8, 35, 58, 0.96);
  outline: 2px solid #a8ff3e;
  outline-offset: -2px;
}

body[data-page="companies"] .state-code {
  color: #a9dcff;
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(9px, 0.78vw, 12px);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

body[data-page="companies"] .state-icon {
  display: block;
  width: min(100%, 42px);
  height: clamp(22px, 2.6vw, 38px);
  color: #78caff;
}

body[data-page="companies"] .state-name {
  min-width: 0;
  color: #f3f9ff;
  font-size: clamp(8px, 0.72vw, 11px);
  font-weight: 650;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 32 / 15;
  min-height: 0;
  padding: 0;
  background: #031120;
  isolation: isolate;
}

.product-carousel-slides,
.product-carousel-slide {
  position: absolute;
  inset: 0;
}

.product-carousel-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.product-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(3, 17, 32, 0.58);
  color: #fff;
  font: inherit;
  font-size: 25px;
  cursor: pointer;
}

.product-carousel-prev { left: clamp(16px, 3vw, 52px); }
.product-carousel-next { right: clamp(16px, 3vw, 52px); }

.product-carousel-arrow:hover,
.product-carousel-arrow:focus-visible {
  border-color: #fff;
  background: rgba(3, 17, 32, 0.82);
}

.product-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 2.4vw, 32px);
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.product-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(3, 17, 32, 0.46);
  cursor: pointer;
}

.product-carousel-dots button[aria-current="true"] {
  border-color: var(--lime);
  background: var(--lime);
}

body[data-page="home"] .hero--robot-core {
  isolation: isolate;
  grid-template-columns: 250px minmax(0, 660px) 1fr;
  gap: clamp(24px, 3vw, 50px);
  align-items: stretch;
  background-color: #061a33;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 32, 0.76) 0%, rgba(3, 19, 36, 0.56) 25%, rgba(5, 27, 48, 0.24) 48%, rgba(6, 26, 51, 0.04) 74%, rgba(6, 26, 51, 0) 100%),
    url("./robot-industry-hero.webp?v=02d774e5");
  background-size: cover;
  background-position: center, center center;
  background-repeat: no-repeat;
  filter: none;
  backdrop-filter: none;
}

body[data-page="home"] .hero--robot-core::before {
  background: linear-gradient(180deg, rgba(3, 17, 32, 0.08), rgba(3, 17, 32, 0.28));
}

.hero-copy,
.signal-panel {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .hero-copy {
  width: min(100%, 660px);
  align-self: start;
  padding-top: 18px;
  text-shadow: 0 2px 16px rgba(1, 11, 22, 0.72);
}

body[data-page="home"] .robot-category-panel {
  position: relative;
  z-index: 4;
  align-self: stretch;
  min-height: 620px;
  color: #f6f8fa;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 14, 27, 0.58);
  box-shadow: 18px 0 48px rgba(1, 10, 20, 0.12);
  filter: none;
  backdrop-filter: none;
}

body[data-page="home"] .robot-category-products {
  position: relative;
  z-index: 4;
  align-self: start;
  width: min(100%, 535px);
  height: 786px;
  margin-top: calc(var(--hero-pad-block) * -1);
  margin-left: calc(var(--pad) * -1 - clamp(24px, 3vw, 50px));
  padding: 26px 18px 20px;
  box-sizing: border-box;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 32, 0.02) 0%, rgba(3, 17, 32, 0.16) 12%, rgba(4, 21, 37, 0.18) 88%, rgba(4, 21, 37, 0.01) 100%),
    linear-gradient(180deg, rgba(3, 17, 32, 0.01) 0%, rgba(3, 17, 32, 0.14) 10%, rgba(4, 21, 37, 0.18) 90%, rgba(4, 21, 37, 0.02) 100%),
    radial-gradient(circle at 80% 12%, rgba(68, 183, 255, 0.08), transparent 48%);
  color: #f6f8fa;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body[data-page="home"] .robot-category-products.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

body[data-page="home"] .robot-category-products-head {
  position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .robot-category-products-close {
  display: none;
}

body[data-page="home"] .robot-category-products-code {
  display: block;
  margin-bottom: 9px;
  color: #8edcff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

body[data-page="home"] .robot-category-products h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

body[data-page="home"] .robot-category-products-head p {
  margin: 0;
  color: rgba(232, 242, 250, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

body[data-page="home"] .robot-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 8px;
}

body[data-page="home"] .robot-product-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 195, 224, 0.14);
  border-radius: 2px;
  background: rgba(12, 39, 61, 0.18);
  color: #f8fbff;
  text-decoration: none;
  perspective: 900px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body[data-page="home"] .robot-product-card:hover,
body[data-page="home"] .robot-product-card:focus-visible,
body[data-page="home"] .robot-product-card:focus-within {
  border-color: #b7ff3c;
  background: rgba(27, 68, 89, 0.4);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 20, 38, 0.26);
}

body[data-page="home"] .robot-product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(7, 30, 49, 0.72);
}

body[data-page="home"] .robot-product-card-body {
  display: flex;
  min-height: 58px;
  padding: 10px 11px 11px;
  flex-direction: column;
  gap: 5px;
}

body[data-page="home"] .robot-product-card-name {
  display: block;
  overflow: hidden;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="home"] .robot-product-card small {
  color: rgba(196, 220, 232, 0.68);
  font-size: 9px;
  line-height: 1.2;
}

body[data-page="home"] .robot-product-card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 240ms cubic-bezier(0.22, 0.72, 0.25, 1);
}

body[data-page="home"] .robot-product-flip-card.is-flipped .robot-product-card-inner {
  transform: rotateY(180deg);
}

body[data-page="home"] .robot-product-card-face {
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body[data-page="home"] .robot-product-card-front {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

body[data-page="home"] .robot-product-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  min-width: 0;
  padding: 12px;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(77, 185, 235, 0.2), transparent 42%),
    linear-gradient(145deg, #0b2941, #061827 72%);
  transform: rotateY(180deg);
}

body[data-page="home"] .robot-product-card-return {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #b7ff3c;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}

body[data-page="home"] .robot-product-card-badge {
  display: block;
  padding-right: 42px;
  color: #8edcff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="home"] .robot-product-card-product-name {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1.28;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="home"] .robot-product-card-company,
body[data-page="home"] .robot-product-card-model {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="home"] .robot-product-card-company {
  color: rgba(236, 247, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
}

body[data-page="home"] .robot-product-card-model {
  color: rgba(196, 220, 232, 0.68);
  font-size: 9px;
  line-height: 1.2;
}

body[data-page="home"] .robot-product-card-company-link {
  display: inline-flex;
  min-height: 40px;
  margin-top: auto;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 255, 60, 0.72);
  color: #b7ff3c;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

body[data-page="home"] .robot-product-card-company-link:hover {
  background: #b7ff3c;
  color: #10243e;
}

body[data-page="home"] .robot-product-card-front:focus-visible,
body[data-page="home"] .robot-product-card-return:focus-visible,
body[data-page="home"] .robot-product-card-company-link:focus-visible {
  outline: 2px solid #b7ff3c;
  outline-offset: -3px;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .robot-product-card-inner {
    transition: none;
    transform: none !important;
  }

  body[data-page="home"] .robot-product-card-back {
    display: none;
    transform: none;
  }

  body[data-page="home"] .robot-product-flip-card.is-flipped .robot-product-card-front {
    display: none;
  }

  body[data-page="home"] .robot-product-flip-card.is-flipped .robot-product-card-back {
    display: flex;
  }
}

body[data-page="home"] .robot-category-products-more {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  box-sizing: border-box;
  border: 1px solid transparent;
  color: #d7ff92;
  box-shadow: inset 0 0 0 1px rgba(183, 255, 60, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

body[data-page="home"] .robot-category-products-more:hover,
body[data-page="home"] .robot-category-products-more:focus-visible {
  background: #b7ff3c;
  color: #10243e;
  outline: none;
}

body[data-page="home"] .robot-image-hotspots {
  --cursor-glow-x: 50%;
  --cursor-glow-y: 50%;
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  pointer-events: none;
}

body[data-page="home"] .robot-image-hotspots::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle 96px at var(--cursor-glow-x) var(--cursor-glow-y), rgba(122, 226, 255, 0.46) 0%, rgba(55, 184, 241, 0.25) 30%, rgba(20, 119, 193, 0.11) 55%, rgba(20, 119, 193, 0) 76%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 140ms ease;
}

body[data-page="home"] .robot-image-hotspots.is-pointer-active::before {
  opacity: 1;
}

body[data-page="home"] .robot-image-hotspot {
  position: absolute;
  left: var(--hotspot-x);
  top: var(--hotspot-y);
  z-index: 1;
  width: var(--hotspot-w);
  height: var(--hotspot-h);
  isolation: isolate;
  border: 0;
  border-radius: 30%;
  outline: none;
  background: transparent;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

body[data-page="home"] .robot-image-hotspots.is-product-panel-open .robot-image-hotspot {
  pointer-events: none;
}

body[data-page="home"] .robot-image-hotspot::after {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: 0;
  border: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(93, 211, 255, 0.24) 0%, rgba(40, 161, 225, 0.15) 42%, rgba(18, 108, 182, 0.06) 62%, rgba(18, 108, 182, 0) 78%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
}

body[data-page="home"] .robot-image-hotspot span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 12px);
  padding: 5px 9px;
  transform: translate(-50%, 6px);
  border: 1px solid rgba(105, 216, 255, 0.68);
  background: rgba(2, 13, 27, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

body[data-page="home"] .robot-image-hotspot:hover,
body[data-page="home"] .robot-image-hotspot:focus-visible {
  border-color: transparent;
  outline: none;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .robot-image-hotspot:hover::after,
body[data-page="home"] .robot-image-hotspot:focus-visible::after {
  opacity: 1;
}

body[data-page="home"] .robot-image-hotspot:hover span,
body[data-page="home"] .robot-image-hotspot:focus-visible span {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .hero--robot-core.is-glow-ready {
    cursor: none;
  }

  body[data-page="home"] .hero--robot-core.is-glow-ready .robot-category-panel {
    cursor: default;
  }

  body[data-page="home"] .hero--robot-core.is-glow-ready .robot-category-panel a {
    cursor: pointer;
  }

  body[data-page="home"] .hero--robot-core.is-glow-ready .robot-image-hotspot {
    cursor: none;
  }
}

body[data-page="home"] .robot-category-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 20px;
  background: rgba(238, 69, 94, 0.86);
  color: inherit;
  font-size: 14px;
  text-decoration: none;
}

body[data-page="home"] .robot-category-dots {
  font-size: 20px;
  line-height: 1;
}

body[data-page="home"] .robot-category-list {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

body[data-page="home"] .robot-category-list li {
  margin: 0;
}

body[data-page="home"] .robot-category-list li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 18px;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

body[data-page="home"] .robot-category-list li > a:hover,
body[data-page="home"] .robot-category-list li > a:focus-visible {
  background: rgba(244, 244, 244, 0.88);
}

body[data-page="home"] .robot-category-list li > a:hover,
body[data-page="home"] .robot-category-list li > a:focus-visible,
body[data-page="home"] .robot-category-list li > a.is-hotspot-active {
  color: #24323a;
  border-left-color: #ee455e;
  background: rgba(244, 244, 244, 0.88);
  text-shadow: none;
}

body[data-page="home"] .robot-category-code {
  flex: 0 0 26px;
  color: #8bdcff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

body[data-page="home"] .robot-category-list li > a:hover .robot-category-code,
body[data-page="home"] .robot-category-list li > a:focus-visible .robot-category-code,
body[data-page="home"] .robot-category-list li > a.is-hotspot-active .robot-category-code {
  color: #2aa8d1;
}

.eyebrow,
.section-code,
.card-code {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 26px;
  font-size: clamp(50px, 5.9vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 670px;
  margin: 0 0 34px;
  color: #afbfcb;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 34px;
}

.search-box {
  max-width: 650px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.search-box::before {
  content: "⌕";
  color: var(--cyan);
  font-size: 22px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 2px solid transparent;
  outline-offset: 4px;
  background: transparent;
  color: white;
}

.search-box:focus-within {
  border-color: #aaff38;
  box-shadow: 0 0 0 3px rgba(170, 255, 56, 0.24);
}

.search-box input:focus-visible {
  outline-color: #aaff38;
}

.search-box input::placeholder {
  color: #869aa9;
}

.signal-panel {
  align-self: center;
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(67, 202, 241, 0.28);
  box-shadow: 24px 20px 0 rgba(67, 202, 241, 0.08);
  background: rgba(5, 34, 58, 0.78);
}

.signal-head,
.signal-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signal-head span:last-child {
  color: var(--green);
}

.signal-orbit {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  margin: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(45deg, transparent 49.7%, rgba(67, 202, 241, 0.25) 50%, transparent 50.3%);
}

.signal-orbit::before,
.signal-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(67, 202, 241, 0.3);
  transform: rotate(45deg);
}

.signal-orbit::before {
  width: 150px;
  height: 150px;
}

.signal-orbit::after {
  width: 90px;
  height: 90px;
}

.signal-code {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 62px);
  text-align: center;
}

.signal-code small {
  display: block;
  margin-top: 8px;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.index-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.index-strip div {
  min-height: 112px;
  padding: 24px var(--pad);
  border-right: 1px solid var(--line);
}

.index-strip div:last-child {
  border-right: 0;
}

.index-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.index-strip small {
  color: var(--muted);
}

.content-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 106px) var(--pad);
}

body[data-page="home"] .home-gateway-section {
  padding-bottom: clamp(50px, 5vw, 72px);
}

body[data-page="home"] #latest {
  padding-top: clamp(50px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.04em;
}

.section-summary {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.gateway-grid,
.news-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gateway-card,
.info-card,
.news-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.14);
}

.gateway-card {
  transition: background 160ms ease, transform 160ms ease;
}

.gateway-card:hover,
.gateway-card:focus-visible {
  position: relative;
  z-index: 1;
  background: white;
}

.gateway-card:focus-visible {
  outline-offset: -3px;
}

.gateway-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gateway-card-top > span {
  color: var(--blue);
  font-size: 18px;
  transition: transform 160ms ease;
}

.gateway-card:hover .gateway-card-top > span,
.gateway-card:focus-visible .gateway-card-top > span {
  transform: translate(2px, -2px);
}

.gateway-card h3,
.info-card h3,
.news-card h3 {
  margin: 38px 0 14px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.gateway-card p,
.info-card p,
.news-card p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.75;
}

.news-translation-status,
.home-news-feature-translation,
.home-news-row-translation {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 7px;
  border: 1px solid rgba(174, 93, 0, 0.45);
  color: #895000;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.news-card .news-translation-status {
  margin: -4px 0 14px;
}

.news-card.feature .news-translation-status,
.home-news-feature-translation {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.gateway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.gateway-tags li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.gateway-result {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.gateway-result > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.gateway-card strong,
.info-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}

.gateway-result strong {
  flex: 0 0 auto;
  margin-top: 0;
}

body[data-page="home"] .news-card {
  align-items: stretch;
  padding: 0;
  transition: background 160ms ease;
}

body[data-page="home"] .news-card:not(.feature):hover,
body[data-page="home"] .news-card:not(.feature):focus-within {
  background: white;
}

.news-card-link {
  min-height: inherit;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
}

.news-card-link:focus-visible {
  outline-offset: -3px;
}

.news-card.feature {
  grid-column: span 2;
  min-height: 360px;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  background-color: #071c30;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 32, 0.96) 0%, rgba(3, 17, 32, 0.88) 42%, rgba(3, 17, 32, 0.5) 72%, rgba(3, 17, 32, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 27, 48, 0.06) 0%, rgba(5, 27, 48, 0.42) 100%),
    url("./product-category-carousel/10-industrial-drones-hero.webp?v=20260825");
  background-position: center, center, 68% center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
}

body[data-page="news"] .news-card.feature[data-feature-visual="humanoid"] {
  isolation: isolate;
  overflow: hidden;
  background-color: #071c30;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 32, 0.96) 0%, rgba(3, 17, 32, 0.9) 44%, rgba(3, 17, 32, 0.5) 70%, rgba(3, 17, 32, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 27, 48, 0.08) 0%, rgba(5, 27, 48, 0.4) 100%),
    url("./news-feature-humanoid-1672x941.png?v=2d988894");
  background-position: center, center, 72% center;
  background-size: cover;
  background-repeat: no-repeat;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
}

body[data-page="news"] .news-card.feature[data-feature-visual="humanoid"] > * {
  position: relative;
  z-index: 1;
  max-width: 68%;
}

body[data-page="news"] .news-card.feature[data-feature-visual="humanoid"] > .news-meta {
  width: 68%;
}

.news-card.feature p {
  color: #c3d2dd;
}

body[data-page="home"] .news-card.feature .news-card-link {
  justify-content: flex-end;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.news-source-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.news-source-context strong {
  font-weight: 750;
}

.news-source-context span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="news"] .news-card {
  min-height: 340px;
}

body[data-page="news"] .news-card-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 18px;
  font-weight: 800;
}

body[data-page="news"] .news-card-cta:hover,
body[data-page="news"] .news-card-cta:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-card.feature .news-source-context,
.news-card.feature .news-source-context span {
  color: #d7e4ec;
}

.news-card.feature .news-source-context span {
  border-color: var(--light-line);
}

.news-card.feature .news-meta {
  border-top-color: var(--light-line);
  color: #c3d2dd;
}

body[data-page="home"] .news-card.feature .news-meta {
  margin-top: 0;
}

.news-card-cta {
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
}

.news-card.feature .news-card-cta {
  color: var(--green);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .gateway-card:hover {
    transform: translateY(-4px);
  }
}

.selection-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.selection-preview-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  transition: background 160ms ease;
}

.selection-preview-card:hover,
.selection-preview-card:focus-within {
  background: white;
}

.selection-preview-code {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.selection-preview-code small,
.home-sourcing-cta small,
.home-project-cta small,
.company-map-cta small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.selection-preview-code strong {
  color: var(--blue);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 0.9;
  white-space: nowrap;
}

.selection-preview-card h3 {
  margin: 46px 0 14px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.selection-preview-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.selection-preview-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.selection-preview-card dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.selection-preview-card dt,
.selection-preview-card dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.selection-preview-card dt {
  color: var(--muted);
}

.selection-preview-card dd {
  font-weight: 800;
}

.selection-preview-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

/* Homepage application starters are real, first-party product records. Keep
   the whole card as one link so pointer, keyboard and screen-reader users all
   reach the same company profile target. */
.company-product-preview-card {
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.company-product-preview-card:hover,
.company-product-preview-card:focus-within {
  background: white;
  box-shadow: inset 0 0 0 2px var(--blue);
}

@media (hover: hover) and (pointer: fine) {
  .company-product-preview-card:hover {
    transform: translateY(-4px);
  }
}

.company-product-preview-link {
  flex: 1 1 auto;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 0;
  padding: 34px;
  width: 100%;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.company-product-preview-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.selection-preview-card.company-product-preview-card > .company-product-preview-link {
  align-items: stretch;
  margin-top: 0;
}

.company-product-preview-company {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.company-product-preview-card h3 {
  margin: 14px 0 14px;
}

.company-product-preview-description {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.company-product-preview-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .company-product-preview-card {
    transition: background 160ms ease, box-shadow 160ms ease;
  }

  .company-product-preview-card:hover {
    transform: none;
  }
}

.home-sourcing-band {
  background: var(--ink);
  color: white;
}

.home-sourcing-section .section-heading,
.home-method-section .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.48);
}

.home-sourcing-section .section-summary,
.home-method-section .section-summary {
  color: #b7c8d4;
}

.home-sourcing-section .text-link,
.home-method-section .text-link {
  color: white;
}

.home-sourcing-section .sample-notice {
  border-left-color: var(--green);
  background: rgba(255, 255, 255, 0.06);
  color: #b7c8d4;
}

.home-sourcing-list {
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.home-sourcing-row {
  min-height: 176px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(210px, 0.62fr) auto;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.025);
  transition: background 160ms ease;
}

.home-sourcing-row:hover,
.home-sourcing-row:focus-within {
  background: rgba(255, 255, 255, 0.075);
}

.sourcing-status {
  align-self: start;
  padding-top: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.sourcing-status.is-review {
  color: #ffd47a;
}

.sourcing-status.is-published {
  color: var(--green);
}

.sourcing-status.is-supply {
  color: var(--cyan);
}

.home-sourcing-row h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.home-sourcing-row p {
  max-width: 660px;
  margin: 0;
  color: #b7c8d4;
  line-height: 1.7;
}

.home-sourcing-row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.home-sourcing-row dl > div {
  padding-left: 14px;
  border-left: 1px solid var(--light-line);
}

.home-sourcing-row dt,
.home-sourcing-row dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.home-sourcing-row dt {
  color: #8199aa;
}

.home-sourcing-row dd {
  color: white;
  font-weight: 800;
}

.home-sourcing-row > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.home-sourcing-cta,
.home-project-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(28px, 4vw, 48px);
}

.home-sourcing-cta {
  background: var(--blue);
}

.home-sourcing-cta small {
  color: var(--green);
}

.home-sourcing-cta h3,
.home-project-cta h3 {
  margin: 10px 0 8px;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.035em;
}

.home-sourcing-cta p,
.home-project-cta p {
  max-width: 800px;
  margin: 0;
  line-height: 1.7;
}

.home-sourcing-cta p {
  color: #dbe7ff;
}

.company-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-capability-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  transition: background 160ms ease;
}

.company-capability-card:hover,
.company-capability-card:focus-visible {
  background: white;
}

.company-capability-card:focus-visible {
  outline-offset: -3px;
}

.company-capability-card > small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.company-capability-card h3 {
  margin: 38px 0 14px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.company-capability-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.company-capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.company-capability-card li {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.company-capability-card strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
}

/* The capability area now surfaces one verified product per category. Keep
   the four-column layout, but give the product metadata the same readable
   rhythm as the application-starter cards above. */
.company-product-capability-grid > .company-capability-card {
  min-height: 470px;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.company-product-capability-grid > .company-capability-card:hover,
.company-product-capability-grid > .company-capability-card:focus-visible {
  background: white;
  box-shadow: inset 0 0 0 2px var(--blue);
}

@media (hover: hover) and (pointer: fine) {
  .company-product-capability-grid > .company-capability-card:hover {
    transform: translateY(-4px);
  }
}

.company-product-capability-grid > .company-capability-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.company-product-capability-grid > .company-capability-card .selection-preview-code {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.company-product-capability-grid > .company-capability-card .selection-preview-code small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.company-product-capability-grid > .company-capability-card .selection-preview-code strong {
  margin: 0;
  color: var(--blue);
  font-size: clamp(18px, 1.65vw, 27px);
  line-height: 0.95;
  text-align: right;
  white-space: nowrap;
}

.company-product-capability-grid > .company-capability-card .company-product-preview-company {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.company-product-capability-grid > .company-capability-card h3 {
  margin: 13px 0 14px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.company-product-capability-grid > .company-capability-card .company-product-preview-description {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.company-product-capability-grid > .company-capability-card dl {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.company-product-capability-grid > .company-capability-card dl > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.company-product-capability-grid > .company-capability-card dt,
.company-product-capability-grid > .company-capability-card dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
}

.company-product-capability-grid > .company-capability-card dt {
  color: var(--muted);
}

.company-product-capability-grid > .company-capability-card dd {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.company-product-capability-grid > .company-capability-card .company-product-preview-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .company-product-capability-grid > .company-capability-card {
    transition: background 160ms ease, box-shadow 160ms ease;
  }

  .company-product-capability-grid > .company-capability-card:hover {
    transform: none;
  }
}

.company-map-cta {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  background: rgba(18, 98, 255, 0.06);
  transition: background 160ms ease;
}

.company-map-cta:hover,
.company-map-cta:focus-visible {
  background: white;
}

.company-map-cta:focus-visible {
  outline-offset: -3px;
}

.company-map-cta > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-map-cta strong {
  margin-top: 8px;
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.025em;
}

.company-map-cta em {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.company-map-cta b {
  color: var(--blue);
  font-size: 30px;
}

.home-method-band {
  background: #0b3152;
  color: white;
}

.home-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.home-method-grid > a {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  transition: background 160ms ease;
}

.home-method-grid > a:hover,
.home-method-grid > a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.home-method-grid > a:focus-visible {
  outline-offset: -3px;
}

.home-method-grid small {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-method-grid h3 {
  margin: 48px 0 14px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.home-method-grid p {
  margin: 0 0 24px;
  color: #b7c8d4;
  line-height: 1.75;
}

.home-method-grid strong {
  margin-top: auto;
  color: white;
  font-size: 12px;
}

.home-project-cta {
  background: var(--green);
  color: var(--ink);
}

.home-project-cta small {
  color: #315500;
}

.home-project-cta p {
  color: #315500;
}

.content-scope-note {
  margin: -6px 0 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--blue);
  background: rgba(18, 98, 255, 0.055);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* About page: make the platform story as useful as the directories themselves. */
.about-process-band {
  background: #0b3152;
  color: white;
}

.about-process-section .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.48);
}

.about-process-section .section-summary,
.about-process-step p {
  color: #b7c8d4;
}

.about-process-section .text-link {
  color: white;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
  list-style: none;
}

.about-process-step {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.035);
  transition: background 160ms ease;
}

.about-process-step:hover,
.about-process-step:focus-within {
  background: rgba(255, 255, 255, 0.09);
}

.about-process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 30px;
  right: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 18px;
}

.about-process-number {
  color: var(--green);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.about-process-step small,
.about-audience-card small {
  margin-top: 24px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-process-step h3 {
  margin: 26px 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.about-process-step p {
  margin: 0 0 22px;
  line-height: 1.72;
}

.about-process-step > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.about-standard-grid,
.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-standard-card,
.about-audience-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.15);
  transition: background 160ms ease;
}

.about-standard-card:hover,
.about-standard-card:focus-within,
.about-audience-card:hover,
.about-audience-card:focus-within {
  background: white;
}

.about-standard-card h3,
.about-audience-card h3 {
  margin: 38px 0 14px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.about-standard-card p,
.about-audience-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.about-standard-card ul {
  display: grid;
  gap: 9px;
  width: 100%;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-standard-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.about-standard-card li::before {
  content: "—";
  color: var(--blue);
  font-weight: 900;
}

.about-audience-band {
  background: #e8e1d5;
}

.about-audience-card {
  min-height: 300px;
}

.about-audience-card small {
  margin-top: 0;
  color: var(--blue);
}

.about-audience-card h3 {
  margin-top: 42px;
}

.about-audience-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.about-faq-band {
  background: var(--ink-soft);
  color: white;
}

.about-faq-section .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.about-faq-section .section-summary,
.about-faq-section .home-faq-item p {
  color: #b7c8d4;
}

.about-faq-section .text-link {
  color: white;
}

.about-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-contact-band {
  background: var(--green);
  color: var(--ink);
}

.about-contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-contact-section h2 {
  max-width: 800px;
  margin: 12px 0 14px;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.04em;
}

.about-contact-section p {
  max-width: 650px;
  margin: 0;
  color: #315500;
  line-height: 1.75;
}

.about-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.about-contact-actions .button-light {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.solution-atlas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-atlas-card {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.15);
  transition: background 160ms ease;
}

.solution-atlas-card:hover,
.solution-atlas-card:focus-visible {
  background: white;
}

.solution-atlas-card:focus-visible {
  outline-offset: -3px;
}

.solution-atlas-head,
.research-tool-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.solution-atlas-head small,
.research-tool-head small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.solution-atlas-head span,
.research-tool-head span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.solution-atlas-card h3 {
  margin: 42px 0 14px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.solution-atlas-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.solution-atlas-card dl {
  width: 100%;
  margin: auto 0 28px;
  border-top: 1px solid var(--line);
}

.solution-atlas-card dl > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.solution-atlas-card dt,
.solution-atlas-card dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.solution-atlas-card dt {
  color: var(--muted);
}

.solution-atlas-card dd {
  font-weight: 700;
}

.solution-atlas-card > strong {
  color: var(--blue);
  font-size: 12px;
}

.home-workflow-band {
  background: #e8e1d5;
}

.home-knowledge-band {
  background: var(--paper);
}

.home-knowledge-band .section-heading {
  border-bottom-color: var(--blue);
}

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

.robot-knowledge-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  background: #f7f9fc;
  transition: background 160ms ease, border-color 160ms ease;
}

.robot-knowledge-card:hover,
.robot-knowledge-card:focus-within {
  border-color: rgba(18, 98, 255, 0.42);
  border-top-color: var(--blue);
  background: white;
}

.robot-knowledge-card small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.robot-knowledge-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.robot-knowledge-card > p:not(.robot-knowledge-route) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.robot-knowledge-card .robot-knowledge-route {
  width: 100%;
  margin: auto 0 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.robot-knowledge-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.robot-knowledge-card > a:focus-visible {
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .robot-knowledge-card {
    transition: none;
  }
}

.section-anchor-alias {
  display: block;
  height: 0;
  scroll-margin-top: 24px;
}

.procurement-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.procurement-workflow li {
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
}

.procurement-workflow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 32px;
  right: 22px;
  color: rgba(7, 27, 43, 0.34);
  font-size: 18px;
}

.workflow-number {
  color: var(--blue);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.procurement-workflow small {
  margin-top: 24px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.procurement-workflow h3 {
  margin: 26px 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.procurement-workflow p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.72;
}

.procurement-workflow .workflow-detail-list {
  width: 100%;
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
}

.procurement-workflow .workflow-detail-list > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.procurement-workflow .workflow-detail-list dt,
.procurement-workflow .workflow-detail-list dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.procurement-workflow .workflow-detail-list dt {
  color: var(--muted);
}

.procurement-workflow .workflow-detail-list dd {
  font-weight: 700;
}

.procurement-workflow .workflow-route {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding-left: 10px;
  border-left: 2px solid var(--blue);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.procurement-workflow li > strong {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  line-height: 1.6;
}

.procurement-workflow li > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.research-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.research-tool-note {
  max-width: 760px;
  margin: 14px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--green);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

body[data-page="about"] #about-data-principles {
  scroll-margin-top: 24px;
}

.research-tool-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  transition: background 160ms ease;
}

.research-tool-card:hover,
.research-tool-card:focus-within {
  background: white;
}

.research-tool-card h3 {
  margin: 42px 0 14px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.research-tool-card > p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.research-tool-card .research-tool-detail-list {
  width: 100%;
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
}

.research-tool-card .research-tool-detail-list > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.research-tool-card .research-tool-detail-list dt,
.research-tool-card .research-tool-detail-list dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.research-tool-card .research-tool-detail-list dt {
  color: var(--muted);
}

.research-tool-card .research-tool-detail-list dd {
  font-weight: 700;
}

.research-tool-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.research-tool-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.research-tool-card li::before {
  content: "—";
  color: var(--blue);
  font-weight: 900;
}

.research-tool-card .research-tool-route {
  width: 100%;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 2px solid var(--blue);
  background: rgba(18, 98, 255, 0.045);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.research-tool-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.home-faq-band {
  background: var(--ink-soft);
  color: white;
}

.home-faq-section .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.home-faq-section .section-summary {
  color: #b7c8d4;
}

.home-faq-section .text-link {
  color: white;
}

.home-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.home-faq-item {
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.035);
}

.home-faq-item summary {
  min-height: 112px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary:focus-visible {
  outline-offset: -3px;
}

.home-faq-item summary > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.home-faq-item summary > strong {
  font-size: 17px;
  line-height: 1.5;
}

.home-faq-item summary > i {
  color: var(--green);
  font-size: 24px;
  font-style: normal;
  text-align: center;
  transition: transform 160ms ease;
}

.home-faq-item[open] {
  background: rgba(255, 255, 255, 0.075);
}

.home-faq-item[open] summary > i {
  transform: rotate(45deg);
}

.home-faq-item > div {
  padding: 0 24px 28px 84px;
}

.home-faq-item p {
  margin: 0 0 18px;
  color: #b7c8d4;
  line-height: 1.78;
}

.home-faq-item a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.search-panel .search-box {
  max-width: none;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.search-panel .search-box input {
  color: var(--ink);
}

.result-count {
  min-width: 120px;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.filter-pills button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.filter-pills button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

body[data-page="companies"] .filter-pills {
  margin-bottom: 12px;
}

.company-region-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

body[data-page="companies"] .company-country-switcher,
body[data-page="companies"] .company-country-overview {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(120, 202, 255, 0.62);
  background: rgba(2, 14, 32, 0.86);
  box-shadow: 0 14px 36px rgba(0, 6, 18, 0.28);
  color: #f3f9ff;
}

body[data-page="companies"] .company-country-switcher {
  top: clamp(14px, 1.6vw, 28px);
  right: clamp(18px, 8vw, 160px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
}

body[data-page="companies"] .company-country-switcher-label {
  padding-left: 8px;
  color: #a9dcff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

body[data-page="companies"] .company-country-switcher button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(120, 202, 255, 0.48);
  background: rgba(4, 27, 55, 0.92);
  color: #f3f9ff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

body[data-page="companies"] .company-country-switcher button.active {
  border-color: #78caff;
  background: #0e4f89;
  box-shadow: inset 3px 0 0 #b7ff3c;
}

body[data-page="companies"] .company-country-switcher button:focus-visible {
  outline: 3px solid #b7ff3c;
  outline-offset: 2px;
}

body[data-page="companies"] .company-country-code {
  color: #b7ff3c;
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

body[data-page="companies"] .company-country-overview {
  top: clamp(14px, 1.6vw, 28px);
  right: clamp(240px, 21vw, 430px);
  left: calc(33% + clamp(24px, 4vw, 72px));
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 3px 18px;
  max-width: 900px;
  padding: clamp(7px, 0.7vw, 10px) clamp(12px, 1.3vw, 20px);
}

body[data-page="companies"] .company-country-overview-code {
  color: #78caff;
  font-size: clamp(8px, 0.65vw, 11px);
  font-weight: 800;
  letter-spacing: 0.12em;
}

body[data-page="companies"] .company-country-metric {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}

body[data-page="companies"] .company-country-metric output {
  color: #b7ff3c;
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(26px, 2.3vw, 40px);
  font-weight: 800;
  line-height: 0.9;
}

body[data-page="companies"] .company-country-metric span {
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 750;
}

body[data-page="companies"] .company-country-overview small {
  color: #a9bed2;
  font-size: clamp(9px, 0.72vw, 12px);
}

.company-region-filter button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.directory-list {
  border-top: 1px solid var(--ink);
}

.directory-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 138px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.directory-row > small {
  color: var(--blue);
  font-weight: 800;
}

.directory-row > small.directory-company-name {
  font-size: 13px;
  line-height: 1.35;
}

.directory-company-link {
  display: block;
  color: var(--blue);
  text-decoration: none;
}

.directory-company-link:hover,
.directory-company-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directory-row h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.directory-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.company-detail-page {
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px) 24px 96px;
}

.company-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.company-detail-back:hover,
.company-detail-back:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-detail-profile {
  min-width: 0;
  margin-bottom: 12px;
}

.company-detail-hero {
  position: relative;
  display: flex;
  min-width: 0;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: clamp(500px, 46vw, 560px);
  aspect-ratio: auto;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #071b2b;
}

.company-detail-hero::before,
.company-detail-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
}

.company-detail-hero::before {
  background-image: linear-gradient(90deg, rgba(4, 18, 31, 0.98) 0%, rgba(4, 18, 31, 0.82) 38%, rgba(4, 18, 31, 0.18) 72%, rgba(4, 18, 31, 0.4) 100%), var(--company-hero-image);
  background-position: 66% center;
  background-size: cover;
}

.company-detail-hero::after {
  background: linear-gradient(180deg, rgba(4, 18, 31, 0.08) 0%, transparent 56%, rgba(4, 18, 31, 0.74) 100%);
  pointer-events: none;
}

.company-detail-hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  max-width: 670px;
  padding: clamp(28px, 5vw, 58px);
}

.company-detail-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-detail-hero-kicker span + span {
  padding-left: 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.company-detail-hero h1 {
  max-width: 760px;
  margin: 0 0 17px;
  color: #fff;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  overflow-wrap: anywhere;
}

/* Keep long legal names legible without changing the compact short-name hero. */
.company-detail-hero h1[data-name-length="medium"] {
  max-width: 700px;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.company-detail-hero h1[data-name-length="long"] {
  max-width: 680px;
  font-size: clamp(36px, 4.9vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.company-detail-hero-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.company-detail-hero-summary {
  max-width: 580px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.company-detail-source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.company-detail-source .button {
  min-height: 44px;
}

.company-detail-source-link {
  width: 100%;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.company-detail-hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px clamp(28px, 6vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-detail-data-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: -56px 0 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(7, 27, 43, 0.12);
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(7, 27, 43, 0.14);
}

.company-detail-data-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.company-detail-data-head .eyebrow {
  margin-bottom: 12px;
}

.company-detail-data-head h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(26px, 3.6vw, 42px);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.company-detail-data-head > p {
  max-width: 300px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.company-detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.company-detail-overview-copy {
  min-width: 0;
}

.company-detail-overview-text {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
}

.company-detail-intro-source {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.company-detail-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}

.company-detail-story-grid > div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
}

.company-detail-story-grid p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.company-detail-focus-block {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.company-detail-focus-block small,
.company-detail-business-card > small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.company-detail-focus-list,
.company-detail-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.company-detail-focus-list span,
.company-detail-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(18, 91, 255, 0.24);
  border-radius: 999px;
  background: rgba(18, 91, 255, 0.055);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.company-detail-tag-list .company-detail-tag-empty {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 600;
}

.company-detail-record-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  background: var(--ink);
  color: #fff;
}

.company-detail-record-card .card-code {
  color: rgba(255, 255, 255, 0.56);
}

.company-detail-record-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 20px;
}

.company-detail-record-metrics div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.company-detail-record-metrics strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 35px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.company-detail-record-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.35;
}

.company-detail-record-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.65;
}

.company-detail-awards-panel {
  min-width: 0;
  margin-top: 12px;
  padding: 23px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.company-detail-award-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.company-detail-award-card {
  display: flex;
  min-width: 0;
  min-height: 172px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 17px;
  border: 1px solid var(--line);
  background: #fff;
}

.company-detail-award-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.company-detail-award-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.company-detail-award-card .text-link {
  font-size: 11px;
}

.company-detail-award-empty {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.company-detail-award-note {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.company-detail-business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.company-detail-business-card,
.company-detail-contact-panel {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.company-detail-subhead {
  display: grid;
  gap: 8px;
}

.company-detail-subhead h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.company-detail-business-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 22px;
  margin: 25px 0 0;
}

.company-detail-business-list div {
  min-width: 0;
}

.company-detail-business-list dt,
.company-detail-list-block > span,
.company-detail-contact-item > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.company-detail-business-list dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.company-detail-business-summary {
  margin: 21px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.company-detail-list-block + .company-detail-list-block {
  margin-top: 18px;
}

.company-detail-contact-panel {
  margin-top: 12px;
}

.company-detail-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.company-detail-contact-item {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.company-detail-contact-item strong,
.company-detail-contact-item a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.company-detail-contact-item a {
  color: var(--blue);
}

.company-detail-contact-item--wide {
  grid-column: span 2;
}

.company-detail-contact-empty {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.company-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.company-detail-grid > div {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.company-detail-grid dt,
.company-detail-signal-strip .card-code {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-detail-grid dd {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-detail-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.company-detail-signal-strip > div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 15px 18px;
  background: var(--ink);
}

.company-detail-signal-strip .card-code {
  color: rgba(255, 255, 255, 0.56);
}

.company-detail-signal-strip strong {
  color: #fff;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.company-detail-url {
  max-width: 760px;
  margin: 17px 0 0;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.company-detail-shell {
  padding: clamp(50px, 7vw, 88px) 0 0;
}

.company-detail-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.company-detail-section-head .eyebrow {
  margin-bottom: 12px;
}

.company-detail-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.company-product-lede {
  max-width: 620px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.company-product-count {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.company-product-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.company-product-card[data-requested-product="true"] {
  border-color: var(--green);
  box-shadow: inset 0 0 0 2px var(--green);
}

.company-product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.company-product-meta,
.company-product-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.company-product-description {
  flex: 1;
}

.company-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: 100%;
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.company-product-specs div {
  display: grid;
  gap: 4px;
}

.company-product-specs dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-product-specs dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.company-product-source {
  margin-top: auto;
}

.company-product-source-note {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: auto;
}

.company-product-source-origin {
  max-width: 100%;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.company-product-source-note .company-product-source {
  margin-top: 0;
}

#company-products-shell {
  scroll-margin-top: 24px;
}

.company-detail-footnote {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.sourcing-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.sourcing-filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.sourcing-filter-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.sourcing-data-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 14px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.sourcing-data-overview div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.sourcing-data-overview div:last-child {
  border-right: 0;
}

.sourcing-data-overview strong {
  color: var(--blue);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.sourcing-data-overview span {
  color: var(--muted);
  font-size: 11px;
}

.sourcing-record-main {
  min-width: 0;
}

.sourcing-record-main h3 {
  overflow-wrap: anywhere;
}

.sourcing-record-link {
  color: var(--ink);
  text-decoration: none;
}

.sourcing-record-link:hover,
.sourcing-record-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sourcing-role-context {
  margin-top: 8px !important;
  color: var(--ink-soft) !important;
  font-size: 12px;
}

.sourcing-record-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.sourcing-record-meta span {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sourcing-record-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 190px;
}

.sourcing-record-actions a {
  text-align: right;
}

.sourcing-profile-link {
  color: var(--blue);
  font-weight: 800;
}

.sourcing-detail-badge {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sourcing-detail-evidence {
  max-width: 760px;
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.38);
  color: var(--muted);
  line-height: 1.75;
}

.directory-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0 4px;
}

.directory-pagination button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.directory-pagination button:hover:not(:disabled),
.directory-pagination button:focus-visible:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}

.directory-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.directory-pagination output {
  min-width: 120px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.sample-notice,
.empty-state,
.local-notice {
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.38);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.empty-state {
  margin-top: 24px;
}

.product-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.product-category-filter {
  grid-column: 1 / -1;
}

.product-category-filter {
  display: grid;
  gap: 10px;
}

.product-filter-label {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.product-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-category-option {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.product-category-option:hover,
.product-category-option:focus-visible,
.product-category-option.is-active {
  border-color: var(--blue);
  background: var(--ink);
  color: var(--paper);
}

.product-filter-grid label,
.request-form label {
  display: grid;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
}

.product-filter-grid select,
.request-form select,
.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.product-filter-grid select {
  min-height: 48px;
  padding: 0 13px;
}

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

.product-catalog-list {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) minmax(210px, 0.42fr);
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-row:hover,
.product-row:focus-visible {
  z-index: 1;
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transform: translateX(3px);
}

.product-row-index {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 10px 8px;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  text-align: center;
}

.product-row-main,
.product-row-side {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.product-row-main strong {
  font-size: 20px;
  line-height: 1.25;
}

.product-row-main > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-row-main > small:last-child,
.product-row-side > span:not(.product-row-action) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-row-side {
  justify-items: start;
  align-content: center;
}

.product-row-action {
  margin-top: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-visual {
  min-height: 132px;
  display: grid;
  place-items: center;
  background-color: var(--ink-soft);
  background-image: linear-gradient(rgba(67, 202, 241, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 202, 241, 0.11) 1px, transparent 1px);
  background-size: 34px 34px;
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 30px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.product-body h3 {
  margin: 15px 0 12px;
  font-size: 22px;
}

.product-body > p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.product-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: auto 0 0;
}

.product-body dl div {
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.product-body dt {
  color: var(--muted);
  font-size: 10px;
}

.product-body dd {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.directory-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 35px;
  background: var(--ink);
  color: white;
}

.directory-cta h3 {
  margin: 9px 0;
  font-size: 25px;
}

.directory-cta p {
  margin: 0;
  color: #aebdca;
}

.request-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--line);
  background: var(--paper);
}

.request-copy,
.request-card {
  padding: clamp(30px, 5vw, 70px);
}

.request-copy {
  background: var(--ink);
  color: white;
}

.request-copy h2 {
  margin: 20px 0;
  font-size: clamp(32px, 4vw, 55px);
  letter-spacing: -0.045em;
}

.request-copy p,
.request-copy li {
  color: #b9c8d3;
  line-height: 1.7;
}

.request-copy ul {
  padding-left: 20px;
}

.request-form {
  display: grid;
  gap: 24px;
}

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

.request-form select,
.request-form input,
.request-form textarea {
  min-height: 52px;
  padding: 14px;
  resize: vertical;
}

.request-form [aria-invalid="true"] {
  border-color: #c32f36;
  box-shadow: 0 0 0 1px #c32f36;
}

.field-error {
  min-height: 17px;
  color: #a61d25;
  font-size: 12px;
  font-weight: 500;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #a61d25;
  font-weight: 800;
}

.request-success {
  min-height: 350px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.request-success strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--green);
  font-size: 25px;
}

.request-success h3 {
  margin: 24px 0 10px;
  font-size: 30px;
}

.request-success p {
  color: var(--muted);
  line-height: 1.7;
}

.request-number {
  display: grid;
  gap: 7px;
  width: 100%;
  margin: 20px 0 26px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.request-number span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.request-number output {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

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

.request-submit-actions .button {
  min-height: 48px;
}

.submission-hero {
  background:
    linear-gradient(110deg, rgba(5, 25, 43, 0.98), rgba(9, 48, 79, 0.92)),
    linear-gradient(var(--light-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--light-line) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  color: #fff;
}

.inquiry-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 122, 255, 0.24), transparent 30%),
    linear-gradient(110deg, rgba(5, 25, 43, 0.99), rgba(8, 43, 70, 0.94)),
    linear-gradient(var(--light-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--light-line) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}

.submission-hero-inner {
  width: min(100%, var(--max));
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) var(--pad);
}

.submission-hero-copy {
  max-width: 850px;
}

.submission-hero-copy h1 {
  max-width: 820px;
  margin: 22px 0;
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.submission-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #b8cbd8;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.8;
}

.submission-hero .hero-actions {
  margin-top: 32px;
}

.submission-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: #fff;
}

.submission-hero-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--light-line);
  list-style: none;
}

.submission-hero-checklist li {
  min-height: 80px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--light-line);
  color: #dce8ef;
  line-height: 1.5;
}

.submission-hero-checklist strong {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.submission-section .section-heading {
  margin-bottom: 34px;
}

.submission-layout {
  align-items: stretch;
}

.submission-layout .request-copy {
  display: flex;
  flex-direction: column;
}

.submission-direct-email {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-direct-links {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.inquiry-direct-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
}

.inquiry-direct-links small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-direct-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.inquiry-direct-links a:hover,
.inquiry-direct-links a:focus-visible,
.inquiry-related-link:hover,
.inquiry-related-link:focus-visible {
  color: #fff;
}

.inquiry-related-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

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

.submission-form-grid > label {
  align-content: start;
}

.submission-field-wide {
  grid-column: 1 / -1;
}

.submission-form select {
  appearance: auto;
}

.submission-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
  color: var(--muted);
  font-weight: 500 !important;
  line-height: 1.6;
}

.request-form .submission-consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
}

.submission-success {
  min-height: 560px;
}

.submission-summary {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 20px 0 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.submission-summary div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.submission-summary dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submission-summary dd {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.submission-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.submission-success-actions .button-light {
  border-color: var(--ink);
  background: transparent;
}

.submission-success-note {
  display: block;
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .submission-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .submission-hero-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--light-line);
  }

  .submission-hero-checklist li {
    border-right: 1px solid var(--light-line);
  }
}

@media (max-width: 720px) {
  .submission-hero-inner {
    gap: 36px;
    padding-block: 54px;
  }

  .submission-hero-copy h1 {
    font-size: clamp(38px, 12.5vw, 58px);
  }

  .submission-hero .hero-actions,
  .submission-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .submission-hero .button,
  .submission-success-actions .button {
    width: 100%;
  }

  .submission-hero-checklist,
  .submission-form-grid,
  .submission-summary {
    grid-template-columns: 1fr;
  }

  .submission-field-wide {
    grid-column: auto;
  }

  .submission-success {
    min-height: 0;
  }
}

.site-footer {
  display: block;
  padding: 0 var(--pad);
  background: var(--ink);
  color: white;
}

.site-footer-main,
.site-footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.75fr) minmax(260px, 1.05fr) minmax(250px, 1fr);
  border-bottom: 1px solid var(--light-line);
}

.site-footer-main > * {
  min-width: 0;
  padding: 56px clamp(24px, 2.5vw, 42px) 48px;
  border-left: 1px solid var(--light-line);
}

.site-footer-main > :first-child {
  padding-left: 0;
  border-left: 0;
}

.site-footer p {
  margin: 18px 0 0;
  color: #9fb1bf;
  line-height: 1.7;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-logo {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
  filter: invert(1);
}

.site-footer .brand-name {
  font-size: 18px;
}

.site-footer .site-footer-brand-lockup {
  display: inline-grid;
  justify-items: center;
  gap: 7px;
  max-width: 100%;
}

.site-footer-brand-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer .site-footer-brand-en {
  color: #b8d8eb;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.site-footer-brand-copy {
  max-width: 430px;
}

.site-footer .site-footer-brand-detail {
  margin-top: 10px;
  color: #829caf;
  font-size: 13px;
}

.site-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.site-footer-trust span {
  padding: 7px 10px;
  border: 1px solid rgba(67, 202, 241, 0.35);
  color: #b8d8eb;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.site-footer-code {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-footer-main strong {
  display: block;
  font-size: 18px;
}

.site-footer-navigation {
  align-content: start;
}

.site-footer-link-list {
  display: grid;
  gap: 2px;
  margin-top: 20px;
  font-size: 13px;
}

.site-footer-link-list a,
.site-footer-text-link {
  width: fit-content;
  padding: 7px 0;
  color: #dbe9f2;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer-link-list a:hover,
.site-footer-link-list a:focus-visible,
.site-footer-text-link:hover,
.site-footer-text-link:focus-visible {
  color: var(--green);
  transform: translateX(3px);
}

.site-footer-link-list a[aria-current="page"] {
  color: var(--green);
  font-weight: 800;
}

.site-footer-contact p,
.site-footer-data p {
  font-size: 13px;
}

.site-footer-contact-link {
  display: block;
  margin-top: 18px;
}

.site-footer-contact-link span {
  display: block;
  margin-bottom: 5px;
  color: #829caf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer-contact-link b {
  color: #f4f9fc;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.site-footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 900;
}

.site-footer-action-primary {
  padding: 11px 14px;
  background: var(--green);
  color: var(--ink);
}

.site-footer-data ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 15px;
  padding: 0;
  color: #b8c9d5;
  font-size: 12px;
  list-style: none;
}

.site-footer-data li::before {
  content: "— ";
  color: var(--cyan);
}

.site-footer-text-link {
  display: inline-block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.site-footer-bottom {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: #8296a6;
  font-size: 11px;
}

.site-footer-bottom > small {
  color: #b8c9d5;
  font-weight: 800;
}

.site-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer-bottom-links a:hover,
.site-footer-bottom-links a:focus-visible {
  color: var(--green);
}

@media (min-width: 1051px) {
  .prototype-bar {
    height: 28px;
    min-height: 28px;
    padding-block: 0;
  }

  .site-header {
    height: 82px;
    min-height: 82px;
    padding-block: 14px;
  }

  .route-location {
    height: 34px;
    min-height: 34px;
    padding-block: 0;
  }

  .hero {
    min-height: 1200px;
  }

  body[data-page="companies"] .hero--company-map,
  body[data-page="post"] .hero--procurement-request {
    width: 100%;
    min-height: 786px;
    aspect-ratio: 1672 / 941;
  }

  body[data-page="home"] .hero--robot-core,
  body[data-page="news"] .hero--industry-news,
  body[data-page="about"] .hero--about-global {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1672 / 941;
  }

  body[data-page="products"] .product-hero-carousel {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 32 / 15;
  }

  body[data-page="home"] .hero--robot-core {
    overflow: hidden;
    background-size: cover, contain;
    background-position: center, center;
  }

  body[data-page="home"] .robot-category-panel {
    width: 250px;
    justify-self: start;
    margin-block: calc(var(--hero-pad-block) * -1);
    margin-left: calc(var(--pad) * -1);
  }

  body[data-page="home"] .robot-image-hotspots {
    display: block;
  }

  body[data-page="home"] .index-strip div {
    min-height: 128px;
  }

  body[data-page="home"] .home-gateway-section {
    padding-block: clamp(88px, 8.5vw, 132px);
    padding-bottom: clamp(54px, 4.5vw, 72px);
  }

  body[data-page="home"] .home-gateway-section .gateway-card {
    min-height: 300px;
  }

  body[data-page="news"] .news-card.feature {
    grid-column: span 1;
  }
}

@media (max-width: 1050px) {
  .site-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-main > * {
    padding: 42px clamp(22px, 4vw, 36px) 38px;
    border-top: 1px solid var(--light-line);
  }

  .site-footer-main > :nth-child(-n + 2) {
    border-top: 0;
  }

  .site-footer-main > :nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px var(--pad) 30px;
    border-top: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 20px 35px rgba(7, 27, 43, 0.18);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-button {
    display: block;
  }

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

  .signal-panel {
    width: min(100%, 760px);
  }

  body[data-page="home"] .hero--robot-core {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    background-position: center, 56% center;
  }

  body[data-page="home"] .robot-category-panel {
    min-height: 580px;
  }

  body[data-page="home"] .robot-category-products {
    grid-column: 2;
    width: min(100%, 316px);
    height: auto;
    margin-top: 0;
    margin-left: 0;
    padding-left: 18px;
  }

  body[data-page="home"] .robot-category-list li > a {
    min-height: 54px;
    padding-inline: 14px;
  }

  body[data-page="companies"] .company-state-panel {
    width: 44%;
    padding: 7px;
  }

  body[data-page="companies"] .company-country-overview {
    right: 170px;
    left: calc(44% + 18px);
    gap: 4px 14px;
  }

  body[data-page="companies"] .company-country-switcher {
    right: 18px;
  }

  body[data-page="companies"] .company-state-grid {
    gap: 5px;
  }

  body[data-page="companies"] .state-card {
    gap: 1px;
    padding: 5px 3px;
  }

  .gateway-grid,
  .card-grid,
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .selection-preview-grid,
  .company-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-preview-card:last-child {
    grid-column: 1 / -1;
  }

  .home-sourcing-row {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .home-sourcing-row dl,
  .home-sourcing-row > a {
    grid-column: 2;
  }

  .solution-atlas-grid,
  .research-tool-grid,
  .robot-knowledge-grid,
  .procurement-workflow,
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-standard-grid,
  .about-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .procurement-workflow li:last-child {
    grid-column: 1 / -1;
  }

  .about-contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 721px) and (max-width: 1050px) {
  body[data-page="home"] .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .news-card.feature {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 20px;
  }

  body[data-page="company-detail"] {
    overflow-x: hidden;
  }

  body[data-page="company-detail"] .company-detail-page {
    width: 100%;
    max-width: 100%;
  }

  .prototype-bar span:first-child,
  .prototype-bar i,
  .header-cta-label {
    display: none;
  }

  .site-header {
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 0.045em;
  }

  .header-actions {
    gap: 7px;
  }

  .header-cta {
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .locale-switch button {
    min-width: 35px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 70px;
  }

  body[data-page="companies"] .company-state-panel {
    width: 58%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 6px;
  }

  body[data-page="companies"] .company-country-switcher {
    top: 10px;
    right: 10px;
  }

  body[data-page="companies"] .company-country-overview {
    top: 64px;
    right: 10px;
    left: calc(58% + 10px);
    display: block;
    padding: 10px;
    text-align: center;
  }

  body[data-page="companies"] .company-country-overview-code,
  body[data-page="companies"] .company-country-overview small {
    display: none;
  }

  body[data-page="companies"] .company-country-metric {
    display: grid;
    gap: 3px;
    white-space: normal;
  }

  body[data-page="companies"] .company-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(52px, auto);
    gap: 5px;
    min-height: 100%;
  }

  body[data-page="companies"] .state-card {
    grid-template-columns: 24px minmax(30px, 42px) minmax(0, 1fr);
    grid-template-rows: 1fr;
    place-items: center;
    gap: 5px;
    padding: 5px 6px;
    text-align: left;
  }

  body[data-page="companies"] .state-code {
    font-size: 10px;
    justify-self: start;
  }

  body[data-page="companies"] .state-name {
    justify-self: start;
    font-size: 10px;
    line-height: 1.15;
  }

  .product-hero-carousel {
    overflow: hidden;
  }

  .product-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .signal-panel {
    min-height: 320px;
    padding: 22px;
  }

  .signal-orbit {
    min-height: 200px;
  }

  body[data-page="home"] .hero--robot-core {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: start;
    background-image:
      linear-gradient(180deg, rgba(3, 17, 32, 0.12) 0%, rgba(3, 19, 36, 0.42) 44%, rgba(5, 27, 48, 0.82) 100%),
      url("./robot-industry-hero.webp?v=02d774e5");
    background-position: center, 60% center;
  }

  body[data-page="home"] .robot-category-panel {
    min-height: 0;
    align-self: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  body[data-page="home"] .robot-category-products {
    grid-column: 1;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    padding-left: 18px;
    border-top: 0;
  }

  body[data-page="home"] .robot-category-products h2 {
    font-size: 22px;
  }

  body[data-page="home"] .robot-category-heading {
    min-height: 50px;
    padding-inline: 14px;
  }

  body[data-page="home"] .robot-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
  }

  body[data-page="home"] .robot-category-list li > a {
    min-height: 42px;
    gap: 7px;
    padding: 7px 8px;
    font-size: 12px;
  }

  body[data-page="home"] .robot-category-code {
    flex-basis: 21px;
    font-size: 10px;
  }

  body[data-page="home"] .hero-copy {
    padding-top: 0;
  }

  .index-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .index-strip div:nth-child(2) {
    border-right: 0;
  }

  .index-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .search-panel,
  .directory-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-panel {
    display: flex;
  }

  .search-panel .search-box {
    width: 100%;
  }

  .result-count {
    text-align: left;
  }

  .gateway-grid,
  .news-grid,
  .card-grid,
  .product-list,
  .product-filter-grid {
    grid-template-columns: 1fr;
  }

  .news-card.feature {
    grid-column: auto;
  }

  body[data-page="news"] .news-card.feature[data-feature-visual="humanoid"] {
    min-height: 430px;
    background-image:
      linear-gradient(90deg, rgba(3, 17, 32, 0.96) 0%, rgba(3, 17, 32, 0.9) 55%, rgba(3, 17, 32, 0.68) 100%),
      linear-gradient(180deg, rgba(5, 27, 48, 0.12) 0%, rgba(5, 27, 48, 0.48) 100%),
      url("./news-feature-humanoid-1672x941.png?v=2d988894");
    background-position: center, center, 70% center;
  }

  body[data-page="news"] .news-card.feature[data-feature-visual="humanoid"] > * {
    max-width: 100%;
  }

  body[data-page="news"] .news-card.feature[data-feature-visual="humanoid"] > .news-meta {
    width: 100%;
  }

  body[data-page="home"] .gateway-card,
  body[data-page="home"] .news-card,
  body[data-page="home"] .news-card.feature {
    min-height: 0;
  }

  body[data-page="home"] .gateway-card,
  body[data-page="home"] .news-card-link {
    padding: 24px;
  }

  body[data-page="home"] .gateway-card h3,
  body[data-page="home"] .news-card h3 {
    margin-top: 28px;
  }

  body[data-page="home"] .gateway-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .selection-preview-grid,
  .company-capability-grid,
  .home-method-grid,
  .solution-atlas-grid,
  .research-tool-grid,
  .robot-knowledge-grid,
  .procurement-workflow,
  .home-faq-list,
  .about-process-grid,
  .about-standard-grid,
  .about-audience-grid {
    grid-template-columns: 1fr;
  }

  .selection-preview-card:last-child {
    grid-column: auto;
  }

  .selection-preview-card,
  .company-capability-card,
  .home-method-grid > a,
  .solution-atlas-card,
  .research-tool-card,
  .robot-knowledge-card,
  .procurement-workflow li,
  .about-process-step,
  .about-standard-card,
  .about-audience-card {
    min-height: 0;
    padding: 24px;
  }

  .company-product-preview-card {
    padding: 0;
  }

  .company-product-preview-link {
    min-height: 0;
    padding: 24px;
  }

  .selection-preview-card h3,
  .company-capability-card h3,
  .home-method-grid h3,
  .solution-atlas-card h3,
  .research-tool-card h3,
  .robot-knowledge-card h3 {
    margin-top: 30px;
  }

  .procurement-workflow li:last-child {
    grid-column: auto;
  }

  .procurement-workflow li:not(:last-child)::after {
    display: none;
  }

  .about-process-step:not(:last-child)::after {
    display: none;
  }

  .about-process-step h3,
  .about-standard-card h3,
  .about-audience-card h3 {
    margin-top: 30px;
  }

  .about-contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-contact-actions .button {
    width: 100%;
  }

  .home-faq-item summary {
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 20px;
  }

  .home-faq-item > div {
    padding: 0 20px 24px 64px;
  }

  .home-sourcing-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .home-sourcing-row dl,
  .home-sourcing-row > a {
    grid-column: auto;
  }

  .home-sourcing-cta,
  .home-project-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-map-cta {
    align-items: flex-start;
    padding: 24px;
  }

  .directory-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .company-detail-hero {
    height: auto;
    min-height: 560px;
    aspect-ratio: auto;
    width: 100%;
    max-width: 100%;
  }

  .company-detail-hero-content {
    padding: 34px 24px 42px;
  }

  .company-detail-hero::before {
    background-image: linear-gradient(180deg, rgba(4, 18, 31, 0.96) 0%, rgba(4, 18, 31, 0.86) 54%, rgba(4, 18, 31, 0.48) 100%), var(--company-hero-image);
    background-position: 68% center;
  }

  .company-detail-hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 15px 24px;
  }

  .company-detail-data-panel {
    margin-top: -34px;
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }

  .company-detail-data-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .company-detail-data-head > div,
  .company-detail-data-head h2 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .company-detail-data-head h2 {
    font-size: clamp(28px, 8.5vw, 36px);
    overflow-wrap: anywhere;
  }

  .company-detail-data-head > p {
    max-width: 500px;
  }

  .company-detail-overview,
  .company-detail-business-grid {
    grid-template-columns: 1fr;
  }

  .company-detail-story-grid,
  .company-detail-award-list {
    grid-template-columns: 1fr;
  }

  .company-detail-record-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
  }

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

  .company-detail-signal-strip {
    grid-template-columns: 1fr;
  }

  .company-detail-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .company-detail-source .button {
    width: 100%;
    flex: 1 1 100%;
  }

  .company-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 10.5vw, 42px);
    word-break: break-word;
  }

  .company-detail-hero h1[data-name-length="medium"] {
    font-size: clamp(32px, 9.4vw, 42px);
    line-height: 1;
  }

  .company-detail-hero h1[data-name-length="long"] {
    max-width: 100%;
    font-size: clamp(29px, 8.2vw, 38px);
    line-height: 1.04;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .company-detail-signal-strip > div {
    padding: 14px 16px;
  }

  .company-detail-grid > div {
    min-height: 0;
  }

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

  .sourcing-filter-grid,
  .sourcing-data-overview {
    grid-template-columns: 1fr;
  }

  .sourcing-data-overview div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sourcing-data-overview div:last-child {
    border-bottom: 0;
  }

  .sourcing-record-actions {
    justify-items: start;
    min-width: 0;
  }

  .sourcing-record-actions a {
    text-align: left;
  }

  .directory-pagination {
    justify-content: space-between;
    gap: 8px;
  }

  .directory-pagination output {
    min-width: 90px;
  }

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

  .request-form-grid {
    grid-template-columns: 1fr;
  }

  .request-submit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .request-submit-actions .button {
    width: 100%;
    min-height: 52px;
  }

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

  .site-footer-main > * {
    padding: 28px 0;
    border-top: 1px solid var(--light-line);
    border-left: 0;
  }

  .site-footer-main > :first-child {
    border-top: 0;
  }

  .site-footer-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    margin-top: 16px;
  }

  .site-footer-link-list a {
    width: 100%;
  }

  .site-footer-bottom {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 22px 0 26px;
  }

  .site-footer-bottom > span {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer-bottom-links {
    grid-column: 2;
    grid-row: 1;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  body[data-page="company-detail"] .company-detail-record-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="company-detail"] .company-detail-business-list,
  body[data-page="company-detail"] .company-detail-contact-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="company-detail"] .company-detail-contact-item--wide {
    grid-column: auto;
  }

  body[data-page="companies"] .company-map-layer {
    visibility: hidden;
  }

  body[data-page="companies"] .company-state-panel {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 4px;
    padding-top: 112px;
  }

  body[data-page="companies"] .company-country-switcher {
    top: 8px;
    right: 8px;
    left: 8px;
    justify-content: space-between;
  }

  body[data-page="companies"] .company-country-overview {
    top: 58px;
    right: 8px;
    left: 8px;
    padding: 8px 12px;
  }

  body[data-page="companies"] .company-country-metric {
    display: flex;
    justify-content: center;
    gap: 9px;
  }

  body[data-page="companies"] .company-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(52px, auto);
    gap: 4px;
    min-height: 100%;
  }

  body[data-page="companies"] .state-card {
    grid-template-columns: 18px 24px minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 3px;
    padding: 3px;
    text-align: left;
  }

  body[data-page="companies"] .state-code {
    font-size: 9px;
    letter-spacing: 0.04em;
  }
}

.page-hero-title {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  bottom: clamp(28px, 5vw, 72px);
  max-width: min(820px, calc(100% - var(--pad) * 2));
  margin: 0;
  padding: 14px 18px;
  border-left: 4px solid #aaff38;
  color: #fff;
  background: rgba(2, 17, 31, .82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.page-hero-title--products {
  position: relative;
  left: auto;
  bottom: auto;
  max-width: none;
  padding: 20px var(--pad);
  border-left: 0;
  border-bottom: 1px solid rgba(67, 202, 241, .24);
  background: #06111b;
  box-shadow: none;
}

.directory-search-label {
  display: block;
  margin: 0 0 9px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.product-carousel-pause {
  position: absolute;
  z-index: 6;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 34px);
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(2,17,31,.82);
  font-weight: 800;
  cursor: pointer;
}

.product-carousel-pause:focus-visible { outline: 3px solid #aaff38; outline-offset: 3px; }

.form-error-summary {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 2px solid #b42318;
  color: #7a271a;
  background: #fffbfa;
}

.form-error-summary:focus { outline: 3px solid #0b78c4; outline-offset: 3px; }
.form-error-summary strong { display: block; margin-bottom: 8px; }
.form-error-summary ul { margin: 0; padding-left: 22px; }
.form-error-summary a { color: #7a271a; font-weight: 750; }
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.privacy-inline-link { color: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.privacy-page { background: #f6f5f1; }
.hero--privacy { min-height: 0; background: #122637; color: #fff; }
.hero--privacy .page-hero-title { color: #fff; }
.hero--privacy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.82); }
.privacy-intro { max-width: 920px; padding-bottom: 38px; }
.privacy-intro .page-hero-title { margin-bottom: 20px; }
.privacy-intro > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.75; }
.privacy-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 0; }
.privacy-sections article { border: 1px solid var(--line); background: #fff; padding: clamp(22px, 3vw, 38px); }
.privacy-sections h2 { margin: 0 0 14px; font-size: clamp(20px, 2vw, 28px); }
.privacy-sections p { margin: 0; color: var(--muted); line-height: 1.75; }
.privacy-sections a { color: var(--accent-dark); font-weight: 800; }

@media (max-width: 720px) {
  .privacy-sections { grid-template-columns: 1fr; }
}

.directory-page-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.directory-page-jump input { width: 72px; min-height: 40px; padding: 0 8px; border: 1px solid currentColor; color: inherit; background: transparent; }

@media (min-width: 721px) {
  body[data-page="companies"] .hero--company-map {
    min-height: min(620px, 66vh);
    max-height: 620px;
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .page-hero-title { left: 14px; bottom: 18px; max-width: calc(100% - 28px); padding: 10px 12px; font-size: clamp(27px, 8.6vw, 40px); }
  .page-hero-title--products { left: auto; bottom: auto; max-width: none; padding: 16px var(--pad); }
  body[data-page="companies"] .hero--company-map {
    min-height: 420px;
    max-height: 520px;
    aspect-ratio: auto;
  }
  body[data-page="post"] .hero--procurement-request {
    min-height: 590px;
    aspect-ratio: auto;
    overflow: visible;
    background-position: 62% center;
  }
  body[data-page="post"] .hero--procurement-request .hero-copy {
    align-self: end;
    max-width: none;
    margin: 0;
    padding: 18px;
    background: rgba(2, 17, 31, .84);
  }
  .ai-customer-service-widget,
  .ai-customer-service-widget.is-collapsed {
    right: 12px;
    left: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    gap: 0;
    padding: 4px;
  }
  .ai-customer-service-widget img { width: 44px; height: 44px; flex-basis: 44px; }
  .ai-customer-service-widget-label { max-width: 0; opacity: 0; pointer-events: none; }
  .product-carousel-pause { right: 12px; bottom: 12px; }
  html { scroll-padding-bottom: 76px; }
  main { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body[data-page="home"] .hero--robot-core::before {
    animation: none !important;
  }

  .product-carousel-slide {
    transition-duration: 0s !important;
  }
}

/* Focused about page: keep the page welcoming and make contact the primary action. */
body[data-page="about"] .hero--about-global {
  position: relative;
  isolation: isolate;
}

body[data-page="about"] .hero--about-global::after {
  content: none;
}

.about-intro-section .section-heading {
  max-width: 960px;
}

.about-summary-grid {
  margin-top: 0;
}

.about-summary-grid .info-card {
  min-height: 286px;
}

.about-summary-grid .about-data-principles {
  min-height: 0;
}

.about-principle-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.about-contact-band {
  background: var(--ink-soft);
  color: #fff;
}

.about-contact-section {
  display: block;
}

.about-contact-section .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.about-contact-section .section-summary {
  color: #b7c8d4;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.about-contact-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.05);
  transition: background 160ms ease;
}

.about-contact-card:hover,
.about-contact-card:focus-within {
  background: rgba(255, 255, 255, 0.1);
}

.about-contact-card .card-code {
  color: var(--green);
}

.about-contact-card h3 {
  margin: 40px 0 14px;
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.about-contact-card p {
  margin: 0 0 22px;
  color: #b7c8d4;
  line-height: 1.75;
}

.about-contact-details {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 0 0 18px;
}

.about-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--green);
  text-decoration: none;
}

.about-contact-detail:hover,
.about-contact-detail:focus-visible {
  color: #fff;
}

.about-contact-detail small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-contact-detail strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.4;
}

.about-contact-card .button-light {
  margin-top: auto;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.about-contact-email,
.about-contact-hint {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.about-contact-email {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 720px) {
  body[data-page="about"] .hero--about-global {
    aspect-ratio: 1672 / 941;
    min-height: 0;
    max-height: none;
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-contact-card {
    min-height: 0;
    padding: 24px;
  }

  .about-contact-card h3 {
    margin-top: 30px;
  }

}

@media (max-width: 720px) {
  .product-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
  }

  .product-row-index {
    min-height: 58px;
    font-size: 11px;
  }

  .product-row-main strong {
    font-size: 17px;
  }

  .product-row-side {
    grid-column: 2;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 12px;
  }

  .product-row-action {
    grid-column: 1 / -1;
  }
}

/* Product finder rows follow the company-directory contract. */
body[data-page="products"] .product-catalog-list {
  display: block;
  border-top: 0;
}

.product-selection-results {
  min-width: 0;
}

.product-selection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.product-selection-heading h3 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-selection-heading p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-selection-count {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.product-selection-row-list {
  /* The section heading already supplies the divider above the first row. */
  border-top: 0;
}

.product-directory-row {
  grid-template-columns: 150px minmax(0, 1fr) minmax(190px, auto);
  min-width: 0;
  overflow-wrap: anywhere;
  content-visibility: auto;
  contain-intrinsic-size: 132px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-directory-row:hover,
.product-directory-row:focus-within {
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: var(--blue);
  transform: translateX(3px);
}

.product-directory-row.is-product-focus {
  background: rgba(19, 93, 208, 0.08);
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.product-directory-row[hidden] {
  display: none !important;
}

.product-directory-row .directory-company-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-directory-row .directory-company-link {
  color: var(--blue);
}

.product-directory-main {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.product-directory-main h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.product-directory-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.product-directory-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.product-directory-actions .text-link {
  margin-top: 0;
}

.product-directory-actions .product-selection-company-link {
  color: var(--ink);
}

.product-company-index {
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.product-company-index summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 14px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  list-style: none;
}

.product-company-index summary::-webkit-details-marker {
  display: none;
}

.product-company-index summary::after {
  content: "＋";
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.product-company-index[open] summary::after {
  content: "－";
}

.product-company-index-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-company-index-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-company-index-list {
  border-top: 1px solid var(--line);
}

.product-company-index-list .product-row {
  border-right: 0;
  border-left: 0;
}

@media (max-width: 720px) {
  .product-selection-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-directory-row {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 20px 0;
  }

  .product-directory-row .directory-company-name {
    font-size: 13px;
  }

  .product-directory-main h3 {
    font-size: 19px;
  }

  .product-directory-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .product-company-index-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-company-index summary {
    align-items: flex-start;
  }
}
/* ==========================================================================
   SOURCING HERO BACKGROUND - added by Qoder 2026-08-19
   Self-contained block appended at end of file to coexist with parallel edits.
   Full-bleed image Hero (same pattern as the news and companies Heroes):
   the hero copy and signal panel were removed by user request.
   ========================================================================== */
body[data-page="sourcing"] .hero--sourcing {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background-color: #020b1b;
  background-image: url("./sourcing-hero-1672x941.webp?v=b50470f0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
}

body[data-page="sourcing"] .hero--sourcing::before {
  display: none;
}

@media (max-width: 720px) {
  body[data-page="sourcing"] .hero--sourcing {
    background-position: center;
  }
}

/* Packaged hero-media contract: render each asset at its authored ratio and
   prevent later breakpoint rules from reintroducing fixed-height cropping. */
body[data-page="home"] .hero--robot-core,
body[data-page="news"] .hero--industry-news,
body[data-page="sourcing"] .hero--sourcing,
body[data-page="about"] .hero--about-global {
  width: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1672 / 941;
  background-size: cover;
  background-position: center;
}

body[data-page="products"] .product-hero-carousel {
  width: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: 32 / 15;
}

body[data-page="home"] .robot-category-panel {
  min-height: 0;
  overflow-y: auto;
}

body[data-page="home"] .hero--robot-core {
  background-size: cover, contain;
}

/* Keep the authored narrow-screen focal points after the final ratio rule.
   The first position belongs to the gradient layer; the second to the photo. */
@media (max-width: 1024px) {
  body[data-page="home"] .hero--robot-core {
    background-position: center, 56% center;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .hero--robot-core {
    background-position: center, 60% center;
  }
}

body[data-page="home"] .robot-category-products {
  height: 100%;
  max-height: 100%;
}

@media (max-width: 720px) {
  body[data-page="home"] .hero--robot-core.is-product-panel-visible {
    z-index: 1100;
    overflow: visible;
  }

  body[data-page="home"] .robot-category-products {
    position: fixed;
    inset: 108px 12px 12px;
    z-index: 1200;
    width: auto;
    height: calc(100vh - 120px) !important;
    height: calc(100dvh - 120px) !important;
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    margin: 0;
    align-self: auto;
    padding: 18px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(142, 220, 255, 0.42);
    background: #061827;
    box-shadow: 0 24px 80px rgba(0, 8, 18, 0.72);
    transform: translateY(12px);
  }

  body[data-page="home"] .robot-category-products.is-visible {
    transform: translateY(0);
  }

  body[data-page="home"] .robot-category-products-head {
    padding-right: 48px;
  }

  body[data-page="home"] .robot-category-products-close {
    position: absolute;
    top: -8px;
    right: -8px;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(183, 255, 60, 0.72);
    background: rgba(4, 21, 34, 0.94);
    color: #b7ff3c;
    font: inherit;
    font-size: 24px;
    cursor: pointer;
  }

  body[data-page="home"] .robot-category-products-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
}

.ai-customer-service-widget {
  position: fixed;
  left: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(86, 205, 255, 0.72);
  border-radius: 999px;
  color: #f7fcff;
  background: rgba(3, 19, 36, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.46), 0 0 26px rgba(22, 179, 255, 0.32);
  text-decoration: none;
  isolation: isolate;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition:
    width 0.24s ease,
    padding 0.24s ease,
    gap 0.24s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.ai-customer-service-widget::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(63, 203, 255, 0.3);
  border-radius: inherit;
  opacity: 0.75;
  animation: ai-support-pulse 2.6s ease-in-out infinite;
}

.ai-customer-service-widget img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ai-customer-service-widget-label {
  display: inline-block;
  max-width: 110px;
  overflow: hidden;
  opacity: 1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: max-width 0.24s ease, opacity 0.18s ease;
}

.ai-customer-service-widget.is-collapsed {
  width: 68px;
  min-width: 68px;
  gap: 0;
  padding: 5px;
}

.ai-customer-service-widget.is-collapsed .ai-customer-service-widget-label {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}

.ai-customer-service-widget:hover,
.ai-customer-service-widget:focus-visible {
  transform: translateY(-3px);
  background: rgba(3, 28, 50, 0.98);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.52), 0 0 36px rgba(22, 179, 255, 0.48);
}

.ai-customer-service-widget:focus-visible {
  outline: 3px solid #aaff38;
  outline-offset: 3px;
}

.ai-customer-service-widget.is-dragging,
.ai-customer-service-widget.is-dragging:hover,
.ai-customer-service-widget.is-dragging:focus-visible {
  cursor: grabbing;
  transform: none;
  transition: none;
  will-change: left, top;
}

.ai-support-dialog {
  position: fixed;
  inset: auto auto clamp(92px, 10vh, 116px) clamp(14px, 2vw, 28px);
  width: min(400px, calc(100vw - 28px));
  max-width: none;
  max-height: min(650px, calc(100vh - 130px));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(86, 205, 255, 0.72);
  border-radius: 18px;
  color: #eaf8ff;
  background: rgba(3, 17, 31, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62), 0 0 36px rgba(22, 179, 255, 0.3);
}

.ai-support-dialog:not([open]) {
  display: none;
}

.ai-support-dialog::backdrop {
  background: rgba(1, 7, 14, 0.56);
  backdrop-filter: blur(2px);
}

.ai-support-shell {
  display: grid;
  min-height: 0;
}

.ai-support-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 13px;
  border-bottom: 1px solid rgba(86, 205, 255, 0.26);
  background: linear-gradient(120deg, rgba(5, 37, 64, 0.98), rgba(3, 20, 36, 0.98));
}

.ai-support-identity {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 10px;
}

.ai-support-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(45, 197, 255, 0.52));
}

.ai-support-heading {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.ai-support-heading strong {
  font-size: 16px;
  line-height: 1.2;
}

.ai-support-heading small {
  overflow: hidden;
  color: #9fc7dd;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-support-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(132, 218, 255, 0.32);
  border-radius: 50%;
  color: #eaf8ff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.ai-support-close:hover,
.ai-support-close:focus-visible {
  border-color: #aaff38;
  outline: none;
  color: #aaff38;
  background: rgba(170, 255, 56, 0.08);
}

.ai-support-body {
  display: grid;
  max-height: min(560px, calc(100vh - 220px));
  gap: 13px;
  padding: 16px;
  overflow: auto;
}

.ai-support-welcome,
.ai-support-note {
  margin: 0;
  line-height: 1.65;
}

.ai-support-welcome {
  color: #eaf8ff;
  font-size: 14px;
}

.ai-support-note {
  padding: 10px 11px;
  border-left: 3px solid #aaff38;
  color: #9fc7dd;
  background: rgba(170, 255, 56, 0.05);
  font-size: 12px;
}

.ai-support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ai-support-actions button,
.ai-support-form button {
  min-height: 42px;
  border: 1px solid rgba(86, 205, 255, 0.42);
  border-radius: 9px;
  color: #eaf8ff;
  background: rgba(7, 42, 70, 0.88);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ai-support-actions button:hover,
.ai-support-actions button:focus-visible,
.ai-support-form button:hover,
.ai-support-form button:focus-visible {
  border-color: #aaff38;
  outline: none;
  color: #061424;
  background: #aaff38;
}

.ai-support-log {
  display: grid;
  max-height: 180px;
  gap: 8px;
  padding: 2px;
  overflow: auto;
}

.ai-support-message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 9px 11px;
  border-radius: 12px;
  line-height: 1.55;
  font-size: 13px;
}

.ai-support-message-agent {
  justify-self: start;
  border: 1px solid rgba(86, 205, 255, 0.28);
  background: rgba(13, 55, 85, 0.78);
}

.ai-support-catalog-result {
  width: 100%;
  max-width: 100%;
}

.ai-support-catalog-result a {
  color: #aaff38;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ai-support-message-user {
  justify-self: end;
  color: #061424;
  background: #aaff38;
}

.ai-support-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ai-support-input-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.ai-support-form textarea {
  min-height: 46px;
  max-height: 116px;
  resize: vertical;
  padding: 11px 12px;
  border: 1px solid rgba(132, 218, 255, 0.32);
  border-radius: 9px;
  outline: none;
  color: #eaf8ff;
  background: rgba(1, 12, 24, 0.84);
  font: inherit;
  font-size: 13px;
}

.ai-support-form textarea:focus {
  border-color: #aaff38;
  box-shadow: 0 0 0 3px rgba(170, 255, 56, 0.12);
}

.ai-support-form button {
  min-width: 72px;
  padding: 0 14px;
}

.ai-support-request-link {
  justify-self: start;
  color: #61d2ff;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.ai-support-request-link:hover,
.ai-support-request-link:focus-visible {
  outline: none;
  color: #aaff38;
}

@keyframes ai-support-pulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.85;
  }
}

@media (max-width: 720px) {
  .ai-support-dialog {
    inset: auto 12px 84px 12px;
    width: auto;
    max-height: calc(100vh - 104px);
  }

  .ai-support-body {
    max-height: calc(100vh - 190px);
  }

  .ai-support-form {
    grid-template-columns: 1fr;
  }

  .ai-customer-service-widget {
    left: 12px;
    bottom: 12px;
    min-height: 0;
    gap: 8px;
    padding: 5px 12px 5px 5px;
  }

  .ai-customer-service-widget img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .ai-customer-service-widget-label {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-customer-service-widget,
  .ai-customer-service-widget-label {
    transition: none;
  }

  .ai-customer-service-widget::before {
    animation: none;
  }
}

.global-contact-tools {
  position: fixed;
  right: 0;
  bottom: calc(clamp(132px, 20vh, 220px) + 156px + 8px);
  z-index: 71;
  display: grid;
  width: 54px;
  gap: 4px;
  padding: 4px 0;
  border: 1px solid rgba(11, 97, 120, 0.24);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(7, 27, 43, 0.12);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.global-contact-tools.is-retracted {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.global-contact-tool {
  appearance: none;
  position: relative;
  display: flex;
  width: calc(100% - 4px);
  min-height: 66px;
  margin-left: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 2px;
  border: 0;
  border-radius: 10px 0 0 10px;
  color: var(--contact-accent);
  background: var(--paper);
  cursor: pointer;
  font: inherit;
  box-shadow: inset 3px 0 0 rgba(11, 97, 120, 0.48);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.global-contact-tool:hover,
.global-contact-tool:focus-visible {
  color: var(--contact-accent);
  background: var(--contact-tint);
  box-shadow: inset 3px 0 0 var(--contact-accent), 0 5px 12px rgba(7, 27, 43, 0.1);
  transform: translateX(-2px);
}

.global-contact-tool:focus-visible {
  outline: 3px solid var(--contact-accent);
  outline-offset: 2px;
}

.global-contact-tool-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: currentColor;
}

.global-contact-tool-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
}

.global-contact-tool-label {
  color: currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.global-contact-tool-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  z-index: 2;
  display: grid;
  width: 230px;
  max-width: calc(100vw - 72px);
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 97, 120, 0.28);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(7, 27, 43, 0.12);
  cursor: copy;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  user-select: text;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.global-contact-tool:hover .global-contact-tool-panel,
.global-contact-tool:focus .global-contact-tool-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
  visibility: visible;
}

.global-contact-tool-panel small {
  color: var(--contact-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-contact-tool-panel strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  cursor: copy;
  font-size: 13px;
  line-height: 1.35;
  user-select: text;
}

.global-contact-tool-copy-status {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.global-contact-tool-panel.is-copying,
.global-contact-tool-panel.is-copied,
.global-contact-tool-panel.is-copy-failed {
  border-color: var(--contact-accent);
}

.global-contact-tool-panel.is-copying {
  cursor: progress;
}

.global-contact-tool-panel.is-copied {
  background: var(--contact-tint);
  box-shadow: 0 10px 26px rgba(7, 27, 43, 0.12), inset 0 0 0 1px var(--contact-accent);
}

.global-back-to-top {
  position: fixed;
  right: 0;
  bottom: clamp(132px, 20vh, 220px);
  z-index: 70;
  width: 54px;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 0 16px 4px;
  border: 1px solid rgba(11, 97, 120, 0.24);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  color: var(--contact-accent);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(7, 27, 43, 0.12);
  font: inherit;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: color 160ms ease, background 160ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.global-back-to-top.is-visible,
.global-back-to-top.is-floating-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.global-back-to-top:hover,
.global-back-to-top:focus-visible {
  color: var(--contact-accent);
  background: var(--contact-tint);
  box-shadow: inset 3px 0 0 var(--contact-accent), 0 5px 12px rgba(7, 27, 43, 0.1);
  transform: translateX(-2px);
}

.global-back-to-top:focus-visible {
  outline: 3px solid var(--contact-accent);
  outline-offset: 2px;
}

.global-back-to-top.is-retracted {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateX(100%);
}

.global-back-to-top-arrow {
  color: currentColor;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.global-back-to-top:hover .global-back-to-top-arrow,
.global-back-to-top:focus-visible .global-back-to-top-arrow {
  color: inherit;
}

.global-back-to-top-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

@media (max-width: 720px) {
  .global-contact-tools {
    right: max(8px, env(safe-area-inset-right));
    bottom: calc(max(84px, calc(env(safe-area-inset-bottom) + 74px)) + 52px);
    width: 46px;
    gap: 3px;
    padding: 3px 0;
    border-radius: 12px 0 0 12px;
  }

  .global-contact-tool {
    width: calc(100% - 3px);
    min-height: 54px;
    margin-left: 3px;
    gap: 4px;
    padding: 7px 1px;
    border-radius: 9px 0 0 9px;
  }

  .global-contact-tool-icon,
  .global-contact-tool-icon svg {
    width: 22px;
    height: 22px;
  }

  .global-contact-tool-icon {
    flex-basis: 22px;
  }

  .global-contact-tool-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .global-contact-tool-panel {
    right: calc(100% + 8px);
    width: min(230px, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
    padding: 10px 12px;
  }

  .global-back-to-top {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(84px, calc(env(safe-area-inset-bottom) + 74px));
    width: 46px;
    min-height: 44px;
    padding: 0 0 0 3px;
    border-right: 1px solid rgba(11, 97, 120, 0.24);
    border-radius: 12px 0 0 12px;
  }

  .global-back-to-top-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-contact-tools,
  .global-contact-tool,
  .global-contact-tool-panel {
    transition: none;
  }

  .global-contact-tool:hover,
  .global-contact-tool:focus-visible,
  .global-back-to-top:hover,
  .global-back-to-top:focus-visible {
    transform: none;
  }

  .global-back-to-top {
    transition: none;
  }
}

/* Keep the contact section on the same light editorial surface as the about summary. */
body[data-page="about"] .about-contact-band {
  background: var(--cream);
  color: var(--ink);
}

body[data-page="about"] .about-contact-section .section-heading {
  border-bottom-color: var(--ink);
}

body[data-page="about"] .about-contact-section .section-summary {
  color: var(--muted);
}

body[data-page="about"] .about-contact-grid {
  border-top-color: var(--line);
  border-left-color: var(--line);
}

body[data-page="about"] .about-contact-card {
  min-height: 286px;
  padding: 34px;
  border-right-color: var(--line);
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.14);
}

body[data-page="about"] .about-contact-card:hover,
body[data-page="about"] .about-contact-card:focus-within {
  background: #fff;
}

body[data-page="about"] .about-contact-card .card-code {
  color: var(--blue);
}

body[data-page="about"] .about-contact-card h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: 25px;
}

body[data-page="about"] .about-contact-card p {
  margin: 0 0 26px;
  color: var(--muted);
}

body[data-page="about"] .about-contact-card .button-light {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

body[data-page="about"] .about-contact-email,
body[data-page="about"] .about-contact-hint {
  color: var(--muted);
}

body[data-page="about"] .about-contact-email {
  color: var(--blue);
}

body[data-page="about"] .about-contact-detail {
  border-top-color: var(--line);
  color: var(--blue);
}

body[data-page="about"] .about-contact-detail:hover,
body[data-page="about"] .about-contact-detail:focus-visible {
  color: var(--ink);
}

body[data-page="about"] .about-contact-detail small {
  color: var(--muted);
}

body[data-page="about"] .about-contact-detail strong {
  color: inherit;
}

body[data-page="about"] .about-contact-card .button-light {
  min-height: 0;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 0 4px;
  border-width: 0 0 1px;
  border-color: currentColor;
  color: var(--blue);
  font-size: 13px;
}

@media (max-width: 720px) {
  body[data-page="about"] .about-contact-card {
    min-height: 0;
    padding: 24px;
  }

  body[data-page="about"] .about-contact-card h3 {
    margin-top: 30px;
  }
}

/* Homepage modules 02–10 use one fixed editorial card system. The original
   semantic classes stay in place so their links and data hooks continue to
   work; this attribute-scoped layer only standardises the visual shell. */
body[data-page="home"] [data-home-module="fixed"] {
  background: var(--paper);
}

body[data-page="home"] [data-home-module="fixed"] .section-heading {
  border-bottom-color: var(--blue);
}

body[data-page="home"] [data-home-module-grid] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

/* The company area currently contains four verified products. Four columns
   keep the data matrix complete without creating an artificial empty card. */
body[data-page="home"] #company-capabilities [data-home-module-grid] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] [data-home-module-grid] > .gateway-card,
body[data-page="home"] [data-home-module-grid] > .news-card,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card,
body[data-page="home"] [data-home-module-grid] > .company-capability-card,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card,
body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card,
body[data-page="home"] [data-home-module-grid] > .research-tool-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  background: #f7f9fc;
  color: var(--ink);
  box-shadow: none;
  transform: none;
  transition: background 160ms ease, border-color 160ms ease;
}

/* News and product previews use an article shell with one full-card link. */
body[data-page="home"] [data-home-module-grid] > .news-card,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card {
  padding: 0;
}

body[data-page="home"] [data-home-module-grid] > .news-card > .news-card-link,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card > .company-product-preview-link {
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  box-sizing: border-box;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

/* The homepage feature card follows the same light card form as its peers. */
body[data-page="home"] [data-home-module-grid] > .news-card.feature {
  grid-column: auto;
  justify-content: stretch;
  isolation: auto;
  overflow: visible;
  background: #f7f9fc;
  background-image: none;
  color: var(--ink);
  text-shadow: none;
}

body[data-page="home"] [data-home-module-grid] > .news-card.feature > .news-card-link {
  justify-content: flex-start;
}

body[data-page="home"] [data-home-module-grid] > .news-card.feature p,
body[data-page="home"] [data-home-module-grid] > .news-card.feature .news-meta,
body[data-page="home"] [data-home-module-grid] > .news-card.feature .news-card-cta {
  color: var(--muted);
}

body[data-page="home"] [data-home-module-grid] > .news-card.feature .news-meta {
  border-top-color: var(--line);
}

body[data-page="home"] [data-home-module-grid] > .news-card.feature .news-card-cta {
  color: var(--blue);
}

body[data-page="home"] [data-home-module-grid] > .gateway-card h3,
body[data-page="home"] [data-home-module-grid] > .news-card h3,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card h3,
body[data-page="home"] [data-home-module-grid] > .company-capability-card h3,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card h3,
body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card h3,
body[data-page="home"] [data-home-module-grid] > .research-tool-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

body[data-page="home"] [data-home-module-grid] > .gateway-card > p,
body[data-page="home"] [data-home-module-grid] > .news-card p,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card .company-product-preview-description,
body[data-page="home"] [data-home-module-grid] > .company-capability-card .company-product-preview-description,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card > p,
body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card > p:not(.robot-knowledge-route),
body[data-page="home"] [data-home-module-grid] > .research-tool-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

body[data-page="home"] [data-home-module-grid] > .gateway-card .gateway-result,
body[data-page="home"] [data-home-module-grid] > .news-card .news-meta {
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

body[data-page="home"] [data-home-module-grid] > .gateway-card .gateway-result strong,
body[data-page="home"] [data-home-module-grid] > .news-card .news-card-cta,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card .company-product-preview-cta,
body[data-page="home"] [data-home-module-grid] > .company-capability-card .company-product-preview-cta,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card > strong,
body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card > a,
body[data-page="home"] [data-home-module-grid] > .research-tool-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

body[data-page="home"] [data-home-module-grid] > .gateway-card .gateway-result strong {
  margin-top: 0;
}

body[data-page="home"] [data-home-module-grid] > .news-card .news-card-cta {
  margin-top: 12px;
}

body[data-page="home"] [data-home-module-grid] > .selection-preview-card dl,
body[data-page="home"] [data-home-module-grid] > .company-capability-card dl,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card dl {
  width: 100%;
  margin: auto 0 18px;
  border-top: 1px solid var(--line);
}

body[data-page="home"] [data-home-module-grid] > .selection-preview-card dl > div,
body[data-page="home"] [data-home-module-grid] > .company-capability-card dl > div,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card dl > div {
  display: grid;
  grid-template-columns: minmax(54px, 82px) minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

body[data-page="home"] [data-home-module-grid] > .selection-preview-card dt,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card dd,
body[data-page="home"] [data-home-module-grid] > .company-capability-card dt,
body[data-page="home"] [data-home-module-grid] > .company-capability-card dd,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card dt,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

body[data-page="home"] [data-home-module-grid] > .selection-preview-card dt,
body[data-page="home"] [data-home-module-grid] > .company-capability-card dt,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card dt {
  color: var(--muted);
}

body[data-page="home"] [data-home-module-grid] > .selection-preview-card dd,
body[data-page="home"] [data-home-module-grid] > .company-capability-card dd,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card dd {
  font-weight: 700;
  overflow-wrap: anywhere;
}

body[data-page="home"] [data-home-module-grid] > .research-tool-card .research-tool-detail-list {
  width: 100%;
  margin-bottom: 18px;
  border-top-color: var(--line);
}

body[data-page="home"] [data-home-module-grid] > .research-tool-card .research-tool-detail-list > div {
  border-bottom-color: var(--line);
}

body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card .robot-knowledge-route {
  width: 100%;
  margin: auto 0 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

body[data-page="home"] [data-home-module-grid] > .gateway-card:hover,
body[data-page="home"] [data-home-module-grid] > .gateway-card:focus-visible,
body[data-page="home"] [data-home-module-grid] > .news-card:hover,
body[data-page="home"] [data-home-module-grid] > .news-card:focus-within,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card:hover,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card:focus-within,
body[data-page="home"] [data-home-module-grid] > .company-capability-card:hover,
body[data-page="home"] [data-home-module-grid] > .company-capability-card:focus-visible,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card:hover,
body[data-page="home"] [data-home-module-grid] > .solution-atlas-card:focus-visible,
body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card:hover,
body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card:focus-within,
body[data-page="home"] [data-home-module-grid] > .research-tool-card:hover,
body[data-page="home"] [data-home-module-grid] > .research-tool-card:focus-within {
  border-color: rgba(18, 98, 255, 0.42);
  border-top-color: var(--blue);
  background: #fff;
}

body[data-page="home"] [data-home-module-grid] > .news-card > .news-card-link:focus-visible,
body[data-page="home"] [data-home-module-grid] > .selection-preview-card > .company-product-preview-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

body[data-page="home"] [data-home-module="fixed"] > .sample-notice,
body[data-page="home"] [data-home-module="fixed"] > .content-scope-note {
  margin-top: -6px;
  margin-bottom: 16px;
  border-left: 2px solid var(--blue);
  background: rgba(18, 98, 255, 0.045);
}

@media (max-width: 1050px) {
  body[data-page="home"] [data-home-module-grid],
  body[data-page="home"] #company-capabilities [data-home-module-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] [data-home-module-grid] > .selection-preview-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] [data-home-module-grid],
  body[data-page="home"] #company-capabilities [data-home-module-grid] {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] [data-home-module-grid] > .gateway-card,
  body[data-page="home"] [data-home-module-grid] > .news-card,
  body[data-page="home"] [data-home-module-grid] > .selection-preview-card,
  body[data-page="home"] [data-home-module-grid] > .company-capability-card,
  body[data-page="home"] [data-home-module-grid] > .solution-atlas-card,
  body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card,
  body[data-page="home"] [data-home-module-grid] > .research-tool-card {
    min-height: 0;
    padding: 24px;
  }

  body[data-page="home"] [data-home-module-grid] > .news-card,
  body[data-page="home"] [data-home-module-grid] > .selection-preview-card {
    padding: 0;
  }

  body[data-page="home"] [data-home-module-grid] > .news-card > .news-card-link,
  body[data-page="home"] [data-home-module-grid] > .selection-preview-card > .company-product-preview-link {
    min-height: 0;
    padding: 24px;
  }

  body[data-page="home"] [data-home-module-grid] > .gateway-card h3,
  body[data-page="home"] [data-home-module-grid] > .news-card h3,
  body[data-page="home"] [data-home-module-grid] > .selection-preview-card h3,
  body[data-page="home"] [data-home-module-grid] > .company-capability-card h3,
  body[data-page="home"] [data-home-module-grid] > .solution-atlas-card h3,
  body[data-page="home"] [data-home-module-grid] > .robot-knowledge-card h3,
  body[data-page="home"] [data-home-module-grid] > .research-tool-card h3 {
    margin-top: 14px;
  }
}

/* Homepage industry news follows the editorial two-column template: one
   verified feature story beside a compact, filterable source list. It uses
   its own hooks so the fixed card system above cannot force this module back
   into a three-column grid. */
body[data-page="home"] #latest {
  background: #f1f5f8;
}

body[data-page="home"] #latest .home-news-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.84fr) minmax(0, 1.8fr);
  gap: 24px;
  align-items: stretch;
}

body[data-page="home"] #latest .home-news-feature {
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(7, 27, 43, 0.2);
  background:
    linear-gradient(135deg, rgba(18, 98, 255, 0.24), transparent 58%),
    linear-gradient(160deg, #0b3e69 0%, #0b6ea8 100%);
  color: #fff;
  overflow: hidden;
}

body[data-page="home"] #latest .home-news-feature-top,
body[data-page="home"] #latest .home-news-feed-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

body[data-page="home"] #latest .home-news-kicker {
  color: #d7eeff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

body[data-page="home"] #latest .home-news-source-badge {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

body[data-page="home"] #latest .home-news-feature-date {
  margin: 42px 0 0;
  color: #c7ddec;
  font-size: 11px;
  line-height: 1.6;
}

body[data-page="home"] #latest .home-news-feature h3 {
  max-width: 680px;
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

body[data-page="home"] #latest .home-news-feature-summary {
  max-width: 700px;
  margin: 0;
  color: #d6e5ef;
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="home"] #latest .home-news-feature-source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #e5f2fb;
  font-size: 11px;
  line-height: 1.5;
}

body[data-page="home"] #latest .home-news-feature-source strong {
  font-weight: 750;
}

body[data-page="home"] #latest .home-news-feature-source span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

body[data-page="home"] #latest .home-news-feature-cta {
  align-self: flex-start;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 160ms ease, border-color 160ms ease;
}

body[data-page="home"] #latest .home-news-feature-cta:hover,
body[data-page="home"] #latest .home-news-feature-cta:focus-visible {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] #latest .home-news-feed {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  border: 1px solid var(--line);
  background: #fff;
}

body[data-page="home"] #latest .home-news-feed-header {
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

body[data-page="home"] #latest .home-news-tabs {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

body[data-page="home"] #latest .home-news-tab {
  min-height: 52px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

body[data-page="home"] #latest .home-news-tab:hover,
body[data-page="home"] #latest .home-news-tab:focus-visible {
  color: var(--blue);
  background: rgba(18, 98, 255, 0.08);
}

body[data-page="home"] #latest .home-news-tab.is-active {
  background: var(--blue);
  color: #fff;
}

body[data-page="home"] #latest .home-news-directory-link {
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

body[data-page="home"] #latest .home-news-list {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] #latest .home-news-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px dashed var(--line);
}

body[data-page="home"] #latest .home-news-row:last-child {
  border-bottom: 0;
}

body[data-page="home"] #latest .home-news-row > time {
  padding-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  white-space: nowrap;
}

body[data-page="home"] #latest .home-news-row > div {
  min-width: 0;
}

body[data-page="home"] #latest .home-news-row > div > a {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

body[data-page="home"] #latest .home-news-row > div > a:hover,
body[data-page="home"] #latest .home-news-row > div > a:focus-visible {
  color: var(--blue);
}

body[data-page="home"] #latest .home-news-row p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

body[data-page="home"] #latest .home-news-row p span {
  overflow-wrap: anywhere;
}

body[data-page="home"] #latest .home-news-empty {
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

body[data-page="home"] #latest .home-news-count {
  margin: auto 0 0;
  padding: 15px 0 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 900px) {
  body[data-page="home"] #latest .home-news-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #latest .home-news-feature {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] #latest .home-news-layout {
    gap: 16px;
  }

  body[data-page="home"] #latest .home-news-feature {
    min-height: 0;
    padding: 24px;
  }

  body[data-page="home"] #latest .home-news-feature-date {
    margin-top: 30px;
  }

  body[data-page="home"] #latest .home-news-feed {
    padding: 0 18px;
  }

  body[data-page="home"] #latest .home-news-feed-header {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  body[data-page="home"] #latest .home-news-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  body[data-page="home"] #latest .home-news-tab {
    flex: 0 0 auto;
    min-height: 48px;
    padding-inline: 12px;
  }

  body[data-page="home"] #latest .home-news-directory-link {
    align-self: flex-start;
    margin: 13px 0 15px;
  }

  body[data-page="home"] #latest .home-news-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 0;
  }

  body[data-page="home"] #latest .home-news-row > time {
    padding-top: 0;
  }

  body[data-page="home"] #latest .home-news-count {
    text-align: left;
  }
}

/* Match the reference news composition: the title and provenance sit in a
   white left rail, while the right rail begins with its category tabs. */

body[data-page="home"] #latest .home-news-feature-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

body[data-page="home"] #latest .home-news-feature-heading {
  min-width: 0;
  padding: 0 0 17px;
  border-bottom: 1px solid var(--blue);
}

body[data-page="home"] #latest .home-news-feature-heading h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 2.2vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

body[data-page="home"] #latest .home-news-feature-heading .section-summary {
  max-width: 100%;
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

body[data-page="home"] #latest .home-news-column-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

body[data-page="home"] #latest .home-news-feature-column > .home-news-feature {
  flex: 1 1 auto;
  min-height: 330px;
  margin-top: 22px;
  padding: 24px;
  border: 0;
}

body[data-page="home"] #latest .home-news-feature h3 {
  font-size: clamp(25px, 2.05vw, 31px);
  line-height: 1.28;
}

body[data-page="home"] #latest .home-news-feature-date {
  margin-top: 28px;
}

body[data-page="home"] #latest .home-news-feature-cta {
  margin-top: 16px;
}

@media (max-width: 720px) {
  body[data-page="home"] #latest .home-news-feature-column {
    padding: 18px;
  }

  body[data-page="home"] #latest .home-news-feature-heading h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  body[data-page="home"] #latest .home-news-feature-column > .home-news-feature {
    min-height: 0;
    margin-top: 18px;
  }
}

/* The complete homepage feed is loaded on demand. Keep its controls compact,
   expose the source annotation on every generated row, and make the desktop
   feed share the same outer card height as the feature column. The cool
   section background should remain outside both cards, rather than appearing
   as an accidental strip beneath a short category list. */
body[data-page="home"] #latest .home-news-feed {
  align-self: stretch;
}

body[data-page="home"] #latest .home-news-list {
  flex: 0 0 auto;
}

body[data-page="home"] #latest .home-news-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 14px;
  margin-top: 0;
  padding: 15px 0 14px;
  border-top: 1px solid var(--line);
}

body[data-page="home"] #latest .home-news-load {
  min-height: 38px;
  padding: 0 13px;
  font-size: 11px;
}

body[data-page="home"] #latest .home-news-load[hidden],
body[data-page="home"] #latest .home-news-load-status[hidden],
body[data-page="home"] #latest .home-news-load-error[hidden] {
  display: none;
}

body[data-page="home"] #latest .home-news-load:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

body[data-page="home"] #latest .home-news-load-note,
body[data-page="home"] #latest .home-news-load-status,
body[data-page="home"] #latest .home-news-load-error {
  flex: 1 1 220px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

body[data-page="home"] #latest .home-news-load-note {
  flex-basis: 300px;
  max-width: 42rem;
}

body[data-page="home"] #latest .home-news-load-status {
  color: var(--blue);
}

body[data-page="home"] #latest .home-news-load-error {
  color: #a33a2b;
}

body[data-page="home"] #latest .home-news-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 11px 0 13px;
  border-top: 1px solid var(--line);
}

body[data-page="home"] #latest .home-news-pagination[hidden] {
  display: none;
}

body[data-page="home"] #latest .home-news-pagination button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

body[data-page="home"] #latest .home-news-pagination button:hover:not(:disabled),
body[data-page="home"] #latest .home-news-pagination button:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

body[data-page="home"] #latest .home-news-pagination button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.5;
}

body[data-page="home"] #latest .home-news-pagination output {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

body[data-page="home"] #latest .home-news-row-summary {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body[data-page="home"] #latest .home-news-row-category {
  color: var(--blue);
  font-weight: 800;
}

body[data-page="home"] #latest .home-news-row-core {
  color: var(--blue);
  font-weight: 800;
}

body[data-page="home"] #latest .home-news-row-actions {
  margin-top: 8px;
}

body[data-page="home"] #latest .home-news-row-source {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 720px) {
  body[data-page="home"] #latest .home-news-controls {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] #latest .home-news-load {
    align-self: flex-start;
  }

  body[data-page="home"] #latest .home-news-pagination {
    flex-wrap: wrap;
  }

  body[data-page="home"] #latest .home-news-pagination output {
    order: -1;
    flex: 1 1 100%;
  }
}

/* In the single-column layout each card should shrink to its own content;
   equal-height desktop columns are not useful on narrow screens. */
@media (max-width: 900px) {
  body[data-page="home"] #latest .home-news-feature-column,
  body[data-page="home"] #latest .home-news-feed {
    align-self: start;
  }

  body[data-page="home"] #latest .home-news-feature-column > .home-news-feature {
    flex: 0 0 auto;
  }
}

/* Homepage section colour cycle
   --------------------------------
   The hero remains the deep-blue visual anchor.  The ten top-level sections
   below it alternate the two approved light surfaces: warm ivory (1) and
   cool blue-grey (2).  The cycle index is stored in data-home-color while
   data-home-tone keeps the semantic name readable.  All cards, rules,
   notices, controls and text inside a section inherit the same local tokens
   so a section never mixes the colour system of its neighbour. */
body[data-page="home"] [data-home-tone] {
  --home-section-bg: #f3efe5;
  --home-card-bg: #fbfaf5;
  --home-card-raised: #ffffff;
  --home-ink: #071b2b;
  --home-muted: #526779;
  --home-line: rgba(7, 27, 43, 0.18);
  --home-accent: #0b57d0;
  --home-accent-soft: rgba(18, 98, 255, 0.08);
  --home-notice-bg: rgba(18, 98, 255, 0.055);
  --home-accent-contrast: #ffffff;

  /* Map the site's shared tokens onto the active cycle.  A few legacy
     components still read --blue/--paper/--line directly; aliasing them here
     keeps those inner details in step with the section that contains them. */
  --ink: var(--home-ink);
  --ink-soft: var(--home-ink);
  --cream: var(--home-section-bg);
  --paper: var(--home-card-bg);
  --blue: var(--home-accent);
  --contact-accent: var(--home-accent);
  --contact-tint: var(--home-notice-bg);
  --line: var(--home-line);
  --muted: var(--home-muted);
}

body[data-page="home"] [data-home-tone="warm"] {
  --home-section-bg: #f3efe5;
  --home-card-bg: #fbfaf5;
  --home-card-raised: #ffffff;
  --home-muted: #526779;
  --home-accent: #0b57d0;
  --home-accent-soft: rgba(18, 98, 255, 0.08);
  --home-notice-bg: rgba(18, 98, 255, 0.055);
}

body[data-page="home"] [data-home-tone="cool"] {
  --home-section-bg: #f1f5f8;
  --home-card-bg: #ffffff;
  --home-card-raised: #f7fbfd;
  --home-muted: #526779;
  --home-accent: #0b57d0;
  --home-accent-soft: rgba(11, 97, 120, 0.09);
  --home-notice-bg: rgba(11, 97, 120, 0.07);
}

body[data-page="home"] [data-home-tone="hero"] {
  --home-section-bg: #061a33;
  --home-card-bg: rgba(5, 14, 27, 0.58);
  --home-card-raised: rgba(12, 39, 61, 0.72);
  --home-ink: #ffffff;
  --home-muted: #c4d5df;
  --home-line: rgba(255, 255, 255, 0.22);
  --home-accent: #b8ff48;
  --home-accent-soft: rgba(184, 255, 72, 0.12);
  --home-notice-bg: rgba(67, 202, 241, 0.12);
}

body[data-page="home"] .content-section[data-home-tone] {
  position: relative;
  isolation: isolate;
  background-color: var(--home-section-bg);
  color: var(--home-ink);
}

/* The content section is capped by --max on wide screens.  Extend its tone to
   the viewport edges, then clip the scrollbar gutter so the full-bleed colour
   never creates a horizontal scroll track. */
html:has(body[data-page="home"]),
body[data-page="home"] {
  overflow-x: hidden;
  overflow-x: clip;
}

body[data-page="home"] .content-section[data-home-tone]::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--home-section-bg);
  pointer-events: none;
}

body[data-page="home"] .index-strip[data-home-tone] {
  background: var(--home-section-bg);
  color: var(--home-ink);
  border-bottom-color: var(--home-line);
}

body[data-page="home"] .index-strip[data-home-tone] div {
  border-right-color: var(--home-line);
}

body[data-page="home"] .index-strip[data-home-tone] strong {
  color: var(--home-ink);
}

body[data-page="home"] .index-strip[data-home-tone] small {
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] .section-heading {
  border-bottom-color: var(--home-accent);
}

body[data-page="home"] .content-section[data-home-tone] .section-heading h2,
body[data-page="home"] .content-section[data-home-tone] .section-heading .text-link,
body[data-page="home"] .content-section[data-home-tone] .section-code,
body[data-page="home"] .content-section[data-home-tone] .card-code,
body[data-page="home"] .content-section[data-home-tone] .selection-preview-code small,
body[data-page="home"] .content-section[data-home-tone] .solution-atlas-head small,
body[data-page="home"] .content-section[data-home-tone] .research-tool-head small {
  color: var(--home-accent);
}

body[data-page="home"] .content-section[data-home-tone] .section-heading h2 {
  color: var(--home-ink);
}

body[data-page="home"] .content-section[data-home-tone] .section-summary,
body[data-page="home"] .content-section[data-home-tone] > .sample-notice,
body[data-page="home"] .content-section[data-home-tone] > .content-scope-note {
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] > .sample-notice,
body[data-page="home"] .content-section[data-home-tone] > .content-scope-note {
  border-left-color: var(--home-accent);
  background: var(--home-notice-bg);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card {
  border-color: var(--home-line);
  border-top-color: var(--home-accent);
  background: var(--home-card-bg);
  color: var(--home-ink);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card:hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card:focus-visible,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card:not(.feature):hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card:not(.feature):focus-within,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card:hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card:focus-within,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card:hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card:focus-visible,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card:hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card:focus-visible,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card:hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card:focus-within,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card:hover,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card:focus-within {
  border-color: var(--home-accent);
  border-top-color: var(--home-accent);
  background: var(--home-card-raised);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card h3,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card .company-product-preview-company {
  color: var(--home-ink);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card > p,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card p,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card .company-product-preview-description,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card .company-product-preview-description,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card > p,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card > p:not(.robot-knowledge-route),
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card > p,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card dt,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card dt,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card dt {
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card strong,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card .news-card-cta,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card .company-product-preview-cta,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card .company-product-preview-cta,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card > strong,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card > a,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card > a {
  color: var(--home-accent);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card .gateway-result,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .news-card .news-meta,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .selection-preview-card dl,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .company-capability-card dl,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card dl,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card .research-tool-detail-list,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card .robot-knowledge-route {
  border-color: var(--home-line);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card .gateway-result > span,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card .research-tool-detail-list dt,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card .robot-knowledge-route {
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .gateway-card .gateway-tags li,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .solution-atlas-card .solution-atlas-head span,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card .research-tool-head span {
  border-color: var(--home-line);
  background: var(--home-notice-bg);
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card .research-tool-route {
  border-left-color: var(--home-accent);
  background: var(--home-notice-bg);
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card small,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card small {
  color: var(--home-accent);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card li,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card li {
  color: var(--home-muted);
}

body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .robot-knowledge-card li::before,
body[data-page="home"] .content-section[data-home-tone] [data-home-module-grid] > .research-tool-card li::before {
  color: var(--home-accent);
}

/* The news feature intentionally remains a blue editorial card, while the
   feature column, feed, tabs and rows follow the current cool surface. */
body[data-page="home"] #latest[data-home-tone] .home-news-feature-column,
body[data-page="home"] #latest[data-home-tone] .home-news-feed {
  border-color: var(--home-line);
  background: var(--home-card-bg);
}

body[data-page="home"] #latest[data-home-tone] .home-news-feature-heading {
  border-bottom-color: var(--home-accent);
}

body[data-page="home"] #latest[data-home-tone] .home-news-feature-heading h2,
body[data-page="home"] #latest[data-home-tone] .home-news-column-note,
body[data-page="home"] #latest[data-home-tone] .home-news-feed-header,
body[data-page="home"] #latest[data-home-tone] .home-news-tab,
body[data-page="home"] #latest[data-home-tone] .home-news-row > time,
body[data-page="home"] #latest[data-home-tone] .home-news-row p,
body[data-page="home"] #latest[data-home-tone] .home-news-count,
body[data-page="home"] #latest[data-home-tone] .home-news-load-note,
body[data-page="home"] #latest[data-home-tone] .home-news-load-status,
body[data-page="home"] #latest[data-home-tone] .home-news-load-error,
body[data-page="home"] #latest[data-home-tone] .home-news-pagination output {
  color: var(--home-muted);
}

body[data-page="home"] #latest[data-home-tone] .home-news-feature-heading h2,
body[data-page="home"] #latest[data-home-tone] .home-news-row > div > a {
  color: var(--home-ink);
}

body[data-page="home"] #latest[data-home-tone] .home-news-feature-heading .section-code,
body[data-page="home"] #latest[data-home-tone] .home-news-kicker,
body[data-page="home"] #latest[data-home-tone] .home-news-directory-link,
body[data-page="home"] #latest[data-home-tone] .home-news-row-category,
body[data-page="home"] #latest[data-home-tone] .home-news-row-core {
  color: var(--home-accent);
}

body[data-page="home"] #latest[data-home-tone] .home-news-feed-header,
body[data-page="home"] #latest[data-home-tone] .home-news-row,
body[data-page="home"] #latest[data-home-tone] .home-news-count,
body[data-page="home"] #latest[data-home-tone] .home-news-controls,
body[data-page="home"] #latest[data-home-tone] .home-news-pagination {
  border-color: var(--home-line);
}

body[data-page="home"] #latest[data-home-tone] .home-news-tab:hover,
body[data-page="home"] #latest[data-home-tone] .home-news-tab:focus-visible {
  color: var(--home-accent);
  background: var(--home-accent-soft);
}

body[data-page="home"] #latest[data-home-tone] .home-news-tab.is-active {
  background: var(--home-accent);
  color: var(--home-accent-contrast);
}

body[data-page="home"] #latest[data-home-tone] .home-news-row > div > a:hover,
body[data-page="home"] #latest[data-home-tone] .home-news-row > div > a:focus-visible,
body[data-page="home"] #latest[data-home-tone] .home-news-row-source {
  color: var(--home-accent);
}

body[data-page="home"] #latest[data-home-tone] .home-news-load,
body[data-page="home"] #latest[data-home-tone] .home-news-pagination button {
  border-color: var(--home-line);
  background: var(--home-card-raised);
  color: var(--home-ink);
}

body[data-page="home"] #latest[data-home-tone] .home-news-load:hover,
body[data-page="home"] #latest[data-home-tone] .home-news-load:focus-visible,
body[data-page="home"] #latest[data-home-tone] .home-news-pagination button:hover:not(:disabled),
body[data-page="home"] #latest[data-home-tone] .home-news-pagination button:focus-visible {
  border-color: var(--home-accent);
  color: var(--home-accent);
}

body[data-page="home"] .content-section[data-home-tone] .company-map-cta {
  border-color: var(--home-line);
  background: var(--home-notice-bg);
  color: var(--home-ink);
}

body[data-page="home"] .content-section[data-home-tone] .company-map-cta:hover,
body[data-page="home"] .content-section[data-home-tone] .company-map-cta:focus-visible {
  background: var(--home-card-raised);
}

body[data-page="home"] .content-section[data-home-tone] .company-map-cta small,
body[data-page="home"] .content-section[data-home-tone] .company-map-cta b {
  color: var(--home-accent);
}

body[data-page="home"] .content-section[data-home-tone] .company-map-cta em {
  color: var(--home-muted);
}

/* Keep the hidden legacy workflow ready for the same cycle if it is ever
   re-enabled; its hidden state remains untouched. */
body[data-page="home"] .home-workflow-band[data-home-tone] {
  background: var(--home-section-bg);
  color: var(--home-ink);
}

body[data-page="home"] .home-workflow-band[data-home-tone] .section-heading,
body[data-page="home"] .home-workflow-band[data-home-tone] .procurement-workflow {
  border-color: var(--home-line);
}

body[data-page="home"] .home-workflow-band[data-home-tone] .procurement-workflow li {
  border-color: var(--home-line);
  background: var(--home-card-bg);
  color: var(--home-ink);
}

/* Homepage 09: a lightweight, source-backed window into the full robotics
   knowledge index.  These selectors are intentionally scoped away from the
   Industry News card renderer, whose cards have a different density and
   pagination layout. */
body[data-page="home"] #buyer-workflow .home-knowledge-preview-loading,
body[data-page="home"] #buyer-workflow .home-knowledge-preview-error,
body[data-page="home"] #buyer-workflow .home-knowledge-preview-status {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.65;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-loading {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border-left: 3px solid var(--home-accent);
  background: var(--home-notice-bg);
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-loading::before {
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 2px solid var(--home-line);
  border-top-color: var(--home-accent);
  border-radius: 50%;
  content: "";
  animation: homeKnowledgeSpin 0.8s linear infinite;
}

@keyframes homeKnowledgeSpin {
  to { transform: rotate(360deg); }
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border-left: 3px solid #d14b55;
  background: var(--home-notice-bg);
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-error[hidden] {
  display: none;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-error p {
  margin: 0;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-card {
  min-width: 0;
  min-height: 344px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--home-line);
  border-top: 3px solid var(--home-accent);
  background: var(--home-card-bg);
  color: var(--home-ink);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-card:hover,
body[data-page="home"] #buyer-workflow .home-knowledge-preview-card:focus-within {
  border-color: var(--home-accent);
  background: var(--home-card-raised);
  transform: translateY(-2px);
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-head {
  min-height: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-head small {
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-rights {
  max-width: 54%;
  padding: 3px 6px;
  border: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-card h3 {
  margin: 14px 0 8px;
  color: var(--home-ink);
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body[data-page="home"] #buyer-workflow .home-knowledge-translation-status {
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 4px 7px;
  border: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-context,
body[data-page="home"] #buyer-workflow .home-knowledge-preview-summary,
body[data-page="home"] #buyer-workflow .home-knowledge-preview-provenance {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-context {
  min-height: 42px;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-summary {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--home-line);
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-facts > div {
  min-width: 0;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-facts dt {
  margin-bottom: 3px;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.35;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-facts dd {
  margin: 0;
  color: var(--home-ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.4;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-provenance {
  margin-top: 8px;
  font-size: 10px;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-source-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 10px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-source-link:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 3px;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--home-line);
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-footer .button {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: var(--home-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

body[data-page="home"] #buyer-workflow .home-knowledge-preview-footer .button:hover,
body[data-page="home"] #buyer-workflow .home-knowledge-preview-footer .button:focus-visible {
  background: var(--home-ink);
}

body[data-page="home"] #buyer-workflow [data-home-knowledge-load] {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--home-line);
  background: transparent;
  color: var(--home-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

body[data-page="home"] #buyer-workflow [data-home-knowledge-load]:hover,
body[data-page="home"] #buyer-workflow [data-home-knowledge-load]:focus-visible {
  border-color: var(--home-accent);
  color: var(--home-accent);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] #buyer-workflow .home-knowledge-preview-loading::before,
  body[data-page="home"] #buyer-workflow .home-knowledge-preview-card {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1050px) {
  body[data-page="home"] #buyer-workflow .home-knowledge-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body[data-page="home"] #buyer-workflow .home-knowledge-preview-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #buyer-workflow .home-knowledge-preview-facts {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #buyer-workflow .home-knowledge-preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Research toolkit: make the six research tasks read as one connected path,
   while keeping every destination and limitation visible before navigation. */
body[data-page="home"] #research-toolkit {
  --research-card-shadow: 0 12px 34px rgba(7, 27, 43, 0.07);
}

body[data-page="home"] #research-toolkit .section-summary {
  max-width: 920px;
}

body[data-page="home"] #research-toolkit .research-tool-note {
  max-width: 920px;
  margin-top: 16px;
  padding: 11px 14px;
  border-left: 3px solid var(--home-accent);
  background: var(--home-notice-bg);
  font-size: 12px;
  line-height: 1.65;
}

body[data-page="home"] #research-toolkit .research-tool-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 0 20px;
  border: 1px solid var(--home-line);
  border-top: 3px solid var(--home-accent);
  background: var(--home-card-bg);
  box-shadow: 0 8px 24px rgba(7, 27, 43, 0.045);
}

body[data-page="home"] #research-toolkit .research-tool-path a {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 62px;
  padding: 10px 14px;
  border-right: 1px solid var(--home-line);
  color: var(--home-ink);
  transition: background 160ms ease, color 160ms ease;
}

body[data-page="home"] #research-toolkit .research-tool-path a:last-child {
  border-right: 0;
}

body[data-page="home"] #research-toolkit .research-tool-path a::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 20px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: var(--home-card-bg);
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 900;
}

body[data-page="home"] #research-toolkit .research-tool-path a:last-child::after {
  content: none;
}

body[data-page="home"] #research-toolkit .research-tool-path a:hover,
body[data-page="home"] #research-toolkit .research-tool-path a:focus-visible {
  background: var(--home-accent-soft);
  color: var(--home-accent);
}

body[data-page="home"] #research-toolkit .research-tool-path a:focus-visible {
  z-index: 2;
  outline: 3px solid var(--home-accent);
  outline-offset: -3px;
}

body[data-page="home"] #research-toolkit .research-tool-path span {
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body[data-page="home"] #research-toolkit .research-tool-path strong {
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body[data-page="home"] #research-toolkit .research-tool-grid {
  gap: 20px;
  align-items: stretch;
}

body[data-page="home"] #research-toolkit .research-tool-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: 28px;
  border: 1px solid var(--home-line);
  border-top: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--home-card-raised) 0%, var(--home-card-bg) 100%);
  box-shadow: var(--research-card-shadow);
  scroll-margin-top: 110px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

body[data-page="home"] #research-toolkit .research-tool-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 4px;
  background: var(--home-accent);
}

body[data-page="home"] #research-toolkit .research-tool-card::after {
  content: attr(data-tool-number);
  position: absolute;
  z-index: -1;
  top: 46px;
  right: 24px;
  color: var(--home-accent);
  font-size: clamp(62px, 5vw, 82px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.055;
  pointer-events: none;
}

body[data-page="home"] #research-toolkit .research-tool-card:hover,
body[data-page="home"] #research-toolkit .research-tool-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--home-accent);
  background: var(--home-card-raised);
  box-shadow: 0 18px 44px rgba(7, 27, 43, 0.12);
}

body[data-page="home"] #research-toolkit .research-tool-card:target {
  border-color: var(--home-accent);
  outline: 3px solid rgba(18, 98, 255, 0.2);
  outline-offset: 4px;
  background: var(--home-card-raised);
  box-shadow: 0 18px 44px rgba(7, 27, 43, 0.13);
}

body[data-page="home"] #research-toolkit .research-tool-head,
body[data-page="home"] #research-toolkit .research-tool-card h3,
body[data-page="home"] #research-toolkit .research-tool-card > p,
body[data-page="home"] #research-toolkit .research-tool-card > dl,
body[data-page="home"] #research-toolkit .research-tool-checks,
body[data-page="home"] #research-toolkit .research-tool-handoff,
body[data-page="home"] #research-toolkit .research-tool-card > a {
  position: relative;
  z-index: 1;
}

body[data-page="home"] #research-toolkit .research-tool-head span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--home-notice-bg);
}

body[data-page="home"] #research-toolkit .research-tool-card h3 {
  max-width: calc(100% - 34px);
  margin: 20px 0 14px;
  font-size: clamp(21px, 1.6vw, 25px);
  line-height: 1.3;
  text-wrap: balance;
}

body[data-page="home"] #research-toolkit .research-tool-purpose {
  width: 100%;
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
}

body[data-page="home"] #research-toolkit .research-tool-purpose strong,
body[data-page="home"] #research-toolkit .research-tool-checks > span,
body[data-page="home"] #research-toolkit .research-tool-handoff strong,
body[data-page="home"] #research-toolkit .research-tool-route strong {
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body[data-page="home"] #research-toolkit .research-tool-purpose span {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.7;
}

body[data-page="home"] #research-toolkit .research-tool-detail-list {
  width: 100%;
  margin: 0 0 18px;
  border-top: 1px solid var(--home-line);
}

body[data-page="home"] #research-toolkit .research-tool-detail-list > div {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--home-line);
}

body[data-page="home"] #research-toolkit .research-tool-detail-list > div:last-child {
  margin: 0 -12px;
  padding-right: 12px;
  padding-left: 12px;
  background: var(--home-accent-soft);
}

body[data-page="home"] #research-toolkit .research-tool-detail-list dt,
body[data-page="home"] #research-toolkit .research-tool-detail-list dd {
  font-size: 12px;
  line-height: 1.6;
}

body[data-page="home"] #research-toolkit .research-tool-detail-list dt {
  color: var(--home-accent);
  font-weight: 800;
}

body[data-page="home"] #research-toolkit .research-tool-detail-list dd {
  font-weight: 700;
}

body[data-page="home"] #research-toolkit .research-tool-checks {
  width: 100%;
  margin: 0 0 18px;
}

body[data-page="home"] #research-toolkit .research-tool-checks > span {
  display: block;
  margin-bottom: 9px;
}

body[data-page="home"] #research-toolkit .research-tool-checks ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

body[data-page="home"] #research-toolkit .research-tool-checks li {
  width: auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: var(--home-notice-bg);
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.35;
}

body[data-page="home"] #research-toolkit .research-tool-checks li::before {
  content: none;
}

body[data-page="home"] #research-toolkit .research-tool-handoff {
  width: 100%;
  display: grid;
  gap: 6px;
  margin: auto 0 12px;
  padding: 14px 16px;
  border: 1px solid var(--home-line);
  border-left: 3px solid var(--home-accent);
  border-radius: 7px;
  background: var(--home-card-raised);
}

body[data-page="home"] #research-toolkit .research-tool-handoff strong {
  color: var(--home-ink);
}

body[data-page="home"] #research-toolkit .research-tool-handoff span {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.6;
}

body[data-page="home"] #research-toolkit .research-tool-route {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 0 0 12px;
  padding: 13px 15px;
  border: 0;
  border-left: 3px solid var(--home-accent);
  border-radius: 7px;
  background: var(--home-notice-bg);
}

body[data-page="home"] #research-toolkit .research-tool-route span {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.6;
}

body[data-page="home"] #research-toolkit .research-tool-card > .research-tool-link {
  width: 100%;
  min-height: 48px;
  justify-content: space-between;
  margin-top: 0;
  padding: 0 16px;
  border: 1px solid var(--home-accent);
  border-radius: 7px;
  background: var(--home-accent);
  color: var(--home-accent-contrast);
  line-height: 1.4;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

body[data-page="home"] #research-toolkit .research-tool-card > .research-tool-link::after {
  content: "↗";
  flex: 0 0 auto;
  margin-left: 14px;
  font-size: 15px;
}

body[data-page="home"] #research-toolkit .research-tool-card > .research-tool-link:hover,
body[data-page="home"] #research-toolkit .research-tool-card > .research-tool-link:focus-visible {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

body[data-page="home"] #research-toolkit .research-tool-card > .research-tool-link:focus-visible {
  outline: 3px solid var(--home-accent);
  outline-offset: 3px;
}

/* Steps 04–06 are intentionally lighter action cards: one clear outcome,
   three review actions and one truthful destination. */
body[data-page="home"] #research-toolkit .research-tool-card--action {
  padding: 0;
  background: var(--home-card-raised);
}

body[data-page="home"] #research-toolkit .research-tool-card--action::before {
  height: 6px;
  background: var(--home-accent);
}

body[data-page="home"] #research-toolkit .research-tool-card--action::after {
  content: none;
}

body[data-page="home"] #research-toolkit .research-tool-card--action .research-tool-head {
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 26px 26px 0;
}

body[data-page="home"] #research-toolkit .research-tool-card--action h3 {
  max-width: none;
  margin: 18px 26px 10px;
  font-size: clamp(22px, 1.55vw, 25px);
}

body[data-page="home"] #research-toolkit .research-tool-card--action > .research-tool-action-intro {
  margin: 0 26px 20px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.7;
}

body[data-page="home"] #research-toolkit .research-tool-result {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin: 0 26px;
  padding: 14px 16px;
  border-radius: 7px;
  background: var(--home-accent);
  color: var(--home-accent-contrast);
}

body[data-page="home"] #research-toolkit .research-tool-result span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  opacity: 0.82;
}

body[data-page="home"] #research-toolkit .research-tool-result strong {
  font-size: 15px;
  line-height: 1.45;
}

body[data-page="home"] #research-toolkit .research-tool-action-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 18px 26px;
  padding: 0;
  list-style: none;
}

body[data-page="home"] #research-toolkit .research-tool-action-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
}

body[data-page="home"] #research-toolkit .research-tool-action-list li:first-child {
  padding-top: 4px;
}

body[data-page="home"] #research-toolkit .research-tool-action-list li:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

body[data-page="home"] #research-toolkit .research-tool-action-list li::before {
  content: none;
}

body[data-page="home"] #research-toolkit .research-tool-action-list li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  background: var(--home-notice-bg);
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
}

body[data-page="home"] #research-toolkit .research-tool-action-list li > div {
  min-width: 0;
}

body[data-page="home"] #research-toolkit .research-tool-action-list strong,
body[data-page="home"] #research-toolkit .research-tool-action-list small {
  display: block;
}

body[data-page="home"] #research-toolkit .research-tool-action-list strong {
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 1.45;
}

body[data-page="home"] #research-toolkit .research-tool-action-list small {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.55;
}

body[data-page="home"] #research-toolkit .research-tool-card--action > .research-tool-boundary {
  width: auto;
  display: grid;
  gap: 5px;
  margin: auto 26px 14px;
  padding: 14px 0 0;
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
}

body[data-page="home"] #research-toolkit .research-tool-boundary strong {
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body[data-page="home"] #research-toolkit .research-tool-boundary span {
  font-size: 12px;
  line-height: 1.6;
}

body[data-page="home"] #research-toolkit .research-tool-card--action > .research-tool-link {
  width: auto;
  margin: 0 26px 26px;
}

body[data-page="home"] #research-toolkit .research-tool-card--review {
  border-color: color-mix(in srgb, var(--home-accent) 32%, var(--home-line));
  background: linear-gradient(180deg, var(--home-accent-soft) 0%, var(--home-card-raised) 34%, var(--home-card-bg) 100%);
}

body[data-page="home"] #research-toolkit .research-tool-card--review::before {
  background: var(--home-accent);
}

body[data-page="home"] #research-toolkit .research-tool-card--review .research-tool-head span {
  border: 1px solid color-mix(in srgb, var(--home-accent) 34%, var(--home-line));
  background: var(--home-accent-soft);
  color: var(--home-accent);
}

body[data-page="home"] #research-toolkit .research-tool-card--review .research-tool-result {
  border-left: 0;
  background: var(--home-accent);
  color: var(--home-accent-contrast);
}

body[data-page="home"] #research-toolkit .research-tool-card--review > .research-tool-link::after {
  content: "↓";
}

body[data-page="home"] #research-toolkit .research-tool-closure-bridge {
  height: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  pointer-events: none;
}

body[data-page="home"] #research-toolkit .research-tool-closure-bridge span {
  position: relative;
  grid-column: 3;
  justify-self: center;
  width: 2px;
  height: 100%;
  background: var(--home-accent);
}

body[data-page="home"] #research-toolkit .research-tool-closure-bridge span::after {
  content: "06";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 2px solid var(--home-card-raised);
  border-radius: 50%;
  background: var(--home-accent);
  color: var(--home-accent-contrast);
  box-shadow: 0 0 0 1px var(--home-accent), 0 8px 18px rgba(7, 27, 43, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

body[data-page="home"] #research-toolkit .research-tool-outcome {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.38fr);
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  padding: 0;
  border: 1px solid var(--home-line);
  border-top: 3px solid var(--home-accent);
  border-radius: 11px;
  background: var(--home-card-raised);
  box-shadow: 0 18px 42px rgba(7, 27, 43, 0.1);
  overflow: hidden;
  scroll-margin-top: 110px;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-code {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-summary,
body[data-page="home"] #research-toolkit .research-tool-outcome-next {
  min-width: 0;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-summary {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--home-accent);
  color: var(--home-accent-contrast);
}

body[data-page="home"] #research-toolkit .research-tool-outcome-summary > strong {
  display: block;
  margin: 16px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-summary > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.72;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-assets {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-assets li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-assets li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--home-accent-contrast);
  border-left: 2px solid var(--home-accent-contrast);
  transform: rotate(-45deg);
}

body[data-page="home"] #research-toolkit .research-tool-outcome-next {
  padding: 34px;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-kicker {
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-next > h3 {
  max-width: 680px;
  margin: 10px 0 20px;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.3;
  text-wrap: balance;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: var(--home-card-bg);
  list-style: none;
  overflow: hidden;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps li {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid var(--home-line);
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps li:last-child {
  border-right: 0;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps li::before {
  content: none;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--home-accent-soft);
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps strong,
body[data-page="home"] #research-toolkit .research-tool-outcome-steps small {
  display: block;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps strong {
  margin-bottom: 4px;
  color: var(--home-ink);
  font-size: 12px;
  line-height: 1.45;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-steps small {
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.55;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.78fr);
  align-items: center;
  gap: 16px 22px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--home-accent) 24%, var(--home-line));
  border-radius: 9px;
  background: var(--home-accent-soft);
}

body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy {
  min-width: 0;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy > span,
body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy > strong,
body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy > p {
  display: block;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy > span {
  margin-bottom: 5px;
  color: var(--home-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy > strong {
  color: var(--home-ink);
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-action-copy > p {
  margin: 5px 0 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.6;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 2px 14px;
  padding: 12px 16px;
  border: 1px solid var(--home-accent);
  border-radius: 7px;
  background: var(--home-accent);
  color: var(--home-accent-contrast);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary > span,
body[data-page="home"] #research-toolkit .research-tool-outcome-primary > small {
  min-width: 0;
  display: block;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary > span {
  font-size: 13px;
  line-height: 1.4;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary > small {
  grid-column: 1;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.78;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary > b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 18px;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary:hover,
body[data-page="home"] #research-toolkit .research-tool-outcome-primary:focus-visible {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
  transform: translateY(-1px);
}

body[data-page="home"] #research-toolkit .research-tool-outcome-primary:focus-visible,
body[data-page="home"] #research-toolkit .research-tool-outcome-support a:focus-visible {
  outline: 3px solid var(--home-accent);
  outline-offset: 3px;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-support {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 24px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--home-accent) 18%, var(--home-line));
}

body[data-page="home"] #research-toolkit .research-tool-outcome-support a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 800;
  text-underline-offset: 4px;
}

body[data-page="home"] #research-toolkit .research-tool-outcome-support a:hover,
body[data-page="home"] #research-toolkit .research-tool-outcome-support a:focus-visible {
  color: var(--home-ink);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] #research-toolkit .research-tool-card,
  body[data-page="home"] #research-toolkit .research-tool-path a,
  body[data-page="home"] #research-toolkit .research-tool-card > .research-tool-link,
  body[data-page="home"] #research-toolkit .research-tool-outcome-primary {
    transition: none;
  }

  body[data-page="home"] #research-toolkit .research-tool-card:hover,
  body[data-page="home"] #research-toolkit .research-tool-card:focus-within,
  body[data-page="home"] #research-toolkit .research-tool-outcome-primary:hover,
  body[data-page="home"] #research-toolkit .research-tool-outcome-primary:focus-visible {
    transform: none;
  }
}

@media (max-width: 1050px) {
  body[data-page="home"] #research-toolkit .research-tool-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] #research-toolkit .research-tool-path a {
    border-bottom: 1px solid var(--home-line);
  }

  body[data-page="home"] #research-toolkit .research-tool-path a:nth-child(even) {
    border-right: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-path a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-path a::after {
    content: none;
  }

  body[data-page="home"] #research-toolkit .research-tool-closure-bridge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] #research-toolkit .research-tool-closure-bridge span {
    grid-column: 2;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-assets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] #research-toolkit .research-tool-path a {
    min-height: 56px;
    padding: 9px 11px;
  }

  body[data-page="home"] #research-toolkit .research-tool-card {
    min-height: 0;
    padding: 24px;
    border-radius: 8px;
  }

  body[data-page="home"] #research-toolkit .research-tool-card--action {
    padding: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-card--action .research-tool-head {
    padding: 22px 22px 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-card--action h3 {
    margin-right: 22px;
    margin-left: 22px;
  }

  body[data-page="home"] #research-toolkit .research-tool-card--action > .research-tool-action-intro,
  body[data-page="home"] #research-toolkit .research-tool-result,
  body[data-page="home"] #research-toolkit .research-tool-action-list {
    margin-right: 22px;
    margin-left: 22px;
  }

  body[data-page="home"] #research-toolkit .research-tool-card--action > .research-tool-boundary {
    margin-right: 22px;
    margin-left: 22px;
  }

  body[data-page="home"] #research-toolkit .research-tool-card--action > .research-tool-link {
    margin-right: 22px;
    margin-bottom: 22px;
    margin-left: 22px;
  }

  body[data-page="home"] #research-toolkit .research-tool-card h3 {
    max-width: calc(100% - 24px);
    font-size: 22px;
  }

  body[data-page="home"] #research-toolkit .research-tool-route {
    min-height: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-detail-list > div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  body[data-page="home"] #research-toolkit .research-tool-closure-bridge {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #research-toolkit .research-tool-closure-bridge span {
    grid-column: 1;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-summary,
  body[data-page="home"] #research-toolkit .research-tool-outcome-next {
    padding: 26px 22px;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-assets,
  body[data-page="home"] #research-toolkit .research-tool-outcome-steps {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-steps li {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-steps li:last-child {
    border-bottom: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-action-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-primary {
    width: 100%;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-support {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-outcome-support a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body[data-page="home"] #research-toolkit .research-tool-path {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #research-toolkit .research-tool-path a,
  body[data-page="home"] #research-toolkit .research-tool-path a:nth-child(even),
  body[data-page="home"] #research-toolkit .research-tool-path a:nth-last-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  body[data-page="home"] #research-toolkit .research-tool-path a:last-child {
    border-bottom: 0;
  }

  body[data-page="home"] #research-toolkit .research-tool-route {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
