:root {
  color-scheme: dark light;
  --scroll-depth: 0px;
  --bg: #071014;
  --surface: #0d1b21;
  --surface-2: #12252d;
  --light: #edf2f2;
  --light-surface: #ffffff;
  --text: #f3f7f8;
  --text-dark: #102126;
  --muted: #9cb0b5;
  --muted-dark: #53656a;
  --accent: #59cbd9;
  --accent-2: #9eead7;
  --accent-dark: #157c8a;
  --border: rgba(178, 222, 230, 0.17);
  --border-light: rgba(16, 33, 38, 0.14);
  --panel-tint: rgba(89, 203, 217, 0.1);
  --panel-tint-strong: rgba(89, 203, 217, 0.2);
  --pixel-color: rgba(89, 203, 217, 0.12);
  --display-glow: rgba(89, 203, 217, 0.28);
  --danger: #ffb4a8;
  --success: #9eead7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --header-h: 76px;
  --radius: 12px;
  --max: 1480px;
  --page-gutter: 64px;
}

select {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.025) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 68px),
    var(--bg);
  background-position: 0 calc(var(--scroll-depth) * -0.16), 0 calc(var(--scroll-depth) * -0.08), 0 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.theme-led {
  --accent: #ffd166;
  --accent-2: #ff6b8a;
  --accent-dark: #925f00;
  --panel-tint: rgba(255, 209, 102, 0.12);
  --panel-tint-strong: rgba(255, 107, 138, 0.2);
  --pixel-color: rgba(255, 209, 102, 0.1);
  --display-glow: rgba(255, 209, 102, 0.22);
}

.page-led-mled {
  --accent-2: #fff0be;
  --panel-tint-strong: rgba(255, 209, 102, 0.2);
}

.theme-system {
  --accent: #7fb3ff;
  --accent-2: #8ef0d4;
  --accent-dark: #315f9e;
  --panel-tint: rgba(127, 179, 255, 0.075);
  --panel-tint-strong: rgba(142, 240, 212, 0.12);
  --pixel-color: rgba(127, 179, 255, 0.08);
  --display-glow: rgba(127, 179, 255, 0.18);
}

.theme-mixed {
  --accent-2: #ffd166;
  --panel-tint-strong: rgba(255, 209, 102, 0.13);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

.reveal-ready [data-reveal] {
  opacity: 0.84;
  transform: translate3d(0, 10px, 0);
  transition: opacity 560ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-ready .media-panel:nth-child(2),
.reveal-ready .card:nth-child(2),
.reveal-ready .link-card:nth-child(2) {
  --reveal-delay: 70ms;
}

.reveal-ready .media-panel:nth-child(3),
.reveal-ready .card:nth-child(3),
.reveal-ready .link-card:nth-child(3) {
  --reveal-delay: 120ms;
}

.reveal-ready .media-panel:nth-child(4),
.reveal-ready .card:nth-child(4),
.reveal-ready .link-card:nth-child(4) {
  --reveal-delay: 170ms;
}

img,
svg {
  max-width: 100%;
}

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

a:not(.button):not(.brand):not(.nav-link):not(.footer-link):hover {
  color: var(--accent);
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(89, 203, 217, 0.8);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--accent);
  color: var(--text-dark);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(89, 203, 217, 0.08), transparent 28%, rgba(255, 255, 255, 0.03)),
    rgba(7, 16, 20, 0.86);
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 50px rgba(0, 0, 0, 0.18);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  font-weight: 760;
  letter-spacing: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo img {
  width: clamp(178px, 15vw, 236px);
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
  align-items: center;
  min-width: 0;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
  background:
    linear-gradient(135deg, var(--panel-tint), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-actions .button {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

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

.mobile-nav {
  border-top: 1px solid var(--border);
  background: rgba(7, 16, 20, 0.98);
}

.mobile-nav-inner {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 12px 0 18px;
  display: grid;
  gap: 6px;
}

.mobile-nav .nav-link {
  width: 100%;
  justify-content: space-between;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  padding: 11px 16px;
  border: 1px solid transparent;
  font-weight: 760;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #051014;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset, 0 12px 34px var(--display-glow);
}

.button-primary:hover {
  filter: saturate(112%) brightness(1.05);
}

.button-secondary {
  border-color: var(--border);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  border-color: rgba(89, 203, 217, 0.55);
  background: rgba(89, 203, 217, 0.1);
}

.button-light {
  border-color: var(--border);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
}

.button-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: 76px 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 64px),
    var(--bg);
  color: var(--text);
}

.section-light {
  background:
    radial-gradient(circle at 14% calc(0% + var(--scroll-depth) * 0.04), rgba(89, 203, 217, 0.09), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(158, 234, 215, 0.045), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #091418, #0d1d22);
  color: var(--text);
}

.section-surface {
  background:
    repeating-linear-gradient(0deg, rgba(89, 203, 217, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, var(--surface), var(--surface-2));
}

.section-media-showcase {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% calc(12% + var(--scroll-depth) * 0.06), rgba(89, 203, 217, 0.16), transparent 34%),
    radial-gradient(circle at 88% calc(72% - var(--scroll-depth) * 0.04), rgba(255, 209, 102, 0.08), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, #081318, #0f2229 58%, #081318);
  color: var(--text);
}

.theme-led .section-media-showcase {
  background:
    radial-gradient(circle at 12% calc(12% + var(--scroll-depth) * 0.06), rgba(255, 209, 102, 0.1), transparent 32%),
    radial-gradient(circle at 86% calc(74% - var(--scroll-depth) * 0.04), rgba(255, 107, 138, 0.1), transparent 30%),
    radial-gradient(circle, rgba(255, 209, 102, 0.065) 0 1px, transparent 1.7px) 0 calc(var(--scroll-depth) * -0.12) / 22px 22px,
    linear-gradient(180deg, #090f10, #171914 58%, #090f10);
}

.theme-led .section-light {
  background:
    radial-gradient(circle at 16% calc(10% + var(--scroll-depth) * 0.04), rgba(255, 209, 102, 0.08), transparent 32%),
    radial-gradient(circle at 86% 70%, rgba(255, 107, 138, 0.08), transparent 30%),
    radial-gradient(circle, rgba(255, 209, 102, 0.055) 0 1px, transparent 1.8px) 0 0 / 22px 22px,
    linear-gradient(180deg, #09100f, #121812);
}

.theme-led .section-surface {
  background:
    radial-gradient(circle, rgba(255, 209, 102, 0.07) 0 1px, transparent 1.7px) 0 0 / 22px 22px,
    linear-gradient(180deg, #101714, #15170f);
}

.theme-system .section-light {
  background:
    radial-gradient(circle at 14% calc(10% + var(--scroll-depth) * 0.04), rgba(127, 179, 255, 0.08), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #081219, #101923);
}

.theme-system .section-surface {
  background:
    repeating-linear-gradient(0deg, rgba(127, 179, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #0d1b21, #111923);
}

.section-tight {
  padding: 48px 0;
}

.section-center .section-inner {
  display: grid;
  justify-items: center;
}

.section-center .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-center .lead {
  margin-left: auto;
  margin-right: auto;
}

.section-center .cta-row {
  justify-content: center;
}

.section-center .support-line,
.section-center .fine-print {
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0 38px;
  background:
    linear-gradient(90deg, rgba(89, 203, 217, 0.12), transparent 32%, rgba(255, 209, 102, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(89, 203, 217, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #071014 0%, #0d1b21 62%, #071014 100%);
  background-position: 0 calc(var(--scroll-depth) * -0.08), 0 calc(var(--scroll-depth) * -0.12), 0 calc(var(--scroll-depth) * -0.18), 0 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 24%, rgba(255, 255, 255, 0.08) 25%, transparent 38%),
    linear-gradient(180deg, transparent 0 47%, rgba(89, 203, 217, 0.12) 48%, transparent 50%);
  opacity: 0.58;
  mix-blend-mode: screen;
}

.hero::after {
  display: none;
  width: min(39vw, 560px);
  height: min(55%, 340px);
  right: max(22px, calc((100vw - var(--max)) / 2 + 12px));
  top: 74px;
  border: 1px solid rgba(178, 222, 230, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.14) 0 1px, transparent 1px 18px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26), inset 0 0 34px rgba(89, 203, 217, 0.08);
  transform: perspective(900px) rotateY(-13deg) rotateX(5deg) translateY(10px);
  opacity: 0.42;
}

.theme-led .hero {
  background:
    radial-gradient(circle, rgba(255, 209, 102, 0.11) 0 1px, transparent 1.8px) 0 0 / 22px 22px,
    linear-gradient(110deg, rgba(255, 209, 102, 0.1), transparent 32%, rgba(255, 107, 138, 0.1)),
    linear-gradient(145deg, #070d10 0%, #141a18 62%, #071014 100%);
}

.theme-led .hero::after {
  background:
    radial-gradient(circle, rgba(255, 209, 102, 0.16) 0 1px, transparent 1.7px) 0 0 / 16px 16px,
    linear-gradient(135deg, rgba(255, 107, 138, 0.1), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 209, 102, 0.2);
}

.theme-system .hero {
  background:
    repeating-linear-gradient(90deg, rgba(127, 179, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(142, 240, 212, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #071014 0%, #101b24 68%, #071014 100%);
}

.theme-system .hero::after {
  background:
    linear-gradient(90deg, rgba(127, 179, 255, 0.1), transparent 33%, rgba(142, 240, 212, 0.075)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px);
  border-color: rgba(127, 179, 255, 0.2);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

/* Editorial pages use photography as a primary part of the composition. */
.hero-editorial .hero-grid,
.hero-media .hero-grid {
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(36px, 4.5vw, 76px);
  align-items: center;
}

.hero-editorial .visual-image:not(.media-vertical),
.hero-editorial .video-slot:not(.media-vertical),
.hero-media .visual-image:not(.media-vertical),
.hero-media .video-slot:not(.media-vertical) {
  aspect-ratio: 4 / 3;
  min-height: clamp(460px, 31vw, 610px);
}

.hero-editorial .visual-image img,
.hero-editorial .video-slot video,
.hero-media .visual-image img,
.hero-media .video-slot video {
  object-position: center;
}

/* Technical diagrams retain their complete frame and are never photo-cropped. */
.hero-technical .hero-system-map,
.hero-technical .visual-image img {
  object-fit: contain;
}

.hero-immersive {
  display: grid;
  min-height: min(820px, calc(100svh - var(--header-h)));
  padding: 0;
  background: #071014;
}

.hero-immersive .hero-grid {
  position: static;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(72px, 9vh, 118px);
}

.hero-immersive .hero-grid > div {
  position: relative;
  z-index: 3;
  width: min(650px, 48vw);
  padding: clamp(26px, 3vw, 44px) clamp(24px, 3.4vw, 52px);
  border-left: 2px solid rgba(89, 203, 217, 0.7);
  background: linear-gradient(90deg, rgba(3, 10, 13, 0.82), rgba(3, 10, 13, 0.42) 74%, transparent);
  backdrop-filter: blur(3px);
}

.hero-immersive .visual-image,
.hero-immersive .video-slot {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: inset(0);
  contain: paint;
}

.hero.hero-immersive .visual-image.media-vertical,
.hero.hero-immersive .video-slot.media-vertical {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
}

.hero-immersive .visual-image img,
.hero-immersive .video-slot video,
.hero-immersive .video-slot .video-slot-poster {
  width: 100%;
  height: 100%;
  transform: scale(1.025);
  object-fit: cover;
  object-position: center center;
  animation: hero-cinematic-drift 18s ease-out both;
}

.hero-immersive .visual-image::after,
.hero-immersive .video-slot::after {
  background:
    linear-gradient(90deg, rgba(3, 10, 13, 0.9) 0%, rgba(3, 10, 13, 0.66) 28%, rgba(3, 10, 13, 0.1) 62%, rgba(3, 10, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 10, 13, 0.15), transparent 42%, rgba(3, 10, 13, 0.4));
  box-shadow: none;
}

.hero-immersive .video-slot figcaption {
  display: none;
}

.hero-quality-validation .visual-image img {
  object-position: center center !important;
  transform: none;
  animation: none;
}

.hero-quality-validation .visual-image::after {
  background:
    linear-gradient(90deg, rgba(3, 10, 13, 0.94) 0%, rgba(3, 10, 13, 0.76) 34%, rgba(3, 10, 13, 0.24) 64%, rgba(3, 10, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 10, 13, 0.1), transparent 52%, rgba(3, 10, 13, 0.34));
}

@keyframes hero-cinematic-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.7%, 0, 0); }
}

.hero-grid-text {
  max-width: var(--max);
  grid-template-columns: minmax(0, 1fr);
}

.hero-grid-text > div {
  max-width: 920px;
}

.hero-text-only {
  padding: 48px 0 36px;
}

.hero-text-only h1,
.hero-text-only .lead {
  max-width: 860px;
}

.hero-text-only .lead {
  max-width: 58ch;
}

.hero .visual-placeholder {
  justify-self: end;
  max-width: min(100%, 600px);
  margin-top: clamp(34px, 5vw, 82px);
}

.hero-system-map {
  position: relative;
  isolation: isolate;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(127, 179, 255, 0.3);
  border-radius: 12px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(127, 179, 255, 0.11), rgba(255, 255, 255, 0.025) 58%, rgba(142, 240, 212, 0.065)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 24px),
    #0b171e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-system-map::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent 84%);
}

.hero-system-map-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-system-flow {
  display: grid;
}

.hero-system-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.hero-system-step + .hero-system-step {
  border-top: 1px solid rgba(178, 222, 230, 0.1);
}

.hero-system-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(142, 240, 212, 0.42);
  border-radius: 50%;
  color: var(--accent-2);
  background: rgba(89, 203, 217, 0.08);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-system-step strong,
.hero-system-step small {
  display: block;
}

.hero-system-step strong {
  color: var(--text);
  font-size: 0.96rem;
}

.hero-system-step small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.38;
}

.hero-system-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(178, 222, 230, 0.16);
}

.hero-system-support > div {
  min-width: 0;
}

.hero-system-support strong,
.hero-system-support span {
  display: block;
}

.hero-system-support strong {
  color: var(--text);
  font-size: 0.8rem;
}

.hero-system-support span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.38;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 20px var(--display-glow);
}

.theme-led .eyebrow,
.theme-led .kicker {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255, 209, 102, 0.38);
}

h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(2.15rem, 4.35vw, 3.9rem);
  max-width: 16ch;
  text-wrap: balance;
}

.page-hero h1 {
  max-width: 16ch;
}

h1::after {
  content: "";
  display: block;
  width: min(260px, 62%);
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  box-shadow: 0 0 24px var(--display-glow);
}

.theme-led h1 {
  text-shadow: 0 0 22px rgba(255, 209, 102, 0.18), 0 0 2px rgba(255, 255, 255, 0.18);
}

.theme-system h1 {
  text-shadow: 0 12px 38px rgba(127, 179, 255, 0.14);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
}

h4 {
  margin: 0;
  font-size: 1.02rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-light .lead,
.section-light .muted,
.section-light .card p,
.section-light .item-list,
.section-light .article-meta {
  color: var(--muted);
}

.hero-actions,
.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.hero-actions .button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.support-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.visual-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: var(--ratio, 16 / 9);
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 28px),
    #101b20;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.visual-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--ratio, 16 / 9);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #101b20;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 16, 20, 0.02), rgba(7, 16, 20, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.visual-image.media-vertical,
.visual-placeholder.media-vertical,
.video-slot.media-vertical,
.video-placeholder.media-vertical {
  max-width: min(100%, 430px);
  margin-inline: auto;
}

.split .visual-image.media-vertical,
.split .visual-placeholder.media-vertical,
.split .video-slot.media-vertical,
.split .video-placeholder.media-vertical {
  max-width: min(100%, 380px);
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--ratio, 16 / 9);
  border: 1px solid rgba(178, 222, 230, 0.2);
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.16), rgba(7, 16, 20, 0.76)),
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(89, 203, 217, 0.18), rgba(255, 209, 102, 0.08)),
    #0b1519;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 0 42px rgba(89, 203, 217, 0.08);
}

.video-slot {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: var(--ratio, 16 / 9);
  border: 1px solid rgba(178, 222, 230, 0.22);
  border-radius: 10px;
  background: #071014;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.video-slot-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 220ms ease;
}

.video-slot video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #071014;
}

.video-slot.has-video-poster video {
  opacity: 0;
  transition: opacity 220ms ease;
}

.video-slot.has-video-poster.is-video-ready video {
  opacity: 1;
}

.video-slot.has-video-poster.is-video-ready .video-slot-poster {
  opacity: 0;
}

.video-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 16, 20, 0.02) 52%, rgba(7, 16, 20, 0.72));
}

.video-slot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 4px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.35;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, transparent 0 48%, rgba(89, 203, 217, 0.14) 49%, transparent 51%);
  pointer-events: none;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.theme-led .video-placeholder {
  border-color: rgba(255, 209, 102, 0.24);
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.12), rgba(7, 16, 20, 0.74)),
    radial-gradient(circle, rgba(255, 209, 102, 0.2) 0 1px, transparent 1.8px) 0 0 / 16px 16px,
    radial-gradient(circle, rgba(255, 107, 138, 0.18) 0 1px, transparent 1.8px) 8px 8px / 16px 16px,
    #0d100d;
}

.section-light .video-placeholder {
  border-color: var(--border);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.video-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(89, 203, 217, 0.34);
  border-radius: 8px;
  padding: 4px 9px;
  color: var(--accent);
  background: rgba(7, 16, 20, 0.74);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(7, 16, 20, 0.62);
  box-shadow: 0 0 34px var(--display-glow);
}

.video-play::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  border-left: 18px solid var(--accent);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-play-control {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(7, 16, 20, 0.86);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.video-play-control:hover,
.video-play-control:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.video-play-control[hidden] {
  display: none;
}

.video-grid .video-placeholder,
.video-grid .video-slot {
  min-height: 220px;
}

.video-placeholder .visual-label {
  z-index: 2;
}

.media-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

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

.media-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-width: 0;
}

.media-panel-no-copy {
  grid-template-rows: auto;
  gap: 0;
}

.media-panel .video-slot,
.media-panel .video-placeholder,
.media-panel .visual-image {
  max-width: none;
  margin-inline: 0;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.media-showcase .video-slot,
.media-showcase .video-placeholder,
.media-showcase .visual-image {
  aspect-ratio: 16 / 9;
}

.media-board .video-slot,
.media-board .video-placeholder {
  aspect-ratio: 4 / 3;
}

.hero .video-slot {
  align-self: center;
  max-width: 100%;
  margin: 0;
}

.hero .video-slot.media-vertical,
.hero .visual-image.media-vertical,
.hero .visual-placeholder.media-vertical {
  width: min(100%, 520px);
  max-width: 520px;
  aspect-ratio: var(--ratio, 4 / 5);
  justify-self: center;
}

.media-showcase-led .video-slot,
.media-showcase-led .video-placeholder,
.media-showcase-led .visual-image {
  aspect-ratio: 3 / 4;
}

.media-board .video-slot video,
.media-showcase .video-slot video,
.media-showcase .visual-image img {
  object-fit: cover;
}

.media-board .media-panel-visual {
  background: #071014;
}

.media-board .media-panel-visual img {
  object-fit: contain;
  object-position: center center;
  background: #071014;
}

.media-panel-copy {
  display: grid;
  gap: 4px;
  align-content: start;
  min-height: 64px;
}

.media-panel-copy h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.media-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-light .media-panel-copy p {
  color: var(--muted);
}

.media-board {
  display: grid;
  gap: 30px;
}

.media-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.section-media-showcase .media-group {
  border-top-color: var(--border);
}

.media-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.media-group-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.media-group-head h3 {
  margin: 0;
  font-size: 1.18rem;
}

.media-group-head p {
  margin: 0;
  color: var(--muted);
}

.section-media-showcase .media-group-head p,
.section-media-showcase .media-panel-copy p {
  color: var(--muted);
}

.section-media-showcase .media-panel-copy h3,
.section-media-showcase .media-group-head h3 {
  color: var(--text);
}

.media-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.planning-media-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.planning-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(11, 27, 35, 0.78);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.planning-panel-featured {
  grid-row: 1 / span 2;
}

.planning-panel-visual {
  position: relative;
  overflow: hidden;
  background: #0b171d;
}

.planning-panel-visual .visual-image {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.planning-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), filter 180ms ease;
}

.planning-panel-featured .planning-panel-visual {
  min-height: clamp(360px, 40vw, 560px);
}

.planning-panel:not(.planning-panel-featured) {
  grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr);
  grid-template-rows: 1fr;
  gap: 0;
}

.planning-panel:not(.planning-panel-featured) .planning-panel-visual {
  min-height: 210px;
}

.planning-panel .media-panel-copy {
  min-height: 0;
  padding: 20px;
  align-content: center;
  gap: 8px;
}

.planning-panel-featured .media-panel-copy {
  padding: 22px 24px 24px;
}

.planning-panel-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 760;
}

.planning-panel:hover,
.planning-panel:focus-visible {
  border-color: rgba(89, 203, 217, 0.58);
  background: rgba(12, 31, 40, 0.94);
  transform: translateY(-2px);
}

.planning-panel:hover .planning-panel-visual img,
.planning-panel:focus-visible .planning-panel-visual img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

.planning-panel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .planning-media-grid {
    grid-template-rows: auto;
  }

  .planning-panel-featured {
    grid-row: auto;
  }

  .planning-panel-featured .planning-panel-visual {
    min-height: clamp(300px, 62vw, 460px);
  }
}

@media (max-width: 560px) {
  .planning-panel:not(.planning-panel-featured) {
    grid-template-columns: 1fr;
  }

  .planning-panel:not(.planning-panel-featured) .planning-panel-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .planning-panel .media-panel-copy,
  .planning-panel-featured .media-panel-copy {
    padding: 18px;
  }
}

.oled-architecture {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #071014;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.oled-architecture-kicker,
.oled-support-head span {
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oled-signal-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 20px 0 42px;
  padding: 0;
  list-style: none;
}

.oled-signal-flow li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(178, 222, 230, 0.3);
  border-radius: 10px;
  background: #10252d;
}

.oled-signal-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -23px;
  color: var(--accent);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.oled-signal-flow li > span {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 760;
}

.oled-signal-flow strong,
.oled-support-grid strong {
  color: var(--text);
  font-size: 1rem;
}

.oled-signal-flow small,
.oled-support-grid small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.oled-support-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.oled-support-head i {
  height: 1px;
  background: var(--border);
}

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

.oled-support-grid > div {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 18px;
  border-left: 2px solid var(--accent);
  background: rgba(16, 37, 45, 0.72);
}

.oled-architecture-release {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.oled-architecture-release strong {
  color: var(--text);
}

@media (max-width: 800px) {
  .validation-media-grid,
  .oled-signal-flow,
  .oled-support-grid {
    grid-template-columns: 1fr;
  }

  .oled-signal-flow {
    gap: 14px;
  }

  .oled-signal-flow li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 20px;
    bottom: -19px;
    transform: none;
  }

  .oled-architecture-release {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.card .visual-placeholder {
  margin-bottom: 16px;
}

.section-light .visual-placeholder {
  border-color: var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 28px),
    #101b20;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.section-light .visual-image {
  border-color: var(--border);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 222, 230, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.visual-placeholder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 45%, var(--accent-2));
  opacity: 0.7;
  pointer-events: none;
}

.theme-led .visual-placeholder {
  border-color: rgba(255, 209, 102, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 209, 102, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle, rgba(255, 209, 102, 0.11) 0 1px, transparent 1.8px) 0 0 / 18px 18px,
    #0d100d;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 209, 102, 0.055);
}

.theme-led .visual-placeholder::before {
  border-color: rgba(255, 209, 102, 0.18);
}

.theme-led .visual-label {
  border-color: rgba(255, 209, 102, 0.36);
  color: #fff7dc;
  background:
    linear-gradient(135deg, rgba(12, 13, 9, 0.9), rgba(26, 20, 9, 0.74));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24), 0 0 28px rgba(255, 209, 102, 0.12);
}

.theme-system .visual-placeholder {
  background:
    linear-gradient(145deg, rgba(127, 179, 255, 0.1), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(127, 179, 255, 0.07) 0 1px, transparent 1px 28px),
    #101923;
}

.visual-label {
  position: absolute;
  left: 14px;
  right: auto;
  bottom: 14px;
  max-width: min(420px, calc(100% - 28px));
  padding: 9px 11px;
  border: 1px solid rgba(89, 203, 217, 0.34);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.82), rgba(7, 16, 20, 0.58));
  backdrop-filter: blur(12px);
  display: grid;
  gap: 2px;
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.slot-kicker {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-led .slot-kicker {
  color: var(--accent-2);
}

.section-light .visual-label {
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.84), rgba(7, 16, 20, 0.62));
  color: var(--text);
  border-color: rgba(89, 203, 217, 0.34);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section:not(.section-center) .section-head {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section:not(.section-center) .section-head .lead {
  width: 100%;
  max-width: 1200px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid > *,
.split > * {
  min-width: 0;
}

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

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

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

.content-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.content-feature-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-feature-grid > * {
  min-width: 0;
}

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

.content-card-grid .card {
  min-height: 164px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.content-card-grid .card h3 {
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.content-card-grid .card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.48;
}

.content-feature-media {
  justify-self: stretch;
}

.content-feature-media .media-panel {
  gap: 10px;
}

.content-feature-media .media-panel .video-slot,
.content-feature-media .media-panel .video-placeholder {
  aspect-ratio: 4 / 3;
}

.content-feature-media .media-panel-copy {
  min-height: 0;
}

.content-support-card {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.content-input-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.content-input-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 11px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025) 54%, var(--panel-tint));
  font-weight: 680;
}

.fit-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.fit-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 52%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.fit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.85;
}

.fit-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.fit-card .item-list {
  color: var(--muted);
  align-self: start;
}

.fit-index {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit-rule {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(178, 222, 230, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.fit-rule strong {
  color: var(--text);
}

.fit-rule span {
  color: var(--muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.fit-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section-wizard {
  overflow: hidden;
}

.wizard {
  display: grid;
  gap: 10px;
}

.wizard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wizard-tab {
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
  font-weight: 760;
}

.wizard-tab[aria-selected="true"] {
  color: var(--text-dark);
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px var(--display-glow);
}

.wizard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.wizard-card,
.wizard-result {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 54%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.wizard-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(148px, 0.1fr);
  align-items: end;
  gap: 12px;
  padding: 16px;
}

.wizard-step {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  border: 0;
  padding: 0;
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step legend {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 820;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.wizard-options-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-system-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.wizard-system-field {
  min-width: 0;
  display: grid;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.wizard-system-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wizard-system-field select {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  border: 1px solid rgba(178, 222, 230, 0.2);
  border-radius: 8px;
  padding: 6px 30px 6px 9px;
  color: var(--text);
  background-color: #102028;
  font: inherit;
}

.wizard-option {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.wizard-options-compact .wizard-option {
  min-height: 0;
}

.wizard-option input {
  position: absolute;
  inset: 13px auto auto 13px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.wizard-option span,
.wizard-option small {
  display: block;
  padding-left: 28px;
}

.wizard-option span {
  font-weight: 800;
  line-height: 1.25;
}

.wizard-option small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.wizard-option:has(input:checked) {
  border-color: var(--accent);
  background:
    linear-gradient(145deg, rgba(89, 203, 217, 0.14), rgba(255, 255, 255, 0.045));
  box-shadow: 0 0 32px rgba(89, 203, 217, 0.12);
}

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

.wizard-disclaimer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.wizard-result-actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  align-self: end;
}

.wizard-result-actions .button {
  width: 100%;
  min-height: 60px;
  padding-inline: 12px;
  text-align: center;
}

.wizard-field {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.wizard-field input {
  margin-top: 10px;
}

.wizard-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: end;
  gap: 10px;
  height: var(--wizard-nav-height, 86px);
  margin-top: 0;
}

.wizard-nav .button {
  width: 100%;
  min-height: 0;
  flex: 1 1 0;
  padding: 12px 16px;
}

.wizard-nav .button[disabled] {
  display: none;
}

.wizard-result {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
  align-content: start;
  gap: 10px 24px;
  padding: 20px 24px;
}

.wizard-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wizard-result-header,
.wizard-result > h3,
.wizard-result > p,
.wizard-panel-set {
  grid-column: 1;
}

.wizard-result-grid {
  grid-column: 2;
  grid-row: 1 / span 6;
}

.wizard-result .item-list,
.wizard-result > .button {
  grid-column: 1;
}

.wizard-result > .button {
  justify-self: start;
  align-self: start;
}

.wizard-result:focus {
  outline: 3px solid rgba(89, 203, 217, 0.7);
  outline-offset: 4px;
}

.wizard-result-kicker {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wizard-panel-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(89, 203, 217, 0.28);
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--accent-2);
  background: rgba(89, 203, 217, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.wizard-panel-set {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.wizard-panel-chip {
  color: var(--muted);
  border-color: rgba(178, 222, 230, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.wizard-panel-chip.is-selected {
  color: var(--text-dark);
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.wizard-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 8px 14px;
  height: 100%;
  margin: 0;
}

.wizard-result-grid div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-result-grid div:nth-child(3),
.wizard-result-grid div:nth-child(4) {
  grid-column: 1 / -1;
}

.wizard-result-grid dt {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wizard-result-grid dd {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(221, 234, 235, 0.9);
}

.wizard-result .item-list {
  align-content: start;
  color: var(--muted);
  margin: 2px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.wizard-result .item-list::before {
  content: "Next actions";
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wizard-result-led {
  border-color: rgba(255, 209, 102, 0.28);
}

.wizard-result-led .wizard-result-kicker,
.wizard-result-led .wizard-result-grid dt {
  color: var(--accent-2);
}

.wizard-result-lcd {
  border-color: rgba(127, 179, 255, 0.28);
}

.wizard-result-compare {
  border-color: rgba(178, 222, 230, 0.28);
}

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

.layer-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 250px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  color: var(--text);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 52%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.045) 0 1px, transparent 1px 22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

button.layer-card {
  cursor: pointer;
}

.layer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 60%, var(--accent-2));
  opacity: 0.8;
}

.layer-card > * {
  position: relative;
  z-index: 1;
}

.layer-number {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.layer-card h3 {
  font-size: 1.12rem;
  line-height: 1.16;
}

.layer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.layer-note {
  border-color: rgba(89, 203, 217, 0.42);
  background:
    linear-gradient(145deg, rgba(89, 203, 217, 0.14), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(255, 209, 102, 0.08), transparent 58%);
}

.system-backbone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 58%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 54px rgba(0, 0, 0, 0.14);
}

.backbone-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.backbone-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 21px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(178, 222, 230, 0.28), var(--accent-2));
  opacity: 0.72;
}

.backbone-node {
  position: relative;
  min-width: 0;
  padding: 0 clamp(14px, 2vw, 26px);
}

.backbone-node + .backbone-node {
  border-left: 1px solid rgba(178, 222, 230, 0.12);
}

.backbone-index {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 30px var(--display-glow);
}

.backbone-node h3,
.backbone-support-item h3 {
  font-size: 1.04rem;
  line-height: 1.25;
}

.backbone-node p,
.backbone-support-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.backbone-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(24px, 4vw, 38px);
  border-top: 1px solid rgba(178, 222, 230, 0.18);
}

.backbone-support-item {
  min-width: 0;
  padding: 20px clamp(14px, 2vw, 26px) 0;
}

.backbone-routes {
  display: grid;
  grid-template-columns: 0.72fr repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 4vw, 38px);
  border-top: 1px solid rgba(178, 222, 230, 0.18);
}

.backbone-route-intro,
.backbone-route {
  min-width: 0;
  padding: 22px clamp(14px, 2vw, 26px) 0;
}

.backbone-route-intro {
  display: grid;
  align-content: start;
  gap: 8px;
}

.backbone-route-intro span,
.architecture-route-index {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.backbone-route-intro strong {
  font-size: 1rem;
  line-height: 1.35;
}

.backbone-route {
  display: grid;
  align-content: start;
  color: inherit;
  text-decoration: none;
  border-left: 1px solid rgba(178, 222, 230, 0.12);
}

.backbone-route p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

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

.architecture-route-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
}

.architecture-route-card > p {
  color: var(--muted);
}

.architecture-route-card dl {
  display: grid;
  align-content: start;
  margin: 18px 0 22px;
}

.architecture-route-card dl div {
  padding: 12px 0;
  border-top: 1px solid rgba(178, 222, 230, 0.15);
}

.architecture-route-card dt {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.architecture-route-card dd {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.backbone-support-item + .backbone-support-item {
  border-left: 1px solid rgba(178, 222, 230, 0.12);
}

.card,
.link-card,
.modal-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 52%, var(--panel-tint));
  backdrop-filter: blur(16px) saturate(125%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.section-light .card,
.section-light .link-card {
  border-color: var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 52%, var(--panel-tint));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.card,
.link-card {
  min-height: 100%;
  padding: 20px;
  --float: 0px;
  transform: translate3d(0, var(--float), 0);
}

.card > *,
.link-card > *,
.modal-card > * {
  position: relative;
  z-index: 1;
}

.card .visual-image,
.card .visual-placeholder {
  width: 100%;
  max-width: none;
  margin: 0 0 16px;
  aspect-ratio: 16 / 10;
}

.card .visual-image.media-vertical,
.card .visual-placeholder.media-vertical {
  max-width: none;
  margin-inline: 0;
}

.card .visual-image img {
  object-fit: cover;
}

.card .visual-placeholder .visual-label {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.card::before,
.link-card::before,
.modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--accent), transparent 36%, var(--accent-2) 68%, transparent);
  opacity: 0.36;
  height: 2px;
  z-index: 0;
}

.card::after,
.link-card::after {
  content: none;
}

.link-card {
  display: grid;
  align-content: start;
  gap: 12px;
  transform: translate3d(0, var(--float), 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

button.link-card {
  width: 100%;
  color: inherit;
  text-align: left;
}

.link-card:hover {
  transform: translate3d(0, calc(var(--float) - 4px), 0);
  border-color: var(--accent);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035) 50%, var(--panel-tint-strong));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 60px rgba(0, 0, 0, 0.2), 0 0 34px var(--display-glow);
}

.section-light .link-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035) 50%, var(--panel-tint-strong));
  border-color: var(--accent);
}

.card-display-oled {
  border-color: rgba(89, 203, 217, 0.28);
}

.card-display-oled::after {
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(255, 255, 255, 0.11), transparent 38%),
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.05) 0 1px, transparent 1px 18px);
}

.card-display-led {
  border-color: rgba(255, 209, 102, 0.32);
}

.card-display-led::after {
  background:
    radial-gradient(circle, rgba(255, 209, 102, 0.08) 0 1px, transparent 1.7px) 0 0 / 16px 16px,
    radial-gradient(circle, rgba(255, 107, 138, 0.08) 0 1px, transparent 1.7px) 8px 8px / 16px 16px;
}

.card-display-lcd {
  border-color: rgba(127, 179, 255, 0.2);
}

.card-display-lcd::after {
  background:
    repeating-linear-gradient(90deg, rgba(127, 179, 255, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.card p,
.link-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.card h3,
.link-card h3 {
  margin-bottom: 8px;
}

.card-cta {
  color: var(--accent);
  font-weight: 760;
  margin-top: 4px;
  text-shadow: 0 0 16px var(--display-glow);
}

.section-light .card-cta {
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.home-led-feature {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.home-led-feature > div:last-child {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 14px;
  height: clamp(420px, 29vw, 460px);
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 2vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-led-scope-kicker {
  margin: 0;
}

.home-led-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  min-height: 0;
  gap: 0;
  border-block: 1px solid rgba(178, 222, 230, 0.14);
}

.home-led-scope-grid > div {
  padding: 9px 12px 9px 0;
  border-bottom: 1px solid rgba(178, 222, 230, 0.1);
}

.home-led-scope-grid > div:nth-child(even) {
  padding-inline: 12px 0;
  border-left: 1px solid rgba(178, 222, 230, 0.1);
}

.home-led-scope-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-led-scope-grid h3 {
  margin: 0 0 5px;
  font-size: clamp(0.94rem, 0.98vw, 1.06rem);
  line-height: 1.2;
}

.home-led-scope-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.84vw, 0.92rem);
  line-height: 1.35;
}

.home-led-feature > div:last-child .cta-row {
  align-self: start;
  margin-top: 0;
}

.home-led-feature > div:last-child .button {
  width: 100%;
  min-height: 48px;
}

.home-led-feature .media-panel {
  max-width: none;
}

.home-led-feature .video-slot {
  height: clamp(420px, 29vw, 460px);
  aspect-ratio: auto;
}

.home-led-feature .video-slot video,
.home-led-feature .video-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-led-spec {
  position: static;
  display: block;
}

.theme-led .section-led-specification {
  position: relative;
  isolation: isolate;
  min-height: min(860px, calc(100svh - var(--header-h)));
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 110px);
  background: #071014 url("/images/v12-mall-led-column-close-poster.jpg") center 42% / cover no-repeat;
}

.section-led-specification .section-inner {
  position: static;
}

.section-led-specification .section-head {
  position: relative;
  z-index: 3;
  width: min(820px, 54%);
}

.section-led-specification .section-head h2 {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75);
}

.split-led-spec-factors {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  width: min(680px, 47%);
  min-height: 520px;
  margin-top: 34px;
  padding: clamp(22px, 3vw, 38px);
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(4, 10, 12, 0.9), rgba(4, 10, 12, 0.58) 78%, transparent);
  backdrop-filter: blur(3px);
}

.split-led-spec-factors .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin: 0;
}

.split-led-spec .media-panel {
  position: static;
  height: 100%;
}

.split-led-spec-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-led-spec .video-slot,
.split-led-spec .video-slot.media-vertical {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.split-led-spec .video-slot video,
.split-led-spec .video-slot-poster {
  object-fit: cover;
  object-position: center 45%;
}

.split-led-spec .video-slot::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 8, 10, 0.92) 0%, rgba(3, 8, 10, 0.72) 38%, rgba(3, 8, 10, 0.16) 72%, rgba(3, 8, 10, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 8, 10, 0.22), transparent 42%, rgba(3, 8, 10, 0.7));
}

.split-led-spec .video-slot figcaption {
  display: none;
}

.split-led-spec .media-panel-copy {
  position: absolute;
  z-index: 4;
  right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  bottom: clamp(42px, 6vw, 76px);
  width: min(560px, 40vw);
  padding: 18px 20px;
  border-left: 2px solid var(--accent-2);
  background: rgba(3, 8, 10, 0.72);
  backdrop-filter: blur(5px);
}

.quote-split {
  align-items: start;
}

.quote-split .check-list {
  display: grid;
  gap: 9px 24px;
}

.quote-split .visual-placeholder {
  align-self: start;
  justify-self: end;
  max-width: 560px;
}

.mechanics-section {
  padding: 64px 0;
}

.mechanics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.mechanics-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.mechanics-copy .lead {
  margin: 0;
  max-width: 44ch;
}

.mechanics-copy .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-width: 620px;
}

.mechanics-media .media-panel {
  width: 100%;
}

.mechanics-media .video-slot,
.mechanics-media .video-placeholder {
  aspect-ratio: 16 / 9;
}

.mechanics-media .media-panel-copy {
  min-height: 0;
}

.compact-feature-section {
  padding: 62px 0;
}

.compact-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.compact-feature-copy {
  display: grid;
  gap: 18px;
}

.compact-feature-copy .lead {
  margin: 0;
  max-width: 48ch;
}

.compact-feature-panel {
  display: grid;
  gap: 18px;
  max-width: 640px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 54%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 24px);
}

.compact-feature-panel .callout {
  width: fit-content;
  max-width: 100%;
}

.compact-feature-panel .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}

.led-requirement-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.led-requirement-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.led-requirement-card p {
  margin: 0;
}

.led-requirement-card .check-list {
  display: grid;
  gap: 7px;
  margin-top: 2px;
}

.led-requirement-card .check-list li {
  font-size: 0.96rem;
}

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

.system-detail-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  display: grid;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 54%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.system-detail-card-text {
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}

.system-detail-card p {
  margin: 0;
  color: var(--muted);
}

.system-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.8;
}

.system-detail-kicker {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.system-detail-card .check-list {
  display: grid;
  gap: 8px;
}

.system-detail-visual {
  aspect-ratio: 16 / 10;
  max-width: none;
  margin: 0;
  border-radius: 8px;
}

.system-detail-visual .visual-label {
  display: none;
}

.system-detail-visual.video-slot figcaption {
  display: none;
}

.compact-deliverable {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

.production-visual-stack {
  display: grid;
  gap: 16px;
}

.production-visual-stack .visual-image {
  aspect-ratio: 16 / 10;
  max-width: none;
  margin: 0;
  border-radius: 8px;
}

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

.compact-deliverable .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.package-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 54%, var(--panel-tint));
}

.package-list,
.deliverables-grid {
  display: grid;
  gap: 10px;
}

.package-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 680;
}

.package-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--display-glow);
}

.deliverables-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 680;
}

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

.deliverables-grid strong {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.requirements-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.requirements-layout-single {
  grid-template-columns: 1fr;
}

.requirements-panel {
  display: grid;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 52%, var(--panel-tint)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.requirements-panel-wide {
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(26px, 3vw, 38px);
}

.requirements-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.requirements-panel h3 {
  max-width: 20ch;
}

.requirements-copy p:not(.kicker) {
  max-width: 30ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.requirements-panel .kicker {
  margin-bottom: 8px;
}

.requirements-checks .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  align-content: start;
}

.requirements-panel .cta-row {
  margin-top: 4px;
}

.oled-rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.oled-rules-layout > * {
  min-width: 0;
}

.oled-rules-panel {
  display: grid;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022) 54%, var(--panel-tint));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.rule-group {
  display: grid;
  gap: 11px;
}

.rule-group h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.oled-rules-panel .check-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.oled-rules-panel .cta-row {
  margin-top: 2px;
}

.oled-rules-visual {
  align-self: stretch;
  display: grid;
}

.oled-rules-visual .media-panel {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.oled-rules-visual .video-slot {
  min-height: 420px;
  height: 100%;
  aspect-ratio: auto;
}

.oled-rules-visual .media-panel-copy {
  min-height: 0;
}

@media (min-width: 900px) {
  .quote-split .check-list,
  .quote-split .portable-checklist-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }
}

.feature-list,
.item-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.feature-list li,
.check-list li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  margin-top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--display-glow);
}

.section-light .feature-list li::before,
.section-light .check-list li::before {
  background: var(--accent);
}

.portable-checklist {
  display: grid;
  gap: 14px;
}

.article-body > h2 + .portable-checklist {
  margin-top: clamp(22px, 2.4vw, 32px);
}

.portable-checklist-head {
  display: grid;
  gap: 12px;
}

.portable-checklist-head h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

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

.portable-checklist-item label {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.3;
  cursor: pointer;
}

.portable-checklist-item input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.portable-check-box {
  position: relative;
  width: 21px;
  height: 21px;
  margin-top: 0.18em;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: rgba(7, 16, 20, 0.48);
  box-shadow: 0 0 16px var(--display-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.portable-check-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #061014;
  border-bottom: 2px solid #061014;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.portable-checklist-item input:checked + .portable-check-box {
  border-color: var(--accent-2);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px var(--display-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.portable-checklist-item input:checked + .portable-check-box::after {
  transform: rotate(-45deg) scale(1);
}

.portable-checklist-item input:focus-visible + .portable-check-box {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.portable-checklist-item input:checked ~ .portable-check-text {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(178, 222, 230, 0.58);
}

.portable-checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.portable-checklist-status {
  min-height: 1.2em;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.oled-rfq-layout {
  display: grid;
  gap: 24px;
  max-width: 1080px;
}

@media (min-width: 760px) {
  .oled-rfq-layout .portable-checklist-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(36px, 7vw, 92px);
  }
}

.item-list {
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.item-list li {
  padding-left: 0;
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 18px),
    #0d1b21;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 50px rgba(0, 0, 0, 0.16);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  color: var(--text);
  background: rgba(7, 16, 20, 0.88);
  table-layout: fixed;
}

.spec-table .col-size {
  width: 9%;
}

.spec-table .col-resolution {
  width: 17%;
}

.spec-table .col-transparency {
  width: 34%;
}

.spec-table .col-luminance {
  width: 27%;
}

.spec-table .col-refresh {
  width: 13%;
}

.spec-table th,
.spec-table td {
  padding: 16px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.spec-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
}

.spec-table td {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.38;
}

.spec-table td strong {
  color: var(--text);
  font-weight: 800;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(89, 203, 217, 0.28);
  border-radius: 8px;
  padding: 3px 8px;
  color: var(--accent);
  background:
    linear-gradient(135deg, rgba(89, 203, 217, 0.12), rgba(255, 255, 255, 0.035));
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
}

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

.led-route-card {
  display: grid;
  gap: 13px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(12, 18, 18, 0.96), rgba(13, 20, 19, 0.9) 58%, rgba(25, 22, 14, 0.78)),
    radial-gradient(circle at 88% 12%, rgba(255, 209, 102, 0.08), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 20px 52px rgba(0, 0, 0, 0.2);
}

.led-route-card::after {
  content: none;
}

.led-product-visual {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  margin: 1px 0 3px;
  aspect-ratio: 4 / 3;
  border-color: rgba(190, 208, 214, 0.28);
  border-radius: 12px;
  background: linear-gradient(145deg, #f6f8f8, #e7ecee);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.card-display-led .led-product-visual {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.led-product-visual img {
  object-fit: contain;
  box-sizing: border-box;
  padding: 10px;
}

.card-display-led .led-product-visual img {
  padding: 0;
}

.led-product-visual::after {
  background: linear-gradient(180deg, transparent 72%, rgba(6, 15, 18, 0.08));
}

.card-display-led .led-product-visual::after {
  content: none;
}

.card-display-led .led-product-visual-photo {
  border: 1px solid rgba(133, 159, 168, 0.24);
  background: #071419;
}

.card-display-led .led-product-visual-photo img {
  object-fit: cover;
}

.led-route-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.route-index,
.route-series,
.route-specs dt {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-index {
  color: var(--accent-2);
}

.route-series {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 209, 102, 0.36);
  border-radius: 8px;
  padding: 4px 8px;
  color: #fff4ca;
  background: rgba(255, 209, 102, 0.1);
}

.route-specs {
  display: grid;
  gap: 9px;
  margin: 0;
}

.route-specs div {
  display: grid;
  gap: 3px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.route-specs dt {
  color: var(--accent-2);
}

.route-specs dd {
  margin: 0;
  color: rgba(232, 241, 242, 0.9);
  line-height: 1.42;
}

.led-route-card > p {
  color: rgba(208, 224, 226, 0.86);
}

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

.spec-route-card {
  background:
    linear-gradient(145deg, rgba(13, 31, 36, 0.92), rgba(9, 21, 25, 0.78) 58%, rgba(18, 44, 48, 0.54)),
    radial-gradient(circle at 88% 12%, rgba(89, 203, 217, 0.1), transparent 34%);
}

.spec-route-card::after {
  content: none;
}

.spec-route-card .route-index,
.spec-route-card .route-specs dt {
  color: var(--accent);
}

.spec-route-card .route-series {
  color: var(--accent-2);
  border-color: rgba(89, 203, 217, 0.34);
  background: rgba(89, 203, 217, 0.08);
}

.spec-route-card .led-product-visual {
  border: 0;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
  background: transparent;
  box-shadow: none;
}

.spec-route-card .led-product-visual img {
  padding: 0;
  object-fit: contain;
}

.spec-route-card .led-product-visual-lg77 img {
  padding: 8px 8px 16px;
}

.section-mobile-transparent-oled {
  overflow: clip;
  background:
    radial-gradient(circle at 14% 24%, rgba(89, 203, 217, 0.16), transparent 31%),
    radial-gradient(circle at 88% 72%, rgba(127, 179, 255, 0.09), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 62px),
    linear-gradient(180deg, #0a181d, #0c2026);
}

.mobile-oled-product,
.oled-video-wall-product {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.mobile-oled-product {
  display: grid;
  grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  gap: clamp(40px, 4vw, 64px);
  align-items: start;
}

.mobile-oled-product-media {
  display: grid;
  justify-items: start;
}

.featured-oled-gallery {
  width: min(100%, 410px);
  max-width: 410px;
  border: 1px solid rgba(178, 222, 230, 0.24);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(1, 7, 9, 0.48), 0 0 42px rgba(89, 203, 217, 0.09);
}

.mobile-oled-product-video.video-slot.media-vertical {
  width: min(100%, 410px);
  max-width: 410px;
  max-height: 720px;
  margin: 0;
  border-color: rgba(89, 203, 217, 0.32);
  box-shadow: 0 26px 70px rgba(1, 7, 9, 0.48), 0 0 42px rgba(89, 203, 217, 0.09);
}

.mobile-oled-product-copy {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-width: 0;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(178, 222, 230, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(7, 20, 24, 0.91), rgba(10, 29, 34, 0.8));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.product-passport-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.product-passport-header .product-availability,
.product-passport-header .product-reference {
  margin: 0;
}

.product-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 14px rgba(158, 234, 215, 0.64);
}

.product-reference {
  margin: 0 0 6px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-oled-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(178, 222, 230, 0.16);
  border-left: 1px solid rgba(178, 222, 230, 0.16);
}

.mobile-oled-specs div {
  min-width: 0;
  padding: 10px 12px;
  border-right: 1px solid rgba(178, 222, 230, 0.16);
  border-bottom: 1px solid rgba(178, 222, 230, 0.16);
}

.mobile-oled-specs dt {
  margin-bottom: 4px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mobile-oled-specs dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}

.mobile-oled-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin-top: 16px;
}

.mobile-oled-capabilities > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 9px 0;
  border-top: 1px solid rgba(178, 222, 230, 0.12);
}

.mobile-oled-capabilities strong {
  color: var(--text);
}

.mobile-oled-capabilities span,
.mobile-oled-scope {
  color: var(--muted);
  line-height: 1.42;
}

.mobile-oled-scope {
  margin: 8px 0 0;
  font-size: 0.84rem;
}

.mobile-oled-project-notes {
  margin-top: 12px;
  border-top: 1px solid rgba(178, 222, 230, 0.12);
}

.mobile-oled-project-notes summary {
  padding-top: 11px;
  color: var(--accent);
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-oled-project-notes[open] summary {
  margin-bottom: 8px;
}

.mobile-oled-project-notes .mobile-oled-capabilities,
.mobile-oled-project-notes .showcase-oled-capabilities {
  margin-top: 0;
}

.mobile-oled-product-copy .cta-row {
  margin-top: 16px;
}

.section-transparent-oled-showcase {
  background:
    radial-gradient(circle at 16% 18%, rgba(126, 231, 218, 0.08), transparent 30%),
    linear-gradient(180deg, #09171c, #0b1d22);
}

.showcase-oled-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 16px 0 0;
}

.showcase-oled-capabilities li {
  color: rgba(232, 241, 242, 0.92);
  font-size: 0.88rem;
  line-height: 1.4;
}

.section-oled-video-wall {
  overflow: clip;
  background:
    radial-gradient(circle at 84% 18%, rgba(127, 179, 255, 0.12), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(89, 203, 217, 0.12), transparent 28%),
    linear-gradient(180deg, #08171c, #0a2026);
}

.oled-video-wall-product {
  display: grid;
  grid-template-columns: minmax(620px, 1.15fr) minmax(560px, 0.85fr);
  gap: clamp(40px, 4vw, 64px);
  align-items: start;
}

.oled-video-wall-media .media-panel {
  overflow: hidden;
  border-color: rgba(89, 203, 217, 0.3);
  box-shadow: 0 28px 74px rgba(1, 7, 9, 0.48), 0 0 48px rgba(89, 203, 217, 0.08);
}

.oled-video-wall-media .video-slot {
  aspect-ratio: 16 / 9;
}

.oled-video-wall-copy .mobile-oled-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oled-video-wall-copy .mobile-oled-specs dd {
  font-size: 0.82rem;
}

.section-oled-product-catalog {
  background:
    radial-gradient(circle at 90% 8%, rgba(89, 203, 217, 0.1), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #091418, #0b1b20);
}

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

.oled-product-config-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(178, 222, 230, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(8, 23, 28, 0.96), rgba(10, 29, 34, 0.82));
  box-shadow: 0 16px 44px rgba(1, 7, 9, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.oled-product-config-card-horizontal {
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
}

.oled-product-config-card-horizontal .oled-product-config-visual {
  align-self: center;
}

.oled-product-gallery {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-self: start;
  overflow: hidden;
  border-right: 1px solid rgba(178, 222, 230, 0.12);
  background: #071014;
}

.oled-product-gallery-viewport {
  min-width: 0;
  min-height: 0;
  aspect-ratio: var(--oled-gallery-ratio, 4 / 5);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.oled-product-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.oled-product-gallery-viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

.oled-product-gallery-track {
  height: 100%;
  display: flex;
}

.oled-product-gallery-slide {
  min-width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background:
    radial-gradient(circle at 50% 46%, rgba(89, 203, 217, 0.06), transparent 52%),
    #071014;
}

.oled-product-gallery-slide picture,
.oled-product-gallery-slide img,
.oled-product-gallery-slide video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: #071014;
}

.oled-product-gallery-slide.is-contain img,
.oled-product-gallery-slide.is-contain video {
  object-fit: contain;
  object-position: center center;
  padding: clamp(12px, 1.5vw, 22px);
}

.oled-product-gallery-slide.is-cover img,
.oled-product-gallery-slide.is-cover video {
  object-fit: cover;
  object-position: center center;
}

.oled-product-gallery-video {
  color-scheme: dark;
}

.oled-product-gallery-video[data-oled-gallery-autoplay] {
  pointer-events: none;
  -webkit-appearance: none;
}

.oled-product-gallery-video[data-oled-gallery-autoplay]::-webkit-media-controls,
.oled-product-gallery-video[data-oled-gallery-autoplay]::-webkit-media-controls-enclosure,
.oled-product-gallery-video[data-oled-gallery-autoplay]::-webkit-media-controls-panel,
.oled-product-gallery-video[data-oled-gallery-autoplay]::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.oled-product-gallery-footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border-top: 1px solid rgba(178, 222, 230, 0.12);
  background: rgba(9, 25, 30, 0.98);
}

.oled-product-gallery-label {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.oled-product-gallery-controls,
.oled-product-gallery-dots {
  display: flex;
  align-items: center;
}

.oled-product-gallery-controls {
  gap: 9px;
}

.oled-product-gallery-dots {
  gap: 7px;
}

.oled-product-gallery-arrow,
.oled-product-gallery-dots button {
  appearance: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 222, 230, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.oled-product-gallery-arrow {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 1rem;
}

.oled-product-gallery-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
}

.oled-product-gallery-dots button[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--accent);
}

.oled-product-gallery-arrow:hover:not(:disabled),
.oled-product-gallery-arrow:focus-visible,
.oled-product-gallery-dots button:hover,
.oled-product-gallery-dots button:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.oled-product-gallery-arrow:active,
.oled-product-gallery-dots button:active {
  transform: translateY(1px);
}

.oled-product-gallery-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.spec-route-context {
  display: grid;
  gap: 10px;
}

.spec-route-context p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.spec-route-context strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.oled-product-config-visual,
.oled-product-config-technical {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  align-self: start;
  border: 0;
  border-right: 1px solid rgba(178, 222, 230, 0.12);
  border-radius: 0;
  background: #071014;
}

.oled-product-config-visual img {
  object-fit: contain;
  padding: 0;
  background: #071014;
}

.oled-product-config-visual.media-horizontal img {
  object-fit: contain;
}

.oled-product-config-technical {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 20px;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.68)),
    radial-gradient(circle at 50% 30%, rgba(89, 203, 217, 0.18), transparent 38%),
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.08) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(89, 203, 217, 0.08) 0 1px, transparent 1px 22px),
    #071014;
}

.oled-product-schematic {
  position: relative;
  place-self: center;
  width: min(72%, 250px);
  aspect-ratio: 3 / 4;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.oled-product-schematic-screen {
  position: absolute;
  inset: 7% 17% 30%;
  border: 2px solid rgba(126, 231, 218, 0.82);
  background:
    linear-gradient(145deg, rgba(89, 203, 217, 0.22), rgba(89, 203, 217, 0.02) 44%, rgba(126, 231, 218, 0.16)),
    repeating-linear-gradient(90deg, rgba(126, 231, 218, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: inset 0 0 28px rgba(89, 203, 217, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.oled-product-schematic-screen::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transform: skewY(-19deg);
}

.oled-product-schematic-post {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 4px;
  height: 23%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(126, 231, 218, 0.9), rgba(89, 203, 217, 0.3));
}

.oled-product-schematic-base {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 7%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 231, 218, 0.9) 16% 84%, transparent);
}

.oled-product-technical-caption {
  display: grid;
  gap: 8px;
}

.oled-product-config-technical[data-model="VIT-TOLED-55-HA"] .oled-product-schematic-screen {
  inset: 10% 7% 43%;
}

.oled-product-config-technical[data-model="VIT-TOLED-55-SS"] .oled-product-schematic-screen {
  inset: 8% 9% 41%;
  transform: skewY(-5deg);
}

.oled-product-config-technical[data-model="VIT-TOLED-77-M"] .oled-product-schematic {
  width: min(84%, 300px);
  aspect-ratio: 4 / 3;
}

.oled-product-config-technical[data-model="VIT-TOLED-77-M"] .oled-product-schematic-screen {
  inset: 15% 2% 28%;
}

.oled-product-config-technical[data-model="VIT-TOLED-77-M"] .oled-product-schematic-post {
  display: none;
}

.oled-product-config-technical[data-model="VIT-TOLED-77-M"] .oled-product-schematic-base {
  left: 2%;
  right: 2%;
  bottom: 25%;
}

.oled-product-config-technical span,
.oled-product-config-top span {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oled-product-config-technical strong {
  max-width: 14ch;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.oled-product-config-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 30px);
}

.oled-product-config-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 12px;
}

.oled-product-config-top b {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.oled-product-config-copy h3 {
  max-width: 20ch;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.oled-product-config-copy > p {
  margin: 12px 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.oled-product-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(178, 222, 230, 0.13);
  border-left: 1px solid rgba(178, 222, 230, 0.13);
}

.oled-product-quick-specs div {
  min-width: 0;
  padding: 11px 12px;
  border-right: 1px solid rgba(178, 222, 230, 0.13);
  border-bottom: 1px solid rgba(178, 222, 230, 0.13);
}

.oled-product-quick-specs dt,
.oled-product-details dt {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oled-product-quick-specs dd,
.oled-product-details dd {
  margin: 4px 0 0;
  color: rgba(232, 241, 242, 0.9);
  line-height: 1.38;
}

.oled-product-details {
  margin-top: 16px;
  border-top: 1px solid rgba(178, 222, 230, 0.13);
  border-bottom: 1px solid rgba(178, 222, 230, 0.13);
}

.oled-product-details summary {
  padding: 13px 0;
  color: var(--text);
  font-weight: 750;
  cursor: pointer;
}

.oled-product-details dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 16px;
}

.oled-product-details dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
}

.oled-product-card-actions {
  margin-top: auto;
  padding-top: 18px;
}

.oled-product-card-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.section-oled-product-catalog .fine-print {
  margin-top: 18px;
}

.section-led-reference .fine-print {
  margin-top: 18px;
}

.section-transparent-led-products {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(89, 203, 217, 0.11), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 209, 102, 0.08), transparent 30%),
    linear-gradient(180deg, #e9eff0, #dce5e7);
}

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

.transparent-led-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(122, 156, 166, 0.28);
  border-radius: 14px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(7, 20, 24, 0.98), rgba(11, 29, 34, 0.96)),
    #08171b;
  box-shadow: 0 22px 54px rgba(16, 33, 38, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.transparent-led-product-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-bottom: 1px solid rgba(178, 222, 230, 0.14);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(89, 203, 217, 0.13), transparent 45%),
    repeating-linear-gradient(90deg, rgba(89, 203, 217, 0.045) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(89, 203, 217, 0.045) 0 1px, transparent 1px 24px),
    #050c0f;
}

.transparent-led-product-visual img {
  object-fit: contain;
  padding: 14px;
}

.transparent-led-product-copy {
  flex: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 30px);
}

.transparent-led-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.transparent-led-product-top span,
.transparent-led-product-top b,
.transparent-led-product-specs dt,
.transparent-led-product-fit dt {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.transparent-led-product-top span {
  max-width: 22ch;
  color: var(--accent-2);
}

.transparent-led-product-top b {
  flex: 0 0 auto;
  color: #fff0b0;
}

.transparent-led-product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  text-wrap: balance;
}

.transparent-led-product-card h3 + p {
  margin: 14px 0 20px;
  color: rgba(205, 221, 224, 0.82);
  line-height: 1.6;
}

.transparent-led-product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(178, 222, 230, 0.14);
  border-left: 1px solid rgba(178, 222, 230, 0.14);
}

.transparent-led-product-specs div {
  min-width: 0;
  padding: 11px 12px;
  border-right: 1px solid rgba(178, 222, 230, 0.14);
  border-bottom: 1px solid rgba(178, 222, 230, 0.14);
}

.transparent-led-product-specs dt,
.transparent-led-product-fit dt {
  color: var(--accent);
}

.transparent-led-product-specs dd,
.transparent-led-product-fit dd {
  margin: 5px 0 0;
  color: rgba(235, 244, 245, 0.9);
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.transparent-led-product-fit {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
}

.transparent-led-product-fit div {
  padding-top: 12px;
  border-top: 1px solid rgba(178, 222, 230, 0.12);
}

.transparent-led-product-actions {
  margin-top: auto;
  padding-top: 22px;
}

.transparent-led-product-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.section-transparent-led-products .fine-print {
  margin-top: 18px;
  color: #456068;
}

@media (max-width: 1050px) {
  .transparent-led-commercial-grid {
    grid-template-columns: 1fr;
  }

  .transparent-led-product-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }

  .transparent-led-product-visual {
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
    border-right: 1px solid rgba(178, 222, 230, 0.14);
    border-bottom: 0;
  }
}

.section-transparent-led-routes {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 209, 102, 0.08), transparent 27%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, #081114, #0b171a);
}

.section-led-decision {
  padding-block: clamp(48px, 6vw, 82px);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 209, 102, 0.09), transparent 26%),
    linear-gradient(180deg, #091316, #0b171a);
}

.section-led-decision .section-head {
  max-width: 760px;
}

.led-decision-board {
  display: grid;
  gap: 18px;
}

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

.led-decision-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 31, 34, 0.98), rgba(11, 21, 23, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.led-decision-feature:hover {
  color: inherit !important;
  transform: translateY(-3px);
  border-color: rgba(255, 209, 102, 0.48);
}

.led-decision-feature:active {
  transform: translateY(-1px);
}

.led-decision-visual {
  height: 100%;
  min-height: 270px;
  aspect-ratio: auto;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #0a1113;
}

.led-decision-visual img {
  object-fit: contain;
  padding: 12px;
}

.led-decision-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(22px, 3vw, 38px);
}

.led-decision-copy strong {
  color: var(--text);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.led-decision-copy span {
  color: rgba(216, 230, 232, 0.82);
}

.led-decision-copy b {
  color: var(--accent);
  font-size: 0.92rem;
}

.led-decision-rail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  border: 1px solid rgba(255, 209, 102, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.led-decision-rail a {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  transition: background-color 180ms ease;
}

.led-decision-rail a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.led-decision-rail a:hover {
  color: inherit !important;
  background: rgba(255, 209, 102, 0.07);
}

.led-decision-rail strong {
  color: var(--text);
}

.led-decision-rail span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-led-mled .led-route-top {
  justify-content: flex-start;
}

.transparent-led-selector {
  display: grid;
  gap: 42px;
}

.transparent-led-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 209, 102, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(11, 21, 23, 0.96), rgba(18, 25, 24, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 24px 58px rgba(0, 0, 0, 0.2);
}

.transparent-led-opening-media {
  min-width: 0;
  display: grid;
  align-items: stretch;
}

.transparent-led-feature-visual {
  width: 100%;
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.13);
  background: #0b1214;
}

.transparent-route-visual {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.transparent-led-feature-visual {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.transparent-led-feature-visual img {
  object-fit: contain;
  padding: 10px;
}

.transparent-route-visual img {
  object-fit: contain;
  padding: 0;
}

.transparent-led-opening-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(10px, 2vw, 28px);
}

.transparent-led-opening-copy h3 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.transparent-led-opening-copy > p {
  margin: 0;
  max-width: 64ch;
  color: rgba(222, 234, 235, 0.84);
}

.transparent-led-decision-lens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 10px 0 0;
}

.transparent-led-decision-lens div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.transparent-led-decision-lens dt,
.transparent-route-copy dt {
  color: var(--accent);
  font-weight: 760;
}

.transparent-led-decision-lens dd,
.transparent-route-copy dd {
  margin: 4px 0 0;
  color: rgba(205, 220, 222, 0.82);
  line-height: 1.45;
}

.transparent-led-route-groups {
  display: grid;
  gap: 44px;
}

.transparent-route-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 76px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 209, 102, 0.24);
}

.transparent-route-group-head {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.transparent-route-group-head h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.transparent-route-group-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.transparent-route-list {
  display: grid;
  gap: 0;
}

.transparent-route-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 28px;
}

.transparent-route-item + .transparent-route-item {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.transparent-route-item:not(:has(.transparent-route-visual)) {
  grid-template-columns: 1fr;
}

.transparent-route-visual {
  min-height: 180px;
  align-self: start;
}

.transparent-route-copy h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.transparent-route-copy > p {
  margin: 8px 0 0;
  color: rgba(216, 230, 232, 0.86);
}

.transparent-route-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}

.transparent-route-copy .transparent-led-spec-highlights {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 209, 102, 0.2);
  border-left: 1px solid rgba(255, 209, 102, 0.2);
}

.transparent-route-copy .transparent-led-spec-highlights div {
  padding: 11px 12px;
  border-top: 0;
  border-right: 1px solid rgba(255, 209, 102, 0.2);
  border-bottom: 1px solid rgba(255, 209, 102, 0.2);
}

.transparent-route-copy .transparent-led-spec-highlights dt {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.transparent-route-copy .transparent-led-spec-highlights dd {
  color: var(--text);
  font-weight: 750;
}

.transparent-route-copy > dl:not(.transparent-led-spec-highlights) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transparent-route-copy dl div {
  min-width: 0;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-route-status {
  font-size: 0.82rem;
  color: rgba(172, 190, 193, 0.78) !important;
}

.supplier-catalog-boundary {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(255, 209, 102, 0.25);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 209, 102, 0.055);
}

.supplier-catalog-boundary strong {
  color: var(--accent);
  font-size: 1.04rem;
}

.supplier-catalog-boundary p {
  margin: 0;
  max-width: 86ch;
  color: rgba(218, 231, 232, 0.86);
}

.transparent-sample-gate {
  counter-reset: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.transparent-sample-gate li {
  min-width: 0;
  padding: 24px 22px 16px;
}

.transparent-sample-gate li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.transparent-sample-gate h3 {
  margin: 0;
  color: #f3f7f8;
  font-size: 1.12rem;
  font-weight: 760;
  line-height: 1.22;
}

.transparent-sample-gate p {
  margin: 10px 0 0;
  color: #b7c6c9;
  font-size: 0.96rem;
  line-height: 1.58;
}

.section-led-applications {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 209, 102, 0.055), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, #081113, #0b171a);
}

.led-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.led-application-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  min-width: 0;
  border-color: rgba(255, 209, 102, 0.24);
  background:
    linear-gradient(145deg, rgba(14, 22, 21, 0.94), rgba(14, 20, 18, 0.86) 54%, rgba(38, 31, 16, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.18);
}

.led-application-card > p {
  margin: 0;
  color: rgba(221, 234, 235, 0.9);
}

.led-application-card .item-list {
  display: grid;
  gap: 7px;
  color: rgba(221, 234, 235, 0.82);
}

.led-application-card::after {
  content: none;
}

.led-group-kicker {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.diagram-wrap {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px);
  padding: 18px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 54px rgba(0, 0, 0, 0.14);
}

.diagram-wrap-compact {
  padding: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.diagram-wrap-architecture {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.diagram-wrap-architecture::before {
  content: none;
}

.section-system-architecture .section-head {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.section-technology-fit .section-head {
  width: 100%;
  max-width: none;
}

.section-wide-head .section-head {
  width: 100%;
  max-width: none;
}

.section-process-line {
  padding: 58px 0;
}

.section-light .diagram-wrap {
  border-color: var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px);
}

.diagram-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 20%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.system-flow__kicker {
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-flow__path {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 12px;
}

.system-flow__node {
  min-width: 0;
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13, 32, 39, 0.88);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  column-gap: 12px;
  row-gap: 8px;
}

.system-flow__index {
  grid-row: 1 / span 2;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.system-flow__node strong {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.22;
}

.system-flow__node > span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.system-flow__support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 12px;
}

.system-flow__support-card {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(8, 22, 28, 0.72);
}

.system-flow__support-card strong,
.system-flow__support-card span {
  display: block;
}

.system-flow__support-card span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.diagram {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.diagram-mobile {
  display: none;
}

@media (max-width: 640px) {
  .diagram-wrap:has(.system-flow) {
    padding: 14px;
  }

  .system-flow {
    gap: 14px;
  }

  .system-flow__path,
  .system-flow__support {
    grid-template-columns: 1fr;
  }

  .system-flow__node {
    min-height: 0;
    padding: 16px;
  }

  .diagram-wrap:has(.diagram-mobile) {
    padding: 14px;
  }

  .diagram-wrap:has(.diagram-mobile) .diagram-desktop {
    display: none;
  }

  .diagram-mobile {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
  }

  .diagram-mobile-kicker {
    margin: 0;
    color: var(--accent);
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .diagram-mobile-flow,
  .diagram-mobile-grid {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .diagram-mobile-flow {
    counter-reset: diagram-step;
  }

  .diagram-mobile-flow li,
  .diagram-mobile-grid > div {
    position: relative;
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 14px 14px 14px 46px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(13, 32, 39, 0.88);
  }

  .diagram-mobile-flow li {
    counter-increment: diagram-step;
  }

  .diagram-mobile-flow li::before {
    content: counter(diagram-step, decimal-leading-zero);
    position: absolute;
    top: 15px;
    left: 13px;
    color: var(--accent);
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 760;
  }

  .diagram-mobile-grid > div {
    padding-left: 14px;
  }

  .diagram-mobile strong {
    font-size: 0.94rem;
  }

  .diagram-mobile span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}

.oled-system-architecture {
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 1100px) {
  .section:not(.section-center) .section-head:has(.lead) {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .section:not(.section-center) .section-head:has(.lead) h2,
  .section:not(.section-center) .section-head:has(.lead) .lead {
    margin-top: 0;
    align-self: start;
  }

  .section:not(.section-center) .section-head:has(.lead) .lead {
    max-width: 1200px;
    padding: 0;
  }

  .section.section-system-architecture .section-head:has(.lead) {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .section.section-system-architecture .section-head .lead {
    padding: 0;
  }

  .section-technology-fit .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .section-technology-fit .section-head .lead {
    max-width: 1200px;
    padding: 0;
  }

  .section-wide-head .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .section-wide-head .section-head .lead {
    max-width: 1200px;
    padding: 0;
  }
}

.diagram text {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.dark-svg .box {
  fill: #10252d;
  stroke: rgba(178, 222, 230, 0.3);
}

.dark-svg text {
  fill: #f3f7f8;
}

.light-svg .box {
  fill: #10252d;
  stroke: rgba(178, 222, 230, 0.34);
}

.light-svg > rect {
  fill: #0c1b21;
}

.light-svg circle,
.light-svg g > rect:first-child,
.light-svg > rect:not(:first-of-type):not(.box) {
  fill: #10252d;
  stroke: rgba(178, 222, 230, 0.3);
}

.light-svg text {
  fill: var(--text);
}

.section-surface .light-svg > rect,
.section-light .light-svg > rect {
  fill: #0c1b21;
}

.section-surface .light-svg circle,
.section-surface .light-svg .box,
.section-light .light-svg circle,
.section-light .light-svg .box {
  fill: #10252d;
  stroke: rgba(178, 222, 230, 0.34);
}

.section-surface .light-svg path,
.section-light .light-svg path {
  stroke: var(--accent);
}

.section-surface .light-svg marker path,
.section-light .light-svg marker path {
  fill: var(--accent);
  stroke: none;
}

.section-surface .light-svg text,
.section-light .light-svg text {
  fill: var(--text);
}

.theme-led .dark-svg .box {
  fill: #201a0e;
  stroke: rgba(255, 209, 102, 0.36);
}

.theme-led .light-svg .box {
  fill: #201a0e;
  stroke: rgba(255, 209, 102, 0.36);
}

.theme-system .dark-svg .box {
  fill: #101d28;
  stroke: rgba(127, 179, 255, 0.34);
}

.theme-system .light-svg .box {
  fill: #101d28;
  stroke: rgba(127, 179, 255, 0.34);
}

.theme-led .light-svg text,
.theme-system .light-svg text {
  fill: var(--text);
}

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

.field-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.whatsapp-launcher {
  position: fixed;
  right: 96px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #071410;
  background: linear-gradient(135deg, #70dfaa, #8ae6bb);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font-weight: 760;
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.whatsapp-launcher:hover,
.whatsapp-launcher:focus-visible {
  filter: saturate(108%) brightness(1.04);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .whatsapp-launcher {
    right: 90px;
    bottom: 16px;
    min-height: 44px;
    padding-inline: 11px;
    border-radius: 8px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1360px) {
  .whatsapp-launcher {
    padding-inline: 11px;
    font-size: 0.86rem;
  }
}

.whatsapp-launcher span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #128c4a;
  font-size: 0.68rem;
  font-weight: 800;
}

.hubspot-chat-fallback {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #06212a;
  background: #59cbd9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, filter 180ms ease;
}

.hubspot-chat-fallback:hover,
.hubspot-chat-fallback:focus-visible {
  background: #7fdbE5;
}

.hubspot-chat-fallback[hidden] {
  display: none;
}

.hubspot-chat-fallback[aria-busy="true"] {
  cursor: wait;
  filter: saturate(82%) brightness(0.97);
}

body:not(.hubspot-chat-active) #hubspot-messages-iframe-container,
body:not(.hubspot-chat-active) #hubspot-conversations-iframe {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.hubspot-chat-active #hubspot-messages-iframe-container,
body.hubspot-chat-active #hubspot-conversations-iframe {
  height: calc(100vh - 110px) !important;
  max-height: calc(100vh - 110px) !important;
}

body.hubspot-chat-active #hubspot-messages-iframe-container {
  top: 32px !important;
  bottom: auto !important;
  animation: hubspot-chat-reveal 160ms ease-out both;
}

@keyframes hubspot-chat-reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hubspot-chat-active #hubspot-messages-iframe-container {
    animation: none;
  }
}

.hubspot-chat-fallback-panel {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 47;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(112, 207, 224, 0.36);
  border-radius: 12px;
  color: var(--text, #f4f8fa);
  background: rgba(9, 24, 31, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
}

.hubspot-chat-fallback-panel[hidden] {
  display: none;
}

.hubspot-chat-fallback-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hubspot-chat-fallback-head strong {
  font-size: 0.98rem;
}

.hubspot-chat-fallback-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.hubspot-chat-fallback-panel p {
  margin: 12px 0 14px;
  color: var(--muted, #9eb0b8);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hubspot-chat-fallback-actions {
  display: grid;
  gap: 8px;
}

.hubspot-chat-fallback-actions a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(112, 207, 224, 0.28);
  border-radius: 8px;
  color: #071d25;
  background: linear-gradient(100deg, #78baff, #7ce2c5);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 700px) {
  .hubspot-chat-fallback {
    right: 16px;
    bottom: 16px;
  }

  .hubspot-chat-fallback-panel {
    right: 16px;
    bottom: 72px;
  }
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.consent {
  color: inherit;
  font-weight: 700;
}

.field input:not([type="checkbox"]),
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.35;
  cursor: pointer;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-top: 0.18em;
  accent-color: var(--accent);
  flex: none;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b84232;
}

.field-help,
.field-error {
  color: var(--muted);
  font-size: 0.86rem;
}

.field-error {
  color: #963321;
  font-weight: 700;
}

.project-note,
.callout {
  border: 1px solid rgba(89, 203, 217, 0.35);
  border-radius: 12px;
  padding: 15px 16px;
  background: rgba(89, 203, 217, 0.08);
}

.section-light .project-note,
.section-light .callout {
  border-color: rgba(89, 203, 217, 0.35);
  background: rgba(89, 203, 217, 0.08);
}

.form-status {
  min-height: 44px;
  margin-top: 16px;
  border-radius: 8px;
  padding: 10px 12px;
}

.form-status--error {
  color: #7a2517;
  background: #ffe5df;
}

.form-status--success {
  color: #063b2f;
  background: #dff9ef;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.58);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  width: min(720px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 24px;
  background: #102129;
  box-shadow: var(--shadow);
}

.modal-close {
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
}

.cookie-settings-modal {
  background: rgba(2, 8, 10, 0.76);
  backdrop-filter: blur(8px);
}

.cookie-settings-card {
  width: min(660px, 100%);
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--text);
  background: #0c181c;
}

.cookie-settings-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.cookie-settings-kicker {
  margin: 0 0 9px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-settings-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.cookie-settings-head h2:focus {
  outline: 0;
}

.cookie-settings-intro {
  max-width: 54ch;
  margin: 18px 0 24px;
  color: #b2c0c5;
  line-height: 1.6;
}

.cookie-settings-list {
  border-top: 1px solid var(--border);
}

.cookie-setting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 17px 2px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

label.cookie-setting-row {
  cursor: pointer;
}

.cookie-setting-row > span:first-child {
  display: grid;
  gap: 5px;
}

.cookie-setting-row strong {
  font-size: 1rem;
}

.cookie-setting-row small {
  max-width: 46ch;
  color: #aab9be;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-setting-state {
  color: #c6d2d6;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-setting-row input[type="checkbox"] {
  position: relative;
  width: 46px;
  height: 26px;
  margin: 0;
  appearance: none;
  border: 1px solid #597078;
  border-radius: 999px;
  background: #26383e;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.cookie-setting-row input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d8e3e6;
  transition: transform 150ms ease;
}

.cookie-setting-row input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent-dark);
}

.cookie-setting-row input[type="checkbox"]:checked::before {
  transform: translateX(20px);
}

.cookie-setting-row input[type="checkbox"]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, white);
  outline-offset: 3px;
}

.cookie-settings-actions {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.cookie-settings-actions .button {
  width: 100%;
}

.cookie-settings-footnote {
  margin: 17px 0 0;
  color: #aab9be;
  font-size: 0.84rem;
  line-height: 1.5;
}

.cookie-settings-footnote a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.cookie-settings-card .form-status {
  margin-top: 0;
}

.legal-cookie-settings {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.legal-cookie-settings .button {
  margin-top: 8px;
}

.rfq-drawer {
  place-items: stretch end;
  padding: 0;
  background: rgba(2, 8, 10, 0.72);
  backdrop-filter: blur(8px);
}

.rfq-drawer-panel {
  width: min(760px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  border-color: rgba(255, 255, 255, 0.14);
  padding: 0;
  background:
    radial-gradient(circle at 88% 4%, var(--panel-tint), transparent 26%),
    #0c181c;
  animation: rfq-drawer-enter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rfq-drawer-enter {
  from { opacity: 0; transform: translate3d(28px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.rfq-drawer-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 32px 34px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.rfq-drawer-head-copy {
  max-width: 610px;
}

.rfq-drawer-context {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.rfq-drawer-head h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.55rem);
  font-weight: 680;
  letter-spacing: -0.028em;
  line-height: 1.04;
  text-wrap: balance;
}

.rfq-drawer-head h2:focus {
  outline: 0;
}

.rfq-drawer-head p:last-child {
  max-width: 52ch;
  margin: 14px 0 0;
  color: #aab9be;
  font-size: 0.98rem;
  line-height: 1.55;
}

.rfq-drawer-close {
  float: none;
  flex: none;
}

.rfq-drawer-body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px 30px 0;
}

.rfq-drawer-form {
  position: relative;
  display: grid;
  gap: 22px;
}

.rfq-drawer-form .project-note {
  margin: 0;
  border-color: var(--border);
  background: var(--panel-tint);
}

.rfq-drawer .field-error {
  color: #ffb4a8;
}

.rfq-drawer-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.rfq-drawer-details summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 760;
  cursor: pointer;
}

.rfq-drawer-details[open] summary {
  border-bottom: 1px solid var(--border);
}

.rfq-drawer-details .form-grid {
  padding: 18px;
}

.rfq-drawer-consent {
  padding-inline: 2px;
}

.rfq-drawer-actions {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  margin-inline: -30px;
  padding: 18px 30px max(18px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 21, 25, 0.96);
  backdrop-filter: blur(18px);
}

.rfq-drawer-secondary-links {
  display: grid;
  gap: 8px;
}

.rfq-drawer-secondary-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rfq-drawer-actions .form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.rfq-drawer-actions .form-status:not(:empty) {
  min-height: 44px;
  padding: 10px 12px;
}

.filter-status {
  margin: -24px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .cookie-settings-modal {
    place-items: end stretch;
    padding: 0;
  }

  .cookie-settings-card {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-inline: 0;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    padding: 22px 18px max(20px, env(safe-area-inset-bottom));
  }

  .cookie-settings-intro {
    margin-bottom: 18px;
  }

  .cookie-setting-row {
    gap: 16px;
    min-height: 82px;
  }

  .cookie-settings-actions {
    grid-template-columns: 1fr;
  }

  .rfq-drawer-panel {
    border-radius: 0;
    border-inline: 0;
  }

  .rfq-drawer-head {
    gap: 14px;
    padding: 20px 18px 18px;
  }

  .rfq-drawer-head h2 {
    max-width: 11ch;
    font-size: clamp(1.8rem, 8vw, 2.1rem);
  }

  .rfq-drawer-body {
    padding: 18px 18px 0;
  }

  .rfq-drawer-actions {
    grid-template-columns: 1fr;
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .rfq-drawer-actions .button {
    width: 100%;
  }

  .rfq-drawer-actions .form-status {
    grid-column: 1;
  }

  .filter-status {
    margin-top: -14px;
  }
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  padding-block: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
}

.article-body {
  width: min(960px, 100%);
  margin-inline: auto;
}

.article-body > .article-lead-media {
  margin-bottom: clamp(30px, 4vw, 48px);
  border-radius: 18px;
}

.article-data-panel {
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(16, 31, 39, 0.98), rgba(7, 17, 22, 0.98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.article-data-panel > .eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
}

.article-table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.article-data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
}

.article-data-table th,
.article-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(178, 222, 230, 0.13);
  vertical-align: top;
}

.article-data-table thead th {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-data-table tbody th {
  width: 19%;
  color: var(--text);
  font-weight: 760;
}

.article-data-table tbody td {
  color: var(--muted);
}

.article-data-table tbody tr:last-child > * {
  border-bottom: 0;
}

.article-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.article-lead-grid > * {
  min-width: 0;
  height: 100%;
}

.insight-groups {
  display: grid;
  gap: clamp(42px, 6vw, 72px);
}

.insight-group > .eyebrow {
  margin-bottom: 16px;
}

.insight-group .grid-1 {
  grid-template-columns: minmax(0, 1fr);
}

.insight-group .grid-1 .card {
  max-width: 760px;
}

.article-body p {
  color: var(--muted);
  margin: 18px 0;
}

.article-body h2 {
  margin-top: 36px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.article-body > h2 + .grid,
.article-body > h2 + .portable-checklist,
.article-body > h2 + .article-application-grid,
.article-body > h2 + .faq-list,
.article-body > h2 + .article-reference-list {
  margin-top: clamp(24px, 3vw, 36px);
}

.article-application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin: 24px 0 40px;
}

.article-application-grid .media-panel {
  overflow: hidden;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025) 58%, var(--panel-tint));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.article-application-grid .visual-image {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.article-application-grid .visual-image img {
  object-fit: cover;
}

.article-application-grid .media-panel-copy {
  min-height: 0;
  padding: 20px;
}

.article-application-grid .media-panel-copy h3 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.article-conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: 44px 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(89, 203, 217, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 24%, rgba(158, 234, 215, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(89, 203, 217, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 56px rgba(0, 0, 0, 0.18);
}

.article-conversion-panel .eyebrow,
.article-conversion-panel h2,
.article-conversion-panel p {
  margin: 0;
}

.article-conversion-panel h2 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

.article-conversion-panel p:last-child {
  margin-top: 12px;
}

.article-conversion-panel .button {
  white-space: nowrap;
}

.article-faq-list {
  margin-top: 22px;
}

.article-source-note {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 22px 0 30px;
  padding: 12px 14px;
  border: 1px solid rgba(89, 203, 217, 0.22);
  border-radius: 8px;
  background: rgba(89, 203, 217, 0.055);
  font-size: 0.84rem;
}

.article-source-note span {
  color: var(--text);
  font-weight: 750;
}

.article-source-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-reference-note {
  margin-top: 36px;
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  background: rgba(89, 203, 217, 0.07);
}

.article-reference-note p {
  margin: 6px 0 0;
}

.article-reference-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-reference-list a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-reference-list li > span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-reference-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-direct-answer .section-head {
  max-width: 1120px;
}

.section-direct-answer .lead {
  max-width: 980px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1080px;
}

.buyer-faq {
  max-width: 1180px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 4.5vw, 52px) 0;
  border-top: 1px solid rgba(178, 222, 230, 0.18);
}

.faq-group:first-child {
  padding-top: 8px;
  border-top: 0;
}

.faq-group-copy {
  align-self: start;
}

.faq-group-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.15;
}

.faq-group-copy p {
  max-width: 34ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-group .faq-list {
  max-width: none;
}

.faq-item {
  overflow: clip;
  border: 1px solid rgba(178, 222, 230, 0.18);
  border-radius: 14px;
  background: rgba(8, 20, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-item[open] {
  border-color: rgba(112, 213, 224, 0.34);
  background: rgba(8, 22, 27, 0.92);
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 760;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(178, 222, 230, 0.1);
}

.faq-answer p {
  max-width: 920px;
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-answer .faq-answer-lead {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  .faq-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-group-copy p {
    max-width: 60ch;
  }
}

@media (max-width: 520px) {
  .faq-item summary {
    padding: 18px 48px 18px 18px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #061014;
  color: var(--text);
}

.footer-inner {
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(150px, 0.65fr) minmax(180px, 0.8fr) minmax(280px, 1fr);
  gap: 26px;
}

.footer-bottom {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(178, 222, 230, 0.13);
  padding: 16px 0 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo img {
  width: 192px;
  height: auto;
  display: block;
}

.footer-link {
  display: block;
  color: var(--muted);
  margin: 7px 0;
}

.footer-link:hover {
  color: var(--text);
}

.footer-contact-nowrap,
.footer-contact-nowrap > span {
  white-space: nowrap;
}

.footer-contact-nowrap {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  max-width: 100%;
}

.footer-contact-nowrap > span {
  flex: 0 0 auto;
}

.footer-contact-column {
  min-width: 0;
}

@media (max-width: 1100px) {
  .led-decision-feature {
    grid-template-columns: 1fr;
  }

  .led-decision-visual {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

@media (max-width: 520px) {
  .footer-contact-nowrap {
    display: grid;
    gap: 2px;
  }
}

.footer-legal-title {
  margin-top: 18px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.contact-channel {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

a.contact-channel:hover,
a.contact-channel:focus-visible {
  border-color: var(--accent);
}

.contact-channel-label {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channel strong {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  overflow-wrap: anywhere;
}

.contact-channel > span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    min-height: 0;
  }
}

.fine-print {
  color: var(--muted);
  font-size: 0.88rem;
}


.app-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-weight: 700;
}

.section-applications-board .filter-button {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.filter-button[aria-pressed="true"] {
  background:
    linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  border-color: var(--accent-dark);
  box-shadow: 0 10px 26px var(--display-glow);
}

.section-applications-board .filter-button[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #071014;
  border-color: var(--accent);
}

.application-card {
  display: flex;
  flex-direction: column;
}

.application-card h3 {
  margin-bottom: 0;
}

.application-card p {
  font-size: 0.95rem;
  line-height: 1.46;
}

.application-card .card-cta {
  margin-top: auto;
}

.application-card .video-slot,
.application-card .visual-image,
.application-card .visual-placeholder {
  width: 100%;
  max-width: none;
  margin: 0 0 4px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.application-card .video-slot.media-vertical,
.application-card .video-placeholder.media-vertical,
.application-card .visual-image.media-vertical,
.application-card .visual-placeholder.media-vertical {
  max-width: none;
  margin-inline: 0;
}

.application-card .video-slot,
.application-card .video-slot video,
.application-card .visual-image img {
  pointer-events: none;
}

.application-card .video-slot figcaption {
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-size: 0.78rem;
}

.application-card .slot-kicker {
  font-size: 0.62rem;
}

.application-card-text-only {
  padding-top: 24px;
}

.application-card[hidden] {
  display: none;
}

.application-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.application-category-card {
  display: flex;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
}

.application-category-card .application-category-media {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  box-shadow: none;
}

.application-category-card .application-category-media img {
  transition: transform 450ms ease;
}

.application-category-card:hover .application-category-media img,
.application-category-card:focus-visible .application-category-media img {
  transform: scale(1.035);
}

.application-category-copy {
  display: flex;
  flex: 1;
  padding: clamp(20px, 2.4vw, 30px);
  flex-direction: column;
}

.application-technology-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.application-technology-badge,
.application-route-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(104, 214, 222, 0.26);
  border-radius: 7px;
  background: rgba(84, 210, 221, 0.08);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-technology-badge.application-technology-direct-view-led,
.application-technology-card-direct-view-led .application-route-label {
  border-color: rgba(127, 179, 255, 0.28);
  background: rgba(127, 179, 255, 0.09);
  color: #9fc7ff;
}

.application-technology-badge.application-technology-oem,
.application-technology-card-oem .application-route-label {
  border-color: rgba(255, 215, 111, 0.3);
  background: rgba(255, 215, 111, 0.08);
  color: #f2d685;
}

.application-route-grid,
.application-technology-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.application-route-card,
.application-technology-card {
  min-height: 100%;
}

.application-route-card h3,
.application-technology-card h3 {
  margin: 16px 0 10px;
}

.application-category-count,
.application-project-index {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-category-card h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.application-category-card p {
  margin-top: 0;
  color: var(--muted);
}

.application-category-card .card-cta {
  margin-top: auto;
  padding-top: 10px;
}

.application-carousel {
  position: relative;
}

.application-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -72px 0 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 22, 28, 0.72);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.65rem 1rem;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(84, 210, 221, 0.13);
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 1.25rem;
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.carousel-button:hover:not(:disabled),
.carousel-button:focus-visible {
  border-color: var(--accent);
  background: rgba(89, 203, 217, 0.14);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.application-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--accent-dark) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

.application-carousel-viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.application-carousel-track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2vw, 28px);
  padding: 4px 4px 24px;
}

.application-project-card {
  position: relative;
  width: clamp(360px, 61vw, 820px);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(16, 31, 39, 0.98), rgba(9, 20, 26, 0.98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.application-project-media {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

/* Application cards use one media canvas even when the source video is vertical. */
.application-project-card .application-project-media.video-slot.media-vertical,
.application-project-card .application-project-media.video-placeholder.media-vertical {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.application-project-card .application-project-media.video-slot.media-vertical video,
.application-project-card .application-project-media.video-slot.media-vertical .video-slot-poster {
  object-fit: cover;
  object-position: center center;
}

.application-project-media-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07151c;
}

.application-project-media-set .application-project-media-item {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: auto;
  box-shadow: none;
}

.application-project-media-set .application-project-media-item:first-child {
  grid-row: 1 / -1;
}

.application-project-media-set-2 {
  grid-template-rows: minmax(0, 1fr);
}

.application-project-media-set-2 .application-project-media-item:first-child {
  grid-row: auto;
}

.application-project-media-set img,
.application-project-media-set video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-project-copy {
  padding: clamp(20px, 2.4vw, 32px);
}

.application-project-copy h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.application-project-copy p {
  margin: 0;
  color: var(--muted);
}

.application-category-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(89, 203, 217, 0.08), rgba(127, 179, 255, 0.05));
}

.application-category-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

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

  .application-route-grid,
  .application-technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-led-mled .hero-immersive {
    min-height: auto;
  }

  .page-led-mled .hero-immersive .hero-grid {
    min-height: auto;
    padding-top: min(46vw, 240px);
    padding-bottom: 26px;
  }

  .page-led-mled .hero-immersive .hero-grid > div {
    padding-top: 20px;
    background: linear-gradient(0deg, rgba(3, 10, 13, 0.96), rgba(3, 10, 13, 0.76) 78%, transparent);
  }

  .page-led-mled .hero-immersive .video-slot {
    height: min(62vw, 320px);
    bottom: auto;
  }

  .page-led-mled .hero-immersive .video-slot::after {
    background: linear-gradient(180deg, rgba(3, 10, 13, 0.12), rgba(3, 10, 13, 0.96));
  }

  .page-led-mled .hero-actions {
    gap: 10px;
  }

  .page-led-mled .hero-actions .button {
    width: 100%;
  }

  .led-decision-featured,
  .led-decision-rail {
    grid-template-columns: 1fr;
  }

  .led-decision-rail a + a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .led-decision-copy {
    padding: 22px;
  }

  .application-category-grid {
    grid-template-columns: 1fr;
  }

  .application-route-grid,
  .application-technology-grid {
    grid-template-columns: 1fr;
  }

  .application-carousel-controls {
    margin: 0 0 16px;
  }

  .application-project-card {
    width: min(84vw, 520px);
  }

  .application-category-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1360px) {
  .header-inner {
    gap: 10px;
  }

  .site-logo img {
    width: clamp(172px, 14vw, 216px);
  }

  .nav-link {
    padding: 0 7px;
    font-size: 0.86rem;
  }

  .header-actions .button {
    padding-inline: 11px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1280px) {
  :root {
    --page-gutter: 48px;
  }

}

@media (max-width: 1280px) {

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .header-actions {
    margin-left: auto;
  }

	.hero-grid,
	.split,
	.split.reverse,
	.home-led-feature,
	  .content-feature-grid,
  .content-feature-balanced,
  .mechanics-layout,
  .compact-feature,
  .compact-deliverable {
    grid-template-columns: 1fr;
  }

  .home-led-feature {
    align-items: start;
  }

  .home-led-feature > div:last-child {
    align-content: start;
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
  }

  .home-led-scope-grid {
    align-content: start;
  }

  .home-led-feature .video-slot {
    height: clamp(320px, 52vw, 460px);
  }

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

  .requirements-panel-wide {
    grid-template-columns: 1fr;
  }

  .oled-rules-layout {
    grid-template-columns: 1fr;
  }

  .oled-rules-visual {
    align-self: auto;
  }

  .hero-grid {
    gap: 30px;
  }

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

  .hero-editorial .visual-image:not(.media-vertical),
  .hero-editorial .video-slot:not(.media-vertical),
  .hero-media .visual-image:not(.media-vertical),
  .hero-media .video-slot:not(.media-vertical) {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-immersive .visual-image img,
  .hero-immersive .video-slot video,
  .hero-immersive .video-slot .video-slot-poster {
    transform: none;
    animation: none;
  }

  .hero .visual-placeholder {
    justify-self: stretch;
    max-width: 100%;
    margin-top: 0;
  }

  .hero-system-map {
    justify-self: stretch;
    max-width: 920px;
    margin-top: 0;
  }

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

  .hero-system-step:nth-child(2) {
    border-top: 0;
  }

  h1 {
    max-width: 16ch;
  }

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

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

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

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

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

  .led-requirement-board,
  .system-detail-grid,
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wizard-step {
    min-height: 0;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .desktop-nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .split-led-spec-factors .check-list {
    grid-template-columns: 1fr;
  }

  .split-led-spec .video-slot,
  .split-led-spec .video-slot.media-vertical {
    min-height: 0;
    aspect-ratio: auto;
  }

  .section-led-specification {
    min-height: 760px;
    padding-block: 46px;
  }

  .section-led-specification .section-head,
  .split-led-spec-factors {
    width: 100%;
  }

  .split-led-spec-factors {
    min-height: 0;
    margin-top: 20px;
    padding: 20px 18px;
    background: linear-gradient(90deg, rgba(4, 10, 12, 0.7), rgba(4, 10, 12, 0.42));
    backdrop-filter: none;
  }

  .section-led-specification .section-head h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.02;
  }

  .split-led-spec-factors .check-list {
    gap: 7px;
  }

  .split-led-spec .video-slot video,
  .split-led-spec .video-slot-poster {
    object-position: 48% center;
  }

  .split-led-spec .video-slot::after {
    background: linear-gradient(180deg, rgba(3, 8, 10, 0.42), rgba(3, 8, 10, 0.12) 52%, rgba(3, 8, 10, 0.48));
  }

  .split-led-spec .media-panel-copy {
    display: none;
  }

  .home-led-scope-grid {
    grid-template-columns: 1fr;
  }

  .home-led-scope-grid > div,
  .home-led-scope-grid > div:nth-child(even) {
    padding: 15px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(178, 222, 230, 0.1);
  }

  .home-led-scope-grid > div:nth-last-child(2) {
    border-bottom: 1px solid rgba(178, 222, 230, 0.1);
  }

  .home-led-feature > div:last-child .cta-row {
    width: 100%;
    justify-content: center;
  }

  .home-led-feature > div:last-child .button {
    width: min(100%, 360px);
  }

  :root {
    --header-h: 68px;
    --page-gutter: 40px;
  }

  .hero-immersive {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-immersive .hero-grid {
    align-items: end;
    padding-block: 72px 34px;
  }

  .page-contact .hero-immersive .hero-grid {
    padding-bottom: 112px;
  }

  .hero-immersive .hero-grid > div {
    width: 100%;
    padding: 24px 16px 0;
    border-left: 0;
    border-top: 2px solid rgba(89, 203, 217, 0.7);
    background: linear-gradient(0deg, rgba(3, 10, 13, 0.9), rgba(3, 10, 13, 0.66) 78%, transparent);
    backdrop-filter: none;
  }

  .hero-immersive .visual-image img,
  .hero-immersive .video-slot video,
  .hero-immersive .video-slot .video-slot-poster {
    object-position: 66% center;
  }

  .hero-immersive .visual-image::after,
  .hero-immersive .video-slot::after {
    background:
      linear-gradient(0deg, rgba(3, 10, 13, 0.96) 0%, rgba(3, 10, 13, 0.68) 46%, rgba(3, 10, 13, 0.12) 82%),
      linear-gradient(90deg, rgba(3, 10, 13, 0.28), transparent 65%);
  }

  .hero-quality-validation .visual-image img {
    object-position: 72% 72% !important;
  }

  .site-logo img {
    width: clamp(160px, 50vw, 210px);
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .section {
    padding: 54px 0;
  }

  .hero::after {
    width: 82vw;
    height: 42%;
    right: -18vw;
    top: 24px;
    opacity: 0.24;
    transform: perspective(720px) rotateY(-12deg) rotateX(4deg);
  }

  .hero-system-flow,
  .hero-system-support {
    grid-template-columns: 1fr;
  }

  .hero-system-step:nth-child(2) {
    border-top: 1px solid rgba(178, 222, 230, 0.1);
  }

  .hero-system-support {
    gap: 12px;
  }

  .hero-system-support > div + div {
    padding-top: 12px;
    border-top: 1px solid rgba(178, 222, 230, 0.1);
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .fit-comparison,
  .layer-grid,
    .media-showcase,
    .media-group,
    .media-group-grid,
    .led-route-grid,
    .led-application-grid,
    .led-requirement-board,
	    .system-detail-grid,
	    .production-package-stack,
	    .deliverables-grid,
    .content-card-grid,
    .content-input-grid,
    .wizard-options,
    .wizard-options-compact,
    .wizard-system-fields,
    .wizard-metrics,
    .wizard-result-grid,
    .backbone-flow,
    .backbone-support,
    .form-grid,
    .footer-inner {
    grid-template-columns: 1fr;
  }

  .mobile-oled-product {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mobile-oled-product-media {
    justify-items: center;
  }

  .oled-video-wall-product {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .oled-video-wall-copy .mobile-oled-specs,
  .oled-video-wall-copy .mobile-oled-capabilities {
    grid-template-columns: 1fr;
  }

  .mobile-oled-product-video.video-slot.media-vertical {
    width: min(100%, 330px);
    max-height: none;
  }

  .featured-oled-gallery {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .mobile-oled-product-copy {
    position: static;
    padding: 22px 18px;
  }

  .product-passport-header {
    display: grid;
    gap: 8px;
  }

  .mobile-oled-specs {
    grid-template-columns: 1fr;
  }

  .mobile-oled-capabilities > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .mobile-oled-product-copy .button {
    width: 100%;
    justify-content: center;
  }

  .wizard-card,
  .wizard-result {
    padding: 18px;
  }

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

  .wizard-step {
    grid-column: 1;
    grid-row: auto;
  }

  .wizard-result {
    grid-template-columns: 1fr;
  }

  .wizard-result-header,
  .wizard-result > h3,
  .wizard-result > p,
  .wizard-panel-set,
  .wizard-result-grid,
  .wizard-result .item-list,
  .wizard-result > .button {
    grid-column: auto;
    grid-row: auto;
  }

  .wizard-result-grid {
    grid-template-rows: auto;
    height: auto;
  }

  .wizard-result-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .wizard-tab {
    flex: 1 1 calc(50% - 8px);
  }

  .wizard-option,
  .wizard-options-compact .wizard-option {
    min-height: 0;
  }

  .wizard-nav {
    grid-column: 1;
    grid-row: auto;
    align-items: stretch;
    flex-direction: row;
    height: auto;
  }

  .wizard-nav .button {
    min-height: 48px;
  }

  .backbone-flow {
    gap: 20px;
  }

  .backbone-flow::before {
    left: 21px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
  }

  .backbone-node {
    padding-left: 64px;
  }

  .backbone-node + .backbone-node,
  .backbone-support-item + .backbone-support-item {
    border-left: 0;
  }

  .backbone-index {
    position: absolute;
    left: 0;
    top: 0;
  }

  .backbone-support {
    gap: 18px;
  }

  .backbone-support-item {
    padding: 18px 0 0;
    border-top: 1px solid rgba(178, 222, 230, 0.12);
  }

  .media-group-head {
    position: static;
  }

  .media-group-grid .media-panel-featured {
    grid-row: auto;
  }

  .requirements-checks .check-list {
    grid-template-columns: 1fr;
  }

  .mechanics-copy .check-list,
  .compact-feature-panel .check-list,
  .compact-deliverable .check-list {
    grid-template-columns: 1fr;
  }

  .oled-rules-panel {
    padding: 20px;
  }

  .oled-rules-layout {
    gap: 22px;
  }

  .visual-placeholder {
    min-height: 0;
  }

  .visual-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.74rem;
  }

  .card,
  .link-card {
    --float: 0px;
    padding: 18px;
  }

  .field-full {
    grid-column: auto;
  }

  .hero-actions,
  .cta-row {
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-row .button {
    width: 100%;
  }

}

@media (max-width: 820px) {
  .page-insights .hero-immersive {
    min-height: min(700px, calc(88svh - var(--header-h)));
    padding: 0;
  }

  .page-insights .hero-immersive .hero-grid {
    min-height: inherit;
    padding-block: 54px 26px;
  }

  .page-insights .hero-immersive .hero-grid > div {
    padding-top: 20px;
  }

  .page-insights .section {
    padding-block: 44px;
  }

  .page-insights .article-body h2 {
    margin-top: 28px;
  }

  .page-insights .article-body p {
    margin-block: 14px;
  }

  .article-lead-grid {
    grid-template-columns: 1fr;
  }

  .article-data-panel {
    padding: 18px;
  }

  .article-data-table {
    min-width: 0;
    font-size: 0.9rem;
  }

  .article-data-table thead {
    display: none;
  }

  .article-data-table tbody {
    display: grid;
    gap: 12px;
  }

  .article-data-table tr {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(178, 222, 230, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
  }

  .article-data-table th,
  .article-data-table td {
    display: grid;
    grid-template-columns: minmax(86px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    width: auto;
    padding: 10px 12px;
  }

  .article-data-table th::before,
  .article-data-table td::before {
    content: attr(data-label);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .article-data-table tbody tr:last-child > *:not(:last-child),
  .article-data-table tbody tr > *:not(:last-child) {
    border-bottom: 1px solid rgba(178, 222, 230, 0.1);
  }

  .article-data-table tbody tr > *:last-child {
    border-bottom: 0;
  }

  .article-body > .article-lead-media {
    margin-bottom: 26px;
  }

  .article-application-grid,
  .article-conversion-panel {
    grid-template-columns: 1fr;
  }

  .article-conversion-panel .button {
    justify-self: start;
  }

  .insight-groups {
    gap: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1023px) {
  .backbone-routes,
  .architecture-route-grid {
    grid-template-columns: 1fr;
  }

  .backbone-route-intro,
  .backbone-route {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(178, 222, 230, 0.12);
  }
}

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

  .hero-immersive .visual-image img,
  .hero-immersive .video-slot video,
  .hero-immersive .video-slot .video-slot-poster {
    transform: scale(1.025);
    animation: none;
  }
}


/* v136: preserve the approved OEM hero without cinematic crop drift. */
.page-oem-specialized-displays .hero-immersive .visual-image img {
  transform: none;
  animation: none;
  object-position: center center;
}

@media (max-width: 820px) {
  .page-oem-specialized-displays .hero-immersive {
    min-height: auto;
  }

  .page-oem-specialized-displays .hero-immersive .hero-grid {
    min-height: auto;
    padding-top: min(58vw, 360px);
  }

  .page-oem-specialized-displays .hero-immersive .visual-image {
    height: min(58vw, 360px);
    bottom: auto;
    background: #071014;
  }

  .page-oem-specialized-displays .hero-immersive .visual-image img {
    object-fit: contain;
    object-position: center top;
  }

  .page-oem-specialized-displays .hero-immersive .visual-image::after {
    background: linear-gradient(180deg, transparent 55%, #071014 100%);
  }
}


/* Click-through project card and multi-view project details. */
.application-project-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.application-project-open:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.application-project-open .application-project-copy {
  display: grid;
}

.application-project-title {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 750;
  line-height: 1.14;
}

.application-project-description {
  color: var(--muted);
  line-height: 1.55;
}

.application-project-card-interactive:hover .card-cta,
.application-project-card-interactive:focus-within .card-cta {
  color: var(--accent-2);
}

.application-project-open-generated {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.application-project-open-generated:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -4px;
}

.application-project-card-generated .video-play-control {
  z-index: 4;
}

.generated-project-cta {
  display: block;
  margin-top: 16px;
}

.generated-project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  margin-top: 26px;
}

.generated-project-views {
  display: grid;
  gap: 14px;
}

.generated-project-views:has(.generated-project-view:nth-child(2)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.generated-project-views:has(.generated-project-view:nth-child(3)) .generated-project-view:first-child {
  grid-column: 1 / -1;
}

.generated-project-view {
  margin: 0;
}

.generated-project-view img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
}

.generated-project-view figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.generated-project-context h3 {
  margin-top: 0;
}

.generated-project-context p {
  color: var(--muted);
}

.generated-project-context .check-list {
  margin-bottom: 0;
}

.project-gallery-modal {
  padding: clamp(12px, 2vw, 28px);
}

.project-gallery-modal-card {
  width: min(1180px, 100%);
  max-height: calc(100svh - 32px);
  padding: clamp(20px, 3vw, 36px);
}

.project-gallery-modal-card .lead {
  max-width: 78ch;
}

.project-detail-list {
  columns: 2;
  margin: 24px 0 28px;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.project-detail-gallery figure {
  margin: 0;
}

.project-detail-gallery figure:first-child {
  grid-column: 1 / -1;
}

.project-detail-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-gallery-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 14px;
  margin-top: 26px;
}

@media (max-width: 700px) {
  .generated-project-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-list {
    columns: 1;
  }

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

  .project-detail-gallery figure:first-child {
    grid-column: auto;
  }

  .project-gallery-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-gallery-modal-actions .button {
    width: 100%;
  }
}

.project-detail-gallery video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #050b0e;
}

.project-detail-gallery-portrait-videos figure:first-child {
  grid-column: auto;
}

.project-detail-gallery-portrait-videos video {
  aspect-ratio: 9 / 16;
  max-height: 68svh;
}

/* Secondary retail examples stay visually separate from the three featured configurations. */
.retail-additional-formats {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(38px, 6vw, 72px);
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.retail-additional-formats-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.retail-additional-formats-copy > p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.retail-additional-formats-card .application-project-open {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  align-items: stretch;
}

.retail-additional-formats-card .application-project-media {
  min-height: 280px;
  height: 100%;
  background: #f1f2f3;
}

.retail-additional-formats-card .application-project-copy {
  align-content: center;
}

.retail-reference-gallery .visual-image {
  background: #f1f2f3;
}

/* Keep the three portrait LED applications together and give the landscape case its own full-width row. */
.section-installation-views .media-showcase-led > .media-panel:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.section-installation-views .media-showcase-led > .media-panel:nth-child(3) {
  grid-column: 1 / -1;
  grid-row: 2;
}

.section-installation-views .media-showcase-led > .media-panel:nth-child(3) .video-slot {
  aspect-ratio: 16 / 9;
}

@media (max-width: 820px) {
  .retail-additional-formats,
  .retail-additional-formats-card .application-project-open {
    grid-template-columns: 1fr;
  }

  .retail-additional-formats-card .application-project-media {
    min-height: auto;
  }

  .section-installation-views .media-showcase-led > .media-panel:nth-child(3),
  .section-installation-views .media-showcase-led > .media-panel:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}


/* v156 expert-article content elements */
.article-body h3 {
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.article-content-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 24px;
  padding-left: 24px;
  color: var(--muted);
}

.article-content-list li {
  padding-left: 4px;
  line-height: 1.65;
}

.article-content-table-wrap {
  margin: 22px 0 34px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.article-content-table {
  min-width: 720px;
}

.article-content-table th,
.article-content-table td {
  line-height: 1.55;
}

@media (max-width: 820px) {
  .article-table-scroll {
    overflow-x: hidden;
  }

  .article-content-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .article-content-table-wrap {
    overflow-x: hidden;
  }

  .article-data-table tbody th,
  .article-data-table tbody td {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .article-data-table th,
  .article-data-table td {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    min-width: 0;
    padding: 14px 16px 16px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .article-data-table th::before,
  .article-data-table td::before {
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .article-data-table th,
  .article-data-table td {
    padding: 14px 16px 16px;
  }
}

.article-callout {
  margin: 24px 0 32px;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(89, 203, 217, 0.07);
}

.article-callout p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.article-body code {
  padding: 0.12em 0.35em;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92em;
}


@media (max-width:760px){.article-content-table{min-width:0}}

@media (max-width: 1100px) {
  .oled-product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .transparent-led-opening,
  .transparent-route-group {
    grid-template-columns: 1fr;
  }

  .transparent-route-group-head {
    position: static;
    max-width: 680px;
  }

  .transparent-route-copy dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .transparent-route-copy .transparent-led-spec-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .transparent-sample-gate {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transparent-sample-gate li + li {
    border-left: 0;
  }

  .transparent-sample-gate li:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }

  .transparent-sample-gate li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 700px) {
  .transparent-led-commercial-grid {
    grid-template-columns: 1fr;
  }

  .transparent-led-product-card {
    display: flex;
  }

  .transparent-led-product-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid rgba(178, 222, 230, 0.14);
  }

  .transparent-led-product-specs {
    grid-template-columns: 1fr;
  }

  .oled-product-config-card {
    grid-template-columns: 1fr;
  }

  .oled-product-gallery {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(178, 222, 230, 0.12);
  }

  .oled-product-gallery-viewport {
    aspect-ratio: 4 / 5;
  }

  .oled-product-gallery-slide {
    min-height: 0;
  }

  .oled-product-gallery-slide.is-contain img,
  .oled-product-gallery-slide.is-contain video {
    padding: 12px;
  }

  .oled-product-gallery-footer {
    min-height: 56px;
  }

  .oled-product-config-visual,
  .oled-product-config-technical {
    min-height: 220px;
    aspect-ratio: var(--ratio, 5 / 4);
    border-right: 0;
    border-bottom: 1px solid rgba(178, 222, 230, 0.12);
  }

  .oled-product-config-visual img {
    object-fit: contain;
    object-position: center center;
  }

  .oled-product-quick-specs,
  .transparent-route-copy .transparent-led-spec-highlights {
    grid-template-columns: 1fr;
  }

  .oled-product-details dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .transparent-led-selector,
  .transparent-led-route-groups {
    gap: 30px;
  }

  .transparent-led-opening {
    gap: 10px;
    padding: 10px;
  }

  .transparent-led-feature-visual {
    min-height: 250px;
  }

  .transparent-led-decision-lens,
  .transparent-route-item,
  .supplier-catalog-boundary,
  .transparent-sample-gate {
    grid-template-columns: 1fr;
  }

  .transparent-route-item {
    gap: 16px;
  }

  .transparent-route-visual {
    min-height: 230px;
  }

  .supplier-catalog-boundary {
    gap: 10px;
  }

  .transparent-sample-gate li,
  .transparent-sample-gate li:nth-child(even) {
    border-left: 0;
  }

  .transparent-sample-gate li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}
