:root {
  --ink: #f4f9ff;
  --muted: #b8c9d8;
  --dark: #06101f;
  --deep: #071a33;
  --blue: #0d4f93;
  --blue-2: #1a75c9;
  --cyan: #62c6ff;
  --copper: #c98245;
  --panel: rgba(7, 26, 51, 0.72);
  --panel-2: rgba(255, 255, 255, 0.075);
  --line: rgba(98, 198, 255, 0.22);
  --line-strong: rgba(98, 198, 255, 0.46);
  --radius: 20px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--dark);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(26, 117, 201, 0.24), transparent 32rem),
    linear-gradient(180deg, #06101f 0%, #061a33 44%, #050b13 100%);
}

body.conquest73-theme > *:not(#wpadminbar):not(#conquest73-site):not(script):not(style):not(link):not(noscript) {
  display: none !important;
}

.conquest73-site-wrap {
  min-height: 100vh;
  background: var(--dark);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(98, 198, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 198, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(90deg, transparent 0 9px, rgba(98, 198, 255, 0.13) 9px 10px, transparent 10px 100%),
    linear-gradient(0deg, transparent 0 9px, rgba(201, 130, 69, 0.08) 9px 10px, transparent 10px 100%);
  background-size: 240px 240px;
}

.site-ti-v2 body {
  background:
    radial-gradient(circle at 12% 0%, rgba(98, 198, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 18%, rgba(201, 130, 69, 0.12), transparent 30rem),
    linear-gradient(180deg, #030912 0%, #071a33 42%, #03070d 100%);
}

.site-ti-v3 body {
  background:
    radial-gradient(circle at 16% 0%, rgba(98, 198, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(201, 130, 69, 0.12), transparent 30rem),
    linear-gradient(180deg, #030912 0%, #071a33 38%, #06101f 68%, #03070d 100%);
}

.transition-system {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.75;
}

.transition-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(18px, 4.6vw, 76px);
  width: 1px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(98, 198, 255, 0.18) 12%,
      rgba(98, 198, 255, 0.58) var(--spine-progress, 18%),
      rgba(98, 198, 255, 0.12) calc(var(--spine-progress, 18%) + 12%),
      transparent 100%
    );
  box-shadow: 0 0 28px rgba(98, 198, 255, 0.26);
}

.transition-spine::before,
.transition-spine::after {
  content: "";
  position: absolute;
  left: 0;
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 198, 255, 0.42), transparent);
  opacity: 0.5;
  transform-origin: left center;
}

.transition-spine::before {
  top: 32%;
  rotate: -7deg;
}

.transition-spine::after {
  top: 67%;
  rotate: 6deg;
}

.transition-packet {
  position: absolute;
  left: calc(clamp(18px, 4.6vw, 76px) - 5px);
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(98, 198, 255, 0.8);
  transform: translateY(calc(var(--packet-y, 18) * 1vh));
}

.transition-packet.p-b {
  background: var(--copper);
  opacity: 0.75;
  transform: translateY(calc((var(--packet-y, 18) + 22) * 1vh));
}

.transition-packet.p-c {
  opacity: 0.58;
  transform: translateY(calc((var(--packet-y, 18) + 44) * 1vh));
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.72;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.65rem, 6.35vw, 7.15rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1.08;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  color: #04101e;
  background: var(--cyan);
  font-weight: 900;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.shell-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1210px, calc(100% - 32px));
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(98, 198, 255, 0.22);
  border-radius: 24px;
  background: rgba(4, 13, 26, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.shell-header.is-scrolled {
  background: rgba(3, 10, 20, 0.94);
}

.brand {
  display: block;
  width: clamp(150px, 15vw, 230px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.42));
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(98, 198, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(244, 249, 255, 0.84);
  font-size: 0.93rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #04101e;
  background: linear-gradient(135deg, var(--cyan), #e5f6ff);
}

.quick-contact,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.quick-contact,
.button-primary {
  color: #03101f;
  background: linear-gradient(135deg, var(--cyan), #2788dd 72%);
  box-shadow: 0 18px 60px rgba(39, 136, 221, 0.3);
}

.button-secondary {
  border-color: rgba(244, 249, 255, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-toggle {
  display: none;
}

.scene-section,
.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.transition-fold {
  margin-top: -1px;
}

.transition-fold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  height: clamp(86px, 12vw, 170px);
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in srgb, var(--next-tone, #06101f) 0%, transparent) 36%,
      var(--fold-blend, rgba(6, 16, 31, 0.72)) 100%
    );
}

.transition-fold[data-tone="dark"] {
  --fold-blend: rgba(6, 16, 31, 0.86);
}

.transition-fold[data-tone="blue"] {
  --fold-blend: rgba(7, 26, 51, 0.82);
}

.transition-fold[data-tone="light"] {
  --fold-blend: rgba(238, 247, 252, 0.86);
}

.hero.transition-fold::after {
  background: linear-gradient(180deg, transparent, rgba(238, 247, 252, 0.88));
}

.section-light.transition-fold::after {
  background: linear-gradient(180deg, transparent, rgba(6, 26, 51, 0.78));
}

.network-section.transition-fold::after {
  background: linear-gradient(180deg, transparent, rgba(238, 247, 252, 0.82));
}

.contact-section.transition-fold::after {
  display: none;
}

.fold-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(98, 198, 255, 0.08) 34% 35%, transparent 35% 100%),
    linear-gradient(60deg, transparent 0 42%, rgba(201, 130, 69, 0.07) 42% 43%, transparent 43% 100%);
  background-size: 360px 360px, 280px 280px;
}

.section-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
}

.section-light .section-canvas {
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.section-dark .section-canvas,
.network-section .section-canvas,
.contact-section .section-canvas {
  opacity: 0.72;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.45fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 160px max(20px, calc((100vw - 1210px) / 2)) 96px;
}

.hero-board {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.62;
  filter: saturate(0.85) contrast(0.88);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.24) 24%, #000 58%);
}

#pcb3d,
.pcb-fallback {
  width: 100%;
  height: 100%;
}

.pcb-fallback {
  position: absolute;
  inset: 0;
  perspective: 1000px;
  opacity: 0.5;
}

.trace,
.chip {
  position: absolute;
  display: block;
}

.trace {
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(98, 198, 255, 0.7), rgba(201, 130, 69, 0.75), transparent);
  box-shadow: 0 0 24px rgba(98, 198, 255, 0.35);
  transform-origin: left center;
  animation: dataPulse 3.4s linear infinite;
}

.t1 { left: 6%; top: 35%; width: 62%; rotate: -9deg; }
.t2 { left: 18%; top: 57%; width: 70%; rotate: 5deg; animation-delay: -0.8s; }
.t3 { left: 44%; top: 22%; width: 42%; rotate: 18deg; animation-delay: -1.6s; }
.t4 { left: 9%; top: 75%; width: 46%; rotate: -22deg; animation-delay: -2.2s; }

.chip {
  width: 112px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: rgba(244, 249, 255, 0.74);
  background: linear-gradient(135deg, rgba(10, 40, 78, 0.92), rgba(8, 22, 42, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 70px rgba(0, 0, 0, 0.36);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chip::before,
.chip::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 5px, transparent 5px 10px);
  opacity: 0.45;
}

.chip::before { top: -10px; }
.chip::after { bottom: -10px; }

.chip-a { right: 15%; top: 26%; }
.chip-b { right: 29%; top: 58%; }
.chip-c { left: 58%; top: 43%; }

.hero-content {
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-content h1 {
  margin-top: 22px;
}

.hero-content p {
  max-width: 770px;
  margin-top: 26px;
}

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

.ops-console {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 16, 31, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 6px 10px;
  color: rgba(244, 249, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  border-bottom: 1px solid var(--line);
}

.console-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.console-bar i:nth-child(2) { background: var(--copper); }
.console-bar i:nth-child(3) { background: #2b74c9; margin-right: auto; }

.console-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(244, 249, 255, 0.1);
  border-radius: 18px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.console-row b {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 0.86rem;
}

.console-row span {
  font-weight: 950;
}

.console-row small {
  color: var(--muted);
}

.console-row.active {
  color: #03101f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), #e9f8ff);
}

.console-row.active b,
.console-row.active small {
  color: #143554;
}

.section {
  padding: clamp(112px, 12vw, 164px) max(20px, calc((100vw - 1210px) / 2));
}

.section-light {
  color: #06101f;
  background:
    radial-gradient(circle at 80% 12%, rgba(26, 117, 201, 0.2), transparent 34rem),
    radial-gradient(circle at 12% 80%, rgba(201, 130, 69, 0.08), transparent 28rem),
    linear-gradient(180deg, #f5fbff, #d8eaf5);
}

.section-light p {
  color: #455c70;
}

.clients-section {
  min-height: auto;
  padding-block: clamp(90px, 11vw, 150px);
  background:
    radial-gradient(circle at 18% 40%, rgba(98, 198, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 48%, rgba(201, 130, 69, 0.13), transparent 24rem),
    linear-gradient(135deg, #06101f 0%, #0a2441 52%, #071421 100%);
}

.clients-section .section-copy {
  max-width: 920px;
}

.clients-section .section-copy p {
  color: rgba(233, 248, 255, 0.78);
}

.client-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1120px;
  margin-top: 42px;
}

.client-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(98, 198, 255, 0.22);
  border-radius: 999px;
  color: #e9f8ff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 18px;
}

.client-logo-grid span {
  min-height: 132px;
  padding: 14px;
  justify-content: center;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.client-logo-grid img {
  display: block;
  width: 100%;
  max-width: 186px;
  height: 96px;
  object-fit: contain;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(6, 16, 31, 0.08);
}

.client-logo-grid img.logo-wide {
  max-width: 220px;
  height: 96px;
}

.client-logo-grid img.logo-law {
  max-width: 250px;
  height: 104px;
  padding: 6px;
}

.section-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 117, 201, 0.28), transparent 34rem),
    radial-gradient(circle at 78% 18%, rgba(98, 198, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, #061a33, #050b13);
}

.section-copy {
  display: grid;
  gap: 18px;
  max-width: 1040px;
}

.section-copy p {
  max-width: 780px;
}

.section-copy.narrow {
  max-width: 900px;
}

.infra-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
  margin-top: 46px;
  position: relative;
  z-index: 1;
}

.infra-card,
.systems-grid a,
.article-rail a,
.contact-box,
.flow-card {
  border: 1px solid rgba(6, 16, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 74px rgba(6, 16, 31, 0.12);
  backdrop-filter: blur(14px);
}

.infra-card {
  position: relative;
  min-height: 250px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  transform-style: preserve-3d;
}

.infra-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--copper));
  transform: scaleX(0.44);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.infra-card:hover::before {
  transform: scaleX(1);
}

.infra-card.tall {
  grid-row: span 2;
  min-height: 520px;
}

.infra-subnote {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  right: clamp(24px, 4vw, 44px);
  bottom: clamp(28px, 4vw, 46px);
  padding-top: 22px;
  border-top: 1px solid rgba(26, 117, 201, 0.16);
}

.infra-subnote span {
  margin-bottom: 10px;
  color: rgba(26, 117, 201, 0.76);
  font-size: 0.72rem;
}

.infra-subnote p {
  margin-top: 0;
  color: #536a7f;
  font-size: 0.98rem;
  line-height: 1.6;
}

.infra-subnote a {
  margin-top: 14px;
  color: rgba(0, 86, 158, 0.82);
}

.infra-card span,
.systems-grid span,
.article-rail span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.infra-card p {
  margin-top: 18px;
}

.infra-card a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 950;
}

.automation-section {
  min-height: 100svh;
}

.automation-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.flow-card {
  position: relative;
  min-height: 340px;
  padding: 24px;
  color: var(--ink);
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(7, 26, 51, 0.66);
  overflow: hidden;
}

.flow-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 120px;
  border: 1px solid rgba(98, 198, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(98, 198, 255, 0.28) 16% 17%, transparent 17% 34%, rgba(201, 130, 69, 0.28) 34% 35%, transparent 35% 100%),
    linear-gradient(0deg, transparent 0 26%, rgba(98, 198, 255, 0.18) 26% 27%, transparent 27% 54%, rgba(98, 198, 255, 0.18) 54% 55%, transparent 55% 100%);
  opacity: 0.62;
}

.flow-card b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(98, 198, 255, 0.1);
  color: var(--cyan);
}

.flow-card h3 {
  margin-top: 18px;
}

.flow-card p {
  margin-top: 18px;
}

.flow-card.active {
  color: #03101f;
  background: linear-gradient(135deg, var(--cyan), #e9f8ff);
}

.flow-card.active p,
.flow-card.active b {
  color: #173554;
}

.network-section {
  padding-inline: max(20px, calc((100vw - 1210px) / 2));
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 36%, rgba(98, 198, 255, 0.22), transparent 34rem),
    linear-gradient(180deg, #071a33, #06101f);
}

.network-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.65fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: 78svh;
  position: relative;
  z-index: 1;
}

.rack-map {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(rgba(98, 198, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 198, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  background-size: 56px 56px, 56px 56px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.rack-map span {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 46px;
  border: 1px solid rgba(98, 198, 255, 0.28);
  border-radius: 12px;
  background: rgba(5, 16, 31, 0.72);
}

.rack-map span:nth-child(1) { top: 16%; }
.rack-map span:nth-child(2) { top: 29%; }
.rack-map span:nth-child(3) { top: 42%; }
.rack-map span:nth-child(4) { top: 55%; }
.rack-map span:nth-child(5) { top: 68%; }

.rack-map span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 28px 0 0 rgba(98, 198, 255, 0.44), 56px 0 0 rgba(201, 130, 69, 0.72);
  transform: translateY(-50%);
}

.packet {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(98, 198, 255, 0.8);
  animation: packetMove 4.6s linear infinite;
}

.p1 { top: 22%; left: 9%; }
.p2 { top: 48%; left: 70%; animation-delay: -1.4s; }
.p3 { top: 76%; left: 20%; animation-delay: -2.8s; background: var(--copper); }

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 46px;
  position: relative;
  z-index: 1;
}

.systems-grid a {
  min-height: 230px;
  padding: 26px;
  transform-style: preserve-3d;
}

.systems-grid strong {
  display: block;
  font-size: clamp(1.28rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

.systems-grid small {
  display: block;
  margin-top: 18px;
  color: #455c70;
  font-size: 0.98rem;
  line-height: 1.55;
}

.article-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.article-rail a {
  min-height: 250px;
  padding: 26px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.article-rail strong {
  display: block;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1.1;
}

.contact-section {
  min-height: 84svh;
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 26% 14%, rgba(98, 198, 255, 0.2), transparent 34rem),
    linear-gradient(180deg, #06101f, #03070d);
}

.contact-box {
  width: min(980px, 100%);
  padding: clamp(30px, 6vw, 76px);
  color: var(--ink);
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(98, 198, 255, 0.13), rgba(201, 130, 69, 0.07)),
    rgba(255, 255, 255, 0.065);
  position: relative;
  z-index: 1;
}

.page-main {
  min-height: 100svh;
  padding-top: 132px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(84px, 10vw, 132px) max(20px, calc((100vw - 1210px) / 2)) clamp(62px, 8vw, 104px);
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 16%, rgba(98, 198, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #06101f, #071a33);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(98, 198, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 198, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.page-hero h1 {
  margin-top: 18px;
  max-width: 920px;
  font-size: clamp(2.7rem, 5.5vw, 6.1rem);
  line-height: 0.96;
}

.page-hero p {
  max-width: 760px;
  margin-top: 24px;
}

.page-section {
  padding: clamp(72px, 9vw, 118px) max(20px, calc((100vw - 1210px) / 2));
}

.page-section.light {
  color: #06101f;
  background: linear-gradient(180deg, #f5fbff, #dcecf5);
}

.page-section.dark {
  color: var(--ink);
  background: linear-gradient(180deg, #071a33, #050b13);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.page-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(98, 198, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.page-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.page-card-link:hover,
.page-card-link:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(26, 117, 201, 0.5);
  box-shadow: 0 28px 80px rgba(26, 117, 201, 0.16);
}

.page-card-link:focus-visible {
  outline: 3px solid rgba(26, 117, 201, 0.45);
  outline-offset: 4px;
}

.light .page-card {
  border-color: rgba(6, 16, 31, 0.12);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 70px rgba(6, 16, 31, 0.12);
}

.page-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light .page-card span {
  color: var(--blue-2);
}

.page-card p {
  margin-top: 16px;
}

.page-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cyan);
  font-weight: 950;
}

.light .page-card a {
  color: var(--blue);
}

.page-card-link em {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cyan);
  font-style: normal;
  font-weight: 950;
}

.light .page-card-link em {
  color: var(--blue);
}

.article-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.article-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.24fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(6, 16, 31, 0.12);
  border-radius: var(--radius);
  color: #06101f;
  background: rgba(255, 255, 255, 0.62);
}

.article-item span {
  color: var(--blue-2);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-item strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.08;
}

.article-item small {
  color: #455c70;
  font-size: 1rem;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.service-layout::before,
.service-layout::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
}

.service-layout::before {
  right: max(20px, calc((100vw - 1210px) / 2));
  top: 52px;
  width: min(38vw, 520px);
  aspect-ratio: 1.35;
  border: 1px solid rgba(13, 79, 147, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(rgba(13, 79, 147, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 147, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotate(-5deg);
}

.service-layout::after {
  right: max(34px, calc((100vw - 1210px) / 2 + 40px));
  bottom: 46px;
  width: min(34vw, 460px);
  height: 220px;
}

.service-ti::after {
  background:
    linear-gradient(180deg, transparent 0 18%, rgba(13, 79, 147, 0.18) 18% 21%, transparent 21% 100%),
    linear-gradient(90deg, transparent 0 8%, rgba(13, 79, 147, 0.2) 8% 10%, transparent 10% 22%, rgba(13, 79, 147, 0.16) 22% 24%, transparent 24% 100%),
    linear-gradient(180deg, rgba(6, 16, 31, 0.06), rgba(13, 79, 147, 0.1));
  border: 1px solid rgba(13, 79, 147, 0.16);
  border-radius: 22px;
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.08);
}

.service-redes::after {
  background:
    radial-gradient(circle at 18% 24%, rgba(13, 79, 147, 0.28) 0 10px, transparent 11px),
    radial-gradient(circle at 72% 38%, rgba(13, 79, 147, 0.28) 0 10px, transparent 11px),
    radial-gradient(circle at 45% 78%, rgba(201, 130, 69, 0.26) 0 10px, transparent 11px),
    linear-gradient(25deg, transparent 0 45%, rgba(13, 79, 147, 0.26) 45% 46%, transparent 46% 100%),
    linear-gradient(145deg, transparent 0 50%, rgba(13, 79, 147, 0.2) 50% 51%, transparent 51% 100%);
}

.service-seguranca::after {
  background:
    radial-gradient(circle at 50% 44%, transparent 0 38px, rgba(13, 79, 147, 0.2) 39px 42px, transparent 43px),
    radial-gradient(circle at 50% 44%, rgba(13, 79, 147, 0.1) 0 28px, transparent 29px),
    linear-gradient(90deg, rgba(6, 16, 31, 0.1), rgba(13, 79, 147, 0.14));
  clip-path: polygon(8% 18%, 68% 18%, 92% 42%, 78% 68%, 46% 56%, 14% 82%);
}

.service-automacao::after {
  background:
    linear-gradient(90deg, rgba(13, 79, 147, 0.2) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(13, 79, 147, 0.18) 18% 20%, transparent 20% 42%, rgba(201, 130, 69, 0.2) 42% 44%, transparent 44% 100%),
    radial-gradient(circle at 68% 26%, rgba(13, 79, 147, 0.24) 0 18px, transparent 19px),
    radial-gradient(circle at 68% 58%, rgba(201, 130, 69, 0.24) 0 18px, transparent 19px);
  border-radius: 26px;
  border: 1px solid rgba(13, 79, 147, 0.16);
}

.service-comunicacao::after {
  background:
    radial-gradient(circle at 26% 50%, rgba(13, 79, 147, 0.2) 0 34px, transparent 35px),
    radial-gradient(circle at 58% 50%, rgba(13, 79, 147, 0.18) 0 34px, transparent 35px),
    radial-gradient(circle at 88% 50%, rgba(201, 130, 69, 0.22) 0 34px, transparent 35px),
    linear-gradient(90deg, transparent 0 24%, rgba(13, 79, 147, 0.18) 24% 25%, transparent 25% 56%, rgba(13, 79, 147, 0.18) 56% 57%, transparent 57% 100%);
}

.service-agro::after {
  height: 260px;
  background:
    linear-gradient(145deg, transparent 0 48%, rgba(13, 79, 147, 0.18) 48% 49%, transparent 49% 100%),
    radial-gradient(circle at 78% 26%, rgba(201, 130, 69, 0.28) 0 22px, transparent 23px),
    linear-gradient(135deg, transparent 0 36%, rgba(13, 79, 147, 0.14) 36% 37%, transparent 37% 100%),
    linear-gradient(180deg, transparent 0 42%, rgba(13, 79, 147, 0.16) 42% 43%, transparent 43% 100%),
    linear-gradient(160deg, transparent 0 48%, rgba(5, 74, 44, 0.18) 48% 100%);
  clip-path: polygon(0 62%, 18% 46%, 35% 56%, 48% 34%, 62% 52%, 75% 38%, 100% 54%, 100% 100%, 0 100%);
}

.service-panel {
  position: sticky;
  top: 132px;
  padding: 28px;
  border: 1px solid rgba(98, 198, 255, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(6, 16, 31, 0.78);
  box-shadow: var(--shadow);
}

.service-panel h3 {
  margin-bottom: 18px;
}

.service-panel ul,
.service-block ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li,
.service-block li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.service-panel li::before,
.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
}

.service-blocks {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
}

.service-block {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(6, 16, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(6, 16, 31, 0.1);
}

.service-block h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.5rem);
}

.service-block.lead {
  min-height: 320px;
  display: grid;
  align-content: end;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(98, 198, 255, 0.22), transparent 34rem),
    linear-gradient(135deg, rgba(6, 16, 31, 0.94), rgba(13, 79, 147, 0.82));
}

.service-block.lead p {
  color: rgba(244, 249, 255, 0.8);
}

.service-block p,
.service-block ul {
  margin-top: 18px;
}

.service-block .rich-copy {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.service-block .rich-copy p {
  margin-top: 0;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.service-step {
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(13, 79, 147, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.service-step b {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-step p {
  margin-top: 0;
  font-size: 0.98rem;
}

.experience-note {
  margin-top: 20px;
  padding: 20px;
  border-left: 3px solid var(--blue-2);
  border-radius: 0 16px 16px 0;
  color: #273f55;
  background: rgba(13, 79, 147, 0.08);
  font-weight: 700;
  line-height: 1.6;
}

.service-next {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-panel {
    position: static;
  }

  .service-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page-main {
    padding-top: 106px;
  }

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

  .page-grid,
  .article-item {
    grid-template-columns: 1fr;
  }
}

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

.infra-card,
.flow-card,
.systems-grid a,
.article-rail a,
.contact-box,
.ops-console {
  box-shadow:
    0 24px 74px rgba(6, 16, 31, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.infra-card:hover,
.systems-grid a:hover,
.article-rail a:hover {
  border-color: rgba(98, 198, 255, 0.42);
}

.flow-card {
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(98, 198, 255, 0.5);
}

.contact-box p {
  max-width: 740px;
  margin-top: 22px;
}

.stage-meter {
  position: fixed;
  left: 22px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 249, 255, 0.76);
  pointer-events: none;
}

.stage-meter span {
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--progress, 0%), rgba(255, 255, 255, 0.18) 0);
}

.stage-meter strong {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes dataPulse {
  0% { opacity: 0.25; transform: scaleX(0.38); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0.25; transform: scaleX(0.38); }
}

@keyframes packetMove {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  12% { opacity: 1; }
  55% { transform: translate3d(160px, -44px, 0); }
  100% { transform: translate3d(340px, 62px, 0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .shell-header {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 168px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-toggle strong {
    margin-left: 4px;
  }

  .nav,
  .quick-contact {
    display: none;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    border-radius: 22px;
  }

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

  .ops-console {
    max-width: 680px;
  }

  .automation-flow,
  .systems-grid,
  .article-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell-header {
    top: 10px;
    width: min(100% - 18px, 1210px);
    padding: 10px;
    border-radius: 24px;
  }

  .brand {
    width: 132px;
  }

  .hero {
    padding-top: 142px;
  }

  h1 {
    font-size: clamp(2.3rem, 10.4vw, 3.85rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 8.6vw, 3.1rem);
    line-height: 1.02;
  }

  .shell-header {
    min-height: 86px;
  }

  .hero-board {
    opacity: 0.28;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 26%, #000 78%);
  }

  .pcb-fallback {
    opacity: 0.25;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .infra-grid,
  .automation-flow,
  .systems-grid,
  .article-rail {
    grid-template-columns: 1fr;
  }

  .infra-card.tall {
    min-height: 360px;
  }

  .flow-card {
    min-height: 280px;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-grid span {
    min-height: 128px;
  }

  .rack-map {
    min-height: 390px;
  }

  .stage-meter {
    display: none;
  }
}

/* v8 refinements */
.shell-header {
  gap: 12px;
  padding: 6px 10px 6px 12px;
  border-radius: 20px;
}

.brand {
  width: clamp(112px, 10vw, 166px);
}

.nav a {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.quick-contact,
.button {
  min-height: 38px;
  padding: 0 15px;
}

.page-main {
  padding-top: 92px;
}

.service-layout {
  background:
    radial-gradient(circle at 84% 18%, rgba(13, 79, 147, 0.2), transparent 28rem),
    radial-gradient(circle at 64% 88%, rgba(98, 198, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #f4fbff, #d9ecf7);
}

.service-layout::before,
.service-layout::after {
  opacity: 0.44;
}

.service-layout .service-blocks::after {
  content: "";
  position: absolute;
  right: -38%;
  top: 8%;
  z-index: -1;
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  border-radius: 44px;
  opacity: 0.34;
  pointer-events: none;
  background:
    linear-gradient(rgba(13, 79, 147, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 147, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(98, 198, 255, 0.24), transparent 62%);
  background-size: 42px 42px, 42px 42px, auto;
  transform: rotate(-8deg);
}

.service-block {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(6, 16, 31, 0.13);
  backdrop-filter: blur(12px);
}

.experience-note {
  color: #1b3852;
  font-weight: 800;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px) max(20px, calc((100vw - 1210px) / 2));
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(98, 198, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #06101f, #03070d);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) repeat(3, minmax(140px, 0.45fr));
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.footer-brand {
  display: block;
  width: min(130px, 44vw);
  margin-bottom: 8px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer p {
  max-width: 260px;
  color: #f5fbff;
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  font-weight: 900;
}

.footer-col {
  display: grid;
  gap: 7px;
}

.footer-col strong {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: rgba(244, 249, 255, 0.78);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(98, 198, 255, 0.16);
  color: rgba(244, 249, 255, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .brand {
    width: 146px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 12px;
  }
}

@media (max-width: 760px) {
  .brand {
    width: 118px;
  }

  .shell-header {
    min-height: 70px;
  }

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