:root {
  --ink: #101418;
  --muted: #5f6872;
  --line: #d9e1e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --steel: #25313b;
  --cyan: #12b8d7;
  --green: #45c489;
  --amber: #f1b84a;
  --shadow: 0 24px 70px rgba(20, 31, 42, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 251, 0.96)),
    radial-gradient(circle at 82% 12%, rgba(18, 184, 215, 0.16), transparent 34%),
    linear-gradient(135deg, #f8fbfd 0%, #eef3f6 100%);
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid rgba(217, 225, 232, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.topbar.is-elevated {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(31, 43, 55, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 192px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--steel), #0b5968);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #303a44;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.button {
  padding: 0 22px;
}

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

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(16, 20, 24, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

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

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 94px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 14px;
  color: var(--steel);
  font-weight: 700;
}

.mobile-language-switch {
  display: none;
  margin: 10px 12px 4px;
  width: max-content;
}

.mobile-menu.open {
  display: block;
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 52px;
  align-items: center;
  margin: 0 auto;
  padding: 132px 0 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #087d91;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text,
.intro > p,
.finder-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.trust-row {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  grid-column: 1;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(217, 225, 232, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.trust-row dt {
  font-size: 28px;
  font-weight: 850;
}

.trust-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  perspective: 1100px;
}

.display-stack {
  --glare-x: 0px;
  --glare-y: 0px;
  --module-rotate-x: 0deg;
  --module-rotate-y: 0deg;
  --module-shift-x: 0px;
  --module-shift-y: 0px;
  position: absolute;
  top: 38px;
  right: 0;
  left: 0;
  width: min(100%, 660px);
  height: 480px;
  margin: 0 auto;
  cursor: pointer;
  outline: none;
  transform: translate3d(var(--module-shift-x), var(--module-shift-y), 0) rotateX(var(--module-rotate-x))
    rotateY(var(--module-rotate-y));
  transform-style: preserve-3d;
  transition: filter 0.2s ease, transform 0.16s ease;
  will-change: transform, filter;
}

.display-stack.is-interacting {
  filter: drop-shadow(0 22px 32px rgba(20, 36, 44, 0.16));
}

.display-stack:focus-visible {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) drop-shadow(0 0 0 4px rgba(18, 184, 215, 0.24));
}

.lcd-module-svg {
  position: absolute;
  top: 8px;
  left: -18px;
  width: 660px;
  max-width: none;
  overflow: visible;
  transform-origin: 50% 55%;
  animation: realisticModuleFloat 7s ease-in-out infinite;
}

.svg-floor-shadow {
  fill: rgba(19, 32, 42, 0.16);
  filter: blur(14px);
  animation: floorShadowBreath 7s ease-in-out infinite;
}

.svg-module-body {
  transform-origin: 50% 58%;
}

.svg-rear-echo {
  opacity: 0.16;
  transform: translate(22px, -42px) scale(0.92);
}

.svg-rear-echo > rect:first-child {
  fill: #111416;
  stroke: rgba(220, 225, 222, 0.36);
  stroke-width: 2;
}

.rear-metal-panel {
  fill: url("#backMetal");
}

.rear-film {
  fill: #050607;
  opacity: 0.96;
}

.rear-board rect {
  fill: #070809;
  stroke: rgba(255, 255, 255, 0.18);
}

.rear-board circle {
  fill: #0c0d0e;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.2;
}

.svg-chassis {
  fill: url("#metalTop");
  stroke: rgba(39, 49, 53, 0.9);
  stroke-width: 1.6;
}

.svg-brushed-metal {
  fill: url("#brushedMetalPattern");
  opacity: 0.72;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.svg-inner-ridge {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1.1;
}

.svg-rim-base-light,
.svg-rim-sweep {
  fill: none;
  pointer-events: none;
}

.svg-rim-base-light {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.2;
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: rimBaseBreath 6.8s ease-in-out infinite;
}

.svg-rim-sweep {
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 86 914;
  stroke-dashoffset: 1000;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(118, 236, 255, 0.4));
  mix-blend-mode: screen;
  animation: none;
}

.svg-frame-diagonal-light rect,
.svg-screen-diagonal-light rect {
  fill: url("#diagonalSweepGradient");
}

.svg-frame-pointer-light {
  mix-blend-mode: screen;
}

.svg-frame-pointer-glow,
.svg-pointer-glare {
  pointer-events: none;
  transform: translate3d(var(--glare-x), var(--glare-y), 0);
  transform-box: view-box;
  transition: opacity 0.2s ease, transform 0.08s linear;
  will-change: opacity, transform;
}

.svg-frame-pointer-glow {
  fill: url("#framePointerGlow");
  opacity: 0;
}

.display-stack.is-interacting .svg-frame-pointer-glow {
  opacity: 0.62;
}

.svg-frame-diagonal-light {
  opacity: 1;
  mix-blend-mode: screen;
  animation: none;
}

.svg-screen-diagonal-light {
  opacity: 1;
  mix-blend-mode: screen;
  animation: none;
}

.svg-screen-interactive-layer {
  mix-blend-mode: screen;
}

.svg-screen-active-lines {
  fill: url("#interactiveScanPattern");
  opacity: 0.05;
  animation: screenActivityShift 2.6s linear infinite;
  transform-box: fill-box;
  will-change: opacity, transform;
}

.display-stack.is-interacting .svg-screen-active-lines {
  opacity: 0.16;
  animation-duration: 1.2s;
}

.svg-pointer-glare {
  fill: url("#interactivePointerGlow");
  opacity: 0;
}

.display-stack.is-interacting .svg-pointer-glare {
  opacity: 0.5;
}

.svg-click-flash {
  fill: #ffffff;
  opacity: 0;
}

.display-stack.is-tapped .svg-click-flash {
  animation: moduleTapFlash 0.62s ease-out;
}

.svg-corner-glows circle {
  fill: url("#rimCornerGlow");
  opacity: 0;
  mix-blend-mode: screen;
  transform-box: fill-box;
  transform-origin: center;
  animation: none;
}

.svg-corner-glows circle:nth-child(2) {
  animation-delay: -1.4s;
}

.svg-corner-glows circle:nth-child(3) {
  animation-delay: -2.8s;
}

.svg-corner-glows circle:nth-child(4) {
  animation-delay: -4.2s;
}

.svg-metal-light,
.svg-metal-shadow {
  fill: none;
  stroke-linecap: round;
}

.svg-metal-light {
  stroke: url("#metalGlint");
  stroke-width: 2.4;
  opacity: 0.72;
}

.svg-metal-light-top,
.svg-metal-light-bottom {
  opacity: 0.64;
}

.svg-metal-light-left,
.svg-metal-light-right {
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.5;
  opacity: 0.58;
}

.svg-metal-shadow {
  stroke: rgba(8, 13, 16, 0.38);
  stroke-width: 2;
}

.svg-screen-frame {
  fill: url("#bezelDepth");
  stroke: rgba(236, 239, 234, 0.26);
  stroke-width: 1;
}

.svg-bezel-shimmer {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-linecap: round;
  stroke-width: 1.6;
  stroke-dasharray: 130 870;
  stroke-dashoffset: 1000;
  opacity: 0;
  mix-blend-mode: screen;
  animation: none;
}

.svg-bezel-shimmer-top {
  opacity: 0;
}

.svg-bezel-shimmer-bottom {
  opacity: 0;
  animation-delay: 0s;
}

.svg-screen {
  fill: url("#blackGlass");
  stroke: rgba(0, 0, 0, 0.78);
  stroke-width: 1;
}

.svg-backlight-glow {
  fill: url("#screenBloom");
  opacity: 0.16;
  mix-blend-mode: screen;
  animation: backlightBreath 6.2s ease-in-out infinite;
}

.svg-test-bars {
  fill: url("#testBars");
  opacity: 1;
  animation: none;
}

.svg-rgb {
  fill: url("#rgbPixelPattern");
  opacity: 0;
  mix-blend-mode: multiply;
  animation: none;
}

.svg-screen-bloom {
  fill: url("#screenBloom");
  opacity: 0;
  mix-blend-mode: screen;
  animation: none;
}

.svg-screen-edge-shade {
  fill: url("#screenEdgeShade");
  opacity: 0;
  mix-blend-mode: multiply;
}

.svg-screen-side-shade {
  fill: url("#screenSideShade");
  opacity: 0;
  mix-blend-mode: multiply;
}

.svg-sheen {
  fill: url("#glassHighlight");
  opacity: 0;
  mix-blend-mode: screen;
  animation: none;
}

.svg-glass-arc {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-linecap: round;
  stroke-width: 2;
  opacity: 0;
  mix-blend-mode: screen;
  animation: none;
}

.svg-scan {
  fill: rgba(255, 255, 255, 0.1);
  mix-blend-mode: screen;
  opacity: 0;
  animation: none;
}

.svg-screen-inner-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 0.85;
  mix-blend-mode: screen;
}

.svg-lower-lip,
.svg-bottom-edge,
.svg-right-edge {
  fill: url("#metalSide");
  stroke: rgba(43, 52, 57, 0.42);
  stroke-width: 1;
}

.svg-tabs path,
.svg-port-row path,
.svg-side-details path {
  fill: #788386;
  stroke: rgba(35, 43, 47, 0.65);
  stroke-width: 1;
}

.svg-port-row path {
  fill: #293136;
}

.svg-cad-rib {
  fill: none;
  stroke: rgba(245, 248, 246, 0.42);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.rib-top,
.rib-left,
.rib-right {
  opacity: 0.42;
}

.rib-bottom {
  opacity: 0.58;
}

.svg-edge-notches path {
  fill: #545f63;
  stroke: rgba(32, 40, 45, 0.58);
  stroke-width: 1;
}

.svg-screws circle {
  fill: #11181c;
  stroke: #c9d1cf;
  stroke-width: 3;
}

@keyframes realisticModuleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes floorShadowBreath {
  0%,
  100% {
    opacity: 0.78;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 0.52;
    transform: scaleX(1.04);
  }
}

@keyframes rimBaseBreath {
  0%,
  100% {
    opacity: 0.46;
  }

  44% {
    opacity: 0.78;
  }

  70% {
    opacity: 0.56;
  }
}

@keyframes diagonalModuleSweep {
  0% {
    opacity: 0;
    transform: translate(-360px, 270px) rotate(45deg);
  }

  18%,
  68% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate(760px, -390px) rotate(45deg);
  }
}

@keyframes diagonalScreenSweep {
  0% {
    opacity: 0;
    transform: translate(-320px, 220px) rotate(45deg);
  }

  20%,
  64% {
    opacity: 0.34;
  }

  100% {
    opacity: 0;
    transform: translate(720px, -360px) rotate(45deg);
  }
}

@keyframes rimSweep {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }

  10%,
  82% {
    opacity: 0.86;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes cornerGlowPulse {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.92);
  }

  48% {
    opacity: 0.34;
    transform: scale(1.08);
  }
}

@keyframes bezelShimmer {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }

  20%,
  72% {
    opacity: 0.62;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes svgGlassTravel {
  0%,
  100% {
    transform: translateX(-260px);
  }

  52% {
    transform: translateX(250px);
  }
}

@keyframes glassArcBreath {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }

  48% {
    opacity: 0.68;
    transform: translateY(2px);
  }
}

@keyframes svgScanTravel {
  0% {
    transform: translateY(-34px);
    opacity: 0;
  }

  12%,
  82% {
    opacity: 0.42;
  }

  100% {
    transform: translateY(120px);
    opacity: 0;
  }
}

@keyframes backlightBreath {
  0%,
  100% {
    opacity: 0.22;
  }

  45% {
    opacity: 0.38;
  }

  70% {
    opacity: 0.28;
  }
}

@keyframes screenActivityShift {
  0% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(18px);
  }
}

@keyframes moduleTapFlash {
  0% {
    opacity: 0;
  }

  18% {
    opacity: 0.24;
  }

  100% {
    opacity: 0;
  }
}

@keyframes colorBarPulse {
  0%,
  100% {
    filter: saturate(1.02) brightness(1);
  }

  48% {
    filter: saturate(1.14) brightness(1.06);
  }
}

@keyframes svgPixelShift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, 18px);
  }
}

@keyframes rgbVerticalGlow {
  0%,
  100% {
    opacity: 0.1;
  }

  45% {
    opacity: 0.17;
  }

  70% {
    opacity: 0.13;
  }
}

.module-batch {
  position: absolute;
  inset: 40px 52px auto auto;
  width: 374px;
  height: 280px;
  transform: translateZ(-60px);
}

.module-batch img {
  position: absolute;
  width: 100%;
  height: auto;
  filter: saturate(0.78) contrast(0.96);
  opacity: 0.24;
}

.module-batch img:nth-child(1) {
  transform: translate(-44px, -28px) rotate(-2deg);
}

.module-batch img:nth-child(2) {
  transform: translate(-24px, -14px) rotate(-1deg);
}

.module-batch img:nth-child(3) {
  opacity: 0.34;
  transform: translate(-4px, 0) rotate(0deg);
}

.module-back-reference {
  position: absolute;
  right: 6px;
  bottom: 18px;
  width: 430px;
  height: 226px;
  overflow: hidden;
  border: 4px solid #aeb7bc;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 12% 88%, rgba(255, 255, 255, 0.24)),
    linear-gradient(145deg, #cfd4d4, #8f999b 48%, #d8dddd);
  box-shadow: 0 22px 42px rgba(25, 39, 46, 0.16);
  opacity: 0.42;
  transform: translateZ(-38px) rotate(-1deg);
}

.module-back-reference::before {
  position: absolute;
  inset: 7% 5%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(75, 88, 94, 0.22);
}

.module-back-reference::after {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 11%;
  height: 11%;
  border: 2px solid rgba(62, 75, 82, 0.38);
  border-radius: 6px;
  content: "";
}

.module-front-photo {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 24px;
  width: 590px;
  filter: drop-shadow(0 30px 48px rgba(15, 27, 35, 0.26));
  animation: moduleFloat 6s ease-in-out infinite;
}

.module-front-photo > img {
  display: block;
  width: 100%;
  height: auto;
}

.lcd-active-area {
  position: absolute;
  inset: 13% 9% 19% 9%;
  overflow: hidden;
  border-radius: 3px;
  opacity: 0.34;
  mix-blend-mode: screen;
  pointer-events: none;
}

.module-side-photo {
  position: absolute;
  z-index: 4;
  right: 42px;
  bottom: 2px;
  width: 388px;
  filter: drop-shadow(0 20px 28px rgba(15, 27, 35, 0.16));
  opacity: 0.9;
  transform: translateZ(10px);
}

.module-side-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.hd-lcd-module {
  position: absolute;
  z-index: 5;
  top: 38px;
  left: 10px;
  width: 610px;
  aspect-ratio: 16 / 9;
  transform: rotateZ(2deg) rotateX(7deg) rotateY(-7deg);
  transform-style: preserve-3d;
  animation: hdModuleFloat 7s ease-in-out infinite;
}

.module-casing {
  position: absolute;
  inset: 0;
  overflow: visible;
  padding: 20px 22px 24px;
  border: 1px solid rgba(111, 119, 122, 0.76);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 18% 72%, rgba(53, 58, 61, 0.2)),
    linear-gradient(180deg, #d9deda 0%, #aeb5b5 48%, #eef0ea 100%);
  box-shadow:
    0 34px 58px rgba(15, 27, 35, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.66),
    inset 0 -18px 28px rgba(55, 65, 70, 0.16);
}

.module-casing::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 3px;
  content: "";
  pointer-events: none;
}

.module-casing::after {
  position: absolute;
  inset: auto 32px 8px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(54, 61, 66, 0.36), transparent);
  content: "";
  opacity: 0.36;
}

.module-edge {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #eef1ec, #7f8788);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.edge-top {
  top: -9px;
  right: 13px;
  left: 16px;
  height: 10px;
  transform: skewX(-28deg);
}

.edge-right {
  top: 7px;
  right: -14px;
  width: 14px;
  height: calc(100% - 24px);
  transform: skewY(24deg);
  background: linear-gradient(90deg, #b7bebf, #6f777a);
}

.edge-bottom {
  right: 2px;
  bottom: -14px;
  left: 18px;
  height: 14px;
  transform: skewX(30deg);
  background: linear-gradient(180deg, #8a9395, #444e52);
}

.module-bezel {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 4px solid rgba(24, 28, 29, 0.92);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #07080b, #11151a 56%, #050507);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 38px rgba(0, 0, 0, 0.76),
    0 2px 6px rgba(255, 255, 255, 0.24);
}

.hd-lcd-module .lcd-active-area {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 1px;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #090b0f, #020304 68%);
  opacity: 1;
  mix-blend-mode: normal;
}

.glass-sheen {
  position: absolute;
  inset: -20% -16%;
  z-index: 5;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.28) 38%, transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 20% 74%, rgba(255, 255, 255, 0.12));
  transform: translateX(-34%);
  animation: glassSweep 6.4s ease-in-out infinite;
  pointer-events: none;
}

.hd-lcd-module .rgb-subpixels {
  opacity: 0.16;
  background-size: 12px 12px;
}

.hd-lcd-module .rgb-pixel-grid {
  opacity: 0.42;
  background-size: 12px 12px, 12px 12px, 100% 100%, 100% 100%, 100% 100%;
}

.hd-lcd-module .rgb-wave {
  opacity: 0.2;
}

.screw-point {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 42%, #101417 0 28%, #687276 31% 50%, #d6dcda 54% 72%, rgba(35, 42, 45, 0.58) 74%);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.screw-top-left {
  top: 8px;
  left: 12px;
}

.screw-top-right {
  top: 8px;
  right: 10px;
}

.screw-bottom-left {
  bottom: 8px;
  left: 12px;
}

.screw-bottom-right {
  right: 10px;
  bottom: 8px;
}

.mount-tab,
.side-port,
.corner-notch {
  position: absolute;
  z-index: 4;
  display: block;
  border: 1px solid rgba(40, 49, 52, 0.44);
  background: linear-gradient(180deg, #cfd5d4, #777f82);
}

.mount-tab {
  bottom: -8px;
  width: 28px;
  height: 10px;
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.tab-a {
  left: 16%;
}

.tab-b {
  left: 37%;
}

.tab-c {
  right: 35%;
}

.tab-d {
  right: 14%;
}

.side-port {
  right: -16px;
  width: 9px;
  height: 25px;
  border-radius: 2px;
}

.port-a {
  top: 24%;
}

.port-b {
  top: 47%;
}

.port-c {
  bottom: 20%;
}

.corner-notch {
  width: 30px;
  height: 6px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(180deg, rgba(58, 67, 70, 0.52), rgba(255, 255, 255, 0.18));
}

.notch-a {
  top: 0;
  left: 46%;
}

.notch-b {
  right: 18%;
  bottom: 0;
  transform: rotate(180deg);
}

.module-reflection {
  position: absolute;
  right: 2%;
  bottom: -46px;
  left: 5%;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(21, 32, 40, 0.2), transparent 68%);
  filter: blur(4px);
  transform: translateZ(-24px);
}

.module-contact-shadow {
  position: absolute;
  right: 4%;
  bottom: -24px;
  left: 6%;
  height: 18px;
  border-radius: 50%;
  background: rgba(15, 27, 35, 0.16);
  filter: blur(14px);
  transform: translateZ(-20px);
}

@keyframes hdModuleFloat {
  0%,
  100% {
    transform: rotateZ(2deg) rotateX(7deg) rotateY(-7deg) translateY(0);
  }

  50% {
    transform: rotateZ(2deg) rotateX(7deg) rotateY(-7deg) translateY(-10px);
  }
}

@keyframes glassSweep {
  0%,
  100% {
    transform: translateX(-42%);
  }

  54% {
    transform: translateX(36%);
  }
}

@keyframes moduleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.batch-panels {
  position: absolute;
  inset: -16% 8% 18% -8%;
  transform: translateZ(-54px);
  transform-style: preserve-3d;
}

.batch-panels span {
  position: absolute;
  inset: 0;
  border: 5px solid rgba(25, 38, 50, 0.88);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #20303a, #0d1a21);
  box-shadow: 0 22px 42px rgba(10, 21, 29, 0.2);
}

.batch-panels span:nth-child(1) {
  transform: translate3d(-34px, -24px, -42px);
  opacity: 0.42;
}

.batch-panels span:nth-child(2) {
  transform: translate3d(-22px, -14px, -28px);
  opacity: 0.54;
}

.batch-panels span:nth-child(3) {
  transform: translate3d(-10px, -4px, -14px);
  opacity: 0.66;
}

.batch-panels span:nth-child(4) {
  transform: translate3d(2px, 6px, 0);
  opacity: 0.78;
}

.rear-chassis {
  position: absolute;
  inset: 10% -24% -36% 18%;
  z-index: 1;
  overflow: hidden;
  border: 4px solid #aeb7bc;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 12% 88%, rgba(255, 255, 255, 0.24)),
    linear-gradient(145deg, #cfd4d4, #8f999b 48%, #d8dddd);
  box-shadow:
    0 28px 54px rgba(25, 39, 46, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    inset 0 -18px 40px rgba(42, 52, 56, 0.16);
  transform: translate3d(34px, 46px, -46px);
}

.rear-chassis::before {
  position: absolute;
  inset: 7% 5%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(75, 88, 94, 0.22),
    inset 0 0 32px rgba(255, 255, 255, 0.16);
}

.rear-chassis::after {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 11%;
  height: 11%;
  border: 2px solid rgba(62, 75, 82, 0.38);
  border-radius: 6px;
  content: "";
}

.stamp {
  position: absolute;
  top: 16%;
  bottom: 23%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 48%, rgba(80, 96, 103, 0.12)),
    rgba(148, 157, 159, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(63, 76, 82, 0.18),
    inset 0 18px 30px rgba(255, 255, 255, 0.1);
}

.stamp::after {
  position: absolute;
  top: 26%;
  left: 32%;
  width: 36%;
  height: 48%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  content: "";
  box-shadow: inset 0 0 12px rgba(54, 67, 74, 0.12);
}

.stamp-a {
  left: 7%;
  width: 24%;
}

.stamp-b {
  left: 38%;
  width: 24%;
}

.stamp-c {
  right: 7%;
  width: 24%;
}

.screw {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #18232a 0 36%, #6f7b80 37% 52%, transparent 53%);
}

.screw-a {
  left: 13%;
  top: 18%;
}

.screw-b {
  right: 13%;
  top: 18%;
}

.barcode-label {
  position: absolute;
  left: 10%;
  top: 11%;
  width: 17%;
  height: 7%;
  border-radius: 2px;
  background:
    repeating-linear-gradient(90deg, #1f2b33 0 1px, transparent 1px 4px),
    #f8fbfd;
  box-shadow: 0 1px 4px rgba(24, 34, 42, 0.15);
}

.driver-rail {
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 11%;
  border-left: 2px solid rgba(33, 42, 48, 0.28);
  background:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(20, 28, 34, 0.5) 28px 32px),
    linear-gradient(90deg, #7f8c92, #c4cacc);
  box-shadow: inset 8px 0 20px rgba(41, 52, 58, 0.18);
}

.backlight-unit,
.diffuser-layer {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
}

.backlight-unit {
  inset: 19% -10% -24% 16%;
  z-index: 2;
  overflow: hidden;
  border: 6px solid #1f2d37;
  border-left-width: 12px;
  border-bottom-width: 12px;
  background:
    radial-gradient(circle at 18% 58%, rgba(255, 255, 255, 0.84), transparent 16%),
    radial-gradient(circle at 42% 58%, rgba(255, 255, 255, 0.66), transparent 15%),
    radial-gradient(circle at 66% 58%, rgba(255, 255, 255, 0.6), transparent 15%),
    radial-gradient(circle at 88% 58%, rgba(255, 255, 255, 0.64), transparent 14%),
    linear-gradient(90deg, rgba(92, 196, 255, 0.12), rgba(255, 255, 255, 0.76), rgba(18, 184, 215, 0.15)),
    linear-gradient(145deg, #dce8ee, #f7fbff);
  box-shadow:
    0 28px 54px rgba(20, 42, 56, 0.18),
    0 0 54px rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  opacity: 0.72;
  transform: translate3d(18px, 24px, -18px);
  animation: backlightPulse 4.8s ease-in-out infinite;
}

.backlight-unit::before {
  position: absolute;
  inset: 12% 6%;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(16, 36, 46, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent);
}

.led {
  position: absolute;
  bottom: 8%;
  width: 9px;
  height: 26px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.95), 0 0 28px rgba(18, 184, 215, 0.45);
}

.led-a {
  left: 18%;
}

.led-b {
  left: 38%;
}

.led-c {
  left: 58%;
}

.led-d {
  left: 78%;
}

.diffuser-layer {
  inset: 12% -4% -15% 9%;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 34%),
    repeating-linear-gradient(90deg, rgba(18, 184, 215, 0.08) 0 1px, transparent 1px 18px),
    rgba(232, 246, 251, 0.52);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.64),
    0 18px 34px rgba(42, 76, 92, 0.12);
  transform: translate3d(10px, 14px, -8px);
}

.display-glass {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border: 10px solid #b8c0c4;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #08090c, #12151a 58%, #050609);
  box-shadow:
    0 34px 60px rgba(2, 16, 22, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 0 12px rgba(8, 10, 13, 0.82);
  transform: translate3d(-18px, -18px, 20px);
}

.display-glass::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.metal-frame {
  position: absolute;
  inset: -4px;
  z-index: 4;
  border: 8px solid rgba(18, 25, 32, 0.94);
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(3, 12, 18, 0.2);
  transform: translate3d(-18px, -18px, 28px);
  pointer-events: none;
}

.metal-frame span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6f7b84;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.metal-frame span:nth-child(1) {
  top: 12px;
  left: 12px;
}

.metal-frame span:nth-child(2) {
  top: 12px;
  right: 12px;
}

.metal-frame span:nth-child(3) {
  right: 12px;
  bottom: 12px;
}

.metal-frame span:nth-child(4) {
  bottom: 12px;
  left: 12px;
}

.batch-label,
.module-label,
.backlight-label {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border: 1px solid rgba(217, 225, 232, 0.82);
  border-radius: 8px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(31, 43, 55, 0.13);
  backdrop-filter: blur(14px);
}

.batch-label span,
.module-label span,
.backlight-label span {
  color: #087d91;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.batch-label strong,
.module-label strong,
.backlight-label strong {
  font-size: 13px;
  white-space: nowrap;
}

.batch-label {
  top: 28px;
  left: 16px;
  transform: translateZ(44px);
}

.module-label {
  right: 10px;
  bottom: 66px;
  transform: translateZ(54px);
}

.backlight-label {
  left: 34px;
  bottom: 74px;
  transform: translateZ(48px);
}

.screen-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.rgb-subpixels {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  mix-blend-mode: screen;
  background:
    linear-gradient(90deg, rgba(255, 48, 72, 0.98) 0 31%, rgba(53, 232, 108, 0.98) 31% 64%, rgba(45, 137, 255, 0.98) 64% 100%);
  background-size: 18px 18px;
  animation: pixelShift 3.8s steps(6) infinite;
}

.rgb-pixel-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 18% 24%, rgba(255, 56, 80, 0.18), transparent 18%),
    radial-gradient(circle at 52% 48%, rgba(53, 232, 108, 0.16), transparent 22%),
    radial-gradient(circle at 76% 30%, rgba(45, 137, 255, 0.18), transparent 24%);
  background-size: 18px 18px, 18px 18px, 100% 100%, 100% 100%, 100% 100%;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.26);
}

.rgb-wave {
  position: absolute;
  inset: -18% -24%;
  opacity: 0.18;
  mix-blend-mode: screen;
  background:
    linear-gradient(
      115deg,
      transparent 18%,
      rgba(255, 42, 72, 0.62) 31%,
      rgba(44, 232, 111, 0.62) 43%,
      rgba(45, 136, 255, 0.66) 55%,
      transparent 70%
    );
  transform: translateX(-38%);
  animation: rgbSweep 5.6s ease-in-out infinite;
}

.scanline {
  position: absolute;
  top: -40%;
  right: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: scan 4.8s linear infinite;
}

@keyframes scan {
  to {
    top: 100%;
  }
}

@keyframes rgbSweep {
  0%,
  100% {
    transform: translateX(-42%);
  }

  52% {
    transform: translateX(34%);
  }
}

@keyframes pixelShift {
  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 18px 18px;
  }
}

@keyframes backlightPulse {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

.rgb-badges {
  position: absolute;
  top: 20px;
  left: 22px;
  display: flex;
  gap: 8px;
}

.rgb-badges span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.rgb-badges span:nth-child(1) {
  box-shadow: inset 0 -18px 22px rgba(255, 42, 72, 0.48);
}

.rgb-badges span:nth-child(2) {
  box-shadow: inset 0 -18px 22px rgba(44, 232, 111, 0.48);
}

.rgb-badges span:nth-child(3) {
  box-shadow: inset 0 -18px 22px rgba(45, 136, 255, 0.52);
}

.screen-content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}

.screen-content span,
.screen-content small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.screen-content strong {
  display: block;
  margin: 8px 0;
  font-size: 38px;
}

.connector {
  position: absolute;
  right: -2%;
  bottom: -58%;
  width: 18%;
  height: 38%;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(115, 78, 16, 0.35) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #c68f28, #f2bd53);
  transform: translateZ(-12px);
}

.connector span {
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 2px;
  border-radius: 999px;
  background: rgba(96, 66, 16, 0.48);
}

.connector span:nth-child(1) {
  left: 22%;
}

.connector span:nth-child(2) {
  left: 38%;
}

.connector span:nth-child(3) {
  left: 54%;
}

.connector span:nth-child(4) {
  left: 70%;
}

.board {
  position: absolute;
  right: -7%;
  bottom: -84%;
  display: flex;
  width: 25%;
  height: 22%;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 8px;
  background: #144a43;
  box-shadow: 0 18px 42px rgba(20, 74, 67, 0.28);
  transform: translateZ(-8px);
}

.board span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #85d2ba;
}

.spec-orbit {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(217, 225, 232, 0.8);
  border-radius: 999px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(31, 43, 55, 0.12);
}

.orbit-a {
  top: 56px;
  right: 10px;
}

.orbit-b {
  bottom: 18px;
  left: 18px;
}

.orbit-c {
  right: 14px;
  bottom: 186px;
}

.logo-strip {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto 74px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #53606b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: start;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.brand-card {
  display: grid;
  min-height: 144px;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(217, 225, 232, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(31, 43, 55, 0.07);
}

.brand-logo {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo {
  display: block;
  max-width: 174px;
}

.hkc-logo {
  max-width: 168px;
}

.brand-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.csot-logo {
  max-width: 186px;
}

.capabilities {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
  padding-bottom: 72px;
}

.capability-card,
.industry-grid article,
.timeline div,
.finder-panel,
.rfq-form {
  border: 1px solid rgba(217, 225, 232, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(31, 43, 55, 0.08);
}

.capability-card {
  min-height: 280px;
  padding: 28px;
}

.capability-card.featured {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(18, 184, 215, 0.32), transparent 44%),
    linear-gradient(135deg, #151b21, #23313b);
}

.capability-card p,
.industry-grid p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.capability-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 7px;
  color: var(--white);
  font-weight: 850;
  background: var(--cyan);
}

.featured .icon {
  color: var(--ink);
  background: var(--amber);
}

.model-examples {
  padding-top: 28px;
}

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

.model-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(217, 225, 232, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 249, 251, 0.78)),
    linear-gradient(135deg, rgba(18, 184, 215, 0.1), transparent 42%);
  box-shadow: 0 18px 46px rgba(31, 43, 55, 0.07);
}

.model-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #087d91;
  background: rgba(18, 184, 215, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.model-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.quick-rfq {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
}

.quick-rfq-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.quick-rfq-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(217, 225, 232, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(31, 43, 55, 0.08);
}

.quick-rfq-form label {
  min-width: 0;
}

.quick-rfq-form .button {
  height: 46px;
  white-space: nowrap;
}

.finder {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 42px;
  align-items: center;
}

.finder-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.finder-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  cursor: pointer;
  background: var(--white);
  font: inherit;
  font-weight: 750;
}

.finder-tab.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.finder-panel {
  padding: 28px;
}

.panel-header {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.panel-header span {
  color: #087d91;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-header strong {
  font-size: 28px;
}

.priority-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.priority-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.priority-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  content: "✓";
  background: var(--green);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 32px;
}

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

.industry-grid article {
  min-height: 220px;
  padding: 24px;
}

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

.timeline div {
  padding: 26px;
}

.timeline span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 850;
  background: var(--steel);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-weight: 800;
}

.contact-methods a::after {
  content: "→";
}

.rfq-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input {
  height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(18, 184, 215, 0.28);
  outline-offset: 2px;
}

.footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 36px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.footer-tagline,
.footer-legal {
  margin: 8px 0 0;
}

.footer-legal {
  font-size: 13px;
  line-height: 1.6;
}

.footer-legal a {
  color: var(--steel);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-contact {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(16, 20, 24, 0.24);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta,
  .topbar > .language-switch {
    display: none;
  }

  .mobile-menu.open .mobile-language-switch {
    display: inline-flex;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .intro,
  .quick-rfq,
  .finder,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-stage {
    min-height: 440px;
  }

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

  .capabilities,
  .model-grid,
  .industry-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

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

  .quick-rfq-form .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    gap: 24px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .intro > p,
  .finder-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .trust-row,
  .brand-grid,
  .capabilities,
  .quick-rfq-form,
  .model-grid,
  .industry-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .quick-rfq {
    gap: 18px;
  }

  .quick-rfq-form .button {
    grid-column: auto;
  }

  .brand-card {
    min-height: 118px;
  }

  .brand-logo {
    height: 48px;
  }

  .hero-stage {
    min-height: 350px;
  }

  .display-stack {
    top: 8px;
    right: 0;
    left: 0;
    width: min(96%, 390px);
    height: 320px;
    transform: translate3d(var(--module-shift-x), var(--module-shift-y), 0)
      rotateX(calc(var(--module-rotate-x) + 1deg))
      rotateY(calc(var(--module-rotate-y) - 2deg));
  }

  .lcd-module-svg {
    top: 58px;
    left: 50%;
    width: 380px;
    transform: translateX(-50%);
    animation-name: realisticModuleFloatMobile;
  }

  .module-front-photo {
    top: 40px;
    left: -8%;
    width: 116%;
  }

  .hd-lcd-module {
    top: 48px;
    left: 50%;
    width: min(104%, 390px);
    transform: translateX(-50%) rotateZ(2deg) rotateX(6deg) rotateY(-6deg);
    animation-name: hdModuleFloatMobile;
  }

  .lcd-active-area {
    inset: 13% 9% 21% 9%;
  }

  .module-casing {
    padding: 13px 14px 17px;
  }

  .mount-tab {
    width: 20px;
    height: 8px;
  }

  .side-port {
    right: -12px;
    width: 7px;
    height: 18px;
  }

  .screen-content strong {
    font-size: 27px;
  }


  .section {
    width: min(100% - 24px, 1180px);
    padding: 58px 0;
  }

  .logo-strip {
    width: min(100% - 24px, 1180px);
    justify-content: flex-start;
  }

  .footer {
    width: min(100% - 24px, 1180px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes hdModuleFloatMobile {
  0%,
  100% {
    transform: translateX(-50%) rotateZ(2deg) rotateX(6deg) rotateY(-6deg) translateY(0);
  }

  50% {
    transform: translateX(-50%) rotateZ(2deg) rotateX(6deg) rotateY(-6deg) translateY(-8px);
  }
}

@keyframes realisticModuleFloatMobile {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotateZ(-0.8deg);
  }

  50% {
    transform: translateX(-50%) translateY(-6px) rotateZ(-0.2deg);
  }
}

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