:root {
  color-scheme: dark;
  --bg: #030812;
  --bg-soft: #07111f;
  --panel: rgba(9, 22, 39, 0.72);
  --panel-solid: #091728;
  --line: rgba(126, 204, 255, 0.14);
  --line-bright: rgba(86, 210, 255, 0.38);
  --text: #f3f8ff;
  --muted: #8496ab;
  --blue: #259dff;
  --cyan: #4be7ff;
  --violet: #7a6cff;
  --green: #53f6a5;
  --red: #ff647c;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 104, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 85% 35%, rgba(55, 225, 255, 0.08), transparent 26rem),
    #030812;
}

::selection {
  color: #02101c;
  background: var(--cyan);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.page-noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.section-shell,
.topbar,
.site-footer {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(75, 231, 255, 0.35));
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: var(--blue);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topnav a {
  position: relative;
  color: #aebed0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.topnav > a:not(.nav-telegram)::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transition: right 200ms ease;
}

.topnav > a:hover {
  color: white;
}

.topnav > a:hover::after {
  right: 0;
}

.topnav .nav-telegram {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(75, 231, 255, 0.28);
  border-radius: 4px;
  color: var(--text);
  background: rgba(17, 93, 148, 0.12);
}

.nav-telegram svg {
  width: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: white;
  background: rgba(5, 14, 26, 0.75);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.72) 48%, rgba(2, 13, 28, 0.4) 100%),
    radial-gradient(ellipse at 78% 46%, rgba(22, 131, 255, 0.18), transparent 42%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -30%;
  width: 75%;
  height: 70%;
  content: "";
  border-radius: 50%;
  background: rgba(14, 117, 255, 0.09);
  filter: blur(80px);
}

.hero-grid,
.hackers-grid,
.cta-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(71, 151, 218, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 151, 218, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
  transform: perspective(700px) rotateX(62deg) scale(1.5) translateY(30%);
  transform-origin: 50% 100%;
  animation: gridDrift 18s linear infinite;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  top: 20%;
  right: 15%;
  width: 360px;
  height: 360px;
  background: rgba(0, 145, 255, 0.13);
}

.hero-glow-two {
  right: 34%;
  bottom: 10%;
  width: 180px;
  height: 180px;
  background: rgba(72, 229, 255, 0.1);
}

.hero-inner {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  min-height: 900px;
  margin: 0 auto;
  padding: 150px 0 104px;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 18px;
}

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

.system-label,
.panel-label,
.card-kicker,
.step-count,
.advantage-index,
.managed-status {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(83, 246, 165, 0.2);
  border-radius: 3px;
  color: #91b3a4;
  background: rgba(8, 43, 32, 0.28);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(83, 246, 165, 0.08), 0 0 14px var(--green);
  animation: statusPulse 2s ease-out infinite;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  overflow-wrap: normal;
  font-size: clamp(54px, 5.4vw, 78px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 span,
.section-heading h2 span,
.cta-inner h2 span,
.hackers-terminal h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), var(--blue) 56%, #6e84ff);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 24px rgba(37, 157, 255, 0.12));
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #a4b4c7;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  width: 32px;
  content: "";
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.32);
  filter: blur(7px);
  transition: left 420ms ease;
}

.button:hover::before {
  left: calc(100% + 30px);
}

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

.button svg {
  width: 20px;
  height: 20px;
}

.button.primary {
  color: #03101d;
  background: linear-gradient(110deg, #44ecff, #2e9fff);
  box-shadow: 0 12px 38px rgba(35, 164, 255, 0.22);
}

.button.primary:hover {
  box-shadow: 0 16px 46px rgba(35, 164, 255, 0.34);
}

.button.ghost {
  border-color: var(--line);
  color: #b4c3d3;
  background: rgba(8, 18, 31, 0.48);
  backdrop-filter: blur(12px);
}

.button.ghost:hover {
  border-color: var(--line-bright);
  color: white;
  background: rgba(18, 44, 69, 0.56);
}

.button.large {
  min-height: 60px;
  padding: 0 28px;
  font-size: 15px;
}

.hero-metrics {
  display: flex;
  max-width: 610px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-metrics > div {
  position: relative;
  flex: 1;
  padding-right: 20px;
}

.hero-metrics > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 19px;
}

.hero-metrics span {
  margin-top: 5px;
  color: #6f8197;
  font-size: 11px;
  text-transform: uppercase;
}

.server-scene {
  position: relative;
  min-height: 620px;
  transform: translateX(34px);
  perspective: 1100px;
}

.scene-platform {
  position: absolute;
  right: 0;
  bottom: 36px;
  left: 0;
  height: 190px;
  transform: perspective(450px) rotateX(64deg);
  border: 1px solid rgba(62, 183, 255, 0.2);
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 32px, rgba(58, 178, 255, 0.1) 33px 34px),
    radial-gradient(ellipse at center, rgba(28, 142, 255, 0.22), transparent 68%);
  box-shadow: 0 0 70px rgba(19, 128, 255, 0.12);
}

.server-core,
.rack {
  position: absolute;
  z-index: 3;
  transform-style: preserve-3d;
}

.server-core {
  right: 92px;
  bottom: 92px;
  width: 245px;
  height: 430px;
  animation: coreFloat 5s ease-in-out infinite;
}

.core-face,
.rack-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(80, 189, 255, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 12% 88%, rgba(255, 255, 255, 0.04)),
    linear-gradient(140deg, #0d263f, #06121f 44%, #0a1d30);
  box-shadow:
    inset 0 0 40px rgba(19, 124, 255, 0.12),
    inset -16px 0 34px rgba(0, 0, 0, 0.32),
    0 28px 70px rgba(0, 0, 0, 0.44),
    0 0 50px rgba(34, 154, 255, 0.1);
  clip-path: polygon(8% 0, 92% 0, 100% 4%, 100% 96%, 92% 100%, 8% 100%, 0 96%, 0 4%);
}

.core-face::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -90%;
  width: 70%;
  content: "";
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(82, 224, 255, 0.12), transparent);
  animation: serverScan 5s ease-in-out infinite;
}

.core-face::after,
.rack-face::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background: repeating-linear-gradient(to bottom, transparent 0 9px, rgba(66, 160, 226, 0.04) 10px 11px);
}

.core-cap,
.rack-top {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: 8%;
  left: 8%;
  height: 30px;
  transform: rotateX(65deg);
  border: 1px solid rgba(83, 211, 255, 0.42);
  background: #112e4d;
  box-shadow: 0 0 20px rgba(75, 231, 255, 0.18);
}

.core-line {
  position: relative;
  z-index: 2;
  display: block;
  width: 72%;
  height: 2px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, transparent, rgba(75, 231, 255, 0.6), transparent);
}

.core-emblem {
  position: relative;
  z-index: 3;
  display: grid;
  width: 104px;
  height: 104px;
  margin: 46px auto 0;
  place-items: center;
  border: 1px solid rgba(72, 208, 255, 0.3);
  border-radius: 50%;
  color: var(--cyan);
  background: radial-gradient(circle, rgba(29, 167, 255, 0.16), transparent 70%);
  box-shadow: 0 0 34px rgba(49, 175, 255, 0.16);
}

.core-emblem::after {
  position: absolute;
  inset: -11px;
  content: "";
  border: 1px dashed rgba(75, 231, 255, 0.24);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.core-emblem svg {
  width: 64px;
}

.core-slots {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.core-slots i,
.rack-face i {
  position: relative;
  display: block;
  border: 1px solid rgba(103, 183, 234, 0.19);
  background: rgba(1, 8, 15, 0.68);
}

.core-slots i {
  height: 16px;
}

.core-slots i::after,
.rack-face i::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 3px;
  height: 3px;
  content: "";
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: ledBlink 1.8s steps(2, end) infinite;
}

.core-slots i:nth-child(3n)::after,
.rack-face i:nth-child(3n)::after {
  background: var(--green);
  animation-delay: 0.7s;
}

.rack {
  bottom: 103px;
  width: 150px;
  height: 350px;
  opacity: 0.66;
}

.rack-left {
  z-index: 1;
  left: 12px;
  transform: rotateY(12deg) scale(0.9);
}

.rack-right {
  z-index: 2;
  right: -62px;
  transform: rotateY(-12deg) scale(0.95);
}

.rack-face {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 14px;
}

.rack-face i {
  flex: 1;
  min-height: 22px;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(51, 182, 255, 0.16);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.orbit-one {
  top: 60px;
  right: -40px;
  width: 500px;
  height: 500px;
  transform: rotateX(68deg) rotateZ(22deg);
  animation: orbitMove 14s linear infinite;
}

.orbit-two {
  top: 130px;
  right: 55px;
  width: 340px;
  height: 340px;
  transform: rotateX(62deg) rotateZ(-18deg);
  animation: orbitMove 10s linear reverse infinite;
}

.data-beam {
  position: absolute;
  z-index: 0;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, transparent, rgba(75, 231, 255, 0.7), transparent);
  box-shadow: 0 0 9px rgba(75, 231, 255, 0.5);
}

.beam-one {
  top: 130px;
  left: 10%;
  width: 440px;
  transform: rotate(20deg);
  animation: beamPulse 4s ease-in-out infinite;
}

.beam-two {
  top: 270px;
  left: 0;
  width: 510px;
  transform: rotate(-12deg);
  animation: beamPulse 4s 1.4s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(86, 210, 255, 0.31);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(12, 36, 61, 0.88), rgba(4, 14, 26, 0.86));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.uptime-card {
  top: 112px;
  right: -18px;
  width: 205px;
  padding: 17px 18px 13px;
  animation: floatCard 4.6s ease-in-out infinite;
}

.card-kicker {
  display: block;
  color: #66819c;
  font-size: 8px;
}

.uptime-card strong {
  display: block;
  margin-top: 7px;
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
}

.mini-chart {
  height: 42px;
  margin-top: 8px;
  color: var(--cyan);
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

.deploy-card {
  z-index: 7;
  right: 258px;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  animation: floatCard 4s 1.3s ease-in-out infinite;
}

.deploy-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(83, 246, 165, 0.32);
  border-radius: 50%;
  color: var(--green);
  background: rgba(83, 246, 165, 0.08);
}

.deploy-card strong {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: #5e728a;
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.scroll-hint i {
  position: relative;
  display: block;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(103, 160, 204, 0.22);
}

.scroll-hint i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--cyan);
  animation: scrollLine 2s ease-in-out infinite;
}

.trusted-line {
  border-bottom: 1px solid var(--line);
  background: rgba(4, 12, 23, 0.82);
}

.trusted-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 40px;
}

.trusted-label {
  flex: 0 0 auto;
  color: #587088;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tech-list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tech-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8ba0b5;
  font-size: 12px;
  font-weight: 600;
}

.tech-list b {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}

.section {
  position: relative;
  padding: 132px 0;
}

.services-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(31, 125, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #050c17, #07111e);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 66px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.service-card,
.advantage-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(45, 165, 255, 0.12), transparent 35%),
    rgba(7, 19, 34, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  transform: perspective(900px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 160ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before,
.advantage-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 28px;
  height: 28px;
  content: "";
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
  opacity: 0.7;
}

.service-card:hover,
.advantage-card:hover {
  border-color: rgba(75, 231, 255, 0.35);
}

.service-card {
  min-height: 470px;
  padding: 34px;
}

.service-card.featured {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(64, 190, 255, 0.17), transparent 38%),
    linear-gradient(145deg, rgba(12, 47, 79, 0.86), rgba(6, 19, 34, 0.88));
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line-bright);
  color: var(--cyan);
  background: rgba(43, 164, 255, 0.08);
}

.service-icon svg {
  width: 30px;
}

.card-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #42566c;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.service-card h3 {
  max-width: 300px;
  margin: 52px 0 16px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.service-card > p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #b4c2d0;
  font-size: 12px;
}

.service-card li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(75, 231, 255, 0.6);
}

.card-scan {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 12px var(--cyan);
  animation: cardScan 4s ease-in-out infinite;
}

.managed-banner {
  position: relative;
  display: grid;
  min-height: 112px;
  margin-top: 16px;
  padding: 24px 28px;
  overflow: hidden;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(75, 231, 255, 0.19);
  background:
    linear-gradient(90deg, rgba(9, 42, 67, 0.76), rgba(5, 18, 32, 0.8)),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(75, 231, 255, 0.03) 41px);
}

.managed-pulse {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(75, 231, 255, 0.18);
  border-radius: 50%;
}

.managed-pulse span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: statusPulse 2s ease-out infinite;
}

.managed-banner strong {
  font-size: 17px;
}

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

.managed-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #78a490;
  font-size: 9px;
}

.managed-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.advantages-section {
  border-top: 1px solid rgba(113, 188, 242, 0.08);
  background:
    linear-gradient(rgba(6, 15, 26, 0.94), rgba(6, 15, 26, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
}

.advantages-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.advantage-main {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 46%, rgba(33, 149, 255, 0.15), transparent 37%),
    #06101d;
}

.advantage-main::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(75, 231, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 231, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.panel-label {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  color: #536d85;
  font-size: 8px;
}

.network-map {
  position: absolute;
  top: 25px;
  right: 20px;
  left: 20px;
  height: 410px;
}

.network-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(75, 231, 255, 0.18);
}

.network-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(75, 231, 255, 0.17);
  border-radius: 50%;
}

.ring-a {
  width: 310px;
  height: 310px;
  margin: -155px;
  animation: spin 32s linear infinite;
}

.ring-b {
  width: 210px;
  height: 210px;
  margin: -105px;
  animation: spin 20s linear reverse infinite;
}

.network-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(75, 231, 255, 0.36);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(8, 34, 57, 0.88);
  box-shadow: 0 0 30px rgba(40, 170, 255, 0.13);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}

.network-node::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(75, 231, 255, 0.1);
  border-radius: 50%;
}

.network-node.node-center {
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  color: #03101d;
  background: var(--cyan);
  box-shadow: 0 0 50px rgba(75, 231, 255, 0.28);
}

.node-a { top: 24%; left: 25%; }
.node-b { top: 22%; left: 75%; }
.node-c { top: 76%; left: 80%; }
.node-d { top: 77%; left: 21%; }

.network-caption {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.network-caption strong {
  font-size: 25px;
  line-height: 1.15;
}

.network-caption p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.advantage-stack {
  display: grid;
  gap: 16px;
}

.advantage-card {
  min-height: 189px;
  padding: 26px;
}

.advantage-index {
  color: #48617a;
  font-size: 8px;
}

.advantage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.advantage-card h3 {
  margin: 0;
  font-size: 19px;
}

.icon-chip {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(75, 231, 255, 0.24);
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.advantage-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(24, 115, 255, 0.1), transparent 36rem),
    #040b15;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-line::before {
  position: absolute;
  top: 73px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), rgba(75, 231, 255, 0.12), var(--blue));
}

.process-step {
  position: relative;
  text-align: center;
}

.step-count {
  display: block;
  color: #4b6178;
  font-size: 9px;
}

.step-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 26px auto 30px;
  place-items: center;
  border: 1px solid rgba(75, 231, 255, 0.22);
  border-radius: 50%;
  background: #06101c;
}

.step-marker::before {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px dashed rgba(75, 231, 255, 0.17);
  border-radius: 50%;
}

.step-marker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.process-step h3 {
  margin: 0;
  font-size: 18px;
}

.process-step p {
  max-width: 250px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cta-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 57%, rgba(21, 133, 255, 0.24), transparent 22rem),
    linear-gradient(180deg, #061120, #02060d);
}

.cta-grid {
  opacity: 0.5;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  animation: gridDrift 20s linear infinite reverse;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cta-orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(75, 231, 255, 0.08);
  border-radius: 50%;
}

.cta-orb span {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(75, 231, 255, 0.13);
  border-radius: 50%;
}

.cta-orb span:nth-child(1) {
  margin: -145px;
  animation: orbPulse 5s ease-in-out infinite;
}

.cta-orb span:nth-child(2) {
  margin: -100px;
  animation: orbPulse 5s 0.8s ease-in-out infinite;
}

.cta-orb span:nth-child(3) {
  margin: -58px;
  background: radial-gradient(circle, rgba(75, 231, 255, 0.12), transparent 70%);
  box-shadow: 0 0 80px rgba(31, 137, 255, 0.16);
  animation: orbPulse 5s 1.6s ease-in-out infinite;
}

.cta-inner h2 {
  max-width: 930px;
  font-size: clamp(48px, 7vw, 88px);
}

.cta-inner > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px auto 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 54px 0;
}

.footer-brand > p {
  margin: 20px 0 0 56px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-meta {
  display: grid;
  gap: 11px;
  justify-items: end;
  color: #607287;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #719883;
}

.hackers-view {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 130px 24px 80px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(20, 137, 255, 0.14), transparent 30rem);
}

.hackers-terminal {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  overflow: hidden;
  border: 1px solid rgba(75, 231, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 10, 18, 0.88);
  box-shadow: var(--shadow), 0 0 80px rgba(29, 141, 255, 0.1);
  backdrop-filter: blur(16px);
}

.terminal-bar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 31, 49, 0.65);
}

.terminal-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-bar span:nth-child(2) { background: #ffc75e; }
.terminal-bar span:nth-child(3) { background: var(--green); margin-right: 8px; }

.terminal-bar b {
  color: #62778d;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.terminal-body {
  padding: clamp(28px, 5vw, 64px);
  font-family: "JetBrains Mono", monospace;
}

.terminal-body p {
  margin: 0 0 9px;
  color: #aab9c8;
  font-size: 13px;
}

.terminal-body p i {
  color: var(--cyan);
  font-style: normal;
}

.terminal-body .terminal-output {
  margin-bottom: 22px;
  color: #5e7389;
}

.hackers-terminal h1 {
  margin: 48px 0 34px;
  font-family: Inter, sans-serif;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

body.hackers-active .site-footer {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms), transform 750ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}

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

.auth-layout {
  display: grid;
  min-height: 100vh;
  padding: 130px 24px 70px;
  place-items: center;
}

.auth-card,
.admin-panel {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 20, 35, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.auth-card {
  padding: clamp(28px, 5vw, 52px);
}

.auth-card h1,
.admin-panel h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.auth-form {
  display: grid;
  gap: 13px;
}

.auth-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.auth-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 16px;
  outline: none;
  color: var(--text);
  background: #030a13;
}

.auth-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(75, 231, 255, 0.08);
}

.auth-form button {
  margin-top: 8px;
  cursor: pointer;
}

.flash-list {
  margin: 0 0 22px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 199, 94, 0.28);
  color: #ffe0a5;
  background: rgba(255, 199, 94, 0.07);
}

.flash-list p {
  margin: 0;
}

.admin-panel {
  width: min(1240px, calc(100% - 48px));
  margin: 130px auto 70px;
  padding: clamp(28px, 5vw, 52px);
}

.ops-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #030a13;
}

.window-bar {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.window-bar span:nth-child(2) { background: #ffc75e; }
.window-bar span:nth-child(3) { background: var(--green); margin-right: 8px; }

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(83, 246, 165, 0.28), 0 0 13px var(--green); }
  70% { box-shadow: 0 0 0 8px rgba(83, 246, 165, 0), 0 0 13px var(--green); }
  100% { box-shadow: 0 0 0 0 rgba(83, 246, 165, 0), 0 0 13px var(--green); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 64px, 64px 0; }
}

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

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

@keyframes serverScan {
  0%, 18% { left: -90%; }
  68%, 100% { left: 130%; }
}

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

@keyframes orbitMove {
  to { rotate: 360deg; }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.85; }
}

@keyframes ledBlink {
  0%, 35% { opacity: 0.18; }
  36%, 100% { opacity: 1; }
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes cardScan {
  0%, 100% { width: 0; opacity: 0; }
  45%, 60% { width: 62%; opacity: 1; }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1080px) {
  .topnav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.75fr;
  }

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

  .server-scene {
    transform: translateX(75px) scale(0.86);
    transform-origin: center right;
  }

  .service-card {
    padding: 28px;
  }

  .card-number {
    top: 28px;
    right: 28px;
  }

  .section-heading {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .topbar,
  .site-footer,
  .hero-inner {
    width: min(100% - 32px, 720px);
  }

  .topbar {
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .topnav {
    position: absolute;
    top: 70px;
    right: 0;
    display: none;
    width: min(330px, 100%);
    align-items: stretch;
    padding: 14px;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--line);
    background: rgba(4, 13, 24, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .topnav.open {
    display: flex;
  }

  .topnav a {
    padding: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 132px 0 70px;
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    max-width: 680px;
  }

  .server-scene {
    width: min(600px, 100%);
    min-height: 560px;
    margin: 20px auto 0;
    transform: none;
  }

  .server-core {
    right: 50%;
    transform: translateX(50%);
  }

  @keyframes coreFloat {
    0%, 100% { transform: translateX(50%) translateY(0); }
    50% { transform: translateX(50%) translateY(-9px); }
  }

  .rack-right {
    right: 8px;
  }

  .uptime-card {
    right: 0;
  }

  .deploy-card {
    right: auto;
    left: 0;
  }

  .scroll-hint {
    display: none;
  }

  .trusted-inner {
    align-items: flex-start;
    padding: 28px 0;
    flex-direction: column;
    gap: 22px;
  }

  .tech-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .section-heading > p {
    max-width: 580px;
  }

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

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

  .service-card > p {
    min-height: 0;
  }

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

  .advantage-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantage-card {
    min-height: 230px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
  }

  .process-line::before {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .topbar,
  .site-footer,
  .hero-inner {
    width: min(100% - 24px, 560px);
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero-inner {
    padding-top: 116px;
  }

  .system-label {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.7vw, 54px);
    line-height: 0.98;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
  }

  .hero-metrics > div {
    padding: 0 10px 0 0;
  }

  .hero-metrics > div + div {
    padding-left: 12px;
  }

  .hero-metrics strong {
    font-size: 14px;
  }

  .hero-metrics span {
    font-size: 8px;
  }

  .server-scene {
    display: none;
  }

  .trusted-line {
    margin-top: 0;
  }

  .tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .tech-list span:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .cta-inner h2 {
    font-size: clamp(36px, 10.5vw, 54px);
  }

  .service-card {
    padding: 24px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .card-number {
    top: 24px;
    right: 24px;
  }

  .managed-banner {
    padding: 22px;
    grid-template-columns: auto 1fr;
  }

  .managed-pulse {
    width: 44px;
    height: 44px;
  }

  .managed-status {
    grid-column: 1 / -1;
  }

  .advantage-main {
    min-height: 530px;
  }

  .network-map {
    transform: scale(0.84);
    transform-origin: center;
  }

  .network-caption {
    right: 24px;
    bottom: 24px;
    left: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .network-caption strong {
    font-size: 22px;
  }

  .advantage-stack {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 0;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-step {
    text-align: left;
  }

  .step-marker {
    margin: 20px 0 22px;
  }

  .process-step p {
    margin-left: 0;
  }

  .cta-section,
  .cta-inner {
    min-height: 620px;
  }

  .cta-inner > p:not(.eyebrow) {
    font-size: 14px;
  }

  .cta-orb {
    width: 320px;
    height: 320px;
  }

  .site-footer {
    min-height: 0;
  }

  .footer-brand > p {
    margin-left: 0;
  }

  .admin-panel {
    width: min(100% - 24px, 560px);
  }
}

@media (max-width: 860px) and (pointer: coarse), (max-width: 620px) {
  body::before,
  .page-noise {
    display: none;
  }

  body {
    background:
      radial-gradient(circle at 80% 10%, rgba(28, 127, 255, 0.1), transparent 22rem),
      var(--bg);
  }

  .server-scene {
    display: none;
  }

  .hero-inner {
    padding-bottom: 76px;
  }

  .hero-grid,
  .cta-grid,
  .status-dot,
  .managed-pulse span,
  .card-scan,
  .network-ring,
  .cta-orb span {
    animation: none;
  }

  .hero-glow {
    display: none;
  }

  .hero::after {
    filter: none;
    opacity: 0.45;
  }

  .topnav,
  .auth-card,
  .admin-panel,
  .hackers-terminal {
    backdrop-filter: none;
  }

  .service-card,
  .advantage-card {
    transform: none !important;
    transition: border-color 180ms ease;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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