:root {
  color-scheme: dark;
  --void: #050b14;
  --deep: #0a1626;
  --panel: #0d1b30;
  --surface: #122238;
  --line: #1e3a5f;
  --line-soft: rgba(82, 126, 174, 0.24);
  --cyan: #22d3ee;
  --cyan-soft: #67e8f9;
  --teal: #2dd4bf;
  --ice: #eaf2ff;
  --steel: #9fb3cc;
  --steel-dim: #7188a5;
  --paper: #edf3fa;
  --paper-line: #cad7e5;
  --ink: #07111e;
  --container: 1280px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--void);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ice);
  font-family: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
div,
article,
li {
  min-width: 0;
}

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

img {
  height: auto;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

ul,
ol {
  margin-top: 0;
}

::selection {
  background: rgba(34, 211, 238, .3);
  color: #fff;
}

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

[hidden] {
  display: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.eyebrow--dark {
  color: #087697;
}

.eyebrow--dark > span {
  background: linear-gradient(90deg, #087697, transparent);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid rgba(103, 232, 249, .42);
  border-radius: 9px;
  background: var(--cyan);
  color: var(--void);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}

.button:hover {
  background: var(--cyan-soft);
  box-shadow: 0 14px 32px rgba(34, 211, 238, .18);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--compact {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button--light:hover {
  background: var(--ice);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding-inline: 3px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}

.text-link span {
  color: var(--cyan);
  transition: transform .2s ease;
}

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

.text-link:hover span {
  transform: translateY(3px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(82, 126, 174, .22);
  background: rgba(5, 11, 20, .97);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 26px;
}

.brand {
  width: 182px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 1.8vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--steel);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .2s ease, transform .2s ease;
}

.desktop-nav a:hover {
  color: var(--ice);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  color: var(--ice);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
  transition: opacity .2s ease, transform .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-bottom: 1px solid var(--line);
  background: var(--void);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .32);
}

.mobile-menu nav {
  display: grid;
  padding-block: 12px 22px;
}

.mobile-menu nav > a:not(.button) {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-bottom: 1px solid rgba(82, 126, 174, .15);
  color: var(--steel);
  font-size: 14px;
  font-weight: 600;
}

.mobile-menu nav > a:not(.button):hover {
  color: var(--ice);
}

.mobile-menu .button {
  margin-top: 16px;
}

.mobile-menu--noscript {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 154px 0 92px;
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 38%, rgba(34, 211, 238, .08), transparent 28%),
    linear-gradient(180deg, var(--void) 0%, #071321 72%, var(--void) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(10, 22, 38, .72));
  content: "";
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .38;
  background-image:
    linear-gradient(rgba(94, 144, 197, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 144, 197, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 12%, transparent 88%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(490px, 1.02fr);
  align-items: center;
  gap: clamp(46px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 25px;
  color: var(--ice);
  font-size: clamp(50px, 4.75vw, 68px);
  font-weight: 700;
  letter-spacing: -.045em;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--steel);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--steel);
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot,
.toolbar-live i,
.footer-system i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(45, 212, 191, .72);
}

/* Animated official logo in the hero */
.hero-logo-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  isolation: isolate;
}

.hero-logo-visual::before {
  position: absolute;
  inset: 7%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, .08), rgba(34, 211, 238, .02) 43%, transparent 68%);
  content: "";
}

.hero-logo-visual::after {
  position: absolute;
  inset: 8%;
  z-index: -3;
  opacity: .42;
  background-image:
    linear-gradient(rgba(94, 144, 197, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 144, 197, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle, #000 15%, transparent 68%);
}

.hero-logo-stage {
  position: relative;
  z-index: 3;
  width: min(100%, 600px);
}

.hero-logo-stage img {
  width: 100%;
  animation: hero-logo-float 6.5s ease-in-out infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.logo-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(34, 211, 238, .18);
  border-radius: 50%;
  pointer-events: none;
}

.logo-orbit::before,
.logo-orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(103, 232, 249, .65);
  border-radius: 50%;
  background: var(--void);
  content: "";
}

.logo-orbit::before {
  top: 10%;
  left: 22%;
}

.logo-orbit::after {
  right: 12%;
  bottom: 24%;
}

.logo-orbit--outer {
  width: min(94%, 570px);
  aspect-ratio: 1;
  border-style: dashed;
}

.logo-orbit--inner {
  width: min(73%, 440px);
  aspect-ratio: 1;
}

.logo-axis {
  position: absolute;
  z-index: 0;
  opacity: .55;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .3), transparent);
}

.logo-axis--horizontal {
  width: 95%;
  height: 1px;
}

.logo-axis--vertical {
  width: 1px;
  height: 86%;
  background: linear-gradient(transparent, rgba(34, 211, 238, .28), transparent);
}

.logo-node {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--void);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, .55);
}

.logo-node--one { top: 21%; left: 21%; }
.logo-node--two { top: 25%; right: 17%; animation-delay: -.8s; }
.logo-node--three { right: 21%; bottom: 21%; animation-delay: -1.6s; }
.logo-node--four { bottom: 25%; left: 17%; animation-delay: -2.4s; }

.hero-logo-signals {
  position: absolute;
  right: 7%;
  bottom: 5%;
  left: 7%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--steel-dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-logo-signals i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
}

/* Shared interface chrome */
.dashboard-shell::before,
.process-panel::before {
  position: absolute;
  top: -1px;
  left: 8%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  content: "";
}

.toolbar-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.toolbar-logo {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .36);
  border-radius: 8px;
  background: rgba(34, 211, 238, .08);
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.toolbar-title > div {
  display: grid;
}

.toolbar-title strong {
  color: var(--ice);
  font-size: 12px;
  letter-spacing: .02em;
}

.toolbar-title small {
  color: var(--steel-dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toolbar-live,
.demo-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(45, 212, 191, .24);
  border-radius: 999px;
  background: rgba(45, 212, 191, .07);
  color: #8ceadd;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.toolbar-live i {
  animation: status-pulse 2.8s ease-in-out infinite;
}

/* Capability strip */
.capabilities {
  border-block: 1px solid var(--line-soft);
  background: #060d17;
}

.capabilities-list {
  display: grid;
  min-height: 76px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.capabilities-list li {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-left: 1px solid rgba(82, 126, 174, .15);
  color: var(--steel);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.capabilities-list li:last-child {
  border-right: 1px solid rgba(82, 126, 174, .15);
}

.capabilities-list span {
  color: var(--cyan);
  font-size: 8px;
}

/* Shared section structure */
.section,
.contact {
  position: relative;
  padding-block: clamp(92px, 8vw, 126px);
  overflow: clip;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 104px);
}

.section-heading h2,
.dashboard-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--ice);
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 700;
  letter-spacing: -.035em;
}

.section-heading h2 span,
.dashboard-copy h2 span,
.contact-copy h2 span {
  color: var(--cyan);
}

.section-heading--split > p {
  max-width: 520px;
  margin: 0;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.7;
}

/* Services */
.services {
  background:
    radial-gradient(circle at 100% 0, rgba(34, 211, 238, .045), transparent 30%),
    var(--deep);
}

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

.service-card {
  position: relative;
  display: flex;
  grid-column: span 5;
  padding: clamp(25px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(82, 126, 174, .24);
  border-radius: var(--radius);
  flex-direction: column;
  background: rgba(13, 27, 48, .76);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.service-card--large {
  grid-column: span 7;
}

.service-card::after {
  position: absolute;
  right: -56px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(34, 211, 238, .08);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(34, 211, 238, .42);
  background: rgba(18, 34, 56, .9);
  transform: translateY(-3px);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
}

.icon-box {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 10px;
  background: rgba(34, 211, 238, .07);
  color: var(--cyan);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.card-index {
  color: var(--steel-dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .09em;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--ice);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.service-card > p {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(82, 126, 174, .18);
  color: var(--steel);
  font-size: 12px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-card li::before {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

/* Technologies */
.technologies {
  background: var(--paper);
  color: var(--ink);
}

.technologies::before {
  position: absolute;
  top: -280px;
  left: -240px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(30, 58, 95, .1);
  border-radius: 50%;
  content: "";
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.tech-intro {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.tech-intro h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.035em;
}

.tech-intro h2 span {
  color: #087697;
}

.tech-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 34px;
  color: #40546c;
  font-size: 17px;
  line-height: 1.7;
}

.tech-count {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
}

.tech-count > strong {
  color: #087697;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 44px;
  line-height: 1;
}

.tech-count > span {
  display: grid;
  color: #5d6f83;
  font-size: 13px;
}

.tech-count b {
  color: var(--ink);
  font-size: 13px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-card {
  position: relative;
  display: grid;
  min-height: 164px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: 12px;
  align-content: start;
  background: #f8fbff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}

.tech-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--brand, #087697);
  content: "";
  opacity: .82;
}

.tech-card:hover {
  border-color: #a9bbce;
  box-shadow: 0 14px 30px rgba(26, 51, 78, .09);
  transform: translateY(-2px);
}

.tech-card--nable {
  grid-column: span 2;
}

.tech-logo-stage {
  display: grid;
  height: 96px;
  margin-bottom: 10px;
  padding: 15px;
  place-items: center;
  border: 1px solid #dbe4ed;
  border-radius: 8px;
  background: #fff;
}

.tech-logo {
  width: auto;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.tech-logo--wide {
  width: min(100%, 132px);
}

.tech-logo--compact {
  max-height: 58px;
}

.tech-logo--symbol {
  max-width: 56px;
  max-height: 58px;
}

.tech-card > div:last-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.tech-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.tech-card small {
  color: #607288;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: .05em;
  text-align: right;
  text-transform: uppercase;
}

.tech-card--fortinet { --brand: #f04b54; }
.tech-card--ubiquiti { --brand: #42a5f5; }
.tech-card--mikrotik { --brand: #8794a3; }
.tech-card--sonicwall { --brand: #f29133; }
.tech-card--cisco { --brand: #269aca; }
.tech-card--aruba { --brand: #ef8820; }
.tech-card--linux { --brand: #d1a91a; }
.tech-card--zabbix { --brand: #d93243; }
.tech-card--grafana { --brand: #e98916; }
.tech-card--microsoft { --brand: #4ba6c7; }
.tech-card--nable { --brand: #65ad2f; }

/* Dashboards */
.dashboards {
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 211, 238, .055), transparent 26%),
    var(--void);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(48px, 6vw, 82px);
}

.dashboard-copy h2 {
  margin-bottom: 24px;
}

.dashboard-copy > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  padding-block: 16px;
  border-top: 1px solid var(--line-soft);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.feature-list > li > span {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.feature-list div {
  display: grid;
  gap: 3px;
}

.feature-list strong {
  color: var(--ice);
  font-size: 14px;
}

.feature-list small {
  color: var(--steel-dim);
  font-size: 12px;
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-pills li {
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(18, 34, 56, .45);
  color: var(--steel);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dashboard-shell {
  position: relative;
  width: 100%;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(73, 132, 185, .34);
  border-radius: var(--radius-lg);
  background: #080f1a;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .03);
}

.dashboard-toolbar {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 3px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.toolbar-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.demo-badge {
  border-color: rgba(34, 211, 238, .24);
  background: rgba(34, 211, 238, .07);
  color: var(--cyan-soft);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-block: 11px;
}

.dashboard-summary > div {
  display: grid;
  min-height: 88px;
  align-content: center;
  padding: 11px;
  border: 1px solid rgba(82, 126, 174, .19);
  border-radius: 8px;
  background: rgba(13, 27, 48, .55);
}

.dashboard-summary span,
.dashboard-summary small {
  color: var(--steel-dim);
  font-size: 9px;
  letter-spacing: .04em;
  line-height: 1.4;
}

.dashboard-summary strong {
  margin-block: 4px 2px;
  color: var(--ice);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.2;
}

.dashboard-summary .metric-ok {
  color: var(--teal);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(82, 126, 174, .2);
  border-radius: 9px;
  background: #070d16;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.table-scroll:focus-visible {
  outline-offset: 2px;
}

.monitor-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  white-space: nowrap;
}

.monitor-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.monitor-table th,
.monitor-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(82, 126, 174, .15);
  text-align: left;
}

.monitor-table thead th {
  background: rgba(18, 34, 56, .7);
  color: var(--steel-dim);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.monitor-table tbody th {
  color: var(--ice);
  font-weight: 600;
}

.monitor-table tbody td {
  color: var(--steel);
}

.monitor-table tbody tr:last-child th,
.monitor-table tbody tr:last-child td {
  border-bottom: 0;
}

.monitor-table tbody tr:hover {
  background: rgba(34, 211, 238, .025);
}

.table-status,
.link-ok,
.link-warn {
  display: inline-flex;
  min-width: 37px;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
}

.table-status,
.link-ok {
  background: rgba(45, 212, 191, .13);
  color: #78e4d3;
}

.link-warn {
  background: rgba(244, 163, 64, .14);
  color: #f7bd73;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 8px;
  margin-top: 8px;
}

.spark-panel,
.availability-panel {
  min-height: 102px;
  padding: 12px;
  border: 1px solid rgba(82, 126, 174, .19);
  border-radius: 8px;
  background: rgba(13, 27, 48, .48);
}

.spark-panel > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.spark-panel span,
.availability-panel > span,
.availability-panel small {
  color: var(--steel-dim);
  font-size: 9px;
}

.spark-panel strong,
.availability-panel strong {
  color: var(--ice);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.spark-panel svg {
  width: 100%;
  height: 52px;
  margin-top: 4px;
}

.chart-area {
  fill: url(#chart-fill);
  stroke: none;
}

.chart-line {
  stroke: var(--cyan);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.availability-panel {
  display: grid;
  align-content: center;
  gap: 5px;
}

.availability-panel strong {
  color: #78e4d3;
}

.availability-panel > div {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface);
}

.availability-panel > div i {
  display: block;
  width: 96%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.demo-label {
  margin: 10px 2px 0;
  color: var(--steel);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .05em;
  text-align: right;
  text-transform: uppercase;
}

/* Segments */
.segments {
  background:
    radial-gradient(circle at 0 45%, rgba(34, 211, 238, .045), transparent 28%),
    var(--deep);
}

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

.segment-card {
  display: flex;
  grid-column: span 3;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(82, 126, 174, .22);
  border-radius: 12px;
  background: rgba(13, 27, 48, .62);
  transition: background .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.segment-card--wide {
  grid-column: span 6;
  padding: 30px;
}

.segment-card--more {
  grid-column: 1 / -1;
  align-items: center;
  background: transparent;
}

.segment-card:hover {
  border-color: rgba(34, 211, 238, .35);
  background: rgba(18, 34, 56, .75);
  transform: translateY(-2px);
}

.segment-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 9px;
  background: rgba(34, 211, 238, .055);
  color: var(--cyan);
}

.segment-icon svg {
  width: 22px;
  height: 22px;
}

.segment-card > div:last-child > span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.segment-card h3 {
  margin-bottom: 9px;
  color: var(--ice);
  font-size: 19px;
  font-weight: 700;
}

.segment-card p {
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.65;
}

/* Differentials and process */
.differentials {
  background: var(--void);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  align-items: start;
  gap: clamp(48px, 7vw, 94px);
}

.differentials-list {
  display: grid;
}

.differentials-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding-block: 24px;
  border-top: 1px solid var(--line-soft);
}

.differentials-list article:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.differentials-list article > span {
  padding-top: 3px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.differentials-list h3 {
  margin-bottom: 8px;
  color: var(--ice);
  font-size: 20px;
  font-weight: 700;
}

.differentials-list p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.65;
}

.process-panel {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(82, 126, 174, .28);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.process-panel > h3 {
  max-width: 400px;
  margin-bottom: 31px;
  color: var(--ice);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -.025em;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 19px;
  width: 1px;
  background: linear-gradient(var(--cyan), rgba(34, 211, 238, .12));
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  padding-block: 13px;
}

.process-list li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .34);
  border-radius: 50%;
  background: var(--deep);
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.process-list li > div {
  display: grid;
  align-content: center;
  gap: 2px;
}

.process-list strong {
  color: var(--ice);
  font-size: 14px;
}

.process-list small {
  color: var(--steel-dim);
  font-size: 12px;
}

/* Contact */
.contact {
  isolation: isolate;
  border-top: 1px solid rgba(34, 211, 238, .18);
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 211, 238, .1), transparent 30%),
    linear-gradient(135deg, var(--deep), #071321 62%, var(--void));
}

.contact-grid {
  opacity: .28;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.contact-copy h2 {
  margin-bottom: 23px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.7;
}

.contact-options {
  display: grid;
  gap: 9px;
}

.contact-options > a {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  border: 1px solid rgba(82, 126, 174, .27);
  border-radius: 11px;
  background: rgba(13, 27, 48, .72);
  transition: background .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.contact-options > a:hover {
  border-color: rgba(34, 211, 238, .4);
  background: rgba(18, 34, 56, .88);
  transform: translateX(3px);
}

.contact-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 9px;
  background: rgba(34, 211, 238, .06);
  color: var(--cyan);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-options > a > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.contact-options small {
  color: var(--steel-dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-options strong {
  overflow: hidden;
  color: var(--ice);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-options > a > i {
  color: var(--cyan);
  font-style: normal;
}

/* Footer */
.site-footer {
  background: #040910;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, .55fr) minmax(250px, .8fr);
  gap: clamp(40px, 7vw, 92px);
  padding-block: 64px;
}

.footer-brand > a {
  display: block;
  width: 185px;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--steel-dim);
  font-size: 14px;
}

.footer-main nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main nav > strong,
.footer-contact > strong {
  margin-bottom: 7px;
  color: var(--ice);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-main nav a,
.footer-contact a,
.footer-contact span {
  color: var(--steel-dim);
  font-size: 13px;
}

.footer-main nav a,
.footer-contact a {
  width: fit-content;
  min-height: 30px;
  transition: color .2s ease;
}

.footer-main nav a:hover,
.footer-contact a:hover {
  color: var(--cyan-soft);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(82, 126, 174, .16);
  color: var(--steel-dim);
  font-size: 11px;
}

.footer-system {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, .45);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32), 0 0 0 7px rgba(34, 211, 238, .09);
  color: var(--void);
  transition: background .2s ease, transform .2s var(--ease);
}

.whatsapp-float:hover {
  background: var(--cyan-soft);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .48; transform: scale(.78); }
}

@keyframes hero-logo-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

/* Responsive */
@media (max-width: 1180px) {
  .brand {
    width: 165px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(48px, 4.9vw, 62px);
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-intro {
    position: static;
    max-width: 770px;
  }

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

  .tech-card--nable {
    grid-column: span 2;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    max-width: 760px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .js .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .no-js .mobile-menu--noscript {
    display: block;
  }

  .no-js .site-header {
    position: relative;
    height: auto;
  }

  .no-js .header-inner {
    height: var(--header-height);
  }

  .no-js .hero {
    padding-top: 64px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-logo-visual {
    width: min(100%, 720px);
    min-height: 520px;
    margin-inline: auto;
  }

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

  .capabilities-list li:nth-child(4),
  .capabilities-list li:nth-child(5) {
    border-top: 1px solid rgba(82, 126, 174, .15);
  }

  .capabilities-list li:nth-child(4) {
    grid-column: 1 / 2;
  }

  .delivery-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-panel,
  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .service-card,
  .service-card--large {
    grid-column: auto;
  }

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

  .segment-card,
  .segment-card--wide {
    grid-column: auto;
  }

  .segment-card--more {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section,
  .contact {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .dashboard-copy h2,
  .contact-copy h2,
  .tech-intro h2 {
    font-size: clamp(35px, 8.8vw, 46px);
  }

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

  .capabilities-list li,
  .capabilities-list li:nth-child(4),
  .capabilities-list li:nth-child(5) {
    min-height: 64px;
    grid-column: auto;
    border-top: 1px solid rgba(82, 126, 174, .15);
  }

  .capabilities-list li:first-child,
  .capabilities-list li:nth-child(2) {
    border-top: 0;
  }

  .capabilities-list li:last-child {
    grid-column: 1 / -1;
  }

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

  .tech-card--nable {
    grid-column: span 2;
  }

  .dashboard-toolbar {
    align-items: flex-start;
  }

  .toolbar-meta {
    align-items: flex-end;
    flex-direction: column;
  }

  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand {
    width: 154px;
  }

  .hero {
    padding: 118px 0 74px;
  }

  .hero-layout {
    gap: 44px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.2vw, 54px);
    letter-spacing: -.04em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-logo-visual {
    min-height: 390px;
  }

  .hero-logo-stage {
    width: min(78%, 320px);
  }

  .logo-orbit--outer {
    width: min(92%, 360px);
  }

  .logo-orbit--inner {
    width: min(70%, 275px);
  }

  .hero-logo-signals {
    right: 2%;
    bottom: 1%;
    left: 2%;
    gap: 7px;
    font-size: 6px;
    letter-spacing: .06em;
  }

  .services-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--large,
  .segment-card,
  .segment-card--wide,
  .segment-card--more {
    grid-column: auto;
  }

  .service-card {
    padding: 25px;
  }

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

  .tech-card,
  .tech-card--nable {
    min-height: 156px;
    grid-column: auto;
    padding: 9px;
  }

  .tech-card--nable {
    grid-column: 1 / -1;
  }

  .tech-logo-stage {
    height: 90px;
    padding: 12px;
  }

  .tech-card > div:last-child {
    display: grid;
    justify-content: start;
  }

  .tech-card small {
    text-align: left;
  }

  .dashboard-shell {
    padding: 10px;
    border-radius: 13px;
  }

  .dashboard-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-meta {
    width: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

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

  .dashboard-summary > div {
    min-height: 82px;
  }

  .segment-card {
    padding: 23px;
  }

  .delivery-layout {
    gap: 42px;
  }

  .process-panel {
    padding: 25px;
  }

  .contact-options > a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-options > a > i {
    display: none;
  }

  .contact-options strong {
    font-size: 12px;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 52px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 88px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 53px;
    height: 53px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 39px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .capabilities-list li {
    padding-inline: 12px;
    font-size: 9px;
  }

  .toolbar-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-label {
    text-align: left;
  }
}

@media (hover: none) {
  .button:hover,
  .service-card:hover,
  .tech-card:hover,
  .segment-card:hover,
  .contact-options > a:hover,
  .whatsapp-float:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header,
  .whatsapp-float,
  .hero-grid,
  .contact-grid,
  .hero-logo-visual {
    display: none !important;
  }

  body,
  .hero,
  .section,
  .contact,
  .site-footer {
    background: #fff !important;
    color: #111 !important;
  }

  .hero {
    padding-top: 30px;
  }
}
