:root {
  --x-blue: #4aa3ff;
  --x-violet: #6b4bff;
  --x-pink: #ff4bd8;
  --x-deep: #0b0f2a;
  --bg: #060513;
  --bg-soft: #0e0a21;
  --surface: rgba(22, 15, 45, 0.58);
  --surface-strong: rgba(18, 13, 34, 0.82);
  --stroke: rgba(255, 255, 255, 0.11);
  --text: #f3efff;
  --muted: #b6afcc;
  --primary: #b847ff;
  --primary-2: #6f68ff;
  --ok: #5ae89f;
  --bad: #ff7a9f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  background-color: #070515;
}

html {
  scroll-padding-top: 96px;
}

body {
  font-family: "Outfit", "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 18% 15%, #2f145f 0%, transparent 35%),
    radial-gradient(circle at 83% 10%, #2a1d65 0%, transparent 30%),
    linear-gradient(175deg, #070515 0%, #0a061c 48%, #050410 100%);
  overflow-x: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, rgba(7, 5, 22, 0.98), rgba(15, 10, 35, 0.96));
  backdrop-filter: blur(8px);
  opacity: 1;
  visibility: visible;
  transition: opacity 920ms ease, visibility 920ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader-inner {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.site-loader-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(17, 10, 39, 0.45));
}

.site-loader-text {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(227, 217, 248, 0.9);
}

.site-loader-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(170, 109, 255, 0.92);
  animation: loaderSpin 900ms linear infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(3px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hero h1,
.hero-copy,
.features-kicker,
.features-head h2,
.features-head p {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(3px);
  transition: opacity 860ms ease, transform 860ms cubic-bezier(0.16, 1, 0.3, 1), filter 860ms ease;
}

.hero.is-visible h1,
.hero.is-visible .hero-copy,
.features-suite.is-visible .features-kicker,
.features-suite.is-visible .features-head h2,
.features-suite.is-visible .features-head p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hero.is-visible h1 {
  transition-delay: 120ms;
}

.hero.is-visible .hero-copy {
  transition-delay: 260ms;
}

.features-suite.is-visible .features-kicker {
  transition-delay: 120ms;
}

.features-suite.is-visible .features-head h2 {
  transition-delay: 220ms;
}

.features-suite.is-visible .features-head p {
  transition-delay: 340ms;
}

.scene-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.scene-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 6, 28, 0.24) 0%, rgba(8, 6, 28, 0) 58%),
    linear-gradient(180deg, rgba(4, 3, 16, 0.46) 0%, rgba(7, 5, 20, 0.24) 42%, rgba(7, 5, 20, 0.18) 100%);
}

.light-ray {
  position: absolute;
  width: min(80vw, 950px);
  height: 220vh;
  top: -62vh;
  border-radius: 999px;
  filter: blur(24px);
  mix-blend-mode: screen;
  opacity: 0.2;
  transform-origin: 50% 8%;
  backface-visibility: hidden;
  contain: layout paint;
  will-change: transform;
}

.ray-one {
  left: -12vw;
  background: linear-gradient(
    90deg,
    rgba(74, 163, 255, 0) 0%,
    rgba(74, 163, 255, 0.46) 50%,
    rgba(74, 163, 255, 0) 100%
  );
  opacity: 0.18;
  transform: translate3d(-3vw, 0, 0) rotate(-22deg);
  animation: raySwingOne 24s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.ray-two {
  left: 30vw;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 255, 0) 0%,
    rgba(107, 75, 255, 0.44) 50%,
    rgba(107, 75, 255, 0) 100%
  );
  opacity: 0.15;
  transform: translate3d(2vw, 0, 0) rotate(-9deg);
  animation: raySwingTwo 30s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.ray-three {
  right: -20vw;
  background: linear-gradient(
    90deg,
    rgba(255, 75, 216, 0) 0%,
    rgba(255, 75, 216, 0.35) 50%,
    rgba(255, 75, 216, 0) 100%
  );
  opacity: 0.13;
  transform: translate3d(4vw, 0, 0) rotate(15deg);
  animation: raySwingThree 28s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.orb-one {
  background: #c63dff;
  top: -160px;
  right: -90px;
}

.orb-two {
  background: #4a53ff;
  bottom: -220px;
  left: -130px;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.1;
}

.noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.2) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
  opacity: 0.03;
}

@keyframes raySwingOne {
  0% {
    transform: translate3d(-3vw, 0, 0) rotate(-22deg);
  }
  100% {
    transform: translate3d(6vw, 0, 0) rotate(-12deg);
  }
}

@keyframes raySwingTwo {
  0% {
    transform: translate3d(2vw, 0, 0) rotate(-9deg);
  }
  100% {
    transform: translate3d(-4vw, 0, 0) rotate(7deg);
  }
}

@keyframes raySwingThree {
  0% {
    transform: translate3d(4vw, 0, 0) rotate(15deg);
  }
  100% {
    transform: translate3d(-5vw, 0, 0) rotate(24deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .light-ray {
    animation: none;
    opacity: 0.12;
  }

  .site-loader {
    transition: none;
  }

  .site-loader-ring {
    animation: none;
  }

  .scroll-reveal,
  .scroll-reveal.is-visible,
  .hero h1,
  .hero-copy,
  .features-kicker,
  .features-head h2,
  .features-head p {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .features-text-grid article,
  .features-text-grid article:hover,
  .features-text-grid article:focus-within {
    transform: none;
    transition: none;
  }
}

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

.site-header {
  position: fixed;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 2.4rem));
  margin: 0;
  padding: 0.72rem 1.05rem;
  background: rgba(13, 10, 35, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  backdrop-filter: blur(12px) saturate(135%);
  box-shadow: 0 14px 36px rgba(5, 3, 20, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 30;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  color: #f3efff;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9px;
}

.main-nav {
  display: flex;
  gap: 1.3rem;
}

.main-nav a {
  color: rgba(224, 219, 245, 0.76);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.header-cta {
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  padding: 0.56rem 0.95rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

main {
  width: min(1320px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  max-width: 1100px;
  min-height: clamp(560px, 72svh, 760px);
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(2.6rem, 6vh, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.hero-particles {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 0.46) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 0.46) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-logo {
  margin: 0 auto 1.1rem;
  display: flex;
  justify-content: center;
  animation: heroLogoFloat 4.5s ease-in-out infinite;
}

.hero-logo img {
  width: clamp(320px, 32vw, 500px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(7, 5, 20, 0.35));
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero h1 {
  margin: 1.2rem 0 0;
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--x-blue), var(--x-violet), var(--x-pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 820px;
  margin: 1.7rem auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.dashboard-frame {
  margin-top: 0;
  position: relative;
}

.dashboard-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 38px;
  width: min(900px, 82%);
  height: 180px;
  background: radial-gradient(circle, rgba(187, 90, 255, 0.56) 0%, rgba(131, 83, 255, 0.24) 45%, transparent 75%);
  filter: blur(28px);
}

.dashboard-glass {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  min-height: 760px;
  border-radius: 22px;
  border: 1px solid rgba(235, 186, 255, 0.17);
  background: linear-gradient(145deg, rgba(62, 38, 110, 0.64), rgba(24, 14, 48, 0.76));
  backdrop-filter: blur(28px) saturate(118%);
  box-shadow: 0 24px 80px rgba(8, 4, 26, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}

.dashboard-glass::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.side-nav {
  background: transparent;
  border-right: 0;
  padding: 0 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.side-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  font-size: 1.18rem;
  color: #f0e7ff;
  height: 96px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.side-brand-logo {
  width: 92px;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 10px rgba(7, 5, 20, 0.28));
}

.side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.18rem;
  flex: 1;
  align-content: center;
}

.side-nav li {
  margin: 0;
}

.module-btn {
  width: 100%;
  text-align: left;
  color: #c8bce3;
  font-size: 1.1rem;
  font-family: inherit;
  padding: 0.62rem 0.8rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.56rem;
  min-height: 44px;
  pointer-events: none;
  cursor: default;
}

.module-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(131, 135, 255, 0.62), rgba(124, 102, 248, 0.5));
  border-color: rgba(232, 188, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.module-btn:hover {
  color: #f4ecff;
  background: rgba(179, 100, 255, 0.14);
  border-color: rgba(223, 174, 255, 0.2);
}

.module-icon {
  font-size: 19px;
  line-height: 1;
  color: #cec4ea;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.module-btn.is-active .module-icon {
  color: #f5f0ff;
}

.module-label {
  line-height: 1;
  font-weight: 500;
}

.menu-divider {
  height: 1px;
  background: rgba(223, 183, 255, 0.22);
  margin: 0.4rem 0;
}

.menu-group-title {
  margin: 0.05rem 0 0.2rem;
  padding: 0 0.8rem;
  color: rgba(204, 190, 232, 0.65);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.board-main {
  padding: 1.35rem 1.45rem;
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(230, 190, 255, 0.12);
}

.board-status {
  font-size: 0.75rem;
  color: #f1e8ff;
  border: 1px solid rgba(228, 188, 255, 0.3);
  padding: 0.35rem 0.66rem 0.35rem 0.52rem;
  border-radius: 999px;
  background: rgba(186, 86, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.board-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6eff8f;
  box-shadow: 0 0 10px rgba(110, 255, 143, 0.75);
}

.module-title {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  color: #f1ebff;
}

.board-main--empty {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.9rem;
}

.board-canvas {
  border-radius: 14px;
  border: 1px solid rgba(228, 188, 255, 0.16);
  background: linear-gradient(180deg, rgba(95, 61, 154, 0.24), rgba(26, 15, 54, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 1rem;
  overflow: hidden;
  --module-text: #2c1f4d;
  --module-muted: #5a4785;
  --module-soft: #6f5b96;
}

.module-placeholder {
  height: 100%;
  border-radius: 12px;
  border: 1px dashed rgba(225, 184, 255, 0.35);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: #dac9f8;
}

.module-placeholder h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #f4ecff;
}

.module-placeholder p {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  color: #beaeda;
}

.wms-board {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.7rem;
  height: 100%;
}

.wms-header {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.wms-tile {
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(227, 192, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.wms-tile strong {
  display: block;
  font-size: 0.76rem;
  color: #f8f2ff;
}

.wms-tile span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.67rem;
  color: #cfc2e8;
}

.wms-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.85fr 1fr;
  gap: 0.7rem;
  min-height: 0;
}

.wms-card {
  border-radius: 11px;
  border: 1px solid rgba(249, 232, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 250, 255, 0.3), rgba(244, 232, 255, 0.2));
  backdrop-filter: blur(10px) saturate(116%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  color: var(--module-text);
  padding: 0.58rem 0.65rem;
}

.wms-card h4 {
  margin: 0;
  font-size: 0.72rem;
  color: var(--module-text);
}

.wms-list {
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.26rem;
}

.wms-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.31rem 0.44rem;
  font-size: 0.63rem;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(243, 233, 255, 0.45);
  backdrop-filter: blur(8px);
  color: var(--module-text);
}

.wms-list li i {
  font-style: normal;
  font-weight: 700;
  color: var(--module-muted);
}

.wms-table-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.wms-pill {
  border-radius: 7px;
  padding: 0.31rem 0.4rem;
  font-size: 0.61rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(243, 233, 255, 0.45);
  backdrop-filter: blur(8px);
  color: var(--module-text);
}

.wms-right-stack {
  display: grid;
  gap: 0.68rem;
}

.wms-kpi {
  display: grid;
  place-items: center;
  min-height: 140px;
}

.wms-kpi-ring {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: conic-gradient(#5adc9e 0 68%, #e5deef 68% 100%);
  display: grid;
  place-items: center;
}

.wms-kpi-ring::before {
  content: "";
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(6px);
}

.wms-kpi-label {
  margin-top: -70px;
  z-index: 1;
  text-align: center;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--module-text);
}

.wms-bars {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  align-items: end;
  gap: 0.18rem;
  height: 86px;
  margin-top: 0.45rem;
}

.wms-bars span {
  display: block;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #67b5ff, #4a86ea);
  height: var(--h);
}

.wms-ops {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.56rem;
}

.wms-stat {
  border-radius: 9px;
  border: 1px solid rgba(243, 233, 255, 0.46);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(243, 231, 255, 0.2));
  backdrop-filter: blur(8px);
  padding: 0.43rem 0.48rem;
}

.wms-stat p {
  margin: 0;
  font-size: 0.58rem;
  color: var(--module-muted);
}

.wms-stat strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.89rem;
  color: var(--module-text);
}

.voip-board {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.65rem;
  height: 100%;
}

.voip-header-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 0.65rem;
}

.voip-bottom-row {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr 0.9fr;
  gap: 0.65rem;
  min-height: 0;
}

.voip-left-stack {
  display: grid;
  gap: 0.65rem;
}

.voip-subhead {
  margin-top: 0.65rem;
}

.voip-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.45rem;
  font-size: 0.58rem;
}

.voip-table th,
.voip-table td {
  border-bottom: 1px solid rgba(102, 76, 147, 0.2);
  padding: 0.23rem 0.2rem;
  text-align: left;
}

.voip-table th {
  font-size: 0.55rem;
  color: var(--module-muted);
}

.voip-table td {
  color: var(--module-text);
}

.voip-chip {
  display: inline-block;
  padding: 0.08rem 0.35rem;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 700;
}

.voip-chip.ok {
  color: #1b925f;
  background: rgba(103, 219, 165, 0.2);
}

.voip-chip.warn {
  color: #9c7b13;
  background: rgba(255, 210, 110, 0.35);
}

.voip-chip.down {
  color: #b53f56;
  background: rgba(255, 134, 163, 0.3);
}

.voip-map {
  position: relative;
  height: 130px;
  margin-top: 0.45rem;
  border-radius: 10px;
  background: rgba(104, 85, 146, 0.18);
  border: 1px solid rgba(228, 188, 255, 0.26);
}

.voip-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--module-text);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.1rem 0.32rem;
  border-radius: 999px;
}

.voip-map i {
  position: absolute;
  border-top: 1px dashed rgba(106, 189, 146, 0.8);
}

.voip-map i:nth-child(7) {
  left: 23%;
  top: 38%;
  width: 42%;
  transform: rotate(-8deg);
}

.voip-map i:nth-child(8) {
  left: 47%;
  top: 46%;
  width: 20%;
  transform: rotate(15deg);
}

.voip-map i:nth-child(9) {
  left: 30%;
  top: 61%;
  width: 34%;
  transform: rotate(0deg);
}

.voip-line {
  margin-top: 0.4rem;
  height: 74px;
  border-radius: 9px;
  background: rgba(104, 85, 146, 0.14);
  border: 1px solid rgba(228, 188, 255, 0.22);
  position: relative;
  overflow: hidden;
}

.voip-line span {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 25%;
  height: 34px;
  border: 2px solid #66a9ff;
  border-color: transparent transparent #66a9ff transparent;
}

.voip-donut-wrap {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0.55rem;
  margin-top: 0.45rem;
  align-items: center;
}

.voip-donut {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(#59a6ff 0 40%, #a878ff 40% 62%, #6be2a6 62% 80%, #ffd564 80% 100%);
  position: relative;
}

.voip-donut::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
}

.voip-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.18rem;
  font-size: 0.56rem;
  color: var(--module-text);
}

.voip-legend li {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.voip-legend b {
  margin-left: auto;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.dot.one { background: #59a6ff; }
.dot.two { background: #a878ff; }
.dot.three { background: #6be2a6; }
.dot.four { background: #ffd564; }
.dot.five { background: #ff87c1; }

.voip-mini-table {
  width: 100%;
  margin-top: 0.45rem;
  border-collapse: collapse;
  font-size: 0.58rem;
}

.voip-mini-table td {
  border-bottom: 1px solid rgba(102, 76, 147, 0.2);
  padding: 0.23rem 0.2rem;
}

.voip-table--paths td:nth-child(2),
.voip-table--paths td:nth-child(3),
.voip-table--paths td:nth-child(4),
.voip-table--paths td:nth-child(5) {
  white-space: nowrap;
}

.voip-filter {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.voip-filter label {
  display: grid;
  gap: 0.2rem;
  font-size: 0.58rem;
  color: var(--module-muted);
}

.voip-filter select {
  border-radius: 8px;
  border: 1px solid rgba(228, 188, 255, 0.35);
  background: rgba(255, 255, 255, 0.46);
  font: inherit;
  padding: 0.35rem 0.42rem;
  color: var(--module-text);
}

.voip-actions {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.voip-actions button {
  border: 0;
  border-radius: 8px;
  padding: 0.38rem 0.7rem;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--x-violet), var(--x-pink));
  cursor: pointer;
}

.voip-actions .ghost {
  background: rgba(98, 69, 153, 0.2);
  color: #5a467f;
}

.metric-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.7rem;
}

.metric-card p {
  margin: 0;
  color: #c7c0df;
  font-size: 0.76rem;
}

.metric-card h3 {
  margin: 0.45rem 0 0;
  font-size: 1.28rem;
}

.trend {
  margin-top: 0.35rem;
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
}

.trend.up {
  color: var(--ok);
}

.trend.down {
  color: var(--bad);
}

.analytics-row {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0.7rem;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.panel-head h4 {
  margin: 0;
  font-size: 0.9rem;
}

.panel-head span {
  color: #b8afcf;
  font-size: 0.73rem;
}

.fake-line-chart {
  border-radius: 12px;
  height: 190px;
  background: linear-gradient(to bottom, rgba(166, 115, 255, 0.18), rgba(132, 96, 255, 0.04));
  position: relative;
  overflow: hidden;
}

.fake-line-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 38px;
  opacity: 0.35;
}

.fake-line-chart span {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 32%;
  height: 74px;
  border: 2px solid #d39dff;
  border-color: transparent transparent #d39dff transparent;
  border-radius: 0 0 55% 45%;
  box-shadow: 0 0 20px rgba(214, 164, 255, 0.42);
}

.bars {
  height: 190px;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(163, 100, 255, 0.08), rgba(81, 56, 130, 0.04));
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0.9rem;
  gap: 0.55rem;
}

.bars i {
  width: 15%;
  height: var(--h);
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, #d394ff, #8058ff);
  box-shadow: 0 0 16px rgba(172, 103, 255, 0.45);
}

.features-suite {
  margin: clamp(1.5rem, 4vh, 3.2rem) auto 0;
  min-height: 0;
  padding: clamp(2.2rem, 5vh, 4rem) 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  scroll-margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.features-head {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 1.1rem;
  text-align: center;
  padding: 1.2rem 1rem 0.6rem;
}

.features-head::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(500px, 75%);
  height: 250px;
  background: radial-gradient(circle, rgba(173, 89, 255, 0.2) 0%, rgba(98, 70, 188, 0.08) 42%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.features-head > * {
  position: relative;
  z-index: 1;
}

.features-particles {
  position: absolute;
  left: 14%;
  width: 72%;
  top: 26%;
  height: 56%;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.features-kicker {
  margin: 0;
  color: rgba(220, 208, 255, 0.75);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.features-head h2 {
  margin: 1rem auto 0;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 1240px;
  text-wrap: balance;
}

.features-head h2 .features-head-gradient {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--x-blue), var(--x-violet), var(--x-pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.features-head p {
  margin: 1.45rem auto 0;
  color: rgba(196, 186, 226, 0.9);
  line-height: 1.65;
  max-width: 1020px;
  font-size: clamp(1.03rem, 1.55vw, 1.3rem);
  font-weight: 300;
}

.features-text-grid {
  margin-top: 3.1rem;
  margin-bottom: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  text-align: left;
}

.features-text-grid article {
  padding: 1.45rem 1.35rem 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(214, 196, 255, 0.32);
  background: linear-gradient(145deg, rgba(84, 62, 144, 0.14), rgba(16, 14, 44, 0.22));
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(74, 163, 255, 0.1), 0 0 24px rgba(107, 75, 255, 0.08), 0 0 32px rgba(255, 75, 216, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, box-shadow 240ms ease;
}

.features-text-grid h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.26rem);
  color: #f7f0ff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}

.feature-line {
  margin: 0.72rem 0 0;
  color: rgba(232, 224, 250, 0.88);
  font-size: clamp(0.86rem, 1.02vw, 1rem);
  line-height: 1.45;
  max-width: 36ch;
  font-weight: 300;
}

.features-text-grid article:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(198, 178, 255, 0.48);
  box-shadow: 0 0 22px rgba(74, 163, 255, 0.14), 0 0 28px rgba(107, 75, 255, 0.12), 0 0 36px rgba(255, 75, 216, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.features-text-grid article:focus-within {
  transform: translateY(-5px) scale(1.01);
}

.feature-reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.972);
  filter: blur(3px);
  transition: opacity 1400ms ease, transform 1400ms cubic-bezier(0.16, 1, 0.3, 1), filter 1400ms ease;
}

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

.about-extended {
  margin: clamp(1.5rem, 4vh, 3rem) auto clamp(3.4rem, 8vh, 5.8rem);
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: min(760px, 58%);
}

.about-label {
  margin: 0;
  color: rgba(209, 196, 237, 0.76);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
}

.about-copy h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #f3efff;
  max-width: 24ch;
}

.about-copy p {
  margin: 1.1rem 0 0;
  color: rgba(206, 196, 230, 0.92);
  font-size: clamp(0.96rem, 1.08vw, 1.1rem);
  line-height: 1.72;
  font-weight: 300;
  max-width: 62ch;
}

.about-copy .about-close {
  margin-top: 0.72rem;
  color: #ebe2ff;
  font-size: clamp(1.06rem, 1.3vw, 1.3rem);
  line-height: 1.4;
}

.about-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

#about-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.control-section {
  margin: clamp(1.6rem, 4vh, 3rem) auto clamp(2.8rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 3.8vw, 3.4rem);
  align-items: center;
}

.control-visual {
  position: relative;
  min-height: clamp(320px, 39vw, 520px);
  overflow: hidden;
}

.control-cloud {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.control-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 0.66;
  mix-blend-mode: screen;
}

.control-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 193, 255, 0.26);
  background: linear-gradient(140deg, rgba(96, 71, 157, 0.2), rgba(17, 14, 49, 0.24));
  color: rgba(238, 231, 255, 0.92);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  backdrop-filter: blur(7px);
  box-shadow: 0 0 10px rgba(74, 163, 255, 0.08), 0 0 14px rgba(107, 75, 255, 0.07), 0 0 18px rgba(255, 75, 216, 0.06);
  animation: chipFloat 4.8s ease-in-out infinite;
}

.control-cloud span:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.control-cloud span:nth-child(2) { top: 30%; left: 27%; animation-delay: 0.8s; }
.control-cloud span:nth-child(3) { top: 8%; left: 43%; animation-delay: 1.4s; }
.control-cloud span:nth-child(4) { top: 38%; left: 60%; animation-delay: 2.1s; }
.control-cloud span:nth-child(5) { top: 62%; left: 15%; animation-delay: 2.7s; }
.control-cloud span:nth-child(6) { top: 72%; left: 41%; animation-delay: 3.3s; }
.control-cloud span:nth-child(7) { top: 60%; left: 64%; animation-delay: 3.9s; }
.control-cloud span:nth-child(8) { top: 20%; left: 75%; animation-delay: 4.5s; }
.control-cloud span:nth-child(9) { top: 82%; left: 8%; animation-delay: 1.1s; }
.control-cloud span:nth-child(10) { top: 14%; left: 61%; animation-delay: 2.4s; }
.control-cloud span:nth-child(11) { top: 82%; left: 66%; animation-delay: 3.1s; }
.control-cloud span:nth-child(12) { top: 48%; left: 77%; animation-delay: 4.2s; }

@keyframes chipFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.control-copy {
  max-width: 760px;
  justify-self: end;
  text-align: right;
}

.control-copy .control-kicker {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  color: #f2edff;
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.control-copy p {
  margin: 0.9rem 0 0;
  color: rgba(208, 198, 232, 0.94);
  line-height: 1.65;
  font-size: clamp(0.97rem, 1.08vw, 1.1rem);
  font-weight: 300;
}

.control-copy .control-lead {
  margin-top: 1.05rem;
  color: rgba(238, 232, 255, 0.95);
  font-weight: 400;
}

.control-list {
  margin: 0.76rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem 0.95rem;
}

.control-list li {
  border-radius: 10px;
  border: 1px solid rgba(211, 190, 252, 0.2);
  background: rgba(29, 22, 62, 0.24);
  padding: 0.52rem 0.65rem;
  color: rgba(229, 219, 250, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.control-copy .control-close {
  margin-top: 1.55rem;
  color: #ebe2ff;
  font-size: clamp(1.06rem, 1.3vw, 1.3rem);
  line-height: 1.4;
}

.cloud-section {
  margin: clamp(3.1rem, 8vh, 6.2rem) auto clamp(3.8rem, 10vh, 7rem);
  min-height: clamp(420px, 56vh, 640px);
  padding: clamp(0.2rem, 1.2vh, 0.8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3.8vw, 3.6rem);
  align-items: center;
}

.cloud-copy {
  max-width: 780px;
}

.cloud-copy .cloud-kicker {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  color: #f3eeff;
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.cloud-copy p {
  margin: 0.95rem 0 0;
  color: rgba(209, 199, 234, 0.94);
  line-height: 1.67;
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  font-weight: 300;
  max-width: 66ch;
}

.cloud-copy .cloud-close {
  margin-top: 1.05rem;
  color: #ebe2ff;
  font-size: clamp(1.06rem, 1.3vw, 1.3rem);
  line-height: 1.4;
}

.cloud-visual {
  position: relative;
  min-height: clamp(300px, 35vw, 470px);
  overflow: hidden;
}

.cloud-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.edge-section {
  margin: clamp(4.2rem, 10vh, 8rem) auto clamp(3rem, 8vh, 5.8rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 3.8vw, 3.4rem);
  align-items: start;
}

.edge-visual {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 1.6vw, 1.4rem);
}

.edge-particles {
  position: absolute;
  inset: -12%;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
  opacity: 0.82;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 44%, rgba(0, 0, 0, 0.24) 70%, rgba(0, 0, 0, 0) 84%);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.92) 44%, rgba(0, 0, 0, 0.24) 70%, rgba(0, 0, 0, 0) 84%);
}

.edge-visual-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  text-align: center;
  font-size: clamp(1.6rem, 3.3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  font-weight: 300;
  color: #f3eeff;
  text-shadow: 0 14px 30px rgba(10, 6, 30, 0.35);
  transform: translateY(-28%);
}

.edge-visual-copy span {
  display: block;
}

.edge-panel {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-self: end;
}

.edge-panel h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  line-height: 1.12;
  color: #f2edff;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.edge-panel p {
  margin: 0.95rem 0 0;
  color: rgba(209, 199, 234, 0.94);
  line-height: 1.67;
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  font-weight: 300;
  max-width: 66ch;
}

.edge-panel .edge-lead {
  margin-top: 1.05rem;
  color: rgba(238, 232, 255, 0.95);
  font-weight: 400;
}

.edge-body {
  display: grid;
  gap: 0;
}

.edge-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.22rem;
}

.edge-list li {
  color: rgba(221, 212, 244, 0.95);
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
  line-height: 1.55;
  font-weight: 300;
}

.edge-outro {
  margin-top: clamp(0.8rem, 1.8vh, 1.2rem);
  padding-top: 0;
}

.edge-panel .edge-close {
  margin-top: 1.05rem;
  color: #ebe2ff;
  font-size: clamp(1.06rem, 1.3vw, 1.3rem);
  line-height: 1.4;
}

.metrics-section {
  margin: clamp(2.8rem, 8vh, 6rem) auto clamp(3rem, 8vh, 5.6rem);
}

.metrics-head {
  text-align: center;
  margin: 0 auto clamp(1.2rem, 3vh, 2.1rem);
  max-width: 1040px;
}

.metrics-head h2 {
  margin: 0;
}

.metrics-head h2 span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: transparent;
  background: linear-gradient(90deg, var(--x-blue), var(--x-violet), var(--x-pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.metrics-subline {
  margin: 0;
  color: #f3efff;
  font-size: clamp(1.18rem, 2.1vw, 2.05rem);
  line-height: 1.35;
  font-weight: 300;
}

.metrics-note {
  margin: 0.45rem 0 clamp(1.8rem, 4.2vh, 3rem);
  font-size: clamp(1.02rem, 1.55vw, 1.45rem);
  font-weight: 300;
  color: rgba(233, 227, 248, 0.9);
  line-height: 1.4;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.3rem);
}

.metrics-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(202, 190, 255, 0.34);
  background: linear-gradient(170deg, rgba(80, 70, 166, 0.2), rgba(23, 16, 54, 0.5));
  box-shadow:
    0 0 0 1px rgba(170, 152, 255, 0.2),
    0 0 24px rgba(90, 154, 255, 0.34),
    0 0 34px rgba(208, 86, 255, 0.26),
    0 22px 44px rgba(6, 4, 24, 0.52),
    0 10px 20px rgba(46, 88, 255, 0.12),
    0 14px 28px rgba(196, 76, 216, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -38px 58px rgba(6, 6, 20, 0.38);
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: zoom-in;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.metrics-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(122deg, rgba(94, 175, 255, 0.28) 0%, rgba(94, 175, 255, 0) 40%),
    linear-gradient(245deg, rgba(206, 89, 255, 0.26) 0%, rgba(206, 89, 255, 0) 48%);
  opacity: 0.95;
  mix-blend-mode: screen;
}

.metrics-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 8, 32, 0) 0%, rgba(8, 6, 24, 0.42) 62%, rgba(6, 5, 18, 0.6) 100%);
}

.metrics-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(216, 203, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(178, 164, 255, 0.3),
    0 0 30px rgba(90, 154, 255, 0.42),
    0 0 44px rgba(208, 86, 255, 0.34),
    0 26px 52px rgba(6, 4, 24, 0.58),
    0 14px 26px rgba(46, 88, 255, 0.2),
    0 18px 32px rgba(196, 76, 216, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -42px 60px rgba(6, 6, 20, 0.42);
}

.metrics-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.metrics-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.4rem);
  background: rgba(8, 6, 24, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.metrics-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.metrics-lightbox img {
  width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(216, 200, 255, 0.3);
  box-shadow: 0 24px 56px rgba(6, 4, 20, 0.62);
  background: rgba(14, 10, 36, 0.8);
}

.metrics-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(227, 214, 255, 0.34);
  border-radius: 999px;
  color: #f5edff;
  background: rgba(20, 13, 45, 0.7);
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.metrics-lightbox-close:hover {
  background: rgba(34, 22, 72, 0.86);
}

.site-footer {
  width: min(1320px, calc(100% - 2.4rem));
  margin: clamp(6.2rem, 16vh, 10.2rem) auto 2.1rem;
  color: #bdb5d6;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 220px));
  column-gap: clamp(1.6rem, 3vw, 3rem);
  row-gap: 0;
  width: fit-content;
  margin: 0 auto;
  justify-content: start;
  justify-items: start;
}

.footer-col {
  width: 100%;
}

.footer-col h3 {
  margin: 0;
  font-size: clamp(0.84rem, 0.95vw, 0.96rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214, 205, 236, 0.72);
  line-height: 1.2;
}

.footer-links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.22rem;
}

.footer-links li {
  margin: 0;
  color: rgba(223, 216, 243, 0.94);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.32;
  font-weight: 300;
}

.footer-links .footer-spacer {
  margin-top: 0.66rem;
}

.site-footer a {
  color: #f2e8ff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-corner-mark {
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  font-size: clamp(0.74rem, 0.8vw, 0.88rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(205, 196, 229, 0.58);
}

@media (max-width: 980px) {
  .features-suite {
    min-height: auto;
    padding: 2.2rem 0 0;
  }

  .features-head {
    max-width: 860px;
    margin-bottom: 0.4rem;
  }

  .features-head h2 {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
  }

  .features-head p {
    max-width: 760px;
    font-size: 1.04rem;
  }

  .about-extended {
    min-height: 0;
    display: block;
  }

  .about-copy {
    max-width: 820px;
  }

  .about-copy h2 {
    max-width: 100%;
  }

  .about-visual {
    position: absolute;
    inset: 0;
  }

  .control-section {
    grid-template-columns: 1fr;
  }

  .control-visual {
    min-height: 250px;
  }

  .control-list {
    grid-template-columns: 1fr;
  }

  .cloud-section {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: clamp(2rem, 6vh, 4rem) auto clamp(2.8rem, 7vh, 5rem);
  }

  .edge-section {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vh, 3.2rem);
  }

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

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
    width: 100%;
  }

  .edge-visual {
    min-height: clamp(240px, 42vw, 340px);
  }

  .edge-visual-copy {
    font-size: clamp(1.45rem, 6.6vw, 2.4rem);
    transform: none;
  }

  .edge-panel {
    grid-column: auto;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
  }

  .edge-panel p {
    margin-left: auto;
    margin-right: auto;
  }

  .cloud-visual {
    min-height: 240px;
  }

  .dashboard-glass {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .side-nav {
    border-right: 0;
    border-bottom: 1px solid rgba(180, 190, 255, 0.12);
  }

  .side-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    justify-content: initial;
  }

  .menu-divider,
  .menu-group-title {
    grid-column: 1 / -1;
  }

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

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

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

  .voip-header-row,
  .voip-bottom-row {
    grid-template-columns: 1fr;
  }

  .features-text-grid {
    grid-template-columns: 1fr;
  }

  .features-text-grid article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 14px;
    padding: 0.62rem 0.8rem;
    gap: 0.7rem;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .dashboard-frame {
    margin-top: 2.3rem;
  }

  .features-text-grid,
  .analytics-row,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    width: 100%;
  }

  .footer-corner-mark {
    margin-top: 1.4rem;
  }

  .side-nav ul {
    grid-template-columns: 1fr;
  }

  .wms-header {
    grid-template-columns: 1fr;
  }

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

  .wms-ops {
    grid-template-columns: 1fr;
  }

  .voip-donut-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .features-suite {
    padding: 0;
  }

  .about-extended {
    margin-top: 0.8rem;
  }

  .about-visual {
    position: absolute;
    inset: 0;
  }

  .control-visual {
    min-height: 220px;
  }

}
