@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #090b0a;
  --ink-soft: #101411;
  --panel: #151a16;
  --panel-light: #1b211c;
  --paper: #eff2e9;
  --paper-dim: #c7cec0;
  --muted: #8b948b;
  --line: rgba(231, 238, 226, 0.14);
  --line-strong: rgba(231, 238, 226, 0.28);
  --acid: #c7ff28;
  --acid-bright: #dcff72;
  --orange: #ff4f18;
  --steel: #aeb9ae;
  --shell: min(1440px, calc(100vw - 72px));
  --mono: "DM Mono", "Cascadia Mono", monospace;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--acid) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle 260px at var(--cursor-x, 50%) var(--cursor-y, 35%),
    rgba(199, 255, 40, 0.055),
    transparent 66%
  );
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: var(--shell);
  min-height: 84px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  transition: min-height 240ms ease, background 240ms ease, padding 240ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc((100vw - var(--shell)) / -2);
  background: rgba(9, 11, 10, 0);
  backdrop-filter: blur(0);
  transition: inherit;
}

.site-header.is-scrolled {
  min-height: 66px;
}

.site-header.is-scrolled::before {
  background: rgba(9, 11, 10, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 6px;
  border: 1px solid var(--line-strong);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--acid);
  box-shadow: 0 0 15px var(--acid);
}

.brand-mark span {
  display: block;
  background: var(--paper);
}

.brand-mark span:nth-child(1) { height: 45%; }
.brand-mark span:nth-child(2) { height: 100%; background: var(--acid); }
.brand-mark span:nth-child(3) { height: 70%; }

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.16em;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.mini-link {
  position: relative;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--acid);
  transition: right 200ms ease;
}

.desktop-nav a:hover,
.mini-link:hover {
  color: var(--acid);
}

.desktop-nav a:hover::after { right: 0; }

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: rgba(255, 255, 255, 0.24);
  transition: transform 280ms ease;
}

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

.button--acid {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(199, 255, 40, 0);
}

.button--acid:hover {
  box-shadow: 0 12px 38px rgba(199, 255, 40, 0.18);
}

.button--small {
  min-height: 38px;
  padding-inline: 15px;
  gap: 16px;
  font-size: 10px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 138px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(56px, 7vw, 126px);
}

.hero > * {
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -18vw;
  top: -22vw;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 24, 0.09), transparent 64%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -22vw;
  bottom: -28vw;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 40, 0.06), transparent 65%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.65); }
}

.hero h1 {
  max-width: 840px;
  margin: 27px 0 28px;
  font-size: clamp(60px, 6.25vw, 108px);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.86;
}

.outline-text {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--acid);
  text-shadow: 0 0 34px rgba(199, 255, 40, 0.11);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.78;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.hero-proof {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 18px 20px 0;
}

.hero-proof div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 21px;
  letter-spacing: -0.05em;
}

.hero-proof span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.machine-stage {
  position: relative;
  aspect-ratio: 0.93;
  max-height: 730px;
  isolation: isolate;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(238, 242, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 234, 0.035) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 52px 52px;
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.machine-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -1;
  background: radial-gradient(circle, rgba(199, 255, 40, 0.09), transparent 64%);
}

.stage-index,
.stage-footer,
.stage-callout {
  font-family: var(--mono);
}

.stage-index {
  position: absolute;
  top: 21px;
  left: 24px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.stage-corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: var(--acid);
  opacity: 0.7;
}

.stage-corner--tl { left: -1px; top: -1px; border-left: 2px solid; border-top: 2px solid; }
.stage-corner--tr { right: -1px; top: -1px; border-right: 2px solid; border-top: 2px solid; }
.stage-corner--bl { left: -1px; bottom: -1px; border-left: 2px solid; border-bottom: 2px solid; }
.stage-corner--br { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }

.orbit {
  position: absolute;
  inset: 13%;
  z-index: 0;
  border: 1px solid rgba(199, 255, 40, 0.19);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 16%;
  left: 8%;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
}

.orbit--one { animation: orbitOne 14s linear infinite; }
.orbit--two {
  inset: 23%;
  border-color: rgba(255, 79, 24, 0.24);
  transform: rotate(24deg);
  animation: orbitTwo 11s linear infinite reverse;
}

.orbit--two::after {
  top: 78%;
  left: 88%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}

@keyframes orbitOne { to { transform: rotate(346deg); } }
@keyframes orbitTwo { to { transform: rotate(384deg); } }

.product-plate {
  position: absolute;
  z-index: 2;
  inset: 17% 10% 15%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef1ea;
  clip-path: polygon(6% 0, 100% 0, 100% 88%, 91% 100%, 0 100%, 0 7%);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.product-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(199, 255, 40, 0.18), transparent 30%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.product-plate img {
  width: 114%;
  max-width: none;
  height: 114%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: rotate(-4deg) scale(1.02);
  filter: contrast(1.03) saturate(0.9);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.machine-stage:hover .product-plate img {
  transform: rotate(-1deg) scale(1.08);
}

.scanner {
  position: absolute;
  z-index: 4;
  left: 10%;
  right: 10%;
  top: 15%;
  height: 2px;
  opacity: 0.76;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  box-shadow: 0 0 22px rgba(199, 255, 40, 0.85);
  animation: scan 5.3s ease-in-out infinite;
}

@keyframes scan {
  0%, 12% { top: 17%; opacity: 0; }
  20% { opacity: 0.8; }
  78% { opacity: 0.8; }
  88%, 100% { top: 82%; opacity: 0; }
}

.hotspot {
  position: absolute;
  z-index: 6;
  width: 17px;
  height: 17px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(199, 255, 40, 0.07);
}

.hotspot i {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.hotspot--one { left: 30%; top: 52%; }
.hotspot--two { right: 24%; top: 30%; border-color: var(--orange); box-shadow: 0 0 0 7px rgba(255, 79, 24, 0.07); }
.hotspot--two i { background: var(--orange); }

.stage-callout {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border-left: 2px solid var(--acid);
  background: rgba(9, 11, 10, 0.87);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.stage-callout span {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.stage-callout strong {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.stage-callout--model { top: 25%; right: -24px; }
.stage-callout--oe { bottom: 25%; left: -28px; border-color: var(--orange); }

.stage-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.stage-footer .mono { color: var(--acid); }

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 66px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--acid);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine { 60%, 100% { transform: translateX(100%); } }

.signal-strip {
  position: relative;
  width: 100%;
  height: 39px;
  overflow: hidden;
  contain: strict;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--acid);
  color: var(--ink);
}

.signal-track {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  width: max-content;
  align-items: center;
  padding: 13px 0;
  animation: ticker 36s linear infinite;
}

.signal-track span {
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.signal-track i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--ink);
}

@keyframes ticker { to { transform: translateX(-50%); } }

.catalog,
.process {
  padding-top: 140px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.section-heading h2,
.supply-copy h2,
.contact-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(44px, 5.1vw, 78px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading h2 span,
.supply-copy h2 span,
.contact-copy h2 span {
  color: var(--muted);
  font-weight: 500;
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.finder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.search-box {
  position: relative;
  display: flex;
  min-width: min(560px, 46vw);
  align-items: center;
  gap: 16px;
}

.search-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 1px solid var(--acid);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  margin: 12px 0 0 11px;
  transform: rotate(45deg);
  background: var(--acid);
}

.search-box input {
  width: 100%;
  padding: 8px 12px 8px 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--paper);
  font-size: 17px;
}

.search-box input::placeholder { color: #5f685f; }

.search-box:focus-within .search-icon {
  background: var(--acid);
  box-shadow: 0 0 15px rgba(199, 255, 40, 0.45);
}

.search-box kbd {
  padding: 4px 7px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 160ms ease;
}

.filter:hover,
.filter.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.result-line {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.result-line strong { color: var(--acid); }

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

.product-card {
  position: relative;
  grid-column: span 4;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 6;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 255, 40, 0.55);
  background: var(--panel-light);
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-top: 1px solid var(--acid);
  border-right: 1px solid var(--acid);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover::after { opacity: 1; }

.product-image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: #e9ece5;
}

.product-card:nth-child(4) .product-image,
.product-card:nth-child(5) .product-image {
  height: 330px;
}

.product-image::before {
  content: "VIEW / 03";
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 14px;
  padding: 6px 8px;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-image img { transform: scale(1.07) rotate(-1.5deg); }

.product-card-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.product-meta span:first-child { color: var(--orange); }

.product-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.product-fitment {
  margin: -10px 0 0;
  color: var(--paper-dim);
  font-size: 12px;
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-code {
  display: grid;
  gap: 5px;
}

.product-code span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.product-code strong {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
}

.product-open {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--acid);
  transition: 180ms ease;
}

.product-card:hover .product-open {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.empty-state {
  padding: 70px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state strong,
.empty-state span,
.empty-state a { display: block; }
.empty-state strong { font-size: 26px; }
.empty-state span { margin: 13px 0 25px; color: var(--muted); }
.empty-state a { color: var(--acid); font-family: var(--mono); font-size: 10px; }

.supply {
  min-height: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.supply-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #bfff20;
  color: var(--ink);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(9, 11, 10, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 10, 0.3) 1px, transparent 1px);
  background-size: 44px 44px;
}

.blueprint-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(9, 11, 10, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.blueprint-ring--outer {
  width: 71%;
  aspect-ratio: 1;
  box-shadow: 0 0 0 55px rgba(9, 11, 10, 0.04), 0 0 0 110px rgba(9, 11, 10, 0.03);
}

.blueprint-ring--outer::before,
.blueprint-ring--outer::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
}

.blueprint-ring--outer::before { top: 12%; left: 12%; }
.blueprint-ring--outer::after { right: 6%; bottom: 25%; }

.blueprint-ring--inner {
  width: 37%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: blueprintSpin 16s linear infinite;
}

@keyframes blueprintSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.blueprint-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(9, 11, 10, 0.42);
}

.blueprint-axis--x { width: 90%; height: 1px; transform: translate(-50%, -50%); }
.blueprint-axis--y { width: 1px; height: 90%; transform: translate(-50%, -50%); }

.blueprint-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: clamp(90px, 10vw, 160px);
  font-weight: 500;
  letter-spacing: -0.13em;
}

.blueprint-label,
.blueprint-code {
  position: absolute;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.blueprint-label::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: currentColor;
}

.blueprint-label--a { left: 8%; top: 18%; }
.blueprint-label--a::before { left: calc(100% + 10px); }
.blueprint-label--b { right: 7%; top: 38%; }
.blueprint-label--b::before { right: calc(100% + 10px); }
.blueprint-label--c { left: 9%; bottom: 20%; }
.blueprint-label--c::before { left: calc(100% + 10px); }
.blueprint-code { right: 22px; bottom: 19px; }

.supply-copy {
  padding: 95px clamp(50px, 7vw, 112px);
  align-self: center;
}

.supply-intro {
  max-width: 610px;
  margin: 30px 0 46px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
}

.feature-list h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

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

.process-card {
  min-height: 440px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  transition: background 220ms ease;
}

.process-card:hover { background: var(--panel); }

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
}

.process-top span { color: var(--muted); font-size: 8px; letter-spacing: 0.12em; }
.process-top strong { color: var(--line-strong); font-size: 45px; font-weight: 400; }

.process-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 53px 0 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
}

.process-icon--scan::before {
  left: 26px;
  top: 26px;
  width: 31px;
  height: 31px;
  border: 1px solid var(--acid);
}

.process-icon--scan::after {
  left: 23px;
  right: 23px;
  top: 48px;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}

.process-icon--match::before {
  left: 27px;
  top: 24px;
  width: 40px;
  height: 40px;
  border: 1px dashed var(--acid);
  border-radius: 50%;
}

.process-icon--match::after {
  right: 19px;
  bottom: 23px;
  width: 29px;
  height: 1px;
  transform: rotate(-48deg);
  background: var(--acid);
}

.process-icon--quote::before {
  left: 28px;
  top: 22px;
  width: 41px;
  height: 52px;
  border: 1px solid var(--acid);
  box-shadow: 8px 8px 0 rgba(199, 255, 40, 0.09);
}

.process-icon--quote::after {
  left: 38px;
  top: 39px;
  width: 22px;
  height: 10px;
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.process-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.process-status {
  margin-top: auto;
  padding-top: 26px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.contact {
  padding-bottom: 118px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-copy {
  position: relative;
  padding: clamp(42px, 6vw, 92px);
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.contact-copy::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(199, 255, 40, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(199, 255, 40, 0.025), 0 0 0 110px rgba(199, 255, 40, 0.018);
}

.contact-copy > p {
  max-width: 530px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.contact-spec {
  border-top: 1px solid var(--line);
}

.contact-spec div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
}

.contact-spec span { color: var(--muted); font-size: 7px; letter-spacing: 0.1em; }
.contact-spec strong { color: var(--paper-dim); font-size: 9px; font-weight: 500; text-align: right; }

.direct-email {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 34px;
  color: var(--paper-dim);
  font-family: var(--mono);
}

.direct-email span { color: var(--muted); font-size: 7px; letter-spacing: 0.1em; }
.direct-email strong { font-size: 12px; font-weight: 500; }
.direct-email:hover strong { color: var(--acid); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(199, 255, 40, 0.55);
  border-radius: 999px;
  background: rgba(11, 13, 12, 0.9);
  color: var(--acid);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.3), 0 0 28px rgba(199, 255, 40, 0.08);
  font-family: var(--mono);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.whatsapp-float strong {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  border-color: var(--acid);
  background: rgba(18, 22, 18, 0.96);
}

.rfq-form {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(42px, 6vw, 92px);
  background: #eef1e9;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.rfq-form label:not(.consent) {
  display: grid;
  gap: 9px;
}

.rfq-form label > span {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(9, 11, 10, 0.24);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.rfq-form input,
.rfq-form select { height: 44px; }
.rfq-form textarea { resize: vertical; padding: 12px 0; line-height: 1.6; }
.rfq-form input::placeholder,
.rfq-form textarea::placeholder { color: #8d958b; }

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}

.consent {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5d665d;
  font-size: 10px;
}

.consent input { width: 14px; height: 14px; accent-color: var(--orange); }
.consent span { font-family: var(--sans) !important; font-size: 10px !important; text-transform: none !important; }

.button--submit {
  width: 100%;
  margin-top: 4px;
  background: var(--ink);
  color: var(--acid);
}

.form-note {
  margin: -9px 0 0;
  color: #727b71;
  font-family: var(--mono);
  font-size: 7px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--line);
}

.footer-brand { display: grid; gap: 5px; }
.footer-brand strong { font-size: 19px; letter-spacing: 0.14em; }
.footer-brand span { color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: 0.12em; }
.site-footer p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.footer-links { display: flex; justify-content: end; gap: 22px; color: var(--paper-dim); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.footer-links a:hover { color: var(--acid); }

.product-modal {
  width: min(1100px, calc(100vw - 40px));
  max-height: min(780px, calc(100svh - 40px));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--panel);
  color: var(--paper);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
}

.product-modal[open] {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  animation: modalIn 260ms ease both;
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(9px);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(9, 11, 10, 0.82);
  color: var(--paper);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-close:hover { background: var(--acid); color: var(--ink); }

.modal-media {
  min-height: 650px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 24px;
  background: #e9ece5;
}

.modal-main-image {
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
}

.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.modal-thumb {
  height: 92px;
  padding: 4px;
  border: 1px solid rgba(9, 11, 10, 0.17);
  background: transparent;
  cursor: pointer;
}

.modal-thumb.is-active { border-color: var(--orange); }
.modal-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.modal-copy {
  align-self: center;
  padding: 70px 55px;
}

.modal-index {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.modal-copy h2 {
  margin: 18px 0 8px;
  font-size: 42px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.modal-fitment { margin: 0 0 30px; color: var(--paper-dim); font-size: 13px; }

.modal-copy dl { margin: 0 0 28px; border-top: 1px solid var(--line); }
.modal-copy dl > div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.modal-copy dt { color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: 0.1em; text-transform: uppercase; }
.modal-copy dd { margin: 0; font-family: var(--mono); font-size: 9px; }
.modal-note { margin: 0 0 29px; color: var(--muted); font-size: 10px; line-height: 1.7; }

.toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 15px 18px;
  transform: translateY(25px);
  opacity: 0;
  pointer-events: none;
  border-left: 3px solid var(--acid);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 620px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 0;
    padding: 8px;
  }

  .whatsapp-float strong { display: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1180px) {
  :root { --shell: min(calc(100vw - 44px), 1140px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 0.9fr 1.1fr; gap: 46px; }
  .hero h1 { font-size: clamp(54px, 6.8vw, 78px); }
  .machine-stage { max-height: 620px; }
  .product-card { grid-column: span 6; }
  .product-card:nth-child(5) { grid-column: span 12; }
  .supply-copy { padding-inline: 55px; }
}

@media (max-width: 900px) {
  :root { --shell: min(calc(100vw - 32px), 820px); }
  .site-header { min-height: 70px; }
  .header-actions { display: none; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    justify-self: end;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: transparent;
  }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: var(--paper); transition: 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 49;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 110px 28px 40px;
    transform: translateY(-105%);
    background: rgba(9, 11, 10, 0.98);
    transition: transform 300ms cubic-bezier(.2,.8,.2,1);
  }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 27px; font-weight: 700; letter-spacing: -0.04em; }
  .mobile-nav a:last-child { color: var(--acid); }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 125px;
    padding-bottom: 100px;
  }
  .hero h1 { max-width: 760px; font-size: clamp(56px, 13vw, 96px); }
  .machine-stage { width: min(100%, 680px); justify-self: center; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .section-heading > p { max-width: 650px; }
  .finder { align-items: stretch; flex-direction: column; }
  .search-box { min-width: 100%; }
  .filters { justify-content: flex-start; }
  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) { grid-column: span 6; }
  .product-card:last-child { grid-column: span 12; }
  .supply { grid-template-columns: 1fr; }
  .supply-visual { min-height: 620px; border-right: 0; border-bottom: 1px solid var(--line); }
  .supply-copy { padding: 85px 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 340px; }
  .process-icon { margin: 30px 0; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 35px 0; }
  .footer-links { justify-content: start; }
  .product-modal[open] { grid-template-columns: 1fr; }
  .modal-media { min-height: 560px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 24px); }
  .brand-copy small { display: none; }
  .hero { padding-top: 108px; gap: 55px; }
  .hero h1 { margin-top: 22px; font-size: clamp(42px, 12.2vw, 54px); line-height: 0.88; }
  .hero-lead { font-size: 14px; line-height: 1.7; }
  .hero-cta { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-cta .button { width: 100%; }
  .text-link { width: max-content; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .machine-stage { aspect-ratio: 0.84; }
  .product-plate { inset: 17% 5% 14%; }
  .stage-callout--model { right: -5px; }
  .stage-callout--oe { left: -5px; }
  .catalog,
  .process { padding-top: 94px; padding-bottom: 105px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2,
  .supply-copy h2,
  .contact-copy h2 { font-size: clamp(40px, 13vw, 56px); }
  .finder { gap: 20px; }
  .filters { display: grid; grid-template-columns: 1fr 1fr; }
  .filter { border-radius: 0; }
  .result-line span:last-child { display: none; }
  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5),
  .product-card:last-child { grid-column: span 12; min-height: 500px; }
  .product-card:nth-child(4) .product-image,
  .product-card:nth-child(5) .product-image,
  .product-image { height: 290px; }
  .supply-visual { min-height: 480px; }
  .blueprint-label { display: none; }
  .process-card { padding: 24px; }
  .contact { width: 100%; padding-bottom: 70px; }
  .contact-copy,
  .rfq-form { padding: 46px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-spec div { align-items: start; flex-direction: column; gap: 5px; }
  .contact-spec strong { text-align: left; }
  .site-footer { width: calc(100% - 24px); }
  .footer-links { flex-wrap: wrap; }
  .product-modal { width: 100vw; max-height: 100svh; }
  .product-modal[open] { margin: 0; min-height: 100svh; }
  .modal-media { min-height: 430px; padding: 12px; }
  .modal-main-image { min-height: 315px; }
  .modal-thumb { height: 75px; }
  .modal-copy { padding: 45px 24px; }
  .modal-copy h2 { font-size: 35px; }
}

@media (hover: none) {
  .cursor-glow { display: none; }
  .machine-stage { transform: none !important; }
}

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}
