:root {
  --ink: #101522;
  --muted: #586174;
  --line: rgba(16, 21, 34, 0.12);
  --paper: #f8faf8;
  --panel: rgba(255, 255, 255, 0.78);
  --white: #ffffff;
  --deep: #07111f;
  --deep-2: #0d1d2f;
  --accent: #09a8c8;
  --accent-2: #2fb67c;
  --gold: #c99a3a;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(7, 17, 31, 0.16);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.site-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.22;
  filter: saturate(1.18) contrast(1.08) brightness(1.06);
}

.manufacturing-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.site-header {
  z-index: 60;
}

main,
.site-footer {
  position: relative;
  z-index: 3;
}

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

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

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

.section-band {
  position: relative;
  padding: 104px 0;
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100vw - 28px));
  min-height: 64px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.22);
  transition: background 220ms ease, transform 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(7, 17, 31, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(148px, 15vw, 220px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.16));
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(9, 168, 200, 0.32), rgba(47, 182, 124, 0.24));
}

.brand-mark span {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 12px 0 0 -5px currentColor, -12px 0 0 -5px currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a,
.mega-toggle {
  padding: 10px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.mega-toggle:hover,
.mega-menu:hover .mega-toggle,
.mega-menu.is-open .mega-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.mega-menu {
  position: static;
}

.mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mega-toggle span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.mega-menu.is-open .mega-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: auto;
  left: 50%;
  display: grid;
  width: calc(100vw - 28px);
  max-height: min(76vh, 760px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.96));
  box-shadow: 0 32px 90px rgba(22, 38, 60, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.99);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.section-mega {
  grid-template-columns: 1fr;
  max-width: min(1120px, calc(100vw - 28px));
}

.mega-menu.is-open .mega-panel,
.mega-menu:hover .mega-panel,
.mega-menu:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-category {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f5f9fc);
  box-shadow: 0 14px 34px rgba(22, 38, 60, 0.06);
}

.mega-category-wide {
  gap: 14px;
}

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

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

.mega-category-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mega-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(5, 121, 173, 0.12), rgba(10, 168, 201, 0.12));
  color: #0579ad;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.mega-category p {
  margin: 0;
  color: #0579ad;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-category a {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #07111f;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mega-category a:hover,
.mega-category a.is-active {
  transform: translateX(3px);
  border-color: rgba(5, 121, 173, 0.18);
  background: rgba(5, 121, 173, 0.08);
  color: #07111f;
}

.mega-category a strong,
.mega-category a span {
  display: block;
}

.mega-category a strong {
  font-size: 0.88rem;
  line-height: 1.18;
}

.mega-category a span {
  color: rgba(40, 52, 67, 0.68);
  font-size: 0.75rem;
  line-height: 1.28;
}

.nav-contact {
  margin-left: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #031019;
}

.nav-contact:hover {
  background: linear-gradient(135deg, #15bddf, #37c98d);
  color: #031019;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  isolation: isolate;
  min-height: 860px;
  padding: 172px 0 112px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 31, 48, 0.62), rgba(6, 72, 88, 0.16) 54%, rgba(5, 46, 51, 0.38)),
    url("assets/intsensing-hero-poster.png") center / cover no-repeat,
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #0b3149 0%, #126070 48%, #1c7659 100%);
  color: var(--white);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(1.18) contrast(1.08) brightness(1.16);
}

.hero-video.is-paused {
  opacity: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.84;
  background:
    linear-gradient(90deg, rgba(4, 20, 32, 0.84), rgba(6, 72, 88, 0.26) 54%, rgba(5, 46, 51, 0.44)),
    linear-gradient(180deg, rgba(4, 18, 29, 0.12), rgba(4, 18, 29, 0.56));
}

.hero-3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
  mix-blend-mode: screen;
}

.grid-plane {
  position: absolute;
  right: -10%;
  bottom: -12%;
  width: 72vw;
  height: 54vh;
  transform: perspective(700px) rotateX(60deg) rotateZ(-9deg);
  transform-origin: center;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.signal {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  animation: pulse 7s ease-in-out infinite;
}

.signal-a {
  top: 16%;
  right: 18%;
}

.signal-b {
  top: 32%;
  right: 4%;
  animation-delay: -2.5s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #031019;
  box-shadow: 0 16px 36px rgba(9, 168, 200, 0.25);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.proof-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-visual {
  min-width: 0;
}

.device-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(11px);
}

.device-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px);
  animation: scan 5s linear infinite;
  pointer-events: none;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-head span {
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.panel-head strong {
  font-size: 0.92rem;
}

.system-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.system-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.system-map path {
  fill: none;
  stroke: rgba(9, 168, 200, 0.68);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: dash 18s linear infinite;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 72px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.74);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.node span {
  font-weight: 800;
}

.node small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.node.core {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  border-color: rgba(47, 182, 124, 0.5);
  background: radial-gradient(circle, rgba(47, 182, 124, 0.26), rgba(7, 17, 31, 0.9));
}

.product-core-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(38deg);
  transform-style: preserve-3d;
  opacity: 0.9;
  pointer-events: none;
}

.product-core-3d::before,
.product-core-3d::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(9, 168, 200, 0.28), rgba(47, 182, 124, 0.22)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 34px 68px rgba(0, 0, 0, 0.28),
    0 0 58px rgba(9, 168, 200, 0.22);
}

.product-core-3d::before {
  transform: translateZ(-34px);
  opacity: 0.42;
}

.product-core-3d::after {
  transform: translateZ(22px);
}

.product-core-3d span {
  position: absolute;
  display: block;
}

.ring {
  inset: 8px;
  border: 1px solid rgba(9, 168, 200, 0.34);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbitSpin 12s linear infinite;
}

.ring-b {
  inset: 34px;
  border-color: rgba(47, 182, 124, 0.36);
  animation-duration: 16s;
  animation-direction: reverse;
}

.ring-c {
  inset: 62px;
  border-color: rgba(201, 154, 58, 0.34);
  animation-duration: 10s;
}

.cube-face {
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transform-origin: center;
}

.face-top {
  transform: translate(-50%, -50%) translateZ(66px);
  background: rgba(9, 168, 200, 0.18);
}

.face-left {
  transform: translate(-94%, -25%) rotateY(90deg) translateZ(36px);
  background: rgba(47, 182, 124, 0.16);
}

.face-right {
  transform: translate(-8%, -25%) rotateX(90deg) translateZ(36px);
  background: rgba(201, 154, 58, 0.14);
}

.n1 {
  top: 58px;
  left: 34px;
}

.n2 {
  top: 58px;
  right: 34px;
}

.n3 {
  bottom: 54px;
  left: 40px;
}

.n4 {
  right: 40px;
  bottom: 54px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-strip div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-strip div:last-child {
  border-right: 0;
}

.metrics-strip strong,
.metrics-strip span {
  display: block;
}

.metrics-strip strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.metrics-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.intro {
  padding: 86px 0;
  background: var(--white);
}

.split,
.process-grid,
.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.section-heading p:not(.eyebrow),
.section-text {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.stack-visual {
  margin: 0;
}

.stack-visual img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-infographic {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.capability-infographic {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.capability-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.tech-stack-infographic {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tech-stack-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.manufacturing-infographic {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.manufacturing-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.journey-infographic {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.journey-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.section-picture,
.contact-picture {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 42px 0 0;
  border: 1px solid var(--panel-border, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 251, 0.94));
  box-shadow: 0 22px 64px rgba(22, 38, 60, 0.12);
}

.section-picture::before,
.contact-picture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.54) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.section-picture:hover::before,
.contact-picture:hover::before {
  opacity: 1;
  animation: visualSweep 1200ms ease;
}

.section-picture img,
.contact-picture img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-picture {
  margin-top: 18px;
}

.about {
  background:
    linear-gradient(135deg, rgba(9, 168, 200, 0.07), transparent 34%),
    #ffffff;
}

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

.about-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
}

.about-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.about-card h3 {
  margin-bottom: 14px;
}

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

.sensors-products {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(5, 121, 173, 0.055), transparent 28%),
    #ffffff;
}

.sensors-products-infographic {
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: 34px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sensors-products-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.sensors-products-infographic.image-only {
  margin-top: 0;
}

.sensors-products .container {
  width: min(1540px, calc(100vw - 32px));
}

.about .container {
  width: min(1540px, calc(100vw - 32px));
}

.capabilities .container {
  width: min(1540px, calc(100vw - 32px));
}

.tech-stack .container {
  width: min(1660px, calc(100vw - 32px));
}

.manufacturing .container {
  width: min(1540px, calc(100vw - 32px));
}

.industries .container {
  width: min(1540px, calc(100vw - 32px));
}

.journey .container {
  width: min(1540px, calc(100vw - 32px));
}

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

.track-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(16, 21, 34, 0.08);
}

.track-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -32% auto;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(16, 21, 34, 0.08);
  border-radius: 50%;
}

.track-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 21, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 34, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.sensor-track {
  background:
    linear-gradient(180deg, rgba(9, 168, 200, 0.12), rgba(255, 255, 255, 0.88)),
    var(--white);
}

.product-track {
  background:
    linear-gradient(180deg, rgba(201, 154, 58, 0.16), rgba(255, 255, 255, 0.88)),
    var(--white);
}

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

.track-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 86px;
}

.track-topline span {
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.track-topline strong {
  display: inline-flex;
  min-width: 92px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-size: 0.86rem;
}

.track-card h3 {
  max-width: 420px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.track-card p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.track-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.track-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #2d3442;
  font-weight: 700;
}

.track-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.product-track li::before {
  background: var(--gold);
}

.product-demos {
  background: var(--deep);
  color: var(--white);
}

.product-demos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(9, 168, 200, 0.2), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(201, 154, 58, 0.14), transparent 28%);
  pointer-events: none;
}

.product-demos .container {
  position: relative;
}

.product-demos .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.explainer-player {
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.explainer-media {
  position: relative;
  overflow: hidden;
  background: #07111f;
}

.explainer-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.steps-video {
  background: #07111f;
}

.explainer-sequence {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(98, 230, 255, 0.18), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(184, 199, 217, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(8, 18, 31, 0.98), rgba(4, 10, 18, 0.96));
}

.sequence-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(98, 230, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 230, 255, 0.075) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.sequence-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 760px);
  height: min(78vw, 760px);
  border: 1px solid rgba(98, 230, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: sequenceOrbit 18s linear infinite;
}

.sequence-orbit::before,
.sequence-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(184, 199, 217, 0.14);
  border-radius: 50%;
}

.sequence-orbit::after {
  inset: 31%;
  border-color: rgba(98, 230, 255, 0.2);
}

.sequence-line {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(98, 230, 255, 0.72), rgba(255, 255, 255, 0.68), rgba(98, 230, 255, 0.72), transparent);
  box-shadow: 0 0 28px rgba(98, 230, 255, 0.32);
}

.sequence-line::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 80px;
  height: 10px;
  border-radius: 999px;
  background: rgba(98, 230, 255, 0.76);
  filter: blur(1px);
  animation: sequenceScan 5.8s ease-in-out infinite;
}

.sequence-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 88px 42px;
}

.sequence-step {
  position: relative;
  min-height: 164px;
  padding: 22px;
  border: 1px solid rgba(181, 204, 229, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 37, 58, 0.78), rgba(9, 18, 31, 0.82));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  animation: sequencePulse 7.2s ease-in-out infinite;
}

.sequence-step:nth-child(2) {
  animation-delay: -6s;
}

.sequence-step:nth-child(3) {
  animation-delay: -4.8s;
}

.sequence-step:nth-child(4) {
  animation-delay: -3.6s;
}

.sequence-step:nth-child(5) {
  animation-delay: -2.4s;
}

.sequence-step:nth-child(6) {
  animation-delay: -1.2s;
}

.sequence-step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 17px;
  height: 2px;
  background: rgba(98, 230, 255, 0.34);
}

.sequence-step:nth-child(3n + 1)::before {
  display: none;
}

.sequence-step span,
.sequence-step strong,
.sequence-step small {
  display: block;
}

.sequence-step span {
  margin-bottom: 28px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sequence-step strong {
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
}

.sequence-step small {
  margin-top: 10px;
  color: rgba(208, 220, 234, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.explainer-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.explainer-player figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.explainer-player strong,
.explainer-player span {
  display: block;
}

.explainer-player strong {
  color: var(--white);
}

.explainer-player span {
  color: rgba(255, 255, 255, 0.62);
}

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

.demo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.video-frame {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(9, 168, 200, 0.24), rgba(255, 255, 255, 0.035));
  background-size: 32px 32px, 32px 32px, auto;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: videoSweep 4.8s ease-in-out infinite;
}

.video-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.video-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
}

.play-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(10px);
}

.play-control span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--white);
}

.demo-device {
  position: absolute;
  inset: 58px 46px 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 182, 124, 0.28), transparent 26%),
    rgba(7, 17, 31, 0.55);
}

.chip-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(47, 182, 124, 0.6);
  border-radius: 14px;
  background: rgba(47, 182, 124, 0.16);
  box-shadow: 0 0 42px rgba(47, 182, 124, 0.26);
}

.chip-pin {
  position: absolute;
  top: 50%;
  width: 88%;
  height: 2px;
  left: 6%;
  background: linear-gradient(90deg, transparent, rgba(9, 168, 200, 0.72), transparent);
}

.pin-a {
  transform: rotate(24deg);
}

.pin-b {
  transform: rotate(-24deg);
}

.signal-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(9, 168, 200, 0.72);
  animation: signalMove 3.2s ease-in-out infinite;
}

.dot-a {
  top: 26%;
  left: 18%;
}

.dot-b {
  right: 18%;
  bottom: 26%;
  animation-delay: -1.4s;
}

.dashboard-lines {
  position: absolute;
  top: 70px;
  left: 34px;
  display: grid;
  width: 42%;
  gap: 14px;
}

.dashboard-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  animation: linePulse 3s ease-in-out infinite;
}

.dashboard-lines span:nth-child(2) {
  width: 72%;
  animation-delay: -0.8s;
}

.dashboard-lines span:nth-child(3) {
  width: 86%;
  animation-delay: -1.6s;
}

.chart-bars {
  position: absolute;
  right: 36px;
  bottom: 54px;
  display: flex;
  height: 150px;
  align-items: end;
  gap: 12px;
}

.chart-bars span {
  width: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: barRise 2.8s ease-in-out infinite;
}

.chart-bars span:nth-child(1) {
  height: 52%;
}

.chart-bars span:nth-child(2) {
  height: 76%;
  animation-delay: -0.6s;
}

.chart-bars span:nth-child(3) {
  height: 44%;
  animation-delay: -1.2s;
}

.chart-bars span:nth-child(4) {
  height: 88%;
  animation-delay: -1.8s;
}

.product-stages {
  position: absolute;
  top: 50%;
  right: 32px;
  left: 32px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  transform: translateY(-50%);
}

.product-stages span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  animation: stageGlow 4s ease-in-out infinite;
}

.product-stages span:nth-child(2) {
  animation-delay: -1.3s;
}

.product-stages span:nth-child(3) {
  animation-delay: -2.6s;
}

.stage-line {
  position: absolute;
  top: 50%;
  right: 14%;
  left: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: translateY(-50%);
}

.demo-copy {
  padding: 22px;
}

.demo-copy span {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-copy h3 {
  margin-top: 12px;
  color: var(--white);
}

.demo-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.centered {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.capabilities {
  background: #eef3f1;
}

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

.capability-card {
  min-height: 262px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 21, 34, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(9, 168, 200, 0.35);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: var(--radius);
  background: #101522;
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.capability-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.process {
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.process::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  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: 48px 48px;
  mask-image: linear-gradient(to top, #000, transparent);
}

.process .container {
  position: relative;
}

.process .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.process .container {
  width: min(1540px, calc(100vw - 32px));
}

.process-infographic {
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.timeline span {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.platform {
  background:
    linear-gradient(90deg, rgba(9, 168, 200, 0.08), transparent 35%),
    var(--white);
}

.platform .container {
  width: min(1540px, calc(100vw - 32px));
}

.platform-infographic {
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.platform-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.platform-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--deep-2);
  color: var(--white);
  box-shadow: var(--shadow);
}

.platform-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.scope-grid div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.scope-grid strong,
.scope-grid span {
  display: block;
}

.scope-grid strong {
  margin-bottom: 14px;
}

.scope-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.tech-stack {
  background:
    linear-gradient(135deg, rgba(47, 182, 124, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(9, 168, 200, 0.08), transparent 38%),
    #f7faf9;
}

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

.stack-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
}

.stack-card.wide {
  grid-column: 1 / -1;
}

.stack-card h3 {
  margin-bottom: 20px;
  color: var(--ink);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags.is-collapsed {
  position: relative;
  max-height: 112px;
  overflow: hidden;
}

.tech-tags.is-collapsed::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(247, 250, 249, 0), rgba(247, 250, 249, 0.96));
  pointer-events: none;
}

.manufacturing-card .tech-tags.is-collapsed::after {
  background: linear-gradient(to bottom, rgba(13, 29, 47, 0), rgba(13, 29, 47, 0.96));
}

.tech-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(16, 21, 34, 0.1);
  border-radius: 999px;
  background: rgba(248, 250, 248, 0.94);
  color: #344052;
  font-size: 0.83rem;
  font-weight: 700;
}

.expand-tags {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 12px;
  border: 1px solid rgba(16, 21, 34, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.manufacturing-card .expand-tags {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.manufacturing {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(13, 29, 47, 0.92)),
    var(--deep);
  color: var(--white);
}

.manufacturing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.manufacturing .container {
  position: relative;
}

.manufacturing .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.manufacturing-flow {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 34px;
  border: 1px solid rgba(181, 204, 229, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.manufacturing-flow img {
  display: block;
  width: 100%;
  height: auto;
}

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

.manufacturing-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.manufacturing-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(9, 168, 200, 0.18);
  border-radius: 50%;
}

.manufacturing-card.wide {
  grid-column: 1 / -1;
}

.manufacturing-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(9, 168, 200, 0.16);
  color: var(--accent-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.manufacturing-card h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.manufacturing-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
}

.manufacturing-card .tech-tags {
  position: relative;
  z-index: 1;
}

.manufacturing-card .tech-tags span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
}

.industries {
  background:
    radial-gradient(circle at 88% 16%, rgba(5, 121, 173, 0.05), transparent 30%),
    #ffffff;
}

.industry-infographic {
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: 0 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.industry-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

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

.industry-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
}

.industry-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #101522;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.industry-card h3 {
  margin-bottom: 14px;
}

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

.journey {
  background:
    linear-gradient(135deg, rgba(9, 168, 200, 0.07), transparent 34%),
    #ffffff;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--gold));
  opacity: 0.38;
}

.journey-item {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
}

.journey-item span {
  display: inline-flex;
  min-width: 72px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border: 1px solid rgba(9, 168, 200, 0.22);
  border-radius: 999px;
  background: #eef8f7;
  color: #0f7385;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.journey-item h3 {
  margin-bottom: 14px;
}

.journey-item p {
  margin: 0;
  color: var(--muted);
}

.partners {
  background:
    linear-gradient(135deg, rgba(9, 168, 200, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f8f7);
}

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

.logo-tile {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.logo-tile img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 76px;
  object-fit: contain;
}

.logo-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 168, 200, 0.32);
  box-shadow: var(--shadow);
}

.team {
  background:
    linear-gradient(180deg, #ffffff, #f4f8f7);
}

.team-groups {
  display: grid;
  gap: 46px;
}

.team-group {
  scroll-margin-top: 96px;
}

.team-group-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.team-group-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

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

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

.member-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.member-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 168, 200, 0.32);
  box-shadow: var(--shadow);
}

.member-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(135deg, var(--deep), #12334b 58%, #1e5b4a);
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.member-photo {
  width: 116px;
  height: 116px;
  overflow: hidden;
  align-self: start;
  border: 1px solid rgba(20, 94, 164, 0.18);
  background:
    radial-gradient(circle at 42% 18%, rgba(12, 114, 218, 0.16), transparent 40%),
    linear-gradient(180deg, #ffffff, #eef5fb);
  box-shadow: 0 18px 34px rgba(12, 35, 62, 0.14);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
}

.member-card h3 {
  font-size: 1.02rem;
}

.member-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.team-stack div {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f9f8;
}

.team-stack strong,
.team-stack span {
  display: block;
}

.team-stack strong {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.team-stack span {
  color: var(--muted);
}

.advisors {
  background:
    radial-gradient(circle at 14% 16%, rgba(9, 168, 200, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8f7);
}

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

.advisor-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.06);
}

.advisor-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.advisor-card h3 {
  margin-bottom: 14px;
}

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

.advisor-leader-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  gap: 28px;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.advisor-leader-card .member-avatar {
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 50%;
  font-size: 1rem;
}

.advisor-leader-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.advisor-leader-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.advisor-leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 168, 200, 0.32);
  box-shadow: var(--shadow);
}

/* Full-bleed infographic sections */
.about,
.sensors-products,
.product-demos,
.capabilities,
.process,
.platform,
.tech-stack,
.manufacturing,
.industries,
.journey {
  overflow: hidden;
  padding: 0;
}

.about .container,
.sensors-products .container,
.product-demos .container,
.capabilities .container,
.process .container,
.platform .container,
.tech-stack .container,
.manufacturing .container,
.industries .container,
.journey .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-infographic,
.sensors-products-infographic,
.explainer-player,
.capability-infographic,
.process-infographic,
.platform-infographic,
.tech-stack-infographic,
.manufacturing-infographic,
.industry-infographic,
.journey-infographic {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.explainer-media {
  background: transparent;
}

.about-infographic img,
.sensors-products-infographic img,
.explainer-media img,
.capability-infographic img,
.process-infographic img,
.platform-infographic img,
.tech-stack-infographic img,
.manufacturing-infographic img,
.industry-infographic img,
.journey-infographic img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.explainer-player figcaption {
  display: none;
}

.contact {
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 182, 124, 0.14), transparent 24%),
    linear-gradient(180deg, #f8faf8, #e8efef);
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-info div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-info strong,
.contact-info a,
.contact-info span {
  display: block;
}

.contact-info strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.92rem;
}

.contact-info a,
.contact-info span {
  color: var(--muted);
  font-weight: 700;
}

.contact-info a + a,
.contact-info span + span {
  margin-top: 6px;
}

.contact-info a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #2f3847;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(16, 21, 34, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(9, 168, 200, 0.12);
}

.contact-form .button {
  width: 100%;
  min-height: 52px;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #16704f;
}

.form-status.is-error {
  color: #a72f2f;
}

.site-footer {
  padding: 40px 0;
  background: var(--deep);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand-logo {
  width: clamp(170px, 18vw, 260px);
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes dash {
  to {
    stroke-dashoffset: -280;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.28;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes videoSweep {
  0%,
  28% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes sequenceScan {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }
  12%,
  82% {
    opacity: 0.9;
  }
  50% {
    transform: translateX(calc(84vw - 120px));
  }
}

@keyframes sequencePulse {
  0%,
  100% {
    border-color: rgba(181, 204, 229, 0.18);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(98, 230, 255, 0.42);
    transform: translateY(-4px);
  }
}

@keyframes signalMove {
  0%,
  100% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0.45;
  }
  50% {
    transform: translate(34px, -18px) scale(1.2);
    opacity: 1;
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.82);
    transform-origin: left;
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes barRise {
  0%,
  100% {
    transform: scaleY(0.7);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes stageGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
  }
  50% {
    border-color: rgba(201, 154, 58, 0.55);
    background: rgba(201, 154, 58, 0.16);
  }
}

@keyframes visualSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .mega-menu {
    position: static;
  }

  .mega-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
  }

  .mega-panel {
    position: static;
    display: none;
    width: 100%;
    max-height: min(70vh, 680px);
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu.is-open .mega-panel {
    display: grid;
  }

  .mega-category {
    padding: 14px;
  }

  .mega-link-grid,
  .mega-link-grid.compact-links {
    grid-template-columns: 1fr;
  }

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

  .hero-grid,
  .split,
  .process-grid,
  .platform-card,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .video-frame {
    min-height: 340px;
  }

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

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

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

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

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

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

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

  .stack-card.wide {
    grid-column: auto;
  }

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

  .logo-tile {
    min-height: 106px;
  }

  .logo-tile img {
    max-width: 170px;
    height: 66px;
  }

  .dual-track {
    grid-template-columns: 1fr;
  }

  .track-card {
    min-height: 430px;
  }

  .section-picture {
    margin-top: 32px;
  }

  .industry-infographic {
    margin-bottom: 28px;
  }

  .manufacturing-flow {
    margin-bottom: 28px;
  }

  .sensors-products-infographic {
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .section-band {
    padding: 72px 0;
  }

  .hero {
    padding: 126px 0 76px;
  }

  .hero-3d {
    opacity: 0.5;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-row span {
    width: 100%;
    text-align: center;
  }

  .track-card {
    min-height: auto;
    padding: 24px;
  }

  .track-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 58px;
  }

  .system-map {
    min-height: 340px;
  }

  .product-core-3d {
    width: 210px;
    height: 210px;
  }

  .node {
    width: 98px;
    height: 66px;
  }

  .node.core {
    width: 110px;
    height: 110px;
  }

  .n1,
  .n3 {
    left: 14px;
  }

  .n2,
  .n4 {
    right: 14px;
  }

  .metrics-strip,
  .capability-grid,
  .member-grid,
  .demo-grid,
  .logo-grid,
  .stack-grid,
  .manufacturing-grid,
  .journey-track,
  .industry-grid,
  .advisor-grid,
  .about-grid,
  .scope-grid,
  .team-stack {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    gap: 12px;
  }

  .logo-tile {
    min-height: 94px;
    padding: 14px;
  }

  .logo-tile img {
    max-width: 158px;
    height: 58px;
  }

  .about-card {
    min-height: auto;
  }

  .about-card span {
    margin-bottom: 34px;
  }

  .industry-card {
    min-height: auto;
  }

  .journey-track::before {
    display: none;
  }

  .journey-item {
    min-height: auto;
  }

  .journey-item span {
    margin-bottom: 34px;
  }

  .manufacturing-card.wide {
    grid-column: auto;
  }

  .video-frame {
    min-height: 280px;
  }

  .product-stages {
    right: 18px;
    left: 18px;
    gap: 8px;
  }

  .product-stages span {
    min-height: 74px;
    font-size: 0.76rem;
  }

  .explainer-player figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .explainer-sequence {
    min-height: auto;
  }

  .sequence-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 74px 18px 28px;
  }

  .sequence-line {
    top: 32px;
    right: 18px;
    left: 18px;
  }

  .sequence-step {
    min-height: 128px;
  }

  .sequence-step::before {
    display: none;
  }

  .member-card {
    min-height: 220px;
  }

  .metrics-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metrics-strip div:last-child {
    border-bottom: 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .platform-card {
    padding: 24px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-picture,
  .contact-picture {
    margin-top: 24px;
  }

  .industry-infographic {
    margin-bottom: 22px;
  }

  .manufacturing-flow {
    margin-bottom: 22px;
  }

  .sensors-products-infographic {
    margin-top: 22px;
  }

  .sensors-products .container {
    width: min(100vw - 16px, 1540px);
  }

  .about .container {
    width: min(100vw - 16px, 1540px);
  }

  .capabilities .container {
    width: min(100vw - 16px, 1540px);
  }

  .tech-stack .container {
    width: min(100vw - 16px, 1660px);
  }

  .manufacturing .container {
    width: min(100vw - 16px, 1540px);
  }

  .industries .container {
    width: min(100vw - 16px, 1540px);
  }

  .journey .container {
    width: min(100vw - 16px, 1540px);
  }
}

/* Final full-page image override */
.about,
.sensors-products,
.product-demos,
.capabilities,
.process,
.platform,
.tech-stack,
.manufacturing,
.industries,
.journey {
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}

.about .container,
.sensors-products .container,
.product-demos .container,
.capabilities .container,
.process .container,
.platform .container,
.tech-stack .container,
.manufacturing .container,
.industries .container,
.journey .container {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.about-infographic,
.sensors-products-infographic,
.explainer-player,
.capability-infographic,
.process-infographic,
.platform-infographic,
.tech-stack-infographic,
.manufacturing-infographic,
.industry-infographic,
.journey-infographic {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-infographic img,
.sensors-products-infographic img,
.explainer-media img,
.capability-infographic img,
.process-infographic img,
.platform-infographic img,
.tech-stack-infographic img,
.manufacturing-infographic img,
.industry-infographic img,
.journey-infographic img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.explainer-player figcaption {
  display: none;
}

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

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

  .site-video-bg,
  .hero-video {
    display: none !important;
  }
}

/* Last override: make every infographic fill the section width without drifting left. */
.about .container,
.sensors-products .container,
.product-demos .container,
.capabilities .container,
.process .container,
.platform .container,
.tech-stack .container,
.manufacturing .container,
.industries .container,
.journey .container {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.about-infographic,
.sensors-products-infographic,
.explainer-player,
.capability-infographic,
.process-infographic,
.platform-infographic,
.tech-stack-infographic,
.manufacturing-infographic,
.industry-infographic,
.journey-infographic {
  left: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.about-infographic img,
.sensors-products-infographic img,
.explainer-media img,
.capability-infographic img,
.process-infographic img,
.platform-infographic img,
.tech-stack-infographic img,
.manufacturing-infographic img,
.industry-infographic img,
.journey-infographic img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Final video background override */
.site-video-bg {
  display: block !important;
}

.hero,
:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(245, 247, 251, 0.66)),
    radial-gradient(circle at 50% 28%, rgba(0, 113, 227, 0.1), transparent 32%),
    #f5f5f7;
}

.hero-video,
:root[data-theme="light"] .hero-video {
  display: block !important;
  opacity: 0.58 !important;
  filter: saturate(1.2) contrast(1.1) brightness(1.08);
}

.hero-bg,
:root[data-theme="light"] .hero-bg {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(245, 247, 251, 0.62));
}

/* Final video background override */
.site-video-bg {
  display: block !important;
}

.hero,
:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(245, 247, 251, 0.66)),
    radial-gradient(circle at 50% 28%, rgba(0, 113, 227, 0.1), transparent 32%),
    #f5f5f7;
}

.hero-video,
:root[data-theme="light"] .hero-video {
  display: block !important;
  opacity: 0.58 !important;
  filter: saturate(1.2) contrast(1.1) brightness(1.08);
}

.hero-bg,
:root[data-theme="light"] .hero-bg {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(245, 247, 251, 0.58));
}

/* Clearer video background requested */
.site-video-bg {
  opacity: 0.22 !important;
  filter: saturate(1.18) contrast(1.08) brightness(1.06);
}

.hero,
:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(245, 247, 251, 0.66)),
    radial-gradient(circle at 50% 28%, rgba(0, 113, 227, 0.1), transparent 32%),
    #f5f5f7;
}

.hero-video,
:root[data-theme="light"] .hero-video {
  display: block !important;
  opacity: 0.58 !important;
  filter: saturate(1.2) contrast(1.1) brightness(1.08);
}

.hero-bg,
:root[data-theme="light"] .hero-bg {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(245, 247, 251, 0.58));
}

/* Products page */
.product-page main {
  overflow: hidden;
}

.product-page-nav .is-active {
  color: #0066cc;
}

.product-hero {
  min-height: 680px;
  padding: 120px 0 64px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(245, 247, 251, 0.78)),
    radial-gradient(circle at 68% 24%, rgba(0, 113, 227, 0.16), transparent 34%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.product-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.45rem);
  line-height: 0.98;
  text-align: left;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: #4f5664;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.product-hero .hero-actions {
  justify-content: flex-start;
}

.product-hero-visual {
  margin: 0;
}

.product-hero-visual img,
.product-page-infographic img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 17, 31, 0.12);
}

.product-suite {
  background: #f5f5f7;
}

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

.product-card {
  display: grid;
  gap: 18px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.product-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0071e3, #00a7c7);
  color: #ffffff;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.product-card h3 {
  margin: 0;
  color: #07111f;
  font-size: 1.32rem;
  line-height: 1.1;
}

.product-card p {
  margin: 0;
  color: #5f6673;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #1d1d1f;
  font-weight: 700;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 22px;
}

.product-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0071e3;
  content: "";
}

.product-flow {
  background: #ffffff;
}

.product-page-infographic {
  margin: 0;
}

.product-detail {
  background: #f5f5f7;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

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

.product-detail-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.product-detail-list strong {
  color: #0066cc;
  font-size: 1.06rem;
}

.product-detail-list span {
  color: #5f6673;
}

.product-cta {
  background: #ffffff;
}

.product-cta-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.86));
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

.product-cta-panel h2 {
  max-width: 820px;
  margin: 0;
}

.product-cta-panel p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #5f6673;
}

@media (max-width: 980px) {
  .product-hero-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-copy h1,
  .product-hero-copy p:not(.eyebrow) {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .product-hero .hero-actions {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .product-hero {
    padding-top: 104px;
  }

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

  .product-detail-list div {
    grid-template-columns: 1fr;
  }
}

/* Advanced R&D page */
.rd-page main {
  overflow: hidden;
}

.rd-hero {
  min-height: 760px;
  padding: 126px 0 78px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(245, 247, 251, 0.78)),
    radial-gradient(circle at 28% 24%, rgba(0, 113, 227, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(0, 167, 199, 0.12), transparent 34%);
}

.rd-hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.rd-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #07111f;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: left;
}

.rd-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: #4f5664;
  font-size: 1.15rem;
}

.rd-hero .hero-actions {
  justify-content: flex-start;
}

.rd-hero-visual {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

.rd-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.rd-capabilities,
.rd-process {
  background: #f5f5f7;
}

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

.rd-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.82));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.rd-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.rd-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #07111f, #0071e3);
  color: #ffffff;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.rd-card h3 {
  margin: 0;
  color: #07111f;
  font-size: 1.26rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.rd-card p {
  margin: 0;
  color: #5f6673;
  font-size: 0.95rem;
}

.rd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.rd-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.06);
  color: #064d74;
  font-size: 0.78rem;
  font-weight: 800;
}

.rd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.rd-process-grid::before {
  position: absolute;
  top: 34px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.08), rgba(0, 113, 227, 0.5), rgba(0, 167, 199, 0.18));
  content: "";
}

.rd-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.rd-process-step span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: #0066cc;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.1);
}

.rd-process-step h3 {
  margin: 0;
  color: #07111f;
  font-size: 1.28rem;
}

.rd-process-step p {
  margin: 0;
  color: #5f6673;
}

.rd-cta {
  background: #ffffff;
}

.rd-cta-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 58px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 113, 227, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.88));
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

.rd-cta-panel h2 {
  max-width: 850px;
  margin: 0;
  color: #07111f;
  letter-spacing: 0;
}

.rd-cta-panel p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #5f6673;
}

@media (max-width: 1120px) {
  .rd-hero-grid {
    grid-template-columns: 1fr;
  }

  .rd-hero-copy h1,
  .rd-hero-copy p:not(.eyebrow) {
    max-width: 900px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .rd-hero .hero-actions {
    justify-content: center;
  }

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

  .rd-process-grid::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .rd-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .rd-hero-copy h1 {
    font-size: 2.8rem;
  }

  .rd-card-grid,
  .rd-process-grid {
    grid-template-columns: 1fr;
  }

  .rd-card,
  .rd-process-step {
    min-height: auto;
  }

  .rd-cta-panel {
    padding: 34px 22px;
  }
}

/* Keep all infographic images centered and full-viewport width. */
.about,
.sensors-products,
.product-demos,
.capabilities,
.process,
.platform,
.tech-stack,
.manufacturing,
.industries,
.journey {
  overflow-x: hidden;
  padding-right: 0;
  padding-left: 0;
}

.about .container,
.sensors-products .container,
.product-demos .container,
.capabilities .container,
.process .container,
.platform .container,
.tech-stack .container,
.manufacturing .container,
.industries .container,
.journey .container {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.about-infographic,
.sensors-products-infographic,
.explainer-player,
.capability-infographic,
.process-infographic,
.platform-infographic,
.tech-stack-infographic,
.manufacturing-infographic,
.industry-infographic,
.journey-infographic {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-right: 0;
  margin-left: -50vw;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.explainer-media {
  background: transparent;
}

.about-infographic img,
.sensors-products-infographic img,
.explainer-media img,
.capability-infographic img,
.process-infographic img,
.platform-infographic img,
.tech-stack-infographic img,
.manufacturing-infographic img,
.industry-infographic img,
.journey-infographic img {
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.explainer-player figcaption {
  display: none;
}

/* Premium enterprise visual system upgrade. Content and structure are unchanged. */
:root {
  --ink: #f5f8fb;
  --muted: #a8b4c4;
  --line: rgba(180, 203, 226, 0.16);
  --paper: #050a12;
  --panel: rgba(12, 24, 39, 0.76);
  --white: #ffffff;
  --deep: #050a12;
  --deep-2: #0a1422;
  --accent: #3cc7ff;
  --accent-2: #62e6ff;
  --gold: #b8c7d9;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --container: min(1240px, calc(100vw - 48px));
  --panel-border: rgba(168, 196, 222, 0.18);
  --panel-glow: 0 0 0 1px rgba(98, 230, 255, 0.08), 0 28px 100px rgba(0, 0, 0, 0.32);
  --section-gradient:
    radial-gradient(circle at 8% 18%, rgba(60, 199, 255, 0.11), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(112, 135, 171, 0.12), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #050a12 100%);
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  color: var(--ink);
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 8%, rgba(60, 199, 255, 0.13), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(117, 134, 159, 0.12), transparent 34%),
    linear-gradient(180deg, #050a12 0%, #09101d 44%, #050a12 100%);
}

.section-band {
  overflow: hidden;
  padding: 124px 0;
}

.section-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(98, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(98, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 68%);
  opacity: 0.28;
}

.site-header {
  width: min(1240px, calc(100vw - 28px));
  min-height: 70px;
  padding: 12px 12px 12px 18px;
  border-color: rgba(235, 244, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(235, 244, 255, 0.22), rgba(96, 125, 159, 0.18)),
    linear-gradient(180deg, rgba(16, 33, 54, 0.9), rgba(10, 22, 38, 0.88));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(235, 244, 255, 0.08) inset;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(235, 244, 255, 0.18), rgba(96, 125, 159, 0.14)),
    linear-gradient(180deg, rgba(13, 28, 48, 0.96), rgba(8, 18, 31, 0.94));
}

.brand {
  color: #f7fbff;
  font-size: 1.02rem;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(226, 236, 247, 0.9));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  width: clamp(168px, 16vw, 244px);
  height: 48px;
  filter: none;
}

.brand-mark {
  border-color: rgba(98, 230, 255, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(98, 230, 255, 0.34), transparent 44%),
    linear-gradient(135deg, rgba(60, 199, 255, 0.22), rgba(140, 158, 184, 0.12));
  box-shadow: 0 0 32px rgba(60, 199, 255, 0.2);
}

.site-nav a,
.mega-toggle {
  border: 1px solid transparent;
  color: rgba(229, 238, 248, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a.is-active,
.mega-toggle:hover,
.mega-menu:hover .mega-toggle,
.mega-menu.is-open .mega-toggle {
  border-color: rgba(98, 230, 255, 0.16);
  background: rgba(98, 230, 255, 0.08);
  color: #ffffff;
}

.nav-contact {
  background: linear-gradient(135deg, #dce9f7, #62e6ff);
  color: #06111d;
  box-shadow: 0 14px 34px rgba(60, 199, 255, 0.2);
}

.nav-contact:hover {
  background: linear-gradient(135deg, #ffffff, #8eeeff);
  color: #06111d;
}

.theme-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(181, 204, 229, 0.22);
  border-radius: 7px;
  background: rgba(98, 230, 255, 0.08);
  color: #eef8ff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(98, 230, 255, 0.42);
  background: rgba(98, 230, 255, 0.14);
}

.theme-toggle-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset -5px -5px 0 rgba(98, 230, 255, 0.4);
}

:root[data-theme="light"] .theme-toggle-icon {
  box-shadow: 0 0 0 4px rgba(5, 22, 38, 0.08);
}

.hero {
  min-height: 940px;
  padding: 178px 0 122px;
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.9), rgba(5, 21, 35, 0.58) 52%, rgba(4, 9, 17, 0.82)),
    url("assets/intsensing-hero-poster.png") center / cover no-repeat,
    linear-gradient(135deg, #050a12, #0a2034);
}

.hero-video {
  opacity: 0.72;
  filter: saturate(0.86) contrast(1.18) brightness(0.72);
}

.hero-bg {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.94), rgba(6, 24, 39, 0.64) 54%, rgba(3, 8, 15, 0.9)),
    radial-gradient(circle at 72% 30%, rgba(60, 199, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.14), rgba(5, 10, 18, 0.72));
}

.hero-3d {
  opacity: 0.82;
}

.grid-plane {
  opacity: 0.68;
  background-size: 48px 48px;
}

.signal {
  border-color: rgba(98, 230, 255, 0.22);
  box-shadow: inset 0 0 60px rgba(60, 199, 255, 0.04);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.86fr);
  gap: 76px;
}

.eyebrow {
  color: var(--accent-2);
  letter-spacing: 0.15em;
}

h1 {
  max-width: 860px;
  font-size: clamp(3.45rem, 6.5vw, 7.1rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

h2 {
  color: #f7fbff;
  text-wrap: balance;
}

h3 {
  color: #f7fbff;
}

.hero-lede {
  max-width: 760px;
  color: rgba(233, 242, 252, 0.84);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 7px;
  letter-spacing: 0.01em;
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, #f5f9ff, #62e6ff 58%, #3cc7ff);
  color: #06111d;
  box-shadow: 0 18px 42px rgba(60, 199, 255, 0.24);
}

.button.secondary {
  border-color: rgba(210, 227, 244, 0.24);
  background: rgba(12, 24, 39, 0.58);
  color: #eaf6ff;
}

.proof-row span {
  border-color: rgba(210, 227, 244, 0.22);
  background: rgba(11, 22, 37, 0.62);
  color: rgba(238, 247, 255, 0.86);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.device-panel,
.explainer-player,
.demo-card,
.platform-card,
.contact-form {
  border-color: rgba(181, 204, 229, 0.2);
  background:
    linear-gradient(180deg, rgba(20, 37, 58, 0.78), rgba(9, 18, 31, 0.84));
  box-shadow: var(--panel-glow);
}

.device-panel {
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
}

.panel-head,
.metrics-strip {
  border-color: rgba(181, 204, 229, 0.16);
}

.node {
  border-color: rgba(181, 204, 229, 0.2);
  background: rgba(6, 13, 24, 0.82);
}

.node.core {
  border-color: rgba(98, 230, 255, 0.5);
  background: radial-gradient(circle, rgba(60, 199, 255, 0.3), rgba(6, 13, 24, 0.92));
  box-shadow: 0 0 70px rgba(60, 199, 255, 0.18);
}

.intro,
.about,
.sensors-products,
.capabilities,
.platform,
.tech-stack,
.industries,
.journey,
.partners,
.team,
.advisors,
.contact {
  background: var(--section-gradient);
  color: var(--ink);
}

.product-demos,
.process,
.manufacturing {
  background:
    radial-gradient(circle at 14% 18%, rgba(60, 199, 255, 0.16), transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(131, 149, 178, 0.14), transparent 30%),
    linear-gradient(180deg, #050a12, #0a1422 52%, #050a12);
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading p:not(.eyebrow),
.section-text {
  color: rgba(208, 220, 234, 0.76);
}

.centered {
  max-width: 900px;
  margin-bottom: 58px;
}

.stack-visual img {
  border-color: var(--panel-border);
  background: rgba(9, 18, 31, 0.8);
  box-shadow: var(--panel-glow);
}

.about-card,
.track-card,
.capability-card,
.stack-card,
.industry-card,
.journey-item,
.member-card,
.advisor-card,
.team-stack div,
.contact-info div {
  border-color: var(--panel-border);
  background:
    linear-gradient(180deg, rgba(20, 37, 58, 0.74), rgba(9, 18, 31, 0.84));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.about-card,
.capability-card,
.stack-card,
.industry-card,
.journey-item,
.member-card,
.advisor-card,
.team-stack div,
.contact-info div {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-card:hover,
.capability-card:hover,
.stack-card:hover,
.industry-card:hover,
.journey-item:hover,
.member-card:hover,
.advisor-card:hover,
.team-stack div:hover,
.contact-info div:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 230, 255, 0.34);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(98, 230, 255, 0.08);
}

.about-card p,
.track-card p,
.capability-card p,
.stack-card p,
.industry-card p,
.journey-item p,
.member-card p,
.advisor-card p,
.team-stack span,
.contact-info a,
.contact-info span {
  color: rgba(208, 220, 234, 0.74);
}

.about-card span,
.card-icon,
.advisor-card span,
.manufacturing-index {
  border: 1px solid rgba(98, 230, 255, 0.24);
  background: rgba(98, 230, 255, 0.1);
  color: var(--accent-2);
}

.track-card {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(20, 37, 58, 0.82), rgba(9, 18, 31, 0.9));
}

.track-card::before {
  border-color: rgba(98, 230, 255, 0.1);
  box-shadow: 0 0 90px rgba(60, 199, 255, 0.08);
}

.track-card::after {
  background-image:
    linear-gradient(rgba(98, 230, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 230, 255, 0.045) 1px, transparent 1px);
}

.sensor-track,
.product-track {
  background:
    linear-gradient(135deg, rgba(60, 199, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(20, 37, 58, 0.82), rgba(9, 18, 31, 0.9));
}

.track-topline span {
  color: rgba(208, 220, 234, 0.7);
}

.track-topline strong,
.industry-card span {
  border: 1px solid rgba(98, 230, 255, 0.18);
  background: rgba(98, 230, 255, 0.1);
  color: #dff8ff;
}

.track-card li {
  color: rgba(236, 245, 255, 0.86);
}

.track-card li::before,
.product-track li::before {
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(98, 230, 255, 0.42);
}

.video-frame {
  background:
    linear-gradient(rgba(98, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 230, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(60, 199, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(16, 38, 62, 0.9), rgba(5, 10, 18, 0.96));
}

.demo-copy span {
  color: var(--accent-2);
}

.demo-copy p,
.product-demos .section-heading p:not(.eyebrow),
.process .section-heading p:not(.eyebrow),
.timeline p,
.platform-card p:not(.eyebrow),
.scope-grid span,
.manufacturing .section-heading p:not(.eyebrow),
.manufacturing-card p {
  color: rgba(208, 220, 234, 0.72);
}

.timeline article,
.scope-grid div,
.manufacturing-card {
  border-color: rgba(181, 204, 229, 0.18);
  background:
    linear-gradient(180deg, rgba(20, 37, 58, 0.7), rgba(9, 18, 31, 0.78));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.timeline span,
.metrics-strip strong {
  color: var(--accent-2);
}

.tech-tags span,
.manufacturing-card .tech-tags span {
  border-color: rgba(181, 204, 229, 0.18);
  background: rgba(215, 230, 244, 0.08);
  color: rgba(239, 247, 255, 0.84);
}

.tech-tags.is-collapsed::after {
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0), rgba(9, 18, 31, 0.96));
}

.manufacturing-card .tech-tags.is-collapsed::after {
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0), rgba(9, 18, 31, 0.96));
}

.expand-tags,
.manufacturing-card .expand-tags {
  border-color: rgba(98, 230, 255, 0.22);
  background: rgba(98, 230, 255, 0.1);
  color: #eafaff;
}

.journey-track::before {
  background: linear-gradient(90deg, transparent, var(--accent), #dce9f7, var(--accent-2), transparent);
  opacity: 0.55;
}

.journey-item span {
  border-color: rgba(98, 230, 255, 0.24);
  background: rgba(98, 230, 255, 0.1);
  color: var(--accent-2);
}

.logo-tile {
  min-height: 128px;
  border-color: rgba(181, 204, 229, 0.18);
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(219, 229, 241, 0.92));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.logo-tile img {
  max-width: 176px;
  filter: saturate(0.86) contrast(1.05);
}

.logo-tile:hover {
  border-color: rgba(98, 230, 255, 0.48);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32), 0 0 38px rgba(60, 199, 255, 0.1);
}

.member-avatar {
  border-color: rgba(98, 230, 255, 0.28);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #07111f, #14324d 58%, #3cc7ff);
  box-shadow: 0 0 36px rgba(60, 199, 255, 0.16);
}

.contact-info strong,
.contact-form span,
.stack-card h3 {
  color: #f7fbff;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: rgba(181, 204, 229, 0.18);
  background: rgba(4, 10, 18, 0.72);
  color: #f7fbff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(208, 220, 234, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(98, 230, 255, 0.12);
}

.form-status {
  color: rgba(208, 220, 234, 0.76);
}

.site-footer {
  border-top: 1px solid rgba(181, 204, 229, 0.14);
  background:
    linear-gradient(180deg, #07111f, #03070d);
}

.footer-links a:hover {
  color: var(--accent-2);
}

.reveal {
  transform: translateY(28px);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 760ms ease;
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 34px, 1240px);
  }

  .site-nav {
    background:
      linear-gradient(180deg, rgba(8, 18, 31, 0.98), rgba(5, 10, 18, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }

  .nav-contact {
    margin-left: 0;
  }

  .brand {
    order: 1;
    margin-right: auto;
  }

  .theme-toggle {
    order: 2;
  }

  .nav-toggle {
    order: 3;
  }

  .site-nav {
    order: 4;
  }

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

  .device-panel {
    transform: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1240px);
  }

  .section-band {
    padding: 82px 0;
  }

  .site-header {
    gap: 10px;
    padding: 10px;
  }

  .brand-logo {
    width: 154px;
    height: 40px;
  }

  .theme-toggle {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .theme-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 64px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .proof-row {
    margin-top: 28px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
  }

  .system-map {
    min-height: 286px;
  }

  .product-core-3d {
    width: 168px;
    height: 168px;
  }

  .node {
    width: 82px;
    height: 58px;
  }

  .node.core {
    width: 92px;
    height: 92px;
  }

  .n1,
  .n3 {
    left: 10px;
  }

  .n2,
  .n4 {
    right: 10px;
  }

  .n1,
  .n2 {
    top: 42px;
  }

  .n3,
  .n4 {
    bottom: 42px;
  }

  .about-card,
  .track-card,
  .capability-card,
  .stack-card,
  .industry-card,
  .journey-item,
  .member-card,
  .advisor-card,
  .team-stack div,
  .contact-info div,
  .contact-form,
  .platform-card {
    padding: 22px;
  }

.logo-tile {
    min-height: 102px;
  }
}

:root[data-theme="light"] {
  --ink: #07111f;
  --muted: #334255;
  --line: rgba(7, 17, 31, 0.12);
  --paper: #ffffff;
  --panel: rgba(255, 255, 255, 0.86);
  --white: #ffffff;
  --deep: #07111f;
  --deep-2: #ffffff;
  --accent: #0579ad;
  --accent-2: #0aa8c9;
  --gold: #7d8b9b;
  --shadow: 0 24px 70px rgba(22, 38, 60, 0.12);
  --panel-border: rgba(7, 17, 31, 0.12);
  --panel-glow: 0 18px 60px rgba(22, 38, 60, 0.12);
  --section-gradient:
    radial-gradient(circle at 8% 18%, rgba(5, 121, 173, 0.055), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(125, 139, 155, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

:root[data-theme="light"] body {
  background:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    var(--paper);
  color: var(--ink);
}

:root[data-theme="light"] body::before {
  background:
    radial-gradient(circle at 18% 8%, rgba(5, 121, 173, 0.07), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(125, 139, 155, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 44%, #ffffff 100%);
}

:root[data-theme="light"] .site-header {
  border-color: rgba(7, 17, 31, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 251, 0.9));
  color: #07111f;
  box-shadow: 0 18px 60px rgba(22, 38, 60, 0.14);
}

:root[data-theme="light"] .site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
}

:root[data-theme="light"] .brand {
  color: #07111f;
}

:root[data-theme="light"] .brand-mark {
  border-color: rgba(5, 121, 173, 0.26);
  background:
    radial-gradient(circle at 50% 50%, rgba(10, 168, 201, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(5, 121, 173, 0.14), rgba(125, 139, 155, 0.1));
}

:root[data-theme="light"] .site-nav a {
  color: rgba(7, 17, 31, 0.72);
}

:root[data-theme="light"] .site-nav a:hover,
:root[data-theme="light"] .site-nav a.is-active,
:root[data-theme="light"] .mega-toggle:hover,
:root[data-theme="light"] .mega-menu:hover .mega-toggle,
:root[data-theme="light"] .mega-menu.is-open .mega-toggle {
  border-color: rgba(5, 121, 173, 0.18);
  background: rgba(5, 121, 173, 0.08);
  color: #07111f;
}

:root[data-theme="light"] .mega-toggle {
  color: rgba(7, 17, 31, 0.72);
}

:root[data-theme="light"] .nav-contact {
  background: linear-gradient(135deg, #07111f, #0579ad);
  color: #ffffff;
}

:root[data-theme="light"] .theme-toggle {
  border-color: rgba(7, 17, 31, 0.12);
  background: rgba(7, 17, 31, 0.06);
  color: #07111f;
}

:root[data-theme="light"] .nav-toggle {
  border-color: rgba(7, 17, 31, 0.14);
  background: rgba(7, 17, 31, 0.06);
  color: #07111f;
}

:root[data-theme="light"] .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.82) 52%, rgba(242, 248, 253, 0.9)),
    url("assets/intsensing-hero-poster.png") center / cover no-repeat,
    linear-gradient(135deg, #ffffff, #e7f4fa);
  color: #07111f;
}

:root[data-theme="light"] .hero-video {
  opacity: 0.34;
  filter: saturate(0.78) contrast(1.08) brightness(1.18);
}

:root[data-theme="light"] .hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.82) 54%, rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 72% 30%, rgba(5, 121, 173, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(248, 251, 255, 0.86));
}

:root[data-theme="light"] .hero-3d {
  opacity: 0.38;
  mix-blend-mode: multiply;
}

:root[data-theme="light"] h1,
:root[data-theme="light"] h2,
:root[data-theme="light"] h3 {
  color: #07111f;
  text-shadow: none;
}

:root[data-theme="light"] .hero-lede,
:root[data-theme="light"] .section-heading p:not(.eyebrow),
:root[data-theme="light"] .section-text {
  color: rgba(40, 52, 67, 0.78);
}

:root[data-theme="light"] .button.primary {
  border-color: rgba(7, 17, 31, 0.1);
  background: linear-gradient(135deg, #07111f, #0579ad);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(5, 121, 173, 0.18);
}

:root[data-theme="light"] .button.secondary {
  border-color: rgba(7, 17, 31, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: #07111f;
}

:root[data-theme="light"] .proof-row span {
  border-color: rgba(7, 17, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(7, 17, 31, 0.78);
}

:root[data-theme="light"] .device-panel,
:root[data-theme="light"] .explainer-player,
:root[data-theme="light"] .demo-card,
:root[data-theme="light"] .platform-card,
:root[data-theme="light"] .contact-form,
:root[data-theme="light"] .about-card,
:root[data-theme="light"] .track-card,
:root[data-theme="light"] .capability-card,
:root[data-theme="light"] .stack-card,
:root[data-theme="light"] .industry-card,
:root[data-theme="light"] .journey-item,
:root[data-theme="light"] .member-card,
:root[data-theme="light"] .advisor-card,
:root[data-theme="light"] .team-stack div,
:root[data-theme="light"] .contact-info div,
:root[data-theme="light"] .timeline article,
:root[data-theme="light"] .scope-grid div,
:root[data-theme="light"] .manufacturing-card {
  border-color: rgba(7, 17, 31, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 251, 0.9));
  box-shadow: 0 18px 60px rgba(22, 38, 60, 0.12);
}

:root[data-theme="light"] .product-demos,
:root[data-theme="light"] .process,
:root[data-theme="light"] .manufacturing {
  background:
    radial-gradient(circle at 14% 18%, rgba(5, 121, 173, 0.07), transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(125, 139, 155, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbff 52%, #ffffff);
  color: #07111f;
}

:root[data-theme="light"] .partners {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #f4f8fc 100%);
  border-top: 1px solid rgba(7, 17, 31, 0.1);
  border-bottom: 1px solid rgba(7, 17, 31, 0.1);
}

:root[data-theme="light"] .partners::after {
  opacity: 0.08;
}

:root[data-theme="light"] .partners .eyebrow {
  color: #005f8f;
}

:root[data-theme="light"] .partners h2 {
  color: #06111d;
}

:root[data-theme="light"] .partners .section-heading p {
  color: #263549;
}

:root[data-theme="light"] .node {
  border-color: rgba(7, 17, 31, 0.14);
  background: rgba(255, 255, 255, 0.84);
}

:root[data-theme="light"] .node small,
:root[data-theme="light"] .panel-head span,
:root[data-theme="light"] .metrics-strip span,
:root[data-theme="light"] .demo-copy p,
:root[data-theme="light"] .product-demos .section-heading p:not(.eyebrow),
:root[data-theme="light"] .process .section-heading p:not(.eyebrow),
:root[data-theme="light"] .timeline p,
:root[data-theme="light"] .platform-card p:not(.eyebrow),
:root[data-theme="light"] .scope-grid span,
:root[data-theme="light"] .manufacturing .section-heading p:not(.eyebrow),
:root[data-theme="light"] .manufacturing-card p,
:root[data-theme="light"] .about-card p,
:root[data-theme="light"] .track-card p,
:root[data-theme="light"] .capability-card p,
:root[data-theme="light"] .industry-card p,
:root[data-theme="light"] .journey-item p,
:root[data-theme="light"] .member-card p,
:root[data-theme="light"] .advisor-card p,
:root[data-theme="light"] .team-stack span,
:root[data-theme="light"] .contact-info a,
:root[data-theme="light"] .contact-info span {
  color: rgba(40, 52, 67, 0.74);
}

:root[data-theme="light"] .tech-tags span,
:root[data-theme="light"] .manufacturing-card .tech-tags span {
  border-color: rgba(7, 17, 31, 0.12);
  background: rgba(7, 17, 31, 0.055);
  color: rgba(7, 17, 31, 0.76);
}

:root[data-theme="light"] .tech-tags.is-collapsed::after,
:root[data-theme="light"] .manufacturing-card .tech-tags.is-collapsed::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(241, 246, 251, 0.96));
}

:root[data-theme="light"] .expand-tags,
:root[data-theme="light"] .manufacturing-card .expand-tags {
  border-color: rgba(5, 121, 173, 0.18);
  background: rgba(5, 121, 173, 0.08);
  color: #07111f;
}

:root[data-theme="light"] .logo-tile {
  border: 1px solid rgba(7, 17, 31, 0.18);
  background:
    linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: 0 16px 34px rgba(22, 38, 60, 0.14);
}

:root[data-theme="light"] .logo-tile img {
  filter: none;
  opacity: 1;
}

:root[data-theme="light"] .logo-tile:hover {
  border-color: rgba(5, 121, 173, 0.44);
  box-shadow: 0 20px 54px rgba(22, 38, 60, 0.18);
}

:root[data-theme="light"] .section-picture,
:root[data-theme="light"] .contact-picture,
:root[data-theme="light"] .manufacturing-flow {
  border-color: rgba(7, 17, 31, 0.12);
  background:
    linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: 0 20px 56px rgba(22, 38, 60, 0.12);
}

:root[data-theme="light"] .about-infographic,
:root[data-theme="light"] .capability-infographic,
:root[data-theme="light"] .tech-stack-infographic,
:root[data-theme="light"] .manufacturing-infographic,
:root[data-theme="light"] .journey-infographic,
:root[data-theme="light"] .industry-infographic,
:root[data-theme="light"] .process-infographic,
:root[data-theme="light"] .platform-infographic,
:root[data-theme="light"] .sensors-products-infographic {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

:root[data-theme="light"] .contact-info strong,
:root[data-theme="light"] .contact-form span,
:root[data-theme="light"] .stack-card h3 {
  color: #07111f;
}

:root[data-theme="light"] .contact-form input,
:root[data-theme="light"] .contact-form textarea,
:root[data-theme="light"] .contact-form select {
  border-color: rgba(7, 17, 31, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: #07111f;
}

:root[data-theme="light"] .contact-form input::placeholder,
:root[data-theme="light"] .contact-form textarea::placeholder {
  color: rgba(40, 52, 67, 0.48);
}

:root[data-theme="light"] .site-footer {
  border-top-color: rgba(7, 17, 31, 0.1);
  background:
    linear-gradient(180deg, #f7fbff, #e8eff7);
  color: #07111f;
}

:root[data-theme="light"] .site-footer p,
:root[data-theme="light"] .footer-links a {
  color: rgba(40, 52, 67, 0.7);
}

:root[data-theme="light"] .form-status {
  color: rgba(40, 52, 67, 0.72);
}

:root[data-theme="light"] .panel-head strong,
:root[data-theme="light"] .node span,
:root[data-theme="light"] .metrics-strip strong,
:root[data-theme="light"] .explainer-player strong,
:root[data-theme="light"] .demo-copy h3,
:root[data-theme="light"] .track-card h3,
:root[data-theme="light"] .capability-card h3,
:root[data-theme="light"] .platform-card h2,
:root[data-theme="light"] .manufacturing-card h3,
:root[data-theme="light"] .industry-card h3,
:root[data-theme="light"] .journey-item h3,
:root[data-theme="light"] .member-card h3,
:root[data-theme="light"] .advisor-card h3,
:root[data-theme="light"] .team-stack strong,
:root[data-theme="light"] .scope-grid strong {
  color: #07111f;
}

:root[data-theme="light"] .explainer-player span,
:root[data-theme="light"] .demo-copy p,
:root[data-theme="light"] .product-stages span,
:root[data-theme="light"] .timeline p,
:root[data-theme="light"] .metrics-strip span,
:root[data-theme="light"] .sequence-step small {
  color: rgba(40, 52, 67, 0.76);
}

:root[data-theme="light"] .explainer-sequence {
  background:
    radial-gradient(circle at 22% 18%, rgba(5, 121, 173, 0.1), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(125, 139, 155, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 250, 0.96));
}

:root[data-theme="light"] .sequence-grid {
  background-image:
    linear-gradient(rgba(5, 121, 173, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 121, 173, 0.06) 1px, transparent 1px);
}

:root[data-theme="light"] .sequence-step {
  border-color: rgba(7, 17, 31, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 251, 0.9));
  box-shadow: 0 18px 60px rgba(22, 38, 60, 0.12);
}

:root[data-theme="light"] .sequence-step strong {
  color: #07111f;
}

:root[data-theme="light"] .sequence-step span {
  color: #0579ad;
}

:root[data-theme="light"] .track-topline strong,
:root[data-theme="light"] .industry-card span,
:root[data-theme="light"] .about-card span,
:root[data-theme="light"] .card-icon,
:root[data-theme="light"] .advisor-card span,
:root[data-theme="light"] .manufacturing-index {
  border-color: rgba(5, 121, 173, 0.2);
  background: rgba(5, 121, 173, 0.09);
  color: #064d74;
}

:root[data-theme="light"] .product-stages span,
:root[data-theme="light"] .play-control {
  border-color: rgba(7, 17, 31, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

:root[data-theme="light"] .play-control span {
  border-left-color: #07111f;
}

:root[data-theme="light"] .member-avatar {
  color: #ffffff;
}

/* Apple-inspired premium light presentation */
:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --white: #ffffff;
  --accent: #0071e3;
  --accent-2: #00a7c7;
  --line: rgba(29, 29, 31, 0.1);
  --radius: 8px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --container: min(1440px, calc(100vw - 32px));
}

body {
  background: #f5f5f7;
  color: #1d1d1f;
}

body::before {
  display: none;
}

.site-header,
:root[data-theme="light"] .site-header,
.site-header.is-scrolled,
:root[data-theme="light"] .site-header.is-scrolled {
  top: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 clamp(16px, 3vw, 42px);
  border: 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 0;
  background: rgba(251, 251, 253, 0.78);
  color: #1d1d1f;
  box-shadow: none;
  backdrop-filter: saturate(180%) blur(20px);
}

.brand,
:root[data-theme="light"] .brand {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: clamp(126px, 10vw, 170px);
  height: 32px;
  filter: none;
}

.site-nav {
  gap: 1px;
}

.site-nav a,
.mega-toggle,
:root[data-theme="light"] .site-nav a,
:root[data-theme="light"] .mega-toggle {
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  color: rgba(29, 29, 31, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav a:hover,
.mega-toggle:hover,
.mega-menu:hover .mega-toggle,
.mega-menu.is-open .mega-toggle,
:root[data-theme="light"] .site-nav a:hover,
:root[data-theme="light"] .site-nav a.is-active,
:root[data-theme="light"] .mega-toggle:hover,
:root[data-theme="light"] .mega-menu:hover .mega-toggle,
:root[data-theme="light"] .mega-menu.is-open .mega-toggle {
  border-color: transparent;
  background: transparent;
  color: #0066cc;
}

.site-nav a.is-active {
  background: transparent;
  color: #0066cc;
}

.mega-toggle span {
  width: 6px;
  height: 6px;
  border-width: 1.5px;
}

.site-nav .nav-contact,
:root[data-theme="light"] .site-nav .nav-contact {
  min-height: 32px;
  margin-left: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: #0071e3;
  color: #ffffff;
  box-shadow: none;
}

.site-nav .nav-contact:hover,
:root[data-theme="light"] .site-nav .nav-contact:hover {
  background: #0077ed;
  color: #ffffff;
}

.mega-panel {
  top: 100%;
  width: 100vw;
  max-width: none;
  max-height: min(76vh, 680px);
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  border: 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 0;
  background: rgba(251, 251, 253, 0.94);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(24px);
}

.mega-category {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mega-icon {
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.08);
  color: #0066cc;
}

.mega-category p {
  color: #6e6e73;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.mega-category a {
  padding: 10px 8px;
  border: 0;
  color: #1d1d1f;
}

.mega-category a:hover,
.mega-category a.is-active {
  transform: translateY(-1px);
  border-color: transparent;
  background: rgba(0, 113, 227, 0.06);
  color: #0066cc;
}

.mega-category a strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.mega-category a span {
  color: #6e6e73;
  font-size: 0.78rem;
}

.section-band {
  padding: 32px 0;
  scroll-margin-top: 72px;
}

.hero {
  min-height: 850px;
  padding: 122px 0 52px;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 113, 227, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
  color: #1d1d1f;
}

.hero,
:root[data-theme="light"] .hero {
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 113, 227, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
  color: #1d1d1f;
}

.hero-video,
:root[data-theme="light"] .hero-video {
  display: none !important;
  opacity: 0;
}

.hero-bg,
:root[data-theme="light"] .hero-bg {
  opacity: 0.5;
  background:
    radial-gradient(circle at 74% 38%, rgba(0, 113, 227, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(245, 245, 247, 0.68));
}

.hero-3d,
:root[data-theme="light"] .hero-3d {
  opacity: 0.18;
  mix-blend-mode: normal;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  color: #0071e3;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}

h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

h2 {
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: 790px;
  margin: 24px auto 0;
  color: #6e6e73;
  text-shadow: none;
}

.hero-copy,
.hero-copy.reveal.is-visible {
  color: #1d1d1f;
}

.hero-actions,
.proof-row {
  justify-content: center;
}

.button {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
}

.button.primary {
  background: #0071e3;
  color: #ffffff;
  box-shadow: none;
}

.button.primary:hover {
  background: #0077ed;
}

.button.secondary {
  border-color: #0071e3;
  background: transparent;
  color: #0071e3;
  backdrop-filter: none;
}

.proof-row span {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: #1d1d1f;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.hero-visual {
  width: min(920px, 100%);
  margin: 0 auto;
}

.device-panel {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: #1d1d1f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.1);
}

.panel-head,
.metrics-strip,
.metrics-strip div {
  border-color: rgba(29, 29, 31, 0.08);
}

.panel-head span,
.node small,
.metrics-strip span {
  color: #6e6e73;
}

.node {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #1d1d1f;
}

.node.core {
  border-color: rgba(0, 113, 227, 0.24);
  background: radial-gradient(circle, rgba(0, 113, 227, 0.14), rgba(255, 255, 255, 0.95));
}

.about,
.sensors-products,
.product-demos,
.capabilities,
.process,
.platform,
.tech-stack,
.manufacturing,
.industries,
.journey,
.partners,
.team,
.advisors,
.contact,
:root[data-theme="light"] .product-demos,
:root[data-theme="light"] .process,
:root[data-theme="light"] .manufacturing,
:root[data-theme="light"] .partners {
  background: #f5f5f7;
  color: #1d1d1f;
}

.about .container,
.sensors-products .container,
.capabilities .container,
.process .container,
.platform .container,
.tech-stack .container,
.manufacturing .container,
.industries .container,
.journey .container {
  width: min(1536px, calc(100vw - 24px));
}

.about-infographic,
.sensors-products-infographic,
.capability-infographic,
.process-infographic,
.platform-infographic,
.tech-stack-infographic,
.manufacturing-infographic,
.industry-infographic,
.journey-infographic {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-infographic img,
.sensors-products-infographic img,
.capability-infographic img,
.process-infographic img,
.platform-infographic img,
.tech-stack-infographic img,
.manufacturing-infographic img,
.industry-infographic img,
.journey-infographic img {
  border-radius: 0;
  mix-blend-mode: multiply;
}

.section-heading p:not(.eyebrow),
.section-text,
:root[data-theme="light"] .product-demos .section-heading p:not(.eyebrow),
:root[data-theme="light"] .process .section-heading p:not(.eyebrow),
:root[data-theme="light"] .platform-card p:not(.eyebrow),
:root[data-theme="light"] .manufacturing .section-heading p:not(.eyebrow) {
  color: #6e6e73;
}

.explainer-player,
.platform-card,
.contact-card,
.contact-form,
.member-card,
.advisor-card,
.contact-info div,
:root[data-theme="light"] .contact-form,
:root[data-theme="light"] .member-card,
:root[data-theme="light"] .advisor-card,
:root[data-theme="light"] .contact-info div {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: #1d1d1f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.logo-tile,
:root[data-theme="light"] .logo-tile {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.site-footer,
:root[data-theme="light"] .site-footer {
  border-top-color: rgba(29, 29, 31, 0.08);
  background: #f5f5f7;
}

.site-header,
:root[data-theme="light"] .site-header {
  justify-content: center;
  min-height: 64px;
  padding: 0 clamp(34px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
}

.site-header .brand,
:root[data-theme="light"] .site-header .brand {
  position: absolute;
  left: clamp(18px, 3vw, 48px);
  z-index: 2;
}

.site-header .brand-logo,
:root[data-theme="light"] .site-header .brand-logo {
  width: clamp(168px, 14vw, 236px);
  height: 48px;
  object-fit: contain;
}

.site-nav {
  margin: 0 auto;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.site-nav a,
.mega-toggle,
:root[data-theme="light"] .site-nav a,
:root[data-theme="light"] .mega-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0;
  color: #111827;
  font-size: clamp(0.98rem, 1vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0;
}

.mega-toggle {
  gap: 7px;
}

.site-nav .nav-contact,
:root[data-theme="light"] .site-nav .nav-contact {
  min-height: 38px;
  padding: 0 18px;
  font-size: clamp(0.94rem, 0.95vw, 1.05rem);
  font-weight: 800;
}

.mega-panel {
  top: 64px;
}

@media (max-width: 980px) {
  .site-header,
  :root[data-theme="light"] .site-header {
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
  }

  .site-header .brand,
  :root[data-theme="light"] .site-header .brand {
    position: static;
  }

  .site-header .brand-logo,
  :root[data-theme="light"] .site-header .brand-logo {
    width: 170px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
    border-color: rgba(29, 29, 31, 0.14);
    background: rgba(255, 255, 255, 0.74);
    color: #1d1d1f;
  }

  .site-nav {
    top: 100%;
    gap: 0;
    padding: 8px 14px 16px;
    border: 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 0;
    background: rgba(251, 251, 253, 0.96);
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.08);
  }

  .site-nav a,
  .mega-toggle,
  :root[data-theme="light"] .site-nav a,
  :root[data-theme="light"] .mega-toggle {
    min-height: 46px;
    padding: 0 4px;
    font-size: 1rem;
  }

  .mega-panel {
    width: 100%;
    padding: 8px 0 16px;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mega-link-grid,
  .mega-link-grid.compact-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 38px;
  }

  .hero-grid {
    gap: 30px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5.6rem);
  }

  .device-panel {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 20px, 1440px);
  }

  .section-band {
    padding: 18px 0;
  }

  .brand-logo {
    width: 142px;
  }

  .hero {
    padding-top: 94px;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .about .container,
  .sensors-products .container,
  .capabilities .container,
  .process .container,
  .platform .container,
  .tech-stack .container,
  .manufacturing .container,
  .industries .container,
  .journey .container {
    width: min(100vw - 8px, 1536px);
  }
}

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

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

/* Last override: make every infographic fill the section width without drifting left. */
.about .container,
.sensors-products .container,
.product-demos .container,
.capabilities .container,
.process .container,
.platform .container,
.tech-stack .container,
.manufacturing .container,
.industries .container,
.journey .container {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.about-infographic,
.sensors-products-infographic,
.explainer-player,
.capability-infographic,
.process-infographic,
.platform-infographic,
.tech-stack-infographic,
.manufacturing-infographic,
.industry-infographic,
.journey-infographic {
  left: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.about-infographic img,
.sensors-products-infographic img,
.explainer-media img,
.capability-infographic img,
.process-infographic img,
.platform-infographic img,
.tech-stack-infographic img,
.manufacturing-infographic img,
.industry-infographic img,
.journey-infographic img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Final video background override */
.site-video-bg {
  display: block !important;
}

.hero,
:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(245, 247, 251, 0.66)),
    radial-gradient(circle at 50% 28%, rgba(0, 113, 227, 0.1), transparent 32%),
    #f5f5f7;
}

.hero-video,
:root[data-theme="light"] .hero-video {
  display: block !important;
  opacity: 0.58 !important;
  filter: saturate(1.2) contrast(1.1) brightness(1.08);
}

.hero-bg,
:root[data-theme="light"] .hero-bg {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(245, 247, 251, 0.58));
}


/* Careers page */
.careers-page .site-video-bg { opacity: 0.18; }
.careers-hero {
  padding-top: 172px;
  background:
    radial-gradient(circle at 18% 16%, rgba(9, 168, 200, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(10, 58, 74, 0.84));
  color: var(--white);
}

.careers-hero-grid,
.careers-split,
.careers-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.careers-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.careers-hero-visual {
  margin: 0;
}

.careers-hero-visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.careers-intro,
.careers-roles {
  background: #ffffff;
}

.careers-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.career-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.career-card,
.career-apply-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 56px rgba(16, 21, 34, 0.08);
}

.career-card {
  min-height: 230px;
  padding: 26px;
}

.career-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.career-card h3 {
  margin-bottom: 12px;
}

.career-card p,
.career-apply-panel p,
.career-apply-panel li {
  color: var(--muted);
}

.careers-process {
  background:
    radial-gradient(circle at 10% 15%, rgba(47, 182, 124, 0.10), transparent 28%),
    #f8faf8;
}

.career-apply-panel {
  padding: 34px;
}

.career-email {
  display: inline-flex;
  margin: 4px 0 18px;
  color: #0579ad;
  font-size: 1.2rem;
  font-weight: 800;
}

.career-apply-panel ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .careers-hero-grid,
  .careers-split,
  .careers-process-grid,
  .career-card-grid {
    grid-template-columns: 1fr;
  }
}
