:root {
  --ink: #0b0c0a;
  --ink-soft: #151713;
  --paper: #f0eee6;
  --paper-bright: #f8f6ef;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(11, 12, 10, 0.14);
  --muted-dark: rgba(255, 255, 255, 0.58);
  --muted-light: rgba(11, 12, 10, 0.58);
  --signal: #b6ff42;
  --copper: #d8793b;
  --pad: clamp(22px, 4vw, 64px);
  --shell: min(1440px, calc(100vw - (var(--pad) * 2)));
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ink);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.parts-filter-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--signal);
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--signal);
}

.pointer-light {
  position: fixed;
  z-index: 3;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(182, 255, 66, 0.12);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.floating-help {
  position: fixed;
  z-index: 45;
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(182, 255, 66, 0.42);
  border-radius: 50%;
  color: var(--signal);
  background: rgba(11, 12, 10, 0.84);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 6px rgba(182, 255, 66, 0.08);
  backdrop-filter: blur(14px);
  place-items: center;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s var(--ease);
}

.floating-help::after {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(182, 255, 66, 0.52);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  animation: helpPulse 2.4s ease-out infinite;
}

.floating-help svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.3s var(--ease);
}

.floating-help:hover,
.floating-help:focus-visible {
  border-color: var(--signal);
  color: var(--ink);
  outline: 0;
  background: var(--signal);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(182, 255, 66, 0.28);
  transform: translateY(-4px) scale(1.04);
}

.floating-help:hover svg,
.floating-help:focus-visible svg {
  transform: rotate(8deg) scale(1.06);
}

body.menu-open .floating-help {
  pointer-events: none;
  opacity: 0;
}

body.parts-filter-open .floating-help {
  pointer-events: none;
  opacity: 0;
}

.parts-filter-overlay,
.parts-filter-drawer {
  display: none;
}

.feedback-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(4, 5, 3, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.feedback-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(440px, calc(100vw - 22px));
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--paper-bright);
  border-left: 1px solid rgba(182, 255, 66, 0.32);
  background:
    radial-gradient(circle at 88% 8%, rgba(182, 255, 66, 0.1), transparent 28%),
    #0e100c;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.3);
  backface-visibility: hidden;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feedback-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 30px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-head > div > span {
  display: block;
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.feedback-head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.feedback-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  place-items: center;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.feedback-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.feedback-close:hover,
.feedback-close:focus-visible {
  border-color: var(--signal);
  color: var(--ink);
  outline: 0;
  background: var(--signal);
  transform: rotate(5deg);
}

.feedback-form {
  padding: 30px;
}

.feedback-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid rgba(182, 255, 66, 0.18);
  border-radius: 6px;
  background: rgba(182, 255, 66, 0.055);
}

.feedback-intro i {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(182, 255, 66, 0.1);
}

.feedback-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.75;
}

.feedback-field {
  display: block;
  margin-bottom: 22px;
}

.feedback-field > span,
.feedback-fieldset > legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.feedback-field > span small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.feedback-field input,
.feedback-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.feedback-field input,
.feedback-field textarea {
  min-height: 50px;
}

.feedback-field input {
  height: 50px;
  padding: 0 15px;
}

.feedback-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  line-height: 1.7;
  resize: vertical;
}

.feedback-field input:focus,
.feedback-field textarea:focus {
  border-color: rgba(182, 255, 66, 0.68);
  background: rgba(182, 255, 66, 0.07);
  box-shadow: 0 0 0 4px rgba(182, 255, 66, 0.08);
}

.feedback-field textarea::placeholder,
.feedback-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.feedback-fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.feedback-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.feedback-types label {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.feedback-types input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.feedback-types span {
  display: grid;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  place-items: center;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.feedback-types label:hover span {
  border-color: rgba(182, 255, 66, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.feedback-types input:checked + span {
  border-color: var(--signal);
  color: var(--ink);
  background: var(--signal);
}

.feedback-types input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(182, 255, 66, 0.12);
}

.feedback-submit {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 22px;
  border: 1px solid var(--signal);
  border-radius: 5px;
  color: var(--ink);
  background: var(--signal);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease);
}

.feedback-submit svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.3s var(--ease);
}

.feedback-submit:hover,
.feedback-submit:focus-visible {
  outline: 0;
  color: var(--signal);
  background: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.feedback-submit:hover svg,
.feedback-submit:focus-visible svg {
  transform: translateX(3px);
}

.feedback-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.6;
}

.feedback-success {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 0;
  padding: 9px 10px 9px 13px;
  border: 1px solid rgba(182, 255, 66, 0.42);
  border-radius: 5px;
  color: var(--signal);
  background: rgba(182, 255, 66, 0.08);
  font-size: 11px;
}

.feedback-success[hidden] {
  display: none;
}

.feedback-success.is-error {
  border-color: rgba(255, 113, 91, 0.46);
  color: #ff9a88;
  background: rgba(255, 91, 65, 0.08);
}

.feedback-success-close {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s var(--ease);
}

.feedback-success-close svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.feedback-success-close:hover,
.feedback-success-close:focus-visible {
  color: var(--ink);
  outline: 0;
  background: var(--signal);
  transform: rotate(5deg);
}

body.feedback-open {
  overflow: hidden;
}

body.feedback-open .feedback-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.feedback-open .feedback-drawer {
  transform: translate3d(0, 0, 0);
}

.feedback-head,
.feedback-form {
  opacity: 0;
  transform: translate3d(34px, 0, 0);
  will-change: transform, opacity;
  transition:
    opacity 0.32s ease,
    transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

body.feedback-open .feedback-head,
body.feedback-open .feedback-form {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes helpPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-tag::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.45;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 var(--pad);
  color: #fff;
  transition:
    height 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease;
}

.site-header::after {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  left: var(--pad);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #090a08;
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
}

.brand img {
  width: 158px;
  height: auto;
}

.brand > span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  justify-self: center;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 0.25s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.3s var(--ease);
}

.button:hover svg {
  transform: translateX(5px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px var(--pad) 36px;
  color: #fff;
  text-align: center;
  background: #020302;
}

.hero::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.16;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(circle at center, transparent 18%, rgba(2, 3, 2, 0.16) 54%, rgba(2, 3, 2, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 28%, transparent 67%, rgba(0, 0, 0, 0.72));
  content: "";
  pointer-events: none;
}

.wafer-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}

.hero-chip-stage {
  position: absolute;
  z-index: 1;
  inset: -8% -10% -12%;
  display: grid;
  perspective: 1500px;
  place-items: center;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform;
}

.wafer-shell {
  position: relative;
  width: min(94vw, 1180px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, #4d555b 0, #272d31 45%, #101416 75%, #050606 100%);
  box-shadow:
    0 0 0 1px rgba(255, 198, 120, 0.34),
    0 0 18px rgba(216, 121, 59, 0.24),
    0 0 35px rgba(216, 121, 59, 0.22),
    0 0 150px rgba(0, 0, 0, 0.86);
  transform: rotateX(0) rotateY(0) scale(1.015);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.45s var(--ease);
}

.wafer-shell::before {
  position: absolute;
  z-index: 3;
  inset: -1.1%;
  padding: 2px;
  border: 2px solid transparent;
  background: conic-gradient(
    from 235deg,
    #211b13,
    #e7ba6d 9%,
    #513a20 16%,
    #15140f 32%,
    #ae7e3f 48%,
    #211a11 62%,
    #ebb66a 76%,
    #513a20 84%,
    #211b13
  ) border-box;
  border-radius: inherit;
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  will-change: transform;
  animation: waferRingSpin 72s linear infinite;
}

@keyframes waferRingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wafer-shell::after {
  position: absolute;
  z-index: -1;
  inset: 1.8%;
  border: 1px solid rgba(255, 244, 217, 0.15);
  border-radius: inherit;
  content: "";
  will-change: opacity;
  animation: waferRingBreathe 11s ease-in-out infinite;
}

@keyframes waferRingBreathe {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.wafer-surface {
  position: absolute;
  z-index: 1;
  inset: 1.3%;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 217, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 21%, rgba(255, 255, 255, 0.62) 0 1.2%, rgba(226, 233, 238, 0.2) 8%, transparent 18%),
    radial-gradient(circle at 68% 77%, rgba(182, 255, 66, 0.1), transparent 27%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 25%, rgba(255, 255, 255, 0.05) 60%, transparent 75%),
    radial-gradient(circle at 50% 48%, #68727a 0, #31383d 39%, #121619 73%, #050606 100%);
  box-shadow:
    inset 75px 35px 110px rgba(255, 255, 255, 0.12),
    inset -70px -50px 120px rgba(0, 0, 0, 0.7),
    inset 0 0 0 10px rgba(0, 0, 0, 0.36);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.wafer-surface::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 18%, rgba(255, 255, 255, 0.03) 27%, rgba(255, 255, 255, 0.32) 31%, transparent 34%, transparent 52%, rgba(255, 255, 255, 0.13) 55%, transparent 58%),
    linear-gradient(18deg, transparent 58%, rgba(255, 215, 153, 0.1) 67%, transparent 70%);
  content: "";
  will-change: transform;
  animation: waferSurfaceDrift 200s linear infinite;
}

@keyframes waferSurfaceDrift {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.wafer-die-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(45deg, transparent 0 11px, rgba(216, 121, 59, 0.12) 11px 12px, transparent 12px 23px);
  mask-image: radial-gradient(circle, #000 30%, rgba(0, 0, 0, 0.88) 60%, transparent 94%);
  opacity: 0.95;
}

.wafer-traces {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(182, 255, 66, 0.2) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(182, 255, 66, 0.17) 50%, transparent 50.2%),
    repeating-radial-gradient(circle at center, transparent 0 42px, rgba(255, 255, 255, 0.12) 43px 44px, transparent 45px 88px);
  mask-image: radial-gradient(circle, transparent 7%, #000 24%, #000 66%, transparent 90%);
  opacity: 0.8;
  will-change: transform;
  animation: waferTraceSpin 120s linear infinite;
}

@keyframes waferTraceSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.wafer-glare {
  position: absolute;
  z-index: 3;
  top: -20%;
  bottom: -20%;
  left: -28%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  filter: blur(6px);
  opacity: 0.76;
  transform: rotate(18deg);
  will-change: transform;
  animation: waferGlare 8s ease-in-out infinite;
}

@keyframes waferGlare {
  0%,
  18% { transform: translateX(-30%) rotate(18deg); opacity: 0; }
  35% { opacity: 0.62; }
  70%,
  100% { transform: translateX(520%) rotate(18deg); opacity: 0; }
}

.wafer-scan {
  position: absolute;
  z-index: 5;
  top: 16%;
  right: 4%;
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 255, 66, 0.62), transparent);
  box-shadow: 0 0 14px rgba(182, 255, 66, 0.22);
  opacity: 0.4;
  will-change: transform;
  animation: waferScan 5.8s ease-in-out infinite;
}

@keyframes waferScan {
  0%,
  100% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.46; }
  50% { transform: translateY(calc(min(94vw, 1180px) * 0.604)); opacity: 0.28; }
  80% { opacity: 0; }
}

.wafer-edge {
  position: absolute;
  z-index: 2;
  inset: 3.8%;
  border: 1px solid rgba(255, 224, 175, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 16px 12px 28px rgba(255, 255, 255, 0.05),
    inset -18px -10px 35px rgba(0, 0, 0, 0.8);
  will-change: transform;
  animation: waferEdgeLight 160s linear infinite;
}

@keyframes waferEdgeLight {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wafer-notch {
  position: absolute;
  z-index: 4;
  bottom: 0.1%;
  left: 50%;
  width: 2.2%;
  height: 5.2%;
  border-radius: 0 0 50% 50%;
  background: #020302;
  box-shadow: 0 -1px 0 rgba(255, 214, 155, 0.42);
  transform: translateX(-50%);
}

.wafer-mark {
  position: absolute;
  z-index: 6;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.56vw;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.mark-one {
  top: 20%;
  left: 20%;
}

.mark-two {
  right: 19%;
  bottom: 23%;
}

.mark-three {
  bottom: 16%;
  left: 29%;
}

.hero-speed-streak {
  position: absolute;
  z-index: 5;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.22);
  animation: speedStreak 3.5s linear infinite;
}

.streak-one {
  top: 30%;
  left: 6%;
  width: 120px;
}

.streak-two {
  top: 70%;
  right: 7%;
  width: 180px;
  animation-delay: -1.4s;
}

.streak-three {
  top: 46%;
  right: 14%;
  width: 90px;
  animation-delay: -2.2s;
}

@keyframes speedStreak {
  0% { opacity: 0; transform: translate3d(-80px, -35px, 0) scaleX(0.4); }
  30% { opacity: 0.8; }
  100% { opacity: 0; transform: translate3d(180px, 65px, 0) scaleX(1.15); }
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  justify-self: center;
  max-width: 980px;
}

.hero-copy-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.8);
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(182, 255, 66, 0.1);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(182, 255, 66, 0.4);
  border-radius: 50%;
  content: "";
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { opacity: 0; transform: scale(0.6); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.6); }
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(56px, 6.8vw, 108px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.hero-summary {
  max-width: 610px;
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 9px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease);
}

.hero-secondary::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(182, 255, 66, 0.1);
  content: "";
  transition: box-shadow 0.3s ease;
}

.hero-secondary-label {
  white-space: nowrap;
}

.hero-secondary-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  place-items: center;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.hero-secondary-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.3s var(--ease);
}

.hero-secondary:hover,
.hero-secondary:focus-visible {
  border-color: rgba(182, 255, 66, 0.58);
  color: #fff;
  outline: 0;
  background: rgba(182, 255, 66, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.hero-secondary:hover::before,
.hero-secondary:focus-visible::before {
  box-shadow:
    0 0 0 5px rgba(182, 255, 66, 0.16),
    0 0 18px rgba(182, 255, 66, 0.52);
}

.hero-secondary:hover .hero-secondary-icon,
.hero-secondary:focus-visible .hero-secondary-icon {
  border-color: var(--signal);
  color: var(--ink);
  background: var(--signal);
  transform: translate(2px, -2px);
}

.hero-secondary:hover .hero-secondary-icon svg,
.hero-secondary:focus-visible .hero-secondary-icon svg {
  transform: translate(1px, -1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

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

.button-signal {
  color: var(--ink);
  background: var(--signal);
}

.button-signal:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: transparent;
}

.chip-scene {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(42vw, 640px);
  aspect-ratio: 1;
  perspective: 1200px;
}

.scene-ring {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.ring-one {
  animation: ringSpin 32s linear infinite;
}

.ring-one::before {
  position: absolute;
  top: 15%;
  left: 14%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 24px rgba(182, 255, 66, 0.9);
  content: "";
}

.ring-two {
  inset: 17%;
  border-style: dashed;
  border-color: rgba(216, 121, 59, 0.28);
  animation: ringSpin 44s linear infinite reverse;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.chip-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(57deg) rotateZ(-34deg);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
}

.chip-package {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%),
    #171a16;
  box-shadow:
    0 70px 100px rgba(0, 0, 0, 0.58),
    inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.chip-package::before {
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(182, 255, 66, 0.35);
  background: rgba(7, 8, 7, 0.92);
  content: "";
  transform: translateZ(-18px);
}

.chip-die {
  position: absolute;
  inset: 18%;
  overflow: hidden;
  border: 1px solid rgba(182, 255, 66, 0.48);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(182, 255, 66, 0.16) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(182, 255, 66, 0.16) 50%, transparent 50.5%),
    #10130e;
  box-shadow:
    0 0 38px rgba(182, 255, 66, 0.14),
    inset 0 0 40px rgba(182, 255, 66, 0.05);
}

.die-code {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: var(--signal);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.die-line {
  position: absolute;
  height: 1px;
  background: rgba(182, 255, 66, 0.45);
}

.line-1 {
  top: 32%;
  left: 13%;
  width: 42%;
}

.line-2 {
  top: 32%;
  right: 12%;
  width: 18%;
}

.line-3 {
  top: 60%;
  left: 13%;
  width: 18%;
}

.chip-pins {
  position: absolute;
  z-index: -1;
  display: flex;
  justify-content: space-around;
}

.chip-pins::before,
.chip-pins::after,
.chip-pins {
  background-repeat: repeat;
}

.pins-top,
.pins-bottom {
  left: 8%;
  width: 84%;
  height: 32px;
  background-image: repeating-linear-gradient(90deg, #9da397 0 7px, transparent 7px 17px);
}

.pins-top {
  top: -30px;
}

.pins-bottom {
  bottom: -30px;
}

.pins-left,
.pins-right {
  top: 8%;
  width: 32px;
  height: 84%;
  background-image: repeating-linear-gradient(180deg, #9da397 0 7px, transparent 7px 17px);
}

.pins-left {
  left: -30px;
}

.pins-right {
  right: -30px;
}

.chip-caption {
  position: absolute;
  right: 2%;
  bottom: 11%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 18px;
  border-left: 1px solid var(--signal);
}

.chip-caption span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.chip-caption strong {
  font-size: 13px;
  font-weight: 500;
}

.hero-foot {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 60px;
  justify-self: stretch;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.hero-stat strong {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-stat sup {
  color: var(--signal);
  font-size: 13px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  position: relative;
  width: 80px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--signal);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-30px); }
  100% { transform: translateX(90px); }
}

.why-us {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 180px) 0;
  background: #10120e;
}

.why-us::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.why-us .section-shell {
  position: relative;
  z-index: 1;
}

.why-us-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.why-us-head h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.why-us-head > p {
  margin: 0 0 8px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.9;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.why-us-item {
  display: flex;
  min-height: 310px;
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line-dark);
  flex-direction: column;
  transition: background 0.35s ease;
}

.why-us-item:last-child {
  border-right: 0;
}

.why-us-item:hover {
  background: rgba(182, 255, 66, 0.035);
}

.why-us-item > span {
  color: var(--signal);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.why-us-item h3 {
  margin: 54px 0 18px;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.why-us-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.85;
}

.why-us-item small {
  margin-top: auto;
  padding-top: 34px;
  color: rgba(182, 255, 66, 0.72);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.capabilities {
  padding: clamp(110px, 14vw, 200px) 0;
}

.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(70px, 10vw, 180px);
  align-items: center;
}

.capabilities-intro {
  position: sticky;
  top: 140px;
}

.capabilities-intro h2,
.industries-head h2,
.partners-intro h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.capabilities-intro h2 {
  font-size: clamp(38px, 4vw, 62px);
  white-space: nowrap;
}

.capabilities-intro > p {
  max-width: 430px;
  margin: 36px 0 0;
  color: var(--muted-dark);
  line-height: 1.9;
}

.capability-progress {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 210px;
  margin-top: 64px;
  color: var(--signal);
  font-size: 11px;
}

.capability-progress i {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.capability-progress i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--capability-progress, 5%);
  height: 100%;
  background: var(--signal);
  content: "";
  transition: width 0.2s linear;
}

.capability-progress b {
  color: rgba(255, 255, 255, 0.34);
  font-weight: 400;
}

.capability-list {
  border-top: 1px solid var(--line-dark);
}

.capability-row {
  display: grid;
  grid-template-columns: 52px 50px minmax(0, 1fr) 30px;
  gap: 22px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-dark);
  transition:
    padding 0.4s var(--ease),
    border-color 0.4s ease,
    background 0.4s ease;
}

.capability-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  border-color: rgba(182, 255, 66, 0.42);
  background: rgba(182, 255, 66, 0.035);
}

.capability-number {
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  place-items: center;
}

.capability-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--signal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.capability-body h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.capability-body p {
  max-width: 520px;
  margin: 15px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.8;
}

.row-arrow {
  justify-self: end;
  color: var(--signal);
  font-size: 20px;
  transition: transform 0.35s var(--ease);
}

.capability-row:hover .row-arrow {
  transform: translate(4px, -4px);
}

.products {
  position: relative;
  padding: clamp(84px, 9vw, 132px) 0 0;
  background: var(--ink-soft);
}

.system-kicker {
  margin: 0 0 24px;
  color: var(--signal);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.parts-finder {
  margin-top: 0;
  padding: clamp(30px, 4vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(182, 255, 66, 0.035), transparent 38%),
    rgba(5, 6, 5, 0.7);
}

.parts-finder-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.parts-finder-head .system-kicker {
  margin-bottom: 18px;
}

.parts-finder-head h3 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.parts-finder-head h3 em {
  color: var(--signal);
  font-weight: 400;
}

.parts-finder-head > p {
  margin: 0 0 6px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.85;
}

.parts-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 46px;
}

.parts-search {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.parts-search:focus-within {
  border-color: rgba(182, 255, 66, 0.7);
  background: rgba(182, 255, 66, 0.04);
}

.parts-search svg {
  width: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-linecap: round;
  stroke-width: 1.4;
}

.parts-search input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
}

.parts-search input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.parts-toolbar-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  white-space: nowrap;
}

.parts-toolbar-meta b {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.parts-toolbar-meta a {
  color: var(--signal);
  transition: color 0.25s ease;
}

.parts-toolbar-meta a:hover {
  color: #fff;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 46px;
  margin-top: 38px;
}

.catalog-sidebar {
  border-top: 1px solid var(--line-dark);
}

.catalog-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-sidebar-title {
  flex: 1;
  margin: 0;
  padding: 17px 0 14px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.parts-filter-toggle {
  display: none;
}

.parts-filters {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.part-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.part-filter:hover,
.part-filter.is-active {
  color: var(--signal);
  background: rgba(182, 255, 66, 0.07);
}

.part-filter.is-active {
  box-shadow: inset 2px 0 0 var(--signal);
}

.part-filter-count {
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
}

.part-filter.is-active .part-filter-count {
  color: rgba(182, 255, 66, 0.7);
}

.parts-table {
  border-top: 1px solid var(--line-dark);
}

.parts-table-head,
.part-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(110px, 0.7fr) minmax(240px, 1.7fr) 110px;
  gap: 24px;
  align-items: center;
}

.parts-table-head {
  min-height: 54px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.part-row {
  min-height: 82px;
  border-bottom: 1px solid var(--line-dark);
  color: inherit;
  transition:
    padding 0.35s var(--ease),
    background 0.35s ease;
}

.part-row:hover {
  padding: 0 16px;
  background: rgba(182, 255, 66, 0.035);
}

.part-row strong {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.part-row > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.part-row-media,
.part-row-action-icon {
  display: none;
}

.part-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.part-row-action {
  justify-self: end;
  color: var(--signal);
  font-size: 12px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease);
}

.part-row:hover .part-row-action {
  transform: translate(3px, -3px);
}

.parts-empty {
  margin: 0;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.parts-empty a {
  color: var(--signal);
}

.parts-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}

.parts-pagination button {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  place-items: center;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.parts-pagination button:hover,
.parts-pagination button.is-active {
  border-color: rgba(182, 255, 66, 0.5);
  color: var(--signal);
  background: rgba(182, 255, 66, 0.07);
}

.parts-pagination button:disabled {
  cursor: default;
  opacity: 0.3;
}

.parts-finder-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.parts-finder-foot span {
  color: var(--signal);
  white-space: nowrap;
}

.parts-finder-foot b {
  font-size: 16px;
  font-weight: 500;
}

.parts-finder-foot p {
  margin: 0;
  text-align: right;
}

.industries {
  padding: clamp(110px, 13vw, 190px) 0;
}

.industries-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.6fr);
  gap: 70px;
  align-items: end;
}

.industries-head .section-tag {
  grid-column: 1 / -1;
}

.industries-head > p {
  margin: 0 0 10px;
  color: var(--muted-light);
  line-height: 1.9;
}

.industry-list {
  margin-top: 90px;
  border-top: 1px solid var(--line-light);
}

.industry-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(230px, 0.8fr) minmax(260px, 1fr) 40px;
  gap: 30px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line-light);
  transition:
    color 0.35s ease,
    padding 0.4s var(--ease);
}

.industry-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.42s var(--ease);
}

.industry-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  color: #fff;
}

.industry-row:hover::before {
  transform: scaleY(1);
}

.industry-count {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.industry-name {
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.industry-note {
  color: var(--muted-light);
  font-size: 13px;
  transition: color 0.35s ease;
}

.industry-row:hover .industry-note {
  color: rgba(255, 255, 255, 0.54);
}

.industry-arrow {
  justify-self: end;
  color: var(--copper);
  font-size: 22px;
  transition: transform 0.35s var(--ease);
}

.industry-row:hover .industry-arrow {
  transform: translate(5px, -5px);
}

.partners {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 13vw, 190px) 0;
}

.partners::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 82%, transparent);
  pointer-events: none;
}

.partners-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.partners-intro {
  position: sticky;
  top: 140px;
}

.partners-intro > p {
  max-width: 470px;
  margin: 34px 0 0;
  color: var(--muted-dark);
  line-height: 1.9;
}

.partners-stat {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  max-width: 320px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.partners-stat strong {
  color: var(--signal);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.partners-stat span {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.55;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--paper-bright);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s var(--ease);
}

.partner-logo img {
  position: absolute;
  top: 9%;
  left: 9%;
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.partner-logo:hover {
  border-color: rgba(182, 255, 66, 0.42);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 13vw, 190px) 0;
  color: var(--ink);
  background: var(--signal);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  right: -8vw;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 12, 10, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(11, 12, 10, 0.1);
  border-radius: inherit;
  content: "";
}

.contact-orbit::before {
  inset: 15%;
}

.contact-orbit::after {
  inset: 35%;
}

.contact-shell {
  position: relative;
  z-index: 2;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.55fr);
  gap: 64px;
  align-items: end;
}

.contact h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(52px, 6.6vw, 102px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact h2 span {
  display: block;
  color: rgba(11, 12, 10, 0.46);
  font-style: italic;
  font-weight: 400;
}

.contact-actions {
  display: flex;
  width: 100%;
  max-width: 430px;
  flex-direction: column;
  justify-self: end;
}

.contact-channels {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  color: #fff;
  border: 1px solid rgba(182, 255, 66, 0.72);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(20, 24, 17, 0.98), rgba(8, 10, 7, 0.96));
  box-shadow:
    0 0 0 7px rgba(182, 255, 66, 0.13),
    0 28px 70px rgba(11, 12, 10, 0.28),
    0 0 46px rgba(182, 255, 66, 0.14);
}

.contact-channels::before {
  position: absolute;
  top: -6px;
  right: 28px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(11, 12, 10, 0.7);
  border-radius: 50%;
  background: var(--signal);
  box-shadow:
    0 0 0 5px rgba(182, 255, 66, 0.18),
    0 0 24px rgba(182, 255, 66, 0.8);
  content: "";
}

.contact-email {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s var(--ease);
}

.contact-email::before,
.contact-phone::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 0.32s ease,
    transform 0.32s var(--ease);
}

.contact-email:hover,
.contact-email:focus-visible,
.contact-phone:hover,
.contact-phone:focus-visible {
  color: var(--ink);
  border-color: var(--signal);
  outline: 0;
  background: var(--signal);
  box-shadow:
    0 16px 34px rgba(11, 12, 10, 0.26),
    0 0 26px rgba(182, 255, 66, 0.2);
  transform: translateY(-4px);
}

.contact-email:hover::before,
.contact-email:focus-visible::before,
.contact-phone:hover::before,
.contact-phone:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.contact-email:active,
.contact-phone:active {
  transform: translateY(-1px) scale(0.995);
}

.contact-email-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.contact-email-copy small {
  color: rgba(182, 255, 66, 0.72);
  font-size: 9px;
  letter-spacing: 0.16em;
  transition:
    color 0.32s ease,
    letter-spacing 0.32s ease;
}

.contact-email-copy strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.32s ease;
}

.contact-email-icon {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--signal);
  border-radius: 50%;
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  place-items: center;
  transition:
    color 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s var(--ease);
}

.contact-email-icon::after,
.contact-phone-icon::after {
  position: absolute;
  inset: -1px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.contact-email-icon svg,
.contact-phone-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-email-icon svg {
  transition: transform 0.32s var(--ease);
}

.contact-email:hover .contact-email-icon,
.contact-email:focus-visible .contact-email-icon {
  border-color: var(--ink);
  color: var(--signal);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transform: translateX(4px) scale(1.05);
}

.contact-email:hover .contact-email-icon svg,
.contact-email:focus-visible .contact-email-icon svg {
  transform: translateX(1px);
}

.contact-email:hover .contact-email-icon::after,
.contact-email:focus-visible .contact-email-icon::after,
.contact-phone:hover .contact-phone-icon::after,
.contact-phone:focus-visible .contact-phone-icon::after {
  animation: contact-ring 0.8s ease-out;
}

.contact-email:hover .contact-email-copy small,
.contact-email:focus-visible .contact-email-copy small {
  color: rgba(11, 12, 10, 0.62);
  letter-spacing: 0.2em;
}

.contact-email:hover .contact-email-copy strong,
.contact-email:focus-visible .contact-email-copy strong {
  color: var(--ink);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid rgba(11, 12, 10, 0.22);
  border-bottom: 1px solid rgba(11, 12, 10, 0.22);
}

.support-grid a {
  display: flex;
  min-height: 180px;
  padding: 26px 22px 24px;
  border-right: 1px solid rgba(11, 12, 10, 0.22);
  flex-direction: column;
  transition: background 0.32s ease;
}

.support-grid a:last-child {
  border-right: 0;
}

.support-grid a:hover {
  background: var(--ink);
  color: var(--signal);
}

.support-grid span {
  color: rgba(11, 12, 10, 0.45);
  font-size: 10px;
}

.support-grid strong {
  margin-top: auto;
  font-size: 21px;
  font-weight: 500;
}

.support-grid small {
  margin-top: 12px;
  color: rgba(11, 12, 10, 0.58);
  font-size: 11px;
  line-height: 1.7;
}

.support-grid a:hover span,
.support-grid a:hover small {
  color: rgba(255, 255, 255, 0.5);
}

.contact-phone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: center;
  overflow: hidden;
  min-height: 94px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s var(--ease);
}

.contact-phone > span:first-child {
  grid-column: 1;
  color: rgba(182, 255, 66, 0.72);
  font-size: 9px;
  letter-spacing: 0.14em;
  transition:
    color 0.32s ease,
    letter-spacing 0.32s ease;
}

.contact-phone strong {
  grid-column: 1;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 29px);
  font-weight: 500;
  line-height: 1.15;
  transition: color 0.32s ease;
}

.contact-phone-icon {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  place-items: center;
  transition:
    color 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s var(--ease);
}

.contact-phone:hover .contact-phone-icon,
.contact-phone:focus-visible .contact-phone-icon {
  border-color: var(--ink);
  color: var(--signal);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transform: translateX(4px) scale(1.05);
}

.contact-phone-icon svg {
  width: 18px;
  height: 18px;
}

.contact-phone:hover > span:first-child,
.contact-phone:focus-visible > span:first-child {
  color: rgba(11, 12, 10, 0.62);
  letter-spacing: 0.18em;
}

.contact-phone:hover strong,
.contact-phone:focus-visible strong {
  color: var(--ink);
}

@keyframes contact-ring {
  0% {
    opacity: 0.45;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.site-footer {
  padding: 72px 0 30px;
  color: #fff;
  background: var(--ink);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(620px, 1.3fr);
  gap: 80px;
  align-items: start;
}

.footer-brand {
  align-self: center;
  justify-self: center;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 32px 64px;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.footer-contact-item {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.footer-contact p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

.footer-contact a {
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--signal);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.footer-bottom a:last-child {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
}

.product-detail-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(182, 255, 66, 0.06), transparent 28%),
    var(--ink);
}

.product-detail-hero {
  padding: 150px 0 90px;
}

.product-back {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.product-back:hover {
  color: var(--signal);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.product-gallery-frame {
  display: grid;
  min-height: 500px;
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 48%),
    #0d0f0c;
  place-items: center;
}

.product-gallery-main {
  display: block;
  width: 100%;
  max-width: 430px;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.42));
}

.product-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.product-thumbnail {
  display: grid;
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.product-thumbnail:hover,
.product-thumbnail.is-active {
  border-color: rgba(182, 255, 66, 0.58);
  background: rgba(182, 255, 66, 0.05);
}

.product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-info {
  padding-top: 4px;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.product-detail-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(182, 255, 66, 0.22);
  color: rgba(182, 255, 66, 0.78);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.product-detail-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.product-detail-model {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.product-detail-name {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.product-detail-summary {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.9;
}

.product-parameters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.product-parameter {
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.product-parameter-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.product-parameter-value {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.product-detail-secondary {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: color 0.25s ease;
}

.product-detail-secondary:hover {
  color: var(--signal);
}

.product-detail-content-section {
  padding: 96px 0 130px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.product-detail-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.product-content-title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-content-blocks {
  min-width: 0;
}

.product-content-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
  line-height: 1.95;
}

.product-content-heading {
  margin: 52px 0 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.product-content-blocks > .product-content-heading:first-child {
  margin-top: 0;
}

.product-content-image {
  margin: 36px 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.product-content-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.product-detail-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  background: var(--ink);
  font-size: 11px;
}

.product-detail-footer .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-detail-footer a {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1360px) {
  .site-header .brand > span {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: min(420px, 100%);
    padding: 120px 40px 40px;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 24px;
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .menu-toggle {
    z-index: 2;
    display: block;
    justify-self: end;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero h1 {
    font-size: clamp(56px, 8.2vw, 92px);
  }

  .capabilities-layout {
    grid-template-columns: minmax(260px, 0.6fr) minmax(520px, 1.4fr);
    gap: 70px;
  }

  .partners-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .partners-intro {
    position: static;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .product-gallery {
    position: static;
    max-width: 760px;
  }

  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

}

@media (max-width: 1080px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-actions {
    max-width: 460px;
    justify-self: start;
  }
}

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

  .site-header {
    height: 70px;
  }

  .brand img {
    width: 140px;
  }

  .brand > span {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 140px var(--pad) 34px;
  }

  .product-detail-hero {
    padding: 122px 0 72px;
  }

  .product-gallery-frame {
    min-height: 430px;
    padding: 42px;
  }

  .hero::after {
    background:
      radial-gradient(circle at center, transparent 10%, rgba(2, 3, 2, 0.12) 48%, rgba(2, 3, 2, 0.8) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 28%, transparent 66%, rgba(0, 0, 0, 0.74));
  }

  .hero-chip-stage {
    inset: -15% -64% -8%;
  }

  .wafer-shell {
    width: min(168vw, 760px);
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(48px, 10.5vw, 76px);
    letter-spacing: -0.06em;
  }

  .hero h1 span {
    margin-left: 0;
    white-space: normal;
  }

  .hero-summary {
    max-width: 560px;
    margin-top: 30px;
  }

  .hero-foot {
    flex-wrap: wrap;
    gap: 24px 38px;
  }

  .scroll-cue {
    width: 100%;
    margin-left: 0;
  }

  .why-us-head,
  .industries-head,
  .contact-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us-item:nth-child(2) {
    border-right: 0;
  }

  .why-us-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .capabilities-intro {
    position: static;
  }

  .capability-row {
    grid-template-columns: 40px minmax(0, 1fr) 28px;
  }

  .capability-icon {
    display: none;
  }

  .parts-finder-head,
  .parts-toolbar {
    grid-template-columns: 1fr;
  }

  .parts-toolbar {
    gap: 14px;
  }

  .parts-toolbar-meta {
    align-items: flex-start;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .catalog-layout > * {
    width: 100%;
    min-width: 0;
  }

  .catalog-sidebar {
    border-top: 0;
  }

  .catalog-sidebar-head {
    min-height: 48px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .catalog-sidebar-title {
    padding: 0;
    border-bottom: 0;
  }

  .parts-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 2px 0 12px;
    border: 0;
    color: var(--signal);
    background: transparent;
    font-size: 11px;
    cursor: pointer;
  }

  .parts-filter-toggle svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
  }

  .parts-filters {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0 4px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .parts-filters::-webkit-scrollbar {
    display: none;
  }

  .parts-filters .part-filter {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    scroll-snap-align: start;
  }

  .parts-filters .part-filter.is-active {
    border-color: rgba(182, 255, 66, 0.48);
    box-shadow: none;
  }

  .parts-filters .part-filter-count {
    display: none;
  }

  .parts-table-head {
    display: none;
  }

  .parts-table {
    scroll-margin-top: 84px;
  }

  .part-row {
    grid-template-columns: 84px minmax(0, 1fr) 24px;
    grid-template-rows: auto auto auto;
    gap: 3px 12px;
    align-items: center;
    min-height: 116px;
    padding: 15px 0;
  }

  .part-row:hover {
    padding: 15px 0;
    background: transparent;
  }

  .part-row-media {
    display: grid;
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 84px;
    height: 84px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
      radial-gradient(circle at 50% 45%, rgba(182, 255, 66, 0.08), transparent 62%),
      rgba(255, 255, 255, 0.025);
    place-items: center;
  }

  .part-row-media img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
  }

  .part-row-media.is-placeholder {
    color: rgba(182, 255, 66, 0.72);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .part-row strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    overflow-wrap: anywhere;
    font-size: 17px;
    line-height: 1.2;
  }

  .part-row-category {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    overflow: hidden;
    max-width: 100%;
    padding: 2px 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.035);
    font-size: 10px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .part-row p {
    display: -webkit-box;
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .part-row-action {
    display: grid;
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
    justify-self: end;
    width: 24px;
    height: 36px;
    color: var(--signal);
    place-items: center;
  }

  .part-row-action-label {
    display: none;
  }

  .part-row-action-icon {
    display: block;
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .part-row:hover .part-row-action {
    transform: none;
  }

  .catalog-results {
    padding-bottom: 64px;
  }

  .parts-pagination {
    display: grid;
    grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr);
    gap: 10px;
    align-items: center;
  }

  .parts-pagination button {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
  }

  .parts-page-status {
    min-width: 58px;
    color: var(--signal);
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .floating-help {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .floating-help::after {
    inset: 0;
    opacity: 0.5;
    animation: none;
  }

  .floating-help svg {
    width: 19px;
    height: 19px;
  }

  .parts-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    background: rgba(4, 5, 3, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .parts-filter-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .parts-filter-drawer {
    position: fixed;
    z-index: 75;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    max-height: min(78svh, 620px);
    border-top: 1px solid rgba(182, 255, 66, 0.32);
    color: var(--paper-bright);
    background:
      radial-gradient(circle at 88% 8%, rgba(182, 255, 66, 0.09), transparent 30%),
      #0e100c;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.38);
    flex-direction: column;
    pointer-events: none;
    transform: translate3d(0, 105%, 0);
    transition: transform 0.34s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .parts-filter-drawer.is-open {
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .parts-filter-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .parts-filter-drawer-head span {
    display: block;
    margin-bottom: 7px;
    color: var(--signal);
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .parts-filter-drawer-head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
  }

  .parts-filter-close {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    place-items: center;
  }

  .parts-filter-close svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
  }

  .parts-filter-drawer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow-y: auto;
    padding: 16px 16px max(18px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  .parts-filter-drawer-list .part-filter {
    min-height: 54px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .parts-filter-drawer-list .part-filter.is-active {
    border-color: rgba(182, 255, 66, 0.48);
  }

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

  .support-grid a:nth-child(2) {
    border-right: 0;
  }

  .support-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 12, 10, 0.22);
  }

  .industry-row {
    grid-template-columns: 50px 1fr 33px;
    min-height: 104px;
  }

  .industry-note {
    display: none;
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-brand {
    align-self: start;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-secondary {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-secondary-icon {
    margin-left: auto;
  }

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

  .hero-stat {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hero {
    padding-top: 124px;
  }

  .product-detail-hero {
    padding-top: 108px;
  }

  .product-gallery-frame {
    min-height: 320px;
    padding: 24px;
  }

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

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

  .product-detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .product-detail-secondary {
    padding-left: 2px;
  }

  .product-content-image {
    padding: 12px;
  }

  .hero-chip-stage {
    inset: -13% -112% -4%;
  }

  .wafer-shell {
    width: 188vw;
  }

  .wafer-mark {
    font-size: 8px;
  }

  .hero-summary {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.72;
  }

  .capability-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    padding: 32px 0;
  }

  .row-arrow {
    display: none;
  }

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

  .partner-logo {
    aspect-ratio: 1.45;
  }

  .partner-logo img {
    top: 7%;
    left: 7%;
    width: 86%;
    height: 86%;
  }

  .partners-stat {
    margin-top: 40px;
  }

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

  .footer-contact {
    margin-top: 10px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-item {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .why-us-item:last-child {
    border-bottom: 0;
  }

  .why-us-item h3 {
    margin-top: 30px;
  }

  .parts-finder {
    padding: 26px 20px;
  }

  .parts-filters {
    gap: 7px;
  }

  .part-row {
    grid-template-columns: 84px minmax(0, 1fr) 20px;
    gap: 3px 10px;
  }

  .part-row:hover {
    padding: 15px 0;
  }

  .part-row p {
    grid-column: 2;
    grid-row: 3;
  }

  .part-row-action {
    justify-self: end;
  }

  .parts-finder-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .parts-finder-foot p {
    text-align: left;
  }

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

  .support-grid a {
    min-height: 144px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 12, 10, 0.22);
  }

  .support-grid a:last-child {
    border-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .contact h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .contact-actions {
    align-items: stretch;
  }

  .feedback-drawer {
    width: 100%;
    border-left: 0;
  }

  .feedback-head {
    padding: 24px 20px 22px;
  }

  .feedback-head h2 {
    font-size: 26px;
  }

  .feedback-form {
    padding: 24px 20px 30px;
  }

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

  .footer-bottom a:last-child {
    margin-left: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pointer-light {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  /* Two things stay animated on purpose: the hero wafer, which is the brand's
     ambient signature, and the feedback panel's slide, which is the only cue that
     the panel opened. Everything else above stays disabled. */
  .wafer-shell::before {
    animation: waferRingSpin 72s linear infinite !important;
  }

  .wafer-shell::after {
    animation: waferRingBreathe 11s ease-in-out infinite !important;
  }

  .wafer-traces {
    animation: waferTraceSpin 120s linear infinite !important;
  }

  .wafer-surface::before {
    animation: waferSurfaceDrift 200s linear infinite !important;
  }

  .wafer-edge {
    animation: waferEdgeLight 160s linear infinite !important;
  }

  .wafer-glare {
    animation: waferGlare 8s ease-in-out infinite !important;
  }

  .wafer-scan {
    animation: waferScan 5.8s ease-in-out infinite !important;
  }

  .feedback-drawer {
    transition-duration: 0.4s !important;
  }

  .feedback-head,
  .feedback-form {
    transition-duration: 0.32s, 0.4s !important;
  }
}
