* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #07090d;
  color: #f2f4f5;
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
::selection {
  background: #93ff38;
  color: #071006;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  cursor: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}
:root {
  --acid: #a8ff3e;
  --cyan: #2edbf1;
  --ink: #07090d;
  --paper: #edf0e9;
  --muted: #8b9399;
  --line: rgba(255, 255, 255, 0.14);
  --pad: clamp(22px, 4.5vw, 76px);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("/assets/noise.webp");
  mix-blend-mode: soft-light;
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1200;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--acid);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(168, 255, 62, 0.7);
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s,
    border 0.25s;
}
.cursor-ring.active {
  width: 64px;
  height: 64px;
  background: rgba(168, 255, 62, 0.09);
  border-color: var(--acid);
}
.loader {
  position: fixed;
  inset: 0;
  background: #05070a;
  z-index: 1100;
  display: none;
  place-content: center;
  gap: 24px;
  text-align: center;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: top;
}
.js .loader {
  display: grid;
}
.loader.done {
  transform: translateY(-105%);
}
.loader-mark {
  width: 82px;
  height: 82px;
  margin: auto;
  border: 1px solid #33404a;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.loader-mark span {
  font: 600 39px Space Grotesk;
}
.loader-mark i {
  position: absolute;
  width: 160%;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 20px var(--acid);
  animation: scan 1.4s infinite;
}
.loader-copy {
  font: 500 9px Space Grotesk;
  letter-spacing: 0.28em;
  color: #879099;
}
.loader-line {
  width: 230px;
  height: 1px;
  background: #1e252b;
  overflow: hidden;
}
.loader-line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--acid);
  animation: load 1.25s ease forwards;
}
@keyframes load {
  to {
    width: 100%;
  }
}
@keyframes scan {
  0% {
    top: -5%;
  }
  100% {
    top: 105%;
  }
}
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  border-bottom: 1px solid transparent;
  transition: 0.4s;
}
.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
}
.brand-symbol {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-content: center;
  font: 600 17px Space Grotesk;
  position: relative;
}
.brand-symbol:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: -3px;
  top: -3px;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}
.brand-word {
  font: 600 17px Space Grotesk;
  letter-spacing: 0.02em;
}
.brand-word span {
  color: var(--acid);
}
.desktop-nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  font: 500 11px Space Grotesk;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.desktop-nav a {
  position: relative;
  color: #b8bec2;
  transition: 0.25s;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--acid);
  transition: 0.3s;
}
.desktop-nav a:hover {
  color: #fff;
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-cta {
  font: 500 11px Space Grotesk;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
}
.header-cta span {
  color: var(--acid);
  margin-left: 9px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-toggle i {
  position: absolute;
  left: 6px;
  width: 26px;
  height: 1px;
  background: #fff;
  transition: 0.35s;
}
.menu-toggle i:first-child {
  top: 14px;
}
.menu-toggle i:last-child {
  top: 23px;
}
.menu-toggle.open i:first-child {
  transform: rotate(45deg);
  top: 19px;
}
.menu-toggle.open i:last-child {
  transform: rotate(-45deg);
  top: 19px;
}
.mobile-menu {
  display: none;
}
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 170px var(--pad) 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(
    circle at 74% 44%,
    #13272f 0%,
    #0c1117 24%,
    #07090d 60%
  );
}
#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(71, 228, 244, 0.18);
  border-radius: 50%;
  right: -12vw;
  top: 7%;
  width: 65vw;
  height: 65vw;
  box-shadow: inset 0 0 80px rgba(46, 219, 241, 0.02);
}
.orbit-b {
  right: 3vw;
  top: 20%;
  width: 39vw;
  height: 39vw;
  border-color: rgba(168, 255, 62, 0.16);
}
.hero-orbit:after,
.hero-orbit:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.hero-orbit:before {
  left: 7%;
  top: 24%;
}
.hero-orbit:after {
  right: 11%;
  bottom: 20%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}
.hero-glow {
  position: absolute;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  right: 15vw;
  top: 30%;
  background: #1be1dc;
  filter: blur(150px);
  opacity: 0.11;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 70vw);
}
.eyebrow,
.section-index {
  font: 500 10px Space Grotesk;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a7afb4;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
}
.eyebrow span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}
.hero-title,
.display {
  font-family:
    Space Grotesk,
    sans-serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  margin: 0;
  line-height: 0.93;
}
.hero-title {
  font-size: clamp(54px, 8vw, 132px);
}
.hero-title .line {
  display: block;
  clip-path: inset(0 0 100% 0);
  transform: translateY(30px);
  animation: titleIn 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line:nth-child(2) {
  animation-delay: 0.83s;
}
.hero-title em {
  font:
    400 italic 1em Georgia,
    serif;
  color: var(--acid);
}
@keyframes titleIn {
  to {
    clip-path: inset(0);
    transform: none;
  }
}
.hero-lead {
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.65;
  color: #aeb6bb;
  max-width: 680px;
  margin: 35px 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 0 22px;
  font: 600 11px Space Grotesk;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.3s;
}
.button span {
  font-size: 16px;
}
.button-primary {
  background: var(--acid);
  color: #071006;
}
.button-primary:hover {
  background: #fff;
  transform: translateY(-3px);
}
.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
}
.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.hero-visual {
  position: absolute;
  z-index: 2;
  right: 6vw;
  top: 21%;
  width: clamp(340px, 35vw, 600px);
}
.visual-frame {
  position: relative;
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
  border: 1px solid rgba(118, 234, 244, 0.28);
  padding: 10px;
  background: rgba(9, 14, 19, 0.55);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}
.visual-frame img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1);
}
.visual-frame:before,
.visual-frame:after {
  content: "";
  position: absolute;
  z-index: 2;
  border-color: var(--acid);
  width: 40px;
  height: 40px;
}
.visual-frame:before {
  left: 3px;
  top: 3px;
  border-left: 1px solid;
  border-top: 1px solid;
}
.visual-frame:after {
  right: 3px;
  bottom: 3px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.scan-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  top: 10%;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  box-shadow: 0 0 16px var(--acid);
  animation: heroScan 5s ease-in-out infinite;
}
@keyframes heroScan {
  0%,
  100% {
    top: 12%;
    opacity: 0;
  }
  15%,
  85% {
    opacity: 0.8;
  }
  50% {
    top: 88%;
  }
}
.visual-label {
  position: absolute;
  background: rgba(5, 8, 11, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 13px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.visual-label b {
  color: var(--acid);
  font: 600 11px Space Grotesk;
}
.visual-label span {
  font: 500 8px Space Grotesk;
  letter-spacing: 0.13em;
}
.label-a {
  left: -35px;
  top: 19%;
}
.label-b {
  right: -22px;
  bottom: 18%;
}
.hero-meta {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 45px;
}
.hero-meta div {
  display: grid;
  gap: 5px;
}
.hero-meta small {
  font: 500 8px Space Grotesk;
  letter-spacing: 0.2em;
  color: #687078;
}
.hero-meta strong {
  font: 500 10px Space Grotesk;
  letter-spacing: 0.06em;
}
.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 8px Space Grotesk;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #737b80;
}
.scroll-cue span {
  width: 32px;
  height: 32px;
  border: 1px solid #3e474c;
  border-radius: 50%;
  position: relative;
}
.scroll-cue span:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 9px;
  width: 1px;
  height: 13px;
  background: var(--acid);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.ticker {
  height: 62px;
  background: var(--acid);
  color: #071006;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  font: 700 13px Space Grotesk;
  letter-spacing: 0.14em;
  animation: ticker 28s linear infinite;
}
.ticker-track i {
  font-style: normal;
  font-size: 10px;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: clamp(90px, 11vw, 180px) var(--pad);
  position: relative;
}
.intro {
  background: var(--paper);
  color: #101316;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10vw;
  align-items: end;
  margin-top: 65px;
}
.display {
  font-size: clamp(48px, 6.4vw, 104px);
}
.display span {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #7b8488;
}
.intro-copy {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
  color: #4d5559;
}
.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 25px;
  color: #101316;
  border-bottom: 1px solid #101316;
  padding-bottom: 8px;
  font: 600 11px Space Grotesk;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 110px;
  border-top: 1px solid #c7cbc5;
}
.metric {
  padding: 35px 0;
  border-right: 1px solid #c7cbc5;
}
.metric:not(:first-child) {
  padding-left: 30px;
}
.metric strong {
  font: 500 clamp(50px, 6vw, 95px) Space Grotesk;
  letter-spacing: -0.06em;
}
.metric sup {
  font: 600 18px Space Grotesk;
  color: #5fae17;
}
.metric span {
  display: block;
  margin-top: 13px;
  font: 500 10px Space Grotesk;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6a7174;
}
.capabilities {
  background: #0a0d11;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1.35fr 0.55fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 75px;
}
.section-heading p {
  color: #8e979d;
  line-height: 1.7;
  margin: 0;
}
.capability-list {
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.capability {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr 30px;
  gap: 30px;
  align-items: center;
  padding: 34px 10px;
  border-bottom: 1px solid var(--line);
  transition: 0.35s;
  position: relative;
}
.capability:before {
  content: "";
  position: absolute;
  inset: 0;
  right: 100%;
  background: var(--acid);
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.capability:hover:before {
  right: 0;
}
.capability:hover {
  color: #071006;
  padding-left: 25px;
}
.capability:hover p,
.capability:hover .cap-num {
  color: #24301d;
}
.capability .cap-num {
  font: 500 10px Space Grotesk;
  color: #727c82;
}
.capability h3 {
  font: 500 clamp(22px, 2vw, 31px) Space Grotesk;
  margin: 0;
}
.capability p {
  color: #8e979d;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}
.capability i {
  font-style: normal;
  font-size: 20px;
}
.capability-preview {
  position: fixed;
  z-index: 50;
  width: 300px;
  height: 200px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    opacity 0.25s,
    transform 0.25s;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
}
.capability-preview.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.capability-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cinematic {
  height: 240vh;
  position: relative;
  background: #05070a;
}
.cinematic-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.cinematic-media,
.cinematic-frame,
.cinematic-shade,
.cinematic-grid {
  position: absolute;
  inset: 0;
}
.cinematic-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.09);
  filter: saturate(0.72) contrast(1.12);
  transition: opacity 0.7s ease;
}
.cinematic-frame.active {
  opacity: 1;
}
.cinematic-shade {
  background: linear-gradient(
      90deg,
      rgba(4, 7, 9, 0.94) 0%,
      rgba(4, 7, 9, 0.55) 48%,
      rgba(4, 7, 9, 0.13) 100%
    ),
    linear-gradient(0deg, rgba(4, 7, 9, 0.66), transparent 50%);
}
.cinematic-grid {
  opacity: 0.22;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}
.cinematic-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 24%;
  background: linear-gradient(transparent, var(--acid), transparent);
  box-shadow: 0 0 25px var(--acid);
  opacity: 0.55;
}
.cinematic-ui {
  position: absolute;
  inset: 0;
  padding: clamp(105px, 11vh, 140px) var(--pad) 55px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
}
.cinematic-kicker {
  font: 500 10px Space Grotesk;
  letter-spacing: 0.22em;
  color: #b6bec2;
}
.cinematic-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 10px Space Grotesk;
  letter-spacing: 0.12em;
}
.cinematic-counter b {
  color: var(--acid);
  font-size: 18px;
}
.cinematic-counter i {
  display: block;
  width: 75px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.cinematic-copy {
  align-self: center;
  max-width: 850px;
  grid-column: 1/-1;
}
.cinematic-copy p {
  font: 600 10px Space Grotesk;
  letter-spacing: 0.2em;
  color: var(--acid);
  margin: 0 0 22px;
}
.cinematic-copy h2 {
  font: 500 clamp(52px, 7vw, 118px) Space Grotesk;
  letter-spacing: -0.06em;
  line-height: 0.91;
  margin: 0;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
}
.cinematic-copy > span {
  display: block;
  max-width: 570px;
  margin-top: 30px;
  color: #c0c7ca;
  font-size: 16px;
  line-height: 1.65;
}
.cinematic-progress {
  grid-column: 1/-1;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  align-self: end;
}
.cinematic-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}
.products {
  overflow: hidden;
  background: #071014;
}
.product-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}
.product-backdrop:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    #071014 0%,
    rgba(7, 16, 20, 0.65) 45%,
    #071014 100%
  );
}
.product-backdrop img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}
.section-heading.light {
  position: relative;
  z-index: 2;
}
.product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.product-card {
  min-height: 390px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.product-card:before {
  content: "";
  position: absolute;
  inset: 100% 0 0;
  background: linear-gradient(
    150deg,
    rgba(46, 219, 241, 0.15),
    rgba(168, 255, 62, 0.08)
  );
  transition: 0.5s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 255, 62, 0.45);
}
.product-card:hover:before {
  inset: 0;
}
.product-card > span {
  font: 500 9px Space Grotesk;
  letter-spacing: 0.15em;
  color: #69747b;
}
.product-card h3 {
  position: relative;
  font: 500 clamp(21px, 2vw, 30px) Space Grotesk;
  margin: auto 0 12px;
}
.product-card p {
  position: relative;
  color: #8f989e;
  line-height: 1.65;
  margin: 0 0 25px;
}
.product-card button {
  position: relative;
  color: var(--acid);
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  font: 600 10px Space Grotesk;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.product-icon {
  position: relative;
  margin: 35px auto 20px;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(46, 219, 241, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(46, 219, 241, 0.08);
  transition: 0.6s;
}
.product-card:hover .product-icon {
  transform: rotate(20deg) scale(1.08);
  border-color: var(--acid);
}
.product-icon:before,
.product-icon:after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}
.product-icon:after {
  inset: 35%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}
.pulse-icon:before {
  border-radius: 50%;
  inset: 18%;
}
.pulse-icon:after {
  inset: 42%;
  border-radius: 50%;
}
.power-icon:before {
  border: 0;
  border-left: 3px solid var(--cyan);
  border-bottom: 3px solid var(--acid);
  transform: skew(-20deg);
  inset: 20% 37%;
}
.power-icon:after {
  display: none;
}
.sensor-icon:before {
  border-radius: 50%;
  inset: 17%;
  box-shadow: 0 0 0 10px rgba(46, 219, 241, 0.05);
}
.sensor-icon:after {
  border-radius: 50%;
  inset: 39%;
}
.connect-icon:before {
  border-radius: 50%;
  inset: 15%;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.connect-icon:after {
  inset: 40%;
  border-radius: 50%;
}
.board-icon:before {
  border-radius: 3px;
  transform: none;
  inset: 24%;
}
.board-icon:after {
  inset: 42%;
  transform: none;
}
.passive-icon:before {
  inset: 25% 17%;
  transform: none;
  border-radius: 30px;
}
.passive-icon:after {
  inset: 43% 14%;
  height: 1px;
  transform: none;
  background: var(--cyan);
}
.robot-icon:before {
  inset: 18%;
  transform: rotate(25deg);
  border-radius: 50% 10%;
}
.robot-icon:after {
  inset: 40%;
  border-radius: 50%;
}
.cable-icon:before {
  inset: 18%;
  border-radius: 50%;
  border-right-color: transparent;
}
.cable-icon:after {
  inset: 35% 42%;
  transform: none;
}
.supply-story {
  background: var(--paper);
  color: #101316;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: center;
}
.supply-image {
  height: min(72vw, 780px);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}
.supply-image img {
  width: 100%;
  height: 116%;
  object-fit: cover;
}
.supply-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 6, 9, 0.75));
}
.supply-image span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  color: #fff;
  font: 500 9px Space Grotesk;
  letter-spacing: 0.16em;
}
.supply-copy .display {
  margin: 55px 0 35px;
}
.supply-copy > p {
  font-size: 17px;
  line-height: 1.75;
  color: #535b5f;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 45px 0 0;
  border-top: 1px solid #c9ceca;
}
.check-list li {
  padding: 18px 0;
  border-bottom: 1px solid #c9ceca;
  font-size: 13px;
  display: flex;
  gap: 22px;
}
.check-list span {
  color: #599c20;
  font: 600 10px Space Grotesk;
}
.quality {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  background: #090c10;
}
.quality-sticky {
  position: sticky;
  top: 150px;
  align-self: start;
}
.quality-sticky .display {
  margin: 55px 0 28px;
}
.quality-sticky > p {
  color: #929ba0;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 35px;
}
.quality-cards {
  border-top: 1px solid var(--line);
}
.quality-card {
  min-height: 240px;
  border-bottom: 1px solid var(--line);
  padding: 38px 20px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
}
.quality-card span {
  font: 500 10px Space Grotesk;
  color: var(--acid);
}
.quality-card h3 {
  font: 500 clamp(25px, 2.4vw, 38px) Space Grotesk;
  margin: 0;
}
.quality-card p {
  grid-column: 2;
  color: #8d969b;
  line-height: 1.7;
  max-width: 530px;
  margin: 15px 0;
}
.industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: #0e1217;
  min-height: 900px;
}
.industries-visual {
  position: relative;
  overflow: hidden;
}
.industries-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, #0e1217);
}
.industries-visual img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: saturate(0.65);
}
.radar {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 290px;
  height: 290px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(168, 255, 62, 0.25);
  border-radius: 50%;
}
.radar i {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(168, 255, 62, 0.2);
  border-radius: 50%;
}
.radar i:nth-child(2) {
  inset: 32%;
}
.radar i:nth-child(3) {
  inset: 48%;
}
.radar:before,
.radar:after {
  content: "";
  position: absolute;
  background: rgba(168, 255, 62, 0.24);
}
.radar:before {
  width: 1px;
  height: 100%;
  left: 50%;
}
.radar:after {
  height: 1px;
  width: 100%;
  top: 50%;
}
.radar span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, var(--acid), transparent);
  transform-origin: left;
  animation: radar 5s linear infinite;
}
@keyframes radar {
  to {
    transform: rotate(360deg);
  }
}
.industries-content {
  padding: clamp(90px, 10vw, 160px) var(--pad);
}
.industries-content .display {
  margin: 55px 0 70px;
}
.industry-list {
  border-top: 1px solid var(--line);
}
.industry-list div {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.industry-list span {
  font: 500 9px Space Grotesk;
  color: var(--acid);
}
.industry-list strong {
  font: 500 clamp(16px, 1.35vw, 22px) Space Grotesk;
}
.industry-list i {
  font-style: normal;
  font-size: 10px;
  color: #7c858a;
}
.process {
  background: var(--paper);
  color: #101316;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #bfc4c0;
  margin-top: 80px;
}
.process-track article {
  min-height: 310px;
  padding: 35px 28px;
  border-right: 1px solid #bfc4c0;
  position: relative;
}
.process-track article:last-child {
  border: 0;
}
.process-track b {
  font: 600 10px Space Grotesk;
  color: #619f28;
}
.process-track h3 {
  font: 500 clamp(20px, 1.7vw, 28px) Space Grotesk;
  margin: 100px 0 20px;
}
.process-track p {
  color: #687074;
  line-height: 1.65;
  font-size: 13px;
}
.rfq {
  background: #071014;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  overflow: hidden;
}
.rfq-glow {
  position: absolute;
  left: -15vw;
  bottom: -30vw;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 219, 241, 0.19),
    transparent 60%
  );
}
.rfq-copy,
.rfq-form {
  position: relative;
  z-index: 2;
}
.rfq-copy .display {
  margin: 55px 0 32px;
}
.rfq-copy > p {
  color: #98a2a7;
  line-height: 1.7;
  font-size: 17px;
}
.contact-direct {
  margin-top: 70px;
  display: grid;
  gap: 9px;
}
.contact-direct small {
  font: 500 9px Space Grotesk;
  letter-spacing: 0.18em;
  color: #69747a;
}
.contact-direct a {
  font: 500 clamp(20px, 2vw, 31px) Space Grotesk;
  color: var(--acid);
}
.rfq-form {
  background: #eef1ec;
  color: #101316;
  padding: clamp(25px, 4vw, 55px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.rfq-form label {
  display: grid;
  gap: 10px;
}
.rfq-form label:nth-child(3),
.rfq-form label:nth-child(4) {
  grid-column: 1/-1;
}
.rfq-form label span {
  font: 600 9px Space Grotesk;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c7475;
}
.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #afb6b1;
  background: transparent;
  color: #101316;
  padding: 12px 0;
  outline: none;
  border-radius: 0;
}
.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: #579b1d;
}
.rfq-form textarea {
  resize: vertical;
}
.rfq-form .button {
  width: max-content;
}
.form-note {
  font-size: 10px;
  color: #7b8380;
  line-height: 1.5;
  margin: 5px 0;
  align-self: center;
}
footer {
  background: #05070a;
  padding: 65px var(--pad) 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  padding-bottom: 65px;
}
.footer-top p {
  margin: 0;
  color: #858e93;
  line-height: 1.6;
}
.back-top {
  font: 600 10px Space Grotesk;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  font: 500 9px Space Grotesk;
  letter-spacing: 0.08em;
  color: #60686e;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-image {
  clip-path: none;
}
.js .reveal-image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal-image.visible {
  clip-path: inset(0);
}
@media (max-width: 1100px) {
  .hero-content {
    width: 75vw;
  }
  .hero-visual {
    opacity: 0.55;
    right: -10vw;
  }
  .hero-meta {
    display: none;
  }
  .section-heading {
    grid-template-columns: 1fr;
  }
  .section-heading .display {
    margin: 25px 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality {
    gap: 5vw;
  }
  .industries {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .industry-list div {
    grid-template-columns: 35px 1fr;
  }
  .industry-list i {
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  button,
  a {
    cursor: pointer;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    z-index: 90;
    inset: 0;
    background: #07090d;
    padding: 120px var(--pad) 50px;
    flex-direction: column;
    gap: 22px;
    transform: translateY(-110%);
    transition: 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu a {
    font: 500 clamp(31px, 10vw, 52px) Space Grotesk;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }
  .site-header {
    padding-top: 16px;
  }
  .hero {
    padding-top: 130px;
    justify-content: flex-start;
  }
  .hero-content {
    width: 100%;
    z-index: 4;
  }
  .hero-title {
    font-size: clamp(48px, 15vw, 78px);
    line-height: 0.94;
  }
  .hero-lead {
    font-size: 14px;
    max-width: 86%;
    margin: 24px 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-visual {
    width: 85vw;
    right: -24vw;
    top: auto;
    bottom: 8%;
    opacity: 0.55;
  }
  .hero-orbit {
    width: 120vw;
    height: 120vw;
    right: -60vw;
    top: 35%;
  }
  .orbit-b {
    width: 78vw;
    height: 78vw;
    right: -30vw;
    top: 48%;
  }
  .scroll-cue {
    display: none;
  }
  .hero-meta {
    display: none;
  }
  .ticker {
    height: 50px;
  }
  .ticker-track {
    font-size: 10px;
  }
  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .display {
    font-size: clamp(43px, 13vw, 70px);
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 65px;
  }
  .metric {
    border-bottom: 1px solid #c7cbc5;
  }
  .metric:nth-child(3) {
    padding-left: 0;
  }
  .capability {
    grid-template-columns: 35px 1fr 20px;
    gap: 15px;
    padding: 25px 0;
  }
  .capability p {
    display: block;
    grid-column: 2 / 4;
    font-size: 13px;
    line-height: 1.55;
  }
  .capability h3 {
    font-size: 20px;
  }
  .capability-preview {
    display: none;
  }
  .cinematic {
    height: 220vh;
  }
  .cinematic-ui {
    padding: 105px var(--pad) 35px;
  }
  .cinematic-copy h2 {
    font-size: clamp(48px, 14vw, 76px);
  }
  .cinematic-copy > span {
    font-size: 14px;
    max-width: 88%;
  }
  .cinematic-frame {
    object-position: 62% center;
  }
  .cinematic-shade {
    background: linear-gradient(90deg, rgba(4, 7, 9, 0.9), rgba(4, 7, 9, 0.28)),
      linear-gradient(0deg, rgba(4, 7, 9, 0.78), transparent 60%);
  }
  .cinematic-grid {
    background-size: 44px 44px;
  }
  .cinematic-counter i {
    width: 38px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 330px;
  }
  .supply-story {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .supply-image {
    height: 110vw;
  }
  .quality {
    grid-template-columns: 1fr;
  }
  .quality-sticky {
    position: relative;
    top: auto;
  }
  .quality-cards {
    margin-top: 55px;
  }
  .industries {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .industries-visual {
    height: 65vh;
  }
  .industries-visual:after {
    background: linear-gradient(180deg, transparent 50%, #0e1217);
  }
  .industries-content {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .process-track {
    grid-template-columns: 1fr 1fr;
  }
  .process-track article:nth-child(2) {
    border-right: 0;
  }
  .process-track article {
    min-height: 250px;
    border-bottom: 1px solid #bfc4c0;
  }
  .process-track h3 {
    margin-top: 65px;
  }
  .rfq {
    grid-template-columns: 1fr;
  }
  .contact-direct {
    margin-top: 40px;
  }
  .rfq-form {
    grid-template-columns: 1fr;
  }
  .rfq-form label {
    grid-column: 1 !important;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .form-note {
    grid-column: 1;
  }
  .noise {
    opacity: 0.025;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .loader,
  #network-canvas,
  .cursor-dot,
  .cursor-ring,
  .cinematic-scan {
    display: none;
  }
  .ticker-track,
  .scan-line,
  .radar span,
  .scroll-cue span:after {
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js .reveal-image {
    clip-path: none;
    transition: none;
  }
  .cinematic {
    height: auto;
  }
  .cinematic-sticky {
    position: relative;
    height: min(780px, 100svh);
  }
  .cinematic-frame {
    transform: none;
    transition: none;
  }
  .hero-title .line {
    clip-path: none;
    transform: none;
    animation: none;
  }
}
