:root {
  --ink: #102538;
  --muted: #637487;
  --blue: #2977d6;
  --blue-2: #0f3554;
  --green: #19b892;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: #dbe5ed;
  --soft: #edf3f7;
  --shadow: 0 24px 70px rgba(21, 54, 83, .14);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
  scroll-padding-top: 118px;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "IBM Plex Sans", "Noto Sans Arabic", system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body[dir="rtl"] { font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif; }
body::selection { background: var(--green); color: #06251d; }
.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(25,184,146,.18), transparent 22rem),
    linear-gradient(135deg, #06131d, #0b2032);
  color: #f8fbff;
  pointer-events: none;
  transition: opacity .42s ease, visibility .42s ease;
}
.boot-mark {
  display: grid;
  place-items: center;
  gap: 12px;
}
.boot-mark img {
  display: block;
  width: min(360px, 76vw);
  height: auto;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 0 34px rgba(25,184,146,.22);
}
.boot-line {
  width: min(280px, 58vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.boot-line i {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue));
  animation: bootLine .86s ease-in-out forwards;
}
.boot-screen small {
  color: rgba(226,236,244,.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
}
body.boot-complete .boot-screen {
  opacity: 0;
  visibility: hidden;
}
.cursor-glow {
  position: fixed;
  width: 34px;
  height: 34px;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  border: 1px solid rgba(15,53,84,.38);
  background: radial-gradient(circle, rgba(255,255,255,.18), rgba(25,184,146,.08) 46%, transparent 70%);
  box-shadow: 0 0 18px rgba(25,184,146,.2);
  transform: translate3d(calc(var(--mx, 50vw) - 17px), calc(var(--my, 50vh) - 17px), 0);
  transition: opacity .18s ease, transform .06s linear, width .16s ease, height .16s ease, border-color .16s ease;
}
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle at 35% 35%, #e9fff8 0 18%, var(--green) 20% 62%, var(--blue) 100%);
  box-shadow: 0 0 12px rgba(25,184,146,.72), 0 0 2px rgba(15,53,84,.9);
  transform: translate3d(calc(var(--mx, 50vw) - 4px), calc(var(--my, 50vh) - 4px), 0);
  transition: opacity .18s ease, transform .035s linear;
}
body.touch-pointer-active .cursor-glow {
  opacity: .48;
}
body.touch-pointer-active .cursor-dot {
  opacity: .96;
}
@media (hover: hover) and (pointer: fine) {
  body.custom-cursor-active,
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active [role="button"] {
    cursor: none !important;
  }
  body.custom-cursor-active .cursor-glow,
  body.custom-cursor-active .cursor-dot {
    opacity: 1;
  }
  body.cursor-over-link .cursor-glow {
    width: 42px;
    height: 42px;
    border-color: rgba(25,184,146,.72);
    transform: translate3d(calc(var(--mx, 50vw) - 21px), calc(var(--my, 50vh) - 21px), 0);
  }
}
.blueprint {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(41,119,214,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,119,214,.07) 1px, transparent 1px),
    radial-gradient(circle at 18% 10%, rgba(25,184,146,.16), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(41,119,214,.16), transparent 30rem);
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 1;
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 45;
  height: 2px;
  pointer-events: none;
  background: rgba(15,53,84,.08);
}
.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(25,184,146,.55);
  transition: width .08s linear;
}
a { color: inherit; }

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

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 20;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 12px;
  direction: ltr;
  border: 1px solid rgba(219,229,237,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 60px rgba(15,53,84,.12);
  backdrop-filter: blur(22px);
}
.site-header * { direction: ltr; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 270px;
  text-decoration: none;
}
.brand .wordmark-logo {
  display: block;
  width: 248px;
  max-width: 100%;
  height: auto;
}
.brand svg {
  width: 54px;
  height: 54px;
}
.brand .hex { fill: #fff; stroke: var(--blue-2); stroke-width: 2.8; }
.brand .hex-inner { fill: rgba(237,243,247,.74); stroke: rgba(41,119,214,.34); stroke-width: 1.6; }
.brand .xmark {
  fill: none;
  stroke: var(--green);
  stroke-width: 5.4;
  stroke-linecap: round;
  stroke-opacity: .56;
}
.brand .bolt { fill: var(--blue-2); }
.brand .brand-circuit { fill: none; stroke: var(--green); stroke-width: 2.2; stroke-linecap: round; }
.brand .xnode-a { fill: var(--green); }
.brand .xnode-b { fill: var(--blue); }
.brand strong {
  display: block;
  letter-spacing: .18em;
  font-size: 24px;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #27455f;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
}
nav a:hover {
  background: var(--soft);
  color: var(--blue-2);
}
nav a,
.button,
.lang,
.menu-toggle,
.trust-strip span {
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
}
nav a:hover,
.button:hover,
.lang:hover,
.menu-toggle:hover,
.trust-strip span:hover {
  transform: translateY(-1px);
}
.nav-cta {
  color: white !important;
  background: var(--blue-2);
}
.langs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}
.lang {
  min-height: 32px;
  padding: 4px 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.lang.active {
  color: #06251d;
  background: var(--green);
}
.menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 10px;
  min-width: 96px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--blue-2);
  font-weight: 900;
  cursor: pointer;
}
.menu-toggle i {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.menu-toggle i::before { top: -6px; width: 12px; }
.menu-toggle i::after { top: 6px; width: 15px; }
.menu-toggle[aria-expanded="true"] i { background: transparent; }
.menu-toggle[aria-expanded="true"] i::before { top: 0; width: 18px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { top: 0; width: 18px; transform: rotate(-45deg); }

main, footer {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, .85fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding: 148px 0 96px;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p, a, button { overflow-wrap: anywhere; }
.live-text {
  position: relative;
}
.live-text.is-writing::after {
  content: "_";
  display: inline-block;
  margin-inline-start: .08em;
  color: var(--green);
  animation: caretBlink .8s steps(2, end) infinite;
}
.section-ops .live-text.is-writing::after,
.section-route .live-text.is-writing::after,
.contact .live-text.is-writing::after {
  color: #4ce0bd;
}
.text-word {
  display: inline-block;
  opacity: .18;
  transform: translateY(.22em);
  filter: blur(5px);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}
.text-word + .text-word {
  margin-inline-start: 0;
}
.live-text.words-visible .text-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.035em;
}
.hero-copy > p:not(.eyebrow),
.section-title + p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 25px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 13px;
  font-weight: 950;
  text-decoration: none;
}
.button.primary {
  color: white;
  background: var(--blue-2);
  box-shadow: 0 18px 38px rgba(15,53,84,.22);
}
.button.primary:hover { box-shadow: 0 22px 52px rgba(15,53,84,.28); }
.button.secondary {
  border: 1px solid var(--line);
  color: var(--blue-2);
  background: var(--white);
}

.facility-board {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform:
    perspective(1200px)
    translate3d(calc(var(--push-x, 0) * 1px), calc(var(--push-y, 0) * 1px), 0)
    rotateX(calc(var(--tilt-y, 0) * -1deg))
    rotateY(calc(var(--tilt-x, 0) * 1deg));
  transition: transform .18s ease, box-shadow .18s ease;
}
.facility-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(25,184,146,.1) 46%, transparent 54% 100%);
  transform: translateX(-120%);
  animation: boardSweep 5.8s ease-in-out infinite;
}
.facility-board:hover { box-shadow: 0 32px 90px rgba(21, 54, 83, .18); }
.board-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 950;
  color: var(--blue-2);
}
.floorplan {
  position: relative;
  min-height: 360px;
  margin: 20px;
  border: 1px solid #cbd9e3;
  border-radius: 20px;
  background:
    linear-gradient(rgba(41,119,214,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,119,214,.08) 1px, transparent 1px),
    #fdfefe;
  background-size: 32px 32px;
}
.floorplan::before {
  content: "";
  position: absolute;
  inset: 38px 42px;
  border: 2px solid #bfd1df;
  border-radius: 12px;
  clip-path: polygon(0 0, 64% 0, 64% 38%, 100% 38%, 100% 100%, 0 100%);
}
.scan-line {
  position: absolute;
  z-index: 1;
  left: 44px;
  right: 44px;
  top: 44px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(25,184,146,.9), rgba(41,119,214,.5), transparent);
  box-shadow: 0 0 24px rgba(25,184,146,.38);
  animation: scanMove 4.4s ease-in-out infinite;
}
.camera-cone {
  position: absolute;
  z-index: 1;
  width: 145px;
  height: 110px;
  opacity: .62;
  background: radial-gradient(ellipse at 0 50%, rgba(25,184,146,.22), rgba(41,119,214,.08) 50%, transparent 72%);
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 62%);
  filter: blur(.2px);
  animation: conePulse 3.2s ease-in-out infinite;
}
.cone1 { left: 22%; top: 31%; rotate: 8deg; }
.cone2 { right: 20%; top: 43%; rotate: 178deg; animation-delay: 1.4s; }
.node {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(25,184,146,.12), 0 0 22px rgba(25,184,146,.55);
  animation: nodePulse 2.2s ease-in-out infinite;
}
.n1 { left: 49%; top: 34%; }
.n2 { left: 38%; bottom: 28%; animation-delay: .6s; }
.n3 { right: 27%; bottom: 35%; animation-delay: 1.1s; }
.device {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41,119,214,.32);
  border-radius: 15px;
  color: var(--blue-2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,243,247,.9)),
    radial-gradient(circle at 70% 18%, rgba(25,184,146,.26), transparent 46%);
  box-shadow: 0 16px 34px rgba(15,53,84,.14);
}
.device::before,
.device::after {
  content: "";
  grid-area: 1 / 1;
  display: block;
}
.device::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(25,184,146,.22);
  border-radius: 18px;
  animation: ping 2.8s ease-out infinite;
}
.icon-device-camera::before {
  width: 24px;
  height: 15px;
  border: 2px solid var(--blue-2);
  border-radius: 5px;
}
.icon-device-camera::after {
  position: static;
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
  animation: none;
}
.icon-device-ai::before {
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue-2);
  border-radius: 7px;
  background:
    linear-gradient(var(--green), var(--green)) center / 2px 12px no-repeat,
    linear-gradient(90deg, var(--green), var(--green)) center / 12px 2px no-repeat;
}
.icon-device-ai::after {
  inset: auto;
  position: static;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  animation: none;
  background:
    radial-gradient(circle, var(--blue-2) 2px, transparent 3px) 0 0 / 10px 10px;
  opacity: .28;
}
.icon-device-nvr::before {
  width: 25px;
  height: 20px;
  border: 2px solid var(--blue-2);
  border-radius: 5px;
  box-shadow: inset 0 -7px 0 rgba(41,119,214,.12);
}
.icon-device-nvr::after {
  position: static;
  width: 4px;
  height: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  animation: none;
  transform: translate(8px, 5px);
}
.icon-device-ap::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--blue-2);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}
.icon-device-ap::after {
  position: static;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  animation: none;
  transform: translateY(-5px) rotate(-45deg);
}
.d1 { left: 17%; top: 32%; }
.d2 { right: 25%; top: 42%; }
.d3 { right: 20%; bottom: 31%; }
.d4 { left: 32%; bottom: 30%; }
.zone {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid #c7d7e2;
  border-radius: 999px;
  background: white;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(15,53,84,.1);
  transform: translate3d(calc(var(--tilt-x, 0) * 1px), calc(var(--tilt-y, 0) * 1px), 0);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.zone:hover {
  border-color: rgba(25,184,146,.76);
  box-shadow: 0 20px 48px rgba(41,119,214,.18);
}
.z1 { left: 10%; top: 17%; }
.z2 { right: 11%; top: 22%; }
.z3 { left: 15%; bottom: 21%; }
.z4 { right: 14%; bottom: 19%; }
.z5 { left: 39%; top: 49%; background: var(--green); color: #06251d; }
.route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: .65;
  transform-origin: left center;
}
.route::after {
  content: "";
  position: absolute;
  inset-block: -2px;
  left: 0;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(25,184,146,.95), transparent);
  animation: routePulse 2.6s linear infinite;
}
.r1 { left: 24%; top: 31%; width: 48%; rotate: 7deg; }
.r2 { left: 29%; top: 66%; width: 42%; rotate: -10deg; }
.r2::after { animation-delay: .8s; }
.r3 { left: 48%; top: 57%; width: 24%; rotate: 67deg; }
.r3::after { animation-delay: 1.35s; }
.board-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.board-stats div {
  padding: 18px;
  border-inline-end: 1px solid var(--line);
}
.board-stats div:last-child { border: 0; }
.board-stats strong { display: block; color: var(--blue-2); }
.board-stats span { display: block; color: var(--muted); font-size: 13px; }

.live-panel {
  display: grid;
  gap: 5px;
  margin: 0 20px 18px;
  padding: 13px 14px;
  border: 1px solid rgba(41,119,214,.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(15,53,84,.96), rgba(16,37,56,.92)),
    radial-gradient(circle at 85% 20%, rgba(25,184,146,.28), transparent 34%);
  color: rgba(255,255,255,.76);
  box-shadow: 0 16px 36px rgba(15,53,84,.16);
}
.live-panel div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.live-panel b {
  color: white;
  font-size: 14px;
}
.live-panel > span {
  font-size: 12px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(25,184,146,.6);
  animation: statusPulse 1.8s ease-out infinite;
}

.trust-strip {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(219,229,237,.9);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 48px rgba(15,53,84,.08);
  backdrop-filter: blur(18px);
}
.trust-strip span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 14px;
  color: var(--blue-2);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(237,243,247,.82));
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}
.trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(25,184,146,.11);
}

.section {
  padding: 94px 0;
  position: relative;
  isolation: isolate;
  scroll-margin-top: 118px;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100vw - 44px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(41,119,214,.22), transparent);
}
.section::after {
  content: attr(data-panel);
  position: absolute;
  top: 118px;
  right: 8px;
  z-index: 1;
  writing-mode: vertical-rl;
  color: rgba(15,53,84,.35);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .22em;
}
.section:nth-of-type(even) {
  background:
    linear-gradient(90deg, rgba(255,255,255,0), rgba(237,243,247,.56), rgba(255,255,255,0));
}
.section-ops::before,
.section-route::before,
.section-map::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: auto;
  transform: translateX(-50%);
}
.section-ops::before,
.section-route::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(25,184,146,.16), transparent 30rem),
    radial-gradient(circle at 92% 72%, rgba(41,119,214,.18), transparent 34rem),
    linear-gradient(180deg, #07141f, #0b1f31 46%, #07131e);
}
.section-map::before {
  background:
    linear-gradient(rgba(41,119,214,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,119,214,.045) 1px, transparent 1px),
    radial-gradient(circle at 15% 28%, rgba(255,255,255,.9), transparent 32rem),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(237,243,247,.94));
  background-size: 38px 38px, 38px 38px, auto, auto;
}
.build-story::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 20%, rgba(25,184,146,.14), transparent 30rem),
    radial-gradient(circle at 78% 55%, rgba(41,119,214,.16), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(237,243,247,.92));
}
.story-stage {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}
.story-board {
  position: sticky;
  top: 130px;
  min-height: 540px;
  border: 1px solid rgba(130,174,205,.32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(25,184,146,.18), transparent 16rem),
    linear-gradient(135deg, rgba(9,27,41,.96), rgba(14,43,64,.92)),
    radial-gradient(circle at 72% 16%, rgba(25,184,146,.2), transparent 30%);
  box-shadow: 0 28px 90px rgba(15,53,84,.18);
  overflow: hidden;
}
.story-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, rgba(0,0,0,.55));
}
.story-grid {
  position: absolute;
  inset: 24px 24px 118px;
  border: 1px solid rgba(130,174,205,.22);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(25,184,146,.08), transparent 45%);
  background-size: 42px 42px, 42px 42px, auto;
}
.pipeline-board {
  min-height: 500px;
}
.pipeline-visual {
  position: absolute;
  inset: 26px 26px 118px;
  border: 1px solid rgba(130,174,205,.24);
  border-radius: 20px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(25,184,146,.12), transparent 42%);
  background-size: 40px 40px, 40px 40px, auto;
  overflow: hidden;
}
.pipeline-rail {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: rgba(130,174,205,.2);
  overflow: hidden;
}
.pipeline-rail::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 0 24px rgba(25,184,146,.38);
  transition: width .45s ease;
}
body[data-story-step="2"] .pipeline-rail::before { width: 50%; }
body[data-story-step="3"] .pipeline-rail::before { width: 75%; }
body[data-story-step="4"] .pipeline-rail::before { width: 100%; }
.pipeline-node {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  gap: 4px;
  transform: translate(-50%, -50%) scale(.92);
  border: 1px solid rgba(130,174,205,.28);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    radial-gradient(circle at 50% 20%, rgba(25,184,146,.18), transparent 54%);
  box-shadow: 0 22px 54px rgba(0,0,0,.2);
  opacity: .58;
  transition: opacity .35s ease, transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.pn1 { left: 12%; }
.pn2 { left: 37%; }
.pn3 { left: 63%; }
.pn4 { left: 88%; }
.pipeline-node b {
  color: rgba(226,236,244,.58);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}
.pipe-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.pipe-icon::before,
.pipe-icon::after {
  content: "";
  position: absolute;
}
.icon-assess::before {
  width: 24px;
  height: 24px;
  border: 2px solid #f8fbff;
  border-radius: 50%;
}
.icon-assess::after {
  width: 12px;
  height: 2px;
  right: 1px;
  bottom: 4px;
  background: var(--green);
  transform: rotate(45deg);
  border-radius: 99px;
}
.icon-core::before {
  width: 26px;
  height: 20px;
  border: 2px solid #f8fbff;
  border-radius: 7px;
}
.icon-core::after {
  width: 32px;
  height: 32px;
  background:
    radial-gradient(circle, var(--green) 2px, transparent 3px) 0 0 / 11px 11px;
  opacity: .75;
}
.icon-devices::before {
  width: 26px;
  height: 18px;
  border: 2px solid #f8fbff;
  border-radius: 6px;
  box-shadow: -10px 10px 0 -5px rgba(248,251,255,.9), 10px 10px 0 -5px rgba(248,251,255,.9);
}
.icon-devices::after {
  width: 28px;
  height: 2px;
  bottom: 5px;
  background: var(--green);
  border-radius: 99px;
}
.icon-support::before {
  width: 27px;
  height: 27px;
  border: 2px solid #f8fbff;
  border-radius: 50%;
  border-left-color: var(--green);
}
.icon-support::after {
  width: 11px;
  height: 11px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(35deg);
}
.pipeline-signal {
  position: absolute;
  z-index: 1;
  top: calc(50% - 2px);
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(25,184,146,.95), transparent);
  animation: pipelineSignal 2.8s ease-in-out infinite;
}
.ps1 { left: 16%; }
.ps2 { left: 42%; animation-delay: .6s; }
.ps3 { left: 68%; animation-delay: 1.2s; }
body[data-story-step="1"] .pn1,
body[data-story-step="2"] .pn1,
body[data-story-step="2"] .pn2,
body[data-story-step="3"] .pn1,
body[data-story-step="3"] .pn2,
body[data-story-step="3"] .pn3,
body[data-story-step="4"] .pipeline-node {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(25,184,146,.52);
  box-shadow: 0 28px 70px rgba(0,0,0,.26), 0 0 0 1px rgba(25,184,146,.12);
}
.story-grid {
  display: none;
}
.story-grid::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(130,174,205,.18);
  border-radius: 16px;
}
.story-core,
.story-device,
.story-pulse {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
}
.story-core {
  left: 50%;
  top: 50%;
  width: 118px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(.8);
  background: var(--green);
  box-shadow: 0 0 46px rgba(25,184,146,.28);
  opacity: .45;
  transition: opacity .4s ease, transform .4s ease;
}
.story-core::before {
  content: "CORE";
  color: #06251d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}
.story-pulse {
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(25,184,146,.2);
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.story-device {
  width: 62px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
  opacity: .62;
  transform: scale(.92);
  transition: opacity .38s ease, transform .38s ease, border-color .38s ease;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
}
.story-device::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 5px;
}
.story-device b {
  color: rgba(248,251,255,.9);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  padding-left: 18px;
}
.sd1 { left: 12%; top: 22%; }
.sd2 { right: 14%; top: 23%; }
.sd3 { left: 17%; bottom: 20%; }
.sd4 { right: 18%; bottom: 18%; }
.story-link {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(25,184,146,.95), rgba(41,119,214,.35));
  opacity: .28;
  transform-origin: left center;
  transition: opacity .4s ease;
}
.story-link::after {
  content: "";
  position: absolute;
  inset-block: -2px;
  left: 0;
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(25,184,146,.96), transparent);
  animation: routePulse 2.8s linear infinite;
}
.sl1 { left: 22%; top: 33%; width: 34%; rotate: 24deg; }
.sl2 { left: 53%; top: 36%; width: 32%; rotate: -21deg; }
.sl3 { left: 28%; bottom: 31%; width: 34%; rotate: -22deg; }
.sl4 { left: 54%; bottom: 30%; width: 31%; rotate: 21deg; }
.story-zone {
  position: absolute;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(130,174,205,.24);
  border-radius: 999px;
  color: rgba(226,236,244,.62);
  background: rgba(255,255,255,.055);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .12em;
}
.sz1 { left: 11%; top: 10%; }
.sz2 { right: 12%; top: 11%; }
.sz3 { right: 13%; bottom: 8%; }
.sz4 { left: 13%; bottom: 8%; }
.story-readout {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(130,174,205,.3);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.055)),
    radial-gradient(circle at 12% 20%, rgba(25,184,146,.12), transparent 40%);
  backdrop-filter: blur(18px);
}
.story-readout b {
  color: #f8fbff;
  font-size: 17px;
}
.story-readout span {
  color: rgba(226,236,244,.74);
  font-size: 13px;
}
.story-steps {
  display: grid;
  gap: 18px;
  padding-block: 20px 70px;
}
.story-steps article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(130,174,205,.28);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 50px rgba(15,53,84,.08);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.story-steps article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(25,184,146,.2), transparent 32%),
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.3) 48%, transparent 60% 100%);
  transition: opacity .22s ease;
}
.story-steps article:hover::after,
.story-steps article.is-active::after {
  opacity: 1;
}
.story-steps article b {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .14em;
}
.story-steps article.is-active {
  transform: translateY(-5px);
  border-color: rgba(25,184,146,.5);
  box-shadow: 0 28px 78px rgba(15,53,84,.14);
}
.story-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(25,184,146,.42);
}
.story-steps article h3,
.story-steps article p,
.story-steps article b {
  position: relative;
  z-index: 1;
}
body[data-story-step="2"] .story-core,
body[data-story-step="3"] .story-core,
body[data-story-step="4"] .story-core {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
body[data-story-step="3"] .story-device,
body[data-story-step="4"] .story-device {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(25,184,146,.46);
}
body[data-story-step="3"] .story-link,
body[data-story-step="4"] .story-link {
  opacity: .9;
}
body[data-story-step="4"] .story-pulse {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: storyPulse 2.6s ease-out infinite;
}
.section-ops,
.section-route {
  color: rgba(255,255,255,.86);
}
.section-ops::after,
.section-route::after {
  color: rgba(25,184,146,.45);
}
.section-ops h2,
.section-route h2 {
  color: #f7fbff;
}
.section-ops .eyebrow,
.section-route .eyebrow {
  color: #4ce0bd;
}
.section-title {
  max-width: 850px;
  margin-bottom: 34px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform-origin: left center;
  transform: scaleX(.45);
  opacity: .65;
  transition: transform .65s ease, opacity .65s ease;
}
.section-title.in-view::after {
  transform: scaleX(1);
  opacity: 1;
}
h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.system-grid article,
.method-line article,
.contact {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 48px rgba(15,53,84,.09);
}
.system-grid article {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  transform-style: preserve-3d;
}
.section-ops .system-grid article {
  border-color: rgba(130,174,205,.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    radial-gradient(circle at 82% 18%, rgba(25,184,146,.14), transparent 34%);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.system-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(25,184,146,.13), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(41,119,214,.06));
  opacity: 0;
  transition: opacity .18s ease;
}
.section-ops .system-grid article::before {
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at calc(var(--card-x, 50) * 1%) calc(var(--card-y, 50) * 1%), rgba(25,184,146,.2), transparent 34%);
  background-size: 26px 26px, 26px 26px, auto;
}
.system-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.78) 46%, transparent 58% 100%);
  transform: translateX(-130%);
  opacity: 0;
  transition: opacity .18s ease;
}
.system-grid article:hover,
.system-grid article.is-active,
.method-line article.is-active {
  transform: translateY(-5px) rotateX(calc(var(--card-tilt-y, 0) * -1deg)) rotateY(calc(var(--card-tilt-x, 0) * 1deg));
  box-shadow: var(--shadow);
}
.section-ops .system-grid article:hover,
.section-ops .system-grid article.is-active {
  box-shadow: 0 28px 90px rgba(0,0,0,.34), 0 0 0 1px rgba(25,184,146,.16);
}
.system-grid article:hover,
.system-grid article.is-active {
  border-color: rgba(25,184,146,.42);
}
.system-grid article:hover::before,
.system-grid article.is-active::before {
  opacity: 1;
}
.system-grid article:hover::after,
.system-grid article.is-active::after {
  opacity: .75;
  animation: cardSweep 1.1s ease forwards;
}
.system-grid article:hover .card-icon,
.system-grid article.is-active .card-icon {
  border-color: rgba(25,184,146,.46);
  box-shadow: 0 18px 44px rgba(25,184,146,.16), 0 14px 32px rgba(15,53,84,.12);
}
.card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}
.card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(41,119,214,.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(237,243,247,.92)),
    radial-gradient(circle at 70% 20%, rgba(25,184,146,.26), transparent 50%);
  box-shadow: 0 14px 32px rgba(15,53,84,.11);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card-icon::before,
.card-icon::after {
  content: "";
  grid-area: 1 / 1;
  display: block;
}
.icon-camera::before { width: 24px; height: 15px; border: 2px solid var(--blue-2); border-radius: 5px; }
.icon-camera::after { width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; }
.icon-network::before { width: 26px; height: 26px; border: 2px solid var(--blue-2); border-radius: 50%; }
.icon-network::after { width: 30px; height: 2px; background: var(--green); box-shadow: 0 -9px 0 rgba(41,119,214,.55), 0 9px 0 rgba(41,119,214,.55); }
.icon-access::before { width: 18px; height: 23px; border: 2px solid var(--blue-2); border-radius: 5px; }
.icon-access::after { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.icon-comms::before { width: 24px; height: 18px; border: 2px solid var(--blue-2); border-radius: 10px 10px 10px 2px; }
.icon-comms::after { width: 8px; height: 8px; border-top: 2px solid var(--green); border-right: 2px solid var(--green); transform: translate(9px, -9px) rotate(-45deg); }
.icon-storage::before { width: 25px; height: 20px; border: 2px solid var(--blue-2); border-radius: 4px; box-shadow: 0 8px 0 -4px var(--green); }
.icon-storage::after { width: 4px; height: 4px; border-radius: 50%; background: var(--green); transform: translate(7px, 4px); }
.icon-safety::before { width: 23px; height: 27px; border: 2px solid var(--blue-2); border-radius: 14px 14px 12px 12px; clip-path: polygon(50% 0, 100% 18%, 92% 82%, 50% 100%, 8% 82%, 0 18%); }
.icon-safety::after { width: 12px; height: 2px; background: var(--green); box-shadow: 0 5px 0 var(--green); transform: rotate(-35deg); }
.system-grid article em {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(41,119,214,.16);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(237,243,247,.74);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
}
.system-grid article em::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-inline-start: 8px;
  align-self: center;
  background: linear-gradient(90deg, var(--green), transparent);
}
.system-grid article h3,
.system-grid article p {
  position: relative;
  z-index: 1;
}
.mini-map {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  width: 88px;
  height: 34px;
  opacity: .52;
  transition: opacity .18s ease, transform .18s ease;
}
.mini-map::before,
.mini-map::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25,184,146,.85), transparent);
}
.mini-map::after {
  top: 8px;
  transform: rotate(17deg);
}
.mini-map i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(25,184,146,.55);
  animation: nodePulse 2.2s ease-in-out infinite;
}
.mini-map i:nth-child(1) { left: 8px; top: 13px; }
.mini-map i:nth-child(2) { left: 42px; top: 5px; animation-delay: .4s; }
.mini-map i:nth-child(3) { right: 8px; bottom: 8px; animation-delay: .8s; }
.system-grid article:hover .mini-map,
.system-grid article.is-active .mini-map {
  opacity: .96;
  transform: translateY(-2px) scale(1.03);
}
.section-ops .system-grid article h3 {
  color: #f8fbff;
}
.section-ops .system-grid article p {
  color: rgba(226,236,244,.72);
}
.system-grid span,
.method-line b {
  display: inline-flex;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .14em;
}
.method-line b { margin-bottom: 38px; }
h3 {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1.16;
}
article p {
  margin: 0;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.section.active-panel .section-title,
.contact.active-panel {
  filter: saturate(1.08);
}
.section.active-panel::after,
.contact.active-panel::before {
  color: rgba(25,184,146,.72);
  text-shadow: 0 0 18px rgba(25,184,146,.28);
}
.sectors {
  border-block: 1px solid var(--line);
}
.sector-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.sector-track span {
  min-height: 74px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--blue-2);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(15,53,84,.08);
}
.sector-track span::after {
  content: "";
  position: absolute;
  inset: auto 18px 13px;
  height: 2px;
  background: linear-gradient(90deg, rgba(25,184,146,.95), rgba(41,119,214,.25), transparent);
  transform: scaleX(.28);
  transform-origin: left center;
  transition: transform .35s ease;
}
.sector-track span:hover::after,
.sector-track span.in-view::after {
  transform: scaleX(1);
}
.method-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.method-line article {
  min-height: 250px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.section-route .method-line article {
  border-color: rgba(130,174,205,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(25,184,146,.08), transparent 48%);
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.section-route .method-line article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(.18);
  transform-origin: left center;
  transition: transform .5s ease;
}
.section-route .method-line article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(25,184,146,.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25,184,146,.18) 0 2px, transparent 3px) center / 14px 14px;
  opacity: .72;
}
.section-route .method-line article:hover::before,
.section-route .method-line article.is-active::before,
.section-route .method-line article.in-view::before {
  transform: scaleX(1);
}
.section-route .method-line h3 {
  color: #f8fbff;
}
.section-route .method-line p {
  color: rgba(226,236,244,.72);
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: center;
  margin: 90px 0;
  padding: clamp(26px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(8,22,34,.96), rgba(12,34,52,.92)),
    radial-gradient(circle at 92% 12%, rgba(25,184,146,.24), transparent 34%);
  color: rgba(255,255,255,.86);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: attr(data-panel);
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(25,184,146,.44);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}
.contact p {
  color: rgba(226,236,244,.72);
}
.contact h2 {
  color: #f8fbff;
}
.contact-card {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.contact-status {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid rgba(130,174,205,.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
    radial-gradient(circle at 12% 20%, rgba(25,184,146,.2), transparent 40%);
  position: relative;
  overflow: hidden;
}
.contact-status::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.16) 48%, transparent 60% 100%);
  transform: translateX(-120%);
  animation: cardSweep 4.2s ease-in-out infinite;
}
.contact-status span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(25,184,146,.58);
  animation: statusPulse 1.8s ease-out infinite;
}
.contact-status b {
  color: #f8fbff;
}
.contact-status small {
  color: rgba(226,236,244,.62);
  line-height: 1.45;
}
.channel {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas: "icon label" "icon value";
  column-gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--blue-2);
  text-decoration: none;
  font-weight: 900;
  direction: ltr;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.channel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(25,184,146,.2), transparent 34%),
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.52) 48%, transparent 60% 100%);
  transition: opacity .18s ease;
}
.channel:hover {
  transform: translateY(-2px);
  border-color: rgba(25,184,146,.42);
  box-shadow: 0 18px 44px rgba(15,53,84,.12);
}
.channel:hover::after,
.channel.is-active::after {
  opacity: 1;
}
.channel i {
  grid-area: icon;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid rgba(41,119,214,.16);
}
.channel i::before,
.channel i::after {
  content: "";
  display: block;
  grid-area: 1 / 1;
}
.channel span {
  grid-area: label;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.channel strong {
  grid-area: value;
  min-width: 0;
  overflow-wrap: anywhere;
}
.email i::before { width: 22px; height: 15px; border: 2px solid var(--blue-2); border-radius: 4px; }
.email i::after { width: 16px; height: 10px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg) translate(1px, -2px); }
.whatsapp i::before { width: 23px; height: 23px; border: 2px solid var(--blue-2); border-radius: 50%; }
.whatsapp i::after { width: 9px; height: 14px; border-right: 3px solid var(--green); border-bottom: 3px solid var(--green); transform: rotate(35deg); }
.location i::before { width: 21px; height: 27px; border: 2px solid var(--blue-2); border-radius: 14px 14px 14px 3px; transform: rotate(-45deg); }
.location i::after { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .55fr) minmax(190px, .7fr) minmax(190px, .65fr);
  gap: 20px;
  align-items: stretch;
  margin: 20px auto 38px;
  padding: 20px;
  border: 1px solid rgba(130,174,205,.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8,22,34,.97), rgba(12,34,52,.93)),
    radial-gradient(circle at 90% 12%, rgba(25,184,146,.2), transparent 34%);
  color: rgba(226,236,244,.78);
  box-shadow: 0 26px 90px rgba(15,53,84,.18);
  overflow: hidden;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.7), transparent);
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(130,174,205,.13);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-logo {
  min-width: 0;
  color: white;
  width: fit-content;
  position: relative;
  padding: 4px 0 6px;
  isolation: isolate;
}
.footer-logo::before {
  display: none;
}
.footer-logo .wordmark-logo {
  width: min(280px, 100%);
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.78))
    drop-shadow(0 0 2px rgba(255,255,255,.42));
}
.footer-logo svg {
  width: 48px;
  height: 48px;
}
.footer-logo .hex { fill: rgba(255,255,255,.08); stroke: rgba(255,255,255,.72); }
.footer-logo .hex-inner { fill: rgba(25,184,146,.1); stroke: rgba(25,184,146,.44); }
.footer-logo .bolt { fill: #f8fbff; }
.footer-logo small {
  color: rgba(226,236,244,.58);
}
.footer-brand p {
  max-width: 440px;
  margin: 0;
  color: rgba(226,236,244,.72);
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 130px;
  padding: 14px;
  border: 1px solid rgba(130,174,205,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-brand::after,
.footer-links::after,
.footer-status::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(25,184,146,.18), transparent 34%),
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.14) 48%, transparent 60% 100%);
  transition: opacity .2s ease;
}
.footer-brand:hover::after,
.footer-brand.is-active::after,
.footer-links:hover::after,
.footer-links.is-active::after,
.footer-status:hover::after,
.footer-status.is-active::after {
  opacity: 1;
}
.footer-links span {
  margin-bottom: 4px;
  color: #4ce0bd;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-links a {
  color: rgba(248,251,255,.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  transition: color .18s ease, transform .18s ease;
}
.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}
.footer-brand:hover,
.footer-brand.is-active,
.footer-links:hover,
.footer-links.is-active,
.footer-status:hover,
.footer-status.is-active {
  transform: translateY(-3px);
  border-color: rgba(25,184,146,.34);
  background-color: rgba(255,255,255,.055);
}
.footer-signal {
  align-self: end;
  width: 100%;
  height: 28px;
  margin-top: 6px;
  display: block;
  opacity: .56;
  background:
    radial-gradient(circle, var(--green) 0 2px, transparent 3px) 0 50% / 18px 18px,
    linear-gradient(90deg, transparent, rgba(25,184,146,.78), rgba(41,119,214,.28), transparent) center / 100% 1px no-repeat;
  animation: footerSignal 3.4s linear infinite;
}
.footer-status {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 130px;
  padding: 16px;
  border: 1px solid rgba(130,174,205,.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 16% 18%, rgba(25,184,146,.17), transparent 48%);
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-status span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(25,184,146,.6);
  animation: statusPulse 1.8s ease-out infinite;
}
.footer-status b {
  color: #f8fbff;
  font-size: 14px;
}
.footer-status small {
  color: rgba(226,236,244,.5);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

@keyframes routePulse {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(240px); opacity: 0; }
}

@keyframes ping {
  0% { transform: scale(.72); opacity: .7; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes scanMove {
  0%, 100% { transform: translateY(0); opacity: .28; }
  50% { transform: translateY(252px); opacity: 1; }
}

@keyframes conePulse {
  0%, 100% { opacity: .32; transform: scale(.96); }
  50% { opacity: .72; transform: scale(1.03); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(.86); opacity: .55; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(25,184,146,.58); }
  100% { box-shadow: 0 0 0 12px rgba(25,184,146,0); }
}

@keyframes boardSweep {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

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

@keyframes caretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes bootLine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

@keyframes storyPulse {
  0% { box-shadow: 0 0 0 0 rgba(25,184,146,.26); opacity: .84; }
  100% { box-shadow: 0 0 0 42px rgba(25,184,146,0); opacity: 0; }
}

@keyframes pipelineSignal {
  0% { transform: translateX(-40px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(80px); opacity: 0; }
}

@keyframes footerSignal {
  0% { background-position: -40px 50%, center; opacity: .35; }
  50% { opacity: .82; }
  100% { background-position: 120px 50%, center; opacity: .35; }
}

@media (max-width: 1020px) {
  .section::after,
  .contact::before {
    display: none;
  }
  .site-header {
    grid-template-columns: auto auto;
    inset: 10px 10px auto;
    width: calc(100% - 20px);
  }
  .brand { min-width: 0; }
  .brand .wordmark-logo { width: 210px; }
  .brand small { display: none; }
  .menu-toggle { display: inline-flex; }
  nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
  }
  nav.open { display: flex; }
  nav a {
    display: flex;
    justify-content: space-between;
    min-height: 46px;
    border: 1px solid var(--line);
    background: white;
  }
  .nav-cta { justify-content: center; }
  .langs { justify-content: center; padding: 8px; }
  .hero,
  .contact,
  .story-stage {
    grid-template-columns: 1fr;
  }
  .story-board {
    position: relative;
    top: auto;
    min-height: 410px;
  }
  .story-steps {
    padding-block: 0 30px;
  }
  .system-grid,
  .sector-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .method-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .footer-brand,
  .footer-status {
    grid-column: 1 / -1;
  }
  .footer-links,
  .footer-status {
    min-height: 108px;
  }
  .footer-signal {
    height: 20px;
  }
}

@media (max-width: 640px) {
  .cursor-glow {
    width: 24px;
    height: 24px;
    border-color: rgba(25,184,146,.42);
    background: radial-gradient(circle, rgba(255,255,255,.16), rgba(25,184,146,.08) 45%, transparent 68%);
    box-shadow: 0 0 10px rgba(25,184,146,.14);
    transform: translate3d(calc(var(--mx, 50vw) - 12px), calc(var(--my, 50vh) - 12px), 0);
  }
  .cursor-dot {
    width: 6px;
    height: 6px;
    transform: translate3d(calc(var(--mx, 50vw) - 3px), calc(var(--my, 50vh) - 3px), 0);
  }
  .scroll-progress {
    height: 3px;
  }
  html {
    scroll-padding-top: 92px;
  }
  .section,
  .contact {
    scroll-margin-top: 92px;
  }
  main, footer {
    width: min(100% - 28px, 1240px);
  }
  .brand .wordmark-logo { width: 166px; }
  .brand svg { width: 42px; height: 42px; }
  .brand strong { font-size: 18px; }
  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 108px;
    padding-bottom: 52px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
    margin-bottom: 16px;
  }
  h1 {
    max-width: 12ch;
    font-size: clamp(36px, 10.4vw, 46px);
    line-height: 1.03;
  }
  [dir="rtl"] h1 { font-size: clamp(34px, 10vw, 48px); line-height: 1.1; }
  h2 { font-size: clamp(30px, 8.5vw, 43px); }
  .hero-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }
  .trust-strip {
    width: min(100% - 28px, 1240px);
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .trust-strip span {
    min-height: 42px;
  }
  .hero-actions,
  .board-stats,
  .system-grid,
  .sector-track,
  .method-line {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }
  .button { width: 100%; }
  .facility-board {
    border-radius: 20px;
  }
  .board-toolbar {
    padding: 18px 20px;
  }
  .floorplan {
    min-height: 292px;
    margin: 14px;
    border-radius: 18px;
    background-size: 38px 38px;
  }
  .floorplan::before {
    inset: 34px 30px;
    border-radius: 18px;
    clip-path: none;
  }
  .device {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }
  .zone {
    padding: 8px 10px;
    font-size: 11px;
    box-shadow: 0 10px 22px rgba(15,53,84,.1);
  }
  .z1 { left: 13%; top: 17%; }
  .z2 { right: 9%; top: 20%; }
  .z3 { left: 12%; bottom: 17%; }
  .z4 { right: 10%; bottom: 16%; }
  .z5 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 134px;
    justify-content: center;
    text-align: center;
  }
  .d1 { left: 9%; top: 36%; }
  .d2 { right: 7%; top: 40%; }
  .d3 { right: 17%; bottom: 31%; }
  .d4 { left: 18%; bottom: 32%; }
  .route {
    height: 2px;
    opacity: .48;
  }
  .r1 { left: 27%; top: 43%; width: 46%; rotate: 5deg; }
  .r2 { left: 28%; top: 62%; width: 44%; rotate: -7deg; }
  .r3 { left: 49%; top: 56%; width: 25%; rotate: 72deg; }
  .route::after { width: 22px; }
  .scan-line {
    left: 32px;
    right: 32px;
    top: 36px;
    animation-name: scanMoveMobile;
  }
  .camera-cone {
    width: 104px;
    height: 82px;
    opacity: .48;
  }
  .cone1 { left: 15%; top: 36%; rotate: 10deg; }
  .cone2 { right: 12%; top: 42%; rotate: 180deg; }
  .n1 { left: 49%; top: 39%; }
  .n2 { left: 34%; bottom: 34%; }
  .n3 { right: 30%; bottom: 35%; }
  .live-panel {
    margin: 0 14px 14px;
  }
  .card-head {
    margin-bottom: 20px;
  }
  .card-icon {
    width: 44px;
    height: 44px;
  }
  .section { padding: 68px 0; }
  .story-stage {
    gap: 18px;
  }
  .story-board {
    min-height: 340px;
    border-radius: 22px;
  }
  .pipeline-visual {
    inset: 16px 16px 104px;
    border-radius: 18px;
  }
  .pipeline-node {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
  .pipe-icon {
    width: 25px;
    height: 25px;
    transform: scale(.78);
  }
  .pipeline-node b {
    font-size: 8px;
  }
  .pipeline-rail {
    left: 10%;
    right: 10%;
  }
  .pn1 { left: 11%; }
  .pn2 { left: 37%; }
  .pn3 { left: 63%; }
  .pn4 { left: 89%; }
  .pipeline-signal {
    width: 56px;
  }
  .ps1 { left: 15%; }
  .ps2 { left: 42%; }
  .ps3 { left: 68%; }
  .story-grid {
    inset: 16px 16px 104px;
  }
  .story-core {
    width: 100px;
    height: 48px;
  }
  .story-device {
    width: 52px;
    height: 38px;
    border-radius: 13px;
  }
  .story-device::before {
    left: 8px;
    top: 10px;
    width: 12px;
    height: 12px;
  }
  .story-device b {
    font-size: 9px;
    padding-left: 15px;
  }
  .story-zone {
    display: none;
  }
  .story-readout {
    inset: auto 16px 16px;
    padding: 13px;
  }
  .story-steps article {
    min-height: auto;
    padding: 20px;
  }
  .story-steps article b {
    margin-bottom: 24px;
  }
  .contact { margin: 70px 0; }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    border-radius: 22px;
  }
  .footer-brand,
  .footer-status {
    grid-column: auto;
  }
  .footer-logo {
    gap: 10px;
  }
  .footer-links {
    min-height: auto;
    padding: 12px;
    border-bottom: 1px solid rgba(130,174,205,.18);
  }
  .footer-status {
    min-height: 92px;
    padding: 14px;
  }
  .footer-brand {
    padding: 10px;
    gap: 10px;
  }
  .footer-brand p {
    font-size: 14px;
  }
  .footer-signal {
    height: 16px;
    margin-top: 2px;
  }
  .system-grid article,
  .method-line article,
  .sector-track span,
  .facility-board {
    -webkit-tap-highlight-color: transparent;
  }
  .system-grid article,
  .method-line article {
    min-height: auto;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  }
  .system-grid article.is-active,
  .method-line article.is-active {
    border-color: rgba(25,184,146,.52);
    transform: translateY(-4px) scale(.992);
  }
  .signal-canvas {
    display: block;
    opacity: .32;
  }
  .boot-screen {
    transition-duration: .22s;
  }
  .site-header,
  .trust-strip,
  .story-readout {
    backdrop-filter: none;
  }
}

@keyframes scanMoveMobile {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50% { transform: translateY(252px); opacity: .9; }
}

@media (hover: none) {
  .system-grid article:hover,
  .method-line article:hover,
  .facility-board:hover {
    box-shadow: 0 18px 48px rgba(15,53,84,.09);
  }
  .system-grid article.is-active,
  .method-line article.is-active {
    box-shadow: var(--shadow);
  }
}
