:root {
  --bg: #09060f;
  --bg-soft: #100a1a;
  --panel: rgba(24, 15, 38, 0.76);
  --panel-solid: #181027;
  --purple: #7c3aed;
  --purple-bright: #a970ff;
  --purple-light: #d8c0ff;
  --teal: #4be1cf;
  --text: #f8f5ff;
  --muted: #ada4bb;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.18);
  --shadow: 0 30px 100px rgba(0,0,0,.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 5%, rgba(124,58,237,.20), transparent 28rem),
    radial-gradient(circle at 15% 45%, rgba(76,29,149,.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 90%);
  z-index: -1;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

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

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

.site-header {
  width: min(1200px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Manrope, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.04em;
  width: fit-content;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  transform: rotate(-7deg);
}

.brand-mark span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #c89cff, #6f34e9);
}

.brand-mark span:nth-child(1) { height: 45%; align-self: end; }
.brand-mark span:nth-child(2) { height: 100%; }
.brand-mark span:nth-child(3) { height: 68%; align-self: center; }

.nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: color .2s ease;
}

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

.site-header > .button {
  justify-self: end;
}

.button {
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, #8b4eff, #6827dc);
  box-shadow: 0 16px 40px rgba(104,39,220,.35), inset 0 1px rgba(255,255,255,.24);
}

.button-primary:hover {
  box-shadow: 0 20px 50px rgba(104,39,220,.48), inset 0 1px rgba(255,255,255,.24);
}

.button-ghost {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.button-small {
  padding: 0 18px;
  font-size: 13px;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 70px 0 90px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(177,127,255,.2);
  background: rgba(124,58,237,.08);
  border-radius: 999px;
  margin-bottom: 26px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.75); }
}

.hero h1,
.section-heading h2,
.process-copy h2,
.cta-copy h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: -.055em;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  max-width: 800px;
}

.hero h1 span {
  display: block;
  color: #a79caf;
}

.hero-description {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  margin: 28px 0 34px;
}

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

.text-link {
  color: #d8d0e4;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-row {
  margin-top: 50px;
  color: #7e758a;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trust-row strong {
  color: #bdb5c7;
  font-weight: 600;
}

.trust-row i {
  width: 3px;
  height: 3px;
  background: #655d6f;
  border-radius: 50%;
}

.hero-visual {
  min-height: 580px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(114,52,229,.33);
  filter: blur(100px);
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  50% { transform: scale(1.15); opacity: .7; }
}

.network-card {
  width: 100%;
  position: relative;
  border: 1px solid rgba(216,192,255,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 34%, rgba(75,225,207,.10), transparent 12rem),
    radial-gradient(circle at 48% 54%, rgba(124,58,237,.22), transparent 17rem),
    linear-gradient(180deg, rgba(31,19,51,.9), rgba(12,8,20,.93));
  box-shadow: 0 30px 100px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.network-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(180deg, transparent 62%, rgba(9,6,15,.36));
}

.network-topbar {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: #c8bfd4;
  font-size: 12px;
}

.live-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(75,225,207,.08);
  color: #94f5e9;
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

.network-map {
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 520;
  display: block;
  shape-rendering: geometricPrecision;
}

.ambient-orbits circle {
  fill: none;
  stroke: rgba(169,112,255,.13);
  stroke-width: 1;
  stroke-dasharray: 4 13;
  vector-effect: non-scaling-stroke;
  animation: orbit-flow 20s linear infinite;
}

.ambient-orbits circle:nth-child(2) {
  stroke: rgba(75,225,207,.08);
  stroke-dasharray: 2 16;
  animation-duration: 28s;
  animation-direction: reverse;
}

.ambient-orbits circle:nth-child(3) {
  animation-duration: 24s;
  animation-direction: reverse;
}

.grid-lines path {
  stroke: rgba(255,255,255,.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.scan-beam {
  fill: url(#lineGradient);
  opacity: 0;
  filter: blur(.4px);
  transform-box: fill-box;
  transform-origin: center;
  animation: scan-network 7s ease-in-out infinite;
}

.connection-lines path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 2.2;
  stroke-dasharray: 6 12;
  stroke-linecap: round;
  opacity: .64;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(138,82,255,.28));
  animation: dash 10s linear infinite;
}

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

@keyframes orbit-flow {
  to { stroke-dashoffset: -160; }
}

@keyframes scan-network {
  0%, 12% {
    opacity: 0;
    transform: translateY(0);
  }
  20% {
    opacity: .28;
  }
  78% {
    opacity: .16;
  }
  88%, 100% {
    opacity: 0;
    transform: translateY(420px);
  }
}

.traffic-particles circle {
  fill: #d7baff;
}

.traffic-particles .particle-secondary {
  fill: #65e9d8;
  opacity: .62;
}

.signal-pulse {
  fill: none;
  stroke: rgba(181,126,255,.34);
  stroke-width: 1.5;
  opacity: 0;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: signal-wave 4.8s ease-out infinite;
}

.signal-pulse.pulse-two {
  animation-delay: 1.1s;
}

.signal-pulse.pulse-three {
  stroke: rgba(75,225,207,.36);
  animation-delay: 2.2s;
}

.signal-pulse.pulse-four {
  animation-delay: 3.3s;
}

@keyframes signal-wave {
  0%, 12% {
    opacity: 0;
    transform: scale(.86);
  }
  26% {
    opacity: .58;
  }
  56%, 100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.node circle {
  fill: rgba(21,13,34,.92);
  stroke: rgba(208,171,255,.42);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.node > circle:first-child {
  animation: node-breathe 4.6s ease-in-out infinite;
}

.node .node-ring {
  fill: none;
  stroke: rgba(166,106,255,.31);
  stroke-width: 1;
  stroke-dasharray: 3 9;
  animation: ring-flow 12s linear infinite;
}

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

@keyframes ring-flow {
  to { stroke-dashoffset: -120; }
}

@keyframes node-breathe {
  0%, 100% {
    stroke-opacity: .58;
  }
  50% {
    stroke-opacity: 1;
  }
}

.node path {
  fill: none;
  stroke: #d8bdff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.node text {
  fill: #d6ccdf;
  font-size: 15px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  paint-order: stroke fill;
  stroke: rgba(9,6,15,.88);
  stroke-linejoin: round;
  stroke-width: 4.5px;
}

.core-node circle:first-child {
  fill: url(#lineGradient);
  fill-opacity: .14;
  stroke: #a573ff;
}

.core-node path {
  filter: drop-shadow(0 0 8px rgba(178,126,255,.5));
  animation: core-signal 3.8s ease-in-out infinite;
}

@keyframes core-signal {
  50% {
    stroke: #edddff;
    filter: drop-shadow(0 0 13px rgba(178,126,255,.8));
  }
}

.cloud-node circle {
  fill: rgba(44,26,71,.9);
}

.provider-node circle:first-child {
  fill: rgba(35,25,56,.96);
  stroke: rgba(216,189,255,.5);
}

.premise-node circle:first-child {
  fill: rgba(30,23,45,.95);
}

.mini-node path {
  stroke: var(--teal);
  stroke-width: 3;
}

.provider-badge rect {
  fill: rgba(255,255,255,.96);
  stroke: rgba(255,255,255,.7);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.provider-badge {
  opacity: .76;
  animation: provider-online 6s ease-in-out infinite;
}

.provider-badge:nth-child(2) {
  animation-delay: 2s;
}

.provider-badge:nth-child(3) {
  animation-delay: 4s;
}

.provider-badge image {
  pointer-events: none;
}

.provider-status {
  fill: #33d6c3;
  filter: drop-shadow(0 0 4px #33d6c3);
}

@keyframes provider-online {
  0%, 18%, 100% {
    opacity: .76;
  }
  28%, 48% {
    opacity: 1;
  }
}

.network-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 760 / 520;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 12.5% 20%;
}

.network-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, rgba(134,71,255,.16), transparent 23%),
    radial-gradient(circle at 83% 49%, rgba(51,214,195,.09), transparent 20%);
}

.network-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 4%;
  width: 92%;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(157,103,255,.65), rgba(75,225,207,.5), transparent);
  box-shadow: 0 0 18px rgba(145,86,255,.55);
  animation: stage-scan 7s ease-in-out infinite;
}

@keyframes stage-scan {
  0%, 10% {
    opacity: 0;
    transform: translateY(24px);
  }
  18% {
    opacity: .7;
  }
  82% {
    opacity: .25;
  }
  90%, 100% {
    opacity: 0;
    transform: translateY(470px);
  }
}

.network-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.provider-dock {
  position: absolute;
  z-index: 4;
  top: 9%;
  left: 56%;
  width: 20%;
  display: grid;
  gap: 6px;
}

.provider-chip {
  min-height: 35px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 7px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(4,2,8,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: .82;
  animation: provider-signal 6s ease-in-out infinite;
}

.provider-chip:nth-child(2) {
  animation-delay: 2s;
}

.provider-chip:nth-child(3) {
  animation-delay: 4s;
}

.provider-chip img {
  display: block;
  width: 100%;
  height: 24px;
  object-fit: contain;
}

.provider-chip i {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1fcbb7;
  box-shadow: 0 0 7px #1fcbb7;
}

@keyframes provider-signal {
  0%, 18%, 100% {
    opacity: .78;
    box-shadow: 0 10px 28px rgba(4,2,8,.28);
  }
  28%, 48% {
    opacity: 1;
    box-shadow: 0 12px 34px rgba(75,225,207,.18), 0 0 0 1px rgba(75,225,207,.22);
  }
}

.network-node {
  --node-size: 12%;
  position: absolute;
  z-index: 3;
  width: var(--node-size);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.node-users {
  --node-size: 13%;
  left: 15%;
  top: 52%;
}

.node-core {
  --node-size: 17%;
  left: 50%;
  top: 53%;
}

.node-cloud {
  --node-size: 11%;
  left: 84%;
  top: 32%;
}

.node-relay {
  --node-size: 6.5%;
  left: 84%;
  top: 52%;
}

.node-premise {
  --node-size: 11%;
  left: 84%;
  top: 72%;
}

.node-orbit {
  position: absolute;
  inset: -16%;
  border: 1px dashed rgba(171,115,255,.33);
  border-radius: 50%;
  animation: node-orbit 16s linear infinite;
}

.node-orbit::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 16%;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #c6a0ff;
  box-shadow: 0 0 12px #9f6aff;
}

.node-cloud .node-orbit,
.node-premise .node-orbit {
  border-color: rgba(75,225,207,.25);
  animation-direction: reverse;
}

.node-cloud .node-orbit::after,
.node-premise .node-orbit::after {
  background: #54dfcf;
  box-shadow: 0 0 12px #35d4c1;
}

@keyframes node-orbit {
  to { transform: rotate(360deg); }
}

.node-surface {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(207,174,255,.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(154,93,255,.28), transparent 38%),
    rgba(17,10,29,.94);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 16px 38px rgba(0,0,0,.28);
  display: grid;
  place-items: center;
  animation: node-surface-pulse 4.5s ease-in-out infinite;
}

.node-core .node-surface {
  border-color: rgba(174,113,255,.9);
  background:
    radial-gradient(circle at 42% 34%, rgba(154,93,255,.42), transparent 40%),
    linear-gradient(145deg, rgba(77,40,129,.78), rgba(17,10,29,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 0 44px rgba(126,66,239,.22);
}

.node-cloud .node-surface,
.node-premise .node-surface,
.node-relay .node-surface {
  border-color: rgba(128,228,216,.34);
}

.node-relay .node-surface {
  background: rgba(16,28,31,.95);
}

@keyframes node-surface-pulse {
  50% {
    border-color: rgba(227,210,255,.75);
    box-shadow: inset 0 1px rgba(255,255,255,.11), 0 0 30px rgba(126,66,239,.2);
  }
}

.network-node > strong {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: max-content;
  max-width: 150px;
  transform: translateX(-50%);
  color: #d6ccdf;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 9px #08050d, 0 0 4px #08050d;
}

.user-glyph {
  width: 42%;
  aspect-ratio: .9;
  position: relative;
}

.user-glyph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 34%;
  aspect-ratio: 1;
  border: 3px solid #d9c1ff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.user-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 82%;
  height: 48%;
  border: 3px solid #d9c1ff;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.cluster-glyph {
  width: 49%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  background: linear-gradient(145deg, #d9c1ff, #9a64ff 62%, #54dfcf);
  color: #171021;
  font-family: Manrope, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.cloud-glyph {
  width: 54%;
  height: 25%;
  border: 3px solid #dcc5ff;
  border-radius: 999px;
  position: relative;
}

.cloud-glyph::before,
.cloud-glyph::after {
  content: "";
  position: absolute;
  border: 3px solid #dcc5ff;
  border-bottom: 0;
  background: #1d122e;
  border-radius: 50% 50% 0 0;
}

.cloud-glyph::before {
  width: 48%;
  aspect-ratio: 1;
  left: 12%;
  bottom: 48%;
}

.cloud-glyph::after {
  width: 34%;
  aspect-ratio: 1;
  right: 10%;
  bottom: 48%;
}

.relay-glyph {
  width: 36%;
  aspect-ratio: 1;
  border: 2px solid #53dfce;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(75,225,207,.35);
}

.premise-glyph {
  width: 54%;
  aspect-ratio: 1.25;
  border: 3px solid #dcc5ff;
  border-radius: 3px;
  position: relative;
}

.premise-glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -31%;
  width: 3px;
  height: 30%;
  background: #dcc5ff;
  transform: translateX(-50%);
}

.premise-glyph::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -32%;
  width: 70%;
  height: 3px;
  background: #dcc5ff;
  border-radius: 3px;
}

.network-stage .metric {
  z-index: 5;
}

.network-stage .metric-one {
  left: 5%;
  top: 13%;
}

.network-stage .metric-two {
  right: 5%;
  bottom: 5%;
}

.metric {
  position: absolute;
  background: rgba(11,7,18,.9);
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  padding: 11px 14px;
  box-shadow: 0 16px 35px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
}

.metric span {
  display: block;
  font-size: 9px;
  color: #847b90;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.metric strong {
  font-size: 13px;
}

.metric-one {
  left: 5%;
  top: 24%;
  animation: float 4s ease-in-out infinite;
}

.metric-two {
  right: 5%;
  bottom: 8%;
  animation: float 4.8s ease-in-out .5s infinite;
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  width: max-content;
  min-height: 84px;
  display: flex;
  align-items: center;
  animation: stack-roll 30s linear infinite;
  will-change: transform;
}

.logo-group {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  color: #797080;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.logo-group i {
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  border-radius: 50%;
  background: #5f5668;
}

@keyframes stack-roll {
  to { transform: translateX(-50%); }
}

.logo-strip:hover .logo-track {
  animation-play-state: paused;
}

.services {
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.process-copy h2,
.cta-copy h2 {
  font-size: clamp(39px, 5vw, 62px);
  max-width: 760px;
}

.section-heading > p,
.process-intro,
.cta-copy > p {
  color: var(--muted);
  margin: 0;
}

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

.service-card {
  min-height: 465px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 40%),
    rgba(18,11,29,.72);
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(177,127,255,.35);
  background:
    linear-gradient(145deg, rgba(124,58,237,.10), transparent 42%),
    rgba(18,11,29,.82);
}

.service-card.featured::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -110px;
  border-radius: 50%;
  background: rgba(124,58,237,.18);
  filter: blur(45px);
}

.service-number {
  position: absolute;
  right: 26px;
  top: 24px;
  color: #554c60;
  font-size: 12px;
  letter-spacing: .12em;
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(142,76,255,.18), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 70px;
  position: relative;
}

.service-icon::before,
.service-icon::after,
.service-icon span::before,
.service-icon span::after {
  content: "";
  position: absolute;
  display: block;
}

.cloud-icon::before {
  width: 34px;
  height: 16px;
  left: 18px;
  bottom: 22px;
  border: 2px solid #b88cff;
  border-radius: 20px;
}

.cloud-icon::after {
  width: 19px;
  height: 19px;
  border: 2px solid #b88cff;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  top: 22px;
  left: 27px;
}

.kube-icon::before {
  width: 34px;
  height: 34px;
  border: 2px solid #b88cff;
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.kube-icon::after {
  width: 11px;
  height: 11px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.shield-icon::before {
  width: 30px;
  height: 36px;
  border: 2px solid #b88cff;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.shield-icon::after {
  width: 10px;
  height: 17px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg) translate(-3px, -3px);
}

.pulse-icon::before {
  width: 42px;
  height: 24px;
  background:
    linear-gradient(135deg, transparent 40%, #b88cff 41% 48%, transparent 49%) 0 0 / 15px 100%,
    linear-gradient(45deg, transparent 42%, var(--teal) 43% 50%, transparent 51%) 14px 0 / 18px 100%;
}

.service-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 25px;
  letter-spacing: -.03em;
  margin: 0 0 13px;
}

.service-card > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 24px;
  color: #c5bdce;
  font-size: 12px;
}

.service-card li::before {
  content: "↗";
  color: var(--purple-bright);
  margin-right: 8px;
}

.process {
  padding: 60px 0 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.process-visual {
  min-height: 600px;
  display: grid;
  place-items: center;
  position: relative;
}

.process-visual::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(124,58,237,.20);
  filter: blur(90px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(177,127,255,.18);
  border-radius: 50%;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 18px var(--purple-bright);
  top: 50%;
  left: -5px;
}

.orbit-one {
  width: 420px;
  height: 420px;
  animation: rotate-ring 18s linear infinite;
}

.orbit-two {
  width: 550px;
  height: 550px;
  animation: rotate-ring 28s linear infinite reverse;
}

.process-core {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(197,156,255,.32);
  background: radial-gradient(circle at 40% 35%, rgba(142,76,255,.30), rgba(18,11,29,.95) 65%);
  box-shadow: 0 0 80px rgba(124,58,237,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.brand-mark.large {
  width: 44px;
  height: 44px;
}

.process-core strong {
  font-family: Manrope, sans-serif;
  font-size: 25px;
  letter-spacing: -.04em;
  margin-top: 9px;
}

.process-core small {
  color: var(--muted);
  margin-top: 3px;
}

.floating-tag {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20,12,32,.82);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  color: #cfc7d8;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.tag-one { top: 15%; left: 14%; }
.tag-two { top: 19%; right: 9%; animation-delay: .6s; }
.tag-three { bottom: 17%; right: 12%; animation-delay: 1.1s; }
.tag-four { bottom: 13%; left: 13%; animation-delay: .3s; }

.process-intro {
  max-width: 580px;
  margin: 24px 0 38px;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--purple-bright);
  font-size: 11px;
  padding-top: 5px;
}

.step h3 {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  margin: 0 0 3px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-section {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 20%, rgba(124,58,237,.20), transparent 30rem),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 45%),
    #100918;
  padding: 70px;
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  box-shadow: var(--shadow);
}

.cta-copy {
  padding-top: 10px;
}

.cta-copy > p {
  margin: 25px 0 38px;
  max-width: 530px;
}

.contact-points {
  display: grid;
  gap: 14px;
}

.contact-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-points span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(124,58,237,.13);
  color: var(--purple-light);
  font-size: 9px;
}

.contact-points p {
  margin: 0;
  color: #c5bdce;
  font-size: 13px;
}

.contact-form {
  background: rgba(10,6,16,.60);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 9px;
}

.form-header .status-dot {
  display: block;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #c8c0d1;
  font-size: 11px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(169,112,255,.7);
  background: rgba(124,58,237,.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #655c70;
}

.contact-form select option {
  background: #171020;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: -4px 0 0;
  text-align: center;
  color: #6f6679;
  font-size: 9px;
}

footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 45px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #756c7f;
  font-size: 11px;
}

footer > p {
  margin: 0;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

footer .brand {
  color: var(--text);
}

.toast {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  max-width: calc(100% - 40px);
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(75,225,207,.22);
  background: rgba(12,23,23,.95);
  color: #b8fff6;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 15px 50px rgba(0,0,0,.4);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .section-heading,
  .process,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
  }

  .process {
    gap: 40px;
  }

  .process-visual {
    order: 2;
  }

  .cta-section {
    padding: 48px;
    gap: 50px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    justify-items: center;
  }

  footer > div {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .site-header,
  .section,
  .logo-track,
  footer {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    height: 70px;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 70px;
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-description {
    font-size: 15px;
  }

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

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

  .network-card {
    border-radius: 20px;
  }

  .metric {
    display: none;
  }

  .network-topbar {
    height: 52px;
  }

  .provider-dock {
    top: 6%;
    left: 55%;
    width: 21%;
    gap: 3px;
  }

  .provider-chip {
    min-height: 24px;
    padding: 3px 6px;
    border-radius: 5px;
  }

  .provider-chip img {
    height: 16px;
  }

  .provider-chip i {
    top: 3px;
    right: 3px;
    width: 3px;
  }

  .network-node > strong {
    top: calc(100% + 8px);
    max-width: 92px;
    font-size: 8px;
  }

  .node-orbit::after {
    width: 4px;
  }

  .user-glyph::before,
  .user-glyph::after,
  .cloud-glyph,
  .cloud-glyph::before,
  .cloud-glyph::after,
  .premise-glyph {
    border-width: 2px;
  }

  .logo-track {
    min-height: 70px;
  }

  .logo-group {
    gap: 32px;
    padding-right: 32px;
  }

  .services {
    padding: 95px 0;
  }

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

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

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

  .service-icon {
    margin-bottom: 48px;
  }

  .process {
    padding-bottom: 100px;
  }

  .process-visual {
    min-height: 410px;
    transform: scale(.75);
    margin: -50px 0;
  }

  .cta-section {
    width: min(100% - 24px, 1200px);
    padding: 30px 18px;
    border-radius: 24px;
    margin-bottom: 60px;
  }

  .contact-form {
    padding: 20px 16px;
  }
}

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

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

  .logo-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .logo-track {
    animation: none;
  }

  .logo-group[aria-hidden="true"] {
    display: none;
  }

  .traffic-particles,
  .scan-beam {
    display: none;
  }

  .provider-badge {
    opacity: 1;
  }

  .network-stage::after {
    display: none;
  }

  .provider-chip,
  .node-orbit,
  .node-surface {
    animation: none;
  }
}
