/* ==========================================================
   ONYX VPN RUSSIA — STATIC EXPERIENCE V2
   Uses pricing-million-v1.css as the visual foundation.
   No canvas. No Three.js. No JS.
   ========================================================== */

.vpn-hero{
  min-height:82vh;
}


/* ==========================================================
   HERO NETWORK
   ========================================================== */

.network-core{
  position:relative;
  z-index:3;
  text-align:center;
}

.network-core .core-label{
  color:#9e95a5;
  font-size:9px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.network-core strong{
  display:block;
  margin-top:8px;

  color:transparent;
  background:
    linear-gradient(
      125deg,
      #fff,
      #e4beef 37%,
      #d45ac2 68%,
      #8870ff
    );

  -webkit-background-clip:text;
  background-clip:text;

  font-size:clamp(115px,13vw,185px);
  line-height:.78;
  letter-spacing:-.1em;
  font-weight:650;

  filter:
    drop-shadow(0 20px 60px rgba(177,73,224,.12));
}

.network-core small{
  display:block;
  margin-top:25px;

  color:#aaa0ae;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.network-dot{
  position:absolute;
  z-index:4;

  width:8px;
  height:8px;

  border-radius:50%;

  background:#d95be1;

  box-shadow:
    0 0 10px rgba(221,86,229,.95),
    0 0 32px rgba(187,68,226,.45);
}

.nd1{
  left:17%;
  top:27%;
}

.nd2{
  right:17%;
  top:35%;
  background:#7d8cff;
  box-shadow:
    0 0 10px rgba(125,140,255,.95),
    0 0 32px rgba(96,114,255,.40);
}

.nd3{
  left:28%;
  bottom:17%;
  background:#72e6bb;
  box-shadow:
    0 0 10px rgba(114,230,187,.95),
    0 0 28px rgba(114,230,187,.35);
}

.network-line{
  position:absolute;
  z-index:1;

  left:50%;
  top:50%;

  width:70%;
  height:1px;

  transform-origin:left center;

  background:
    linear-gradient(
      90deg,
      rgba(222,73,199,.0),
      rgba(222,73,199,.17),
      rgba(126,121,255,.0)
    );
}

.nl1{
  transform:rotate(18deg);
}

.nl2{
  transform:rotate(142deg);
}

.nl3{
  transform:rotate(258deg);
}


/* ==========================================================
   CONNECTION ROOM
   ========================================================== */

.connection-room{
  padding:60px 0 130px;
}

.connection-copy{
  position:relative;
  z-index:10;

  padding:48px 42px;

  border-right:
    1px solid rgba(255,255,255,.055);

  background:
    linear-gradient(
      90deg,
      rgba(7,5,10,.65),
      rgba(7,5,10,.30)
    );
}

.room-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;

  margin-bottom:36px;

  font-size:9px;
  font-weight:800;
  letter-spacing:.08em;
}

.room-live{
  display:flex;
  align-items:center;
  gap:6px;

  color:#7eddb9;

  font-size:7px;
  font-weight:800;
  letter-spacing:.13em;
}

.room-live i{
  width:5px;
  height:5px;

  border-radius:50%;
  background:#72edba;

  box-shadow:
    0 0 11px rgba(114,237,186,.8);

  animation:pulse 1.5s ease-in-out infinite;
}

.route-list{
  display:grid;
  gap:9px;

  margin-top:29px;
}

.route-step{
  position:relative;

  display:grid;
  grid-template-columns:47px 1fr;
  gap:15px;
  align-items:center;

  min-height:83px;
  padding:13px;

  border:
    1px solid rgba(255,255,255,.065);

  border-radius:17px;

  background:
    rgba(255,255,255,.022);
}

.route-index{
  display:grid;
  width:44px;
  height:44px;

  place-items:center;

  border:
    1px solid rgba(255,255,255,.075);

  border-radius:14px;

  color:#dba4ff;

  background:
    linear-gradient(
      135deg,
      rgba(217,52,179,.12),
      rgba(105,84,240,.10)
    );

  font-size:9px;
  font-weight:800;
}

.route-step b{
  display:block;

  font-size:13px;
  letter-spacing:-.02em;
}

.route-step span{
  display:block;

  margin-top:5px;

  color:#8f8695;

  font-size:9px;
  line-height:1.55;
}

.connection-note{
  margin-top:28px;

  color:#92899a;

  font-size:11px;
  line-height:1.7;
}


/* ==========================================================
   STATIC NETWORK STAGE
   ========================================================== */

.network-stage{
  position:relative;
  min-width:0;
  min-height:720px;

  overflow:hidden;
  isolation:isolate;
}

.network-stage::before{
  content:"";

  position:absolute;
  z-index:1;

  width:530px;
  height:530px;

  left:50%;
  top:50%;

  transform:
    translate(-50%,-50%);

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(187,59,220,.17),
      rgba(105,63,230,.06) 34%,
      transparent 67%
    );

  filter:blur(10px);
}

.network-grid{
  position:absolute;
  z-index:0;
  inset:0;

  opacity:.32;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size:39px 39px;

  mask-image:
    radial-gradient(
      circle at center,
      #000 20%,
      transparent 72%
    );
}

.network-hud{
  position:absolute;
  z-index:8;
  inset:25px;

  pointer-events:none;
}

.network-hud-top{
  display:flex;
  justify-content:space-between;

  color:rgba(188,178,198,.35);

  font-size:6px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.network-hud-top b{
  color:#c59aff;
}

.static-system{
  position:absolute;
  z-index:4;

  left:50%;
  top:50%;

  width:min(72%,530px);
  aspect-ratio:1;

  transform:
    translate(-50%,-50%);

  border:
    1px solid rgba(202,103,255,.13);

  border-radius:50%;

  box-shadow:
    inset 0 0 80px rgba(141,57,218,.04),
    0 0 90px rgba(119,57,219,.045);
}

.static-system::before,
.static-system::after{
  content:"";

  position:absolute;

  border:
    1px solid rgba(108,145,255,.09);

  border-radius:50%;
}

.static-system::before{
  inset:14%;
}

.static-system::after{
  inset:31%;
}

.system-core{
  position:absolute;
  z-index:5;

  left:50%;
  top:50%;

  width:175px;
  height:175px;

  display:grid;
  place-items:center;

  transform:
    translate(-50%,-50%);

  border:
    1px solid rgba(225,112,255,.14);

  border-radius:50%;

  text-align:center;

  background:
    radial-gradient(
      circle,
      rgba(218,63,198,.16),
      rgba(113,80,242,.07) 47%,
      rgba(8,6,13,.93) 72%
    );

  box-shadow:
    0 0 70px rgba(180,58,220,.12),
    inset 0 0 45px rgba(219,80,232,.06);
}

.system-core div{
  color:#fff;

  font-size:31px;
  font-weight:650;
  letter-spacing:-.065em;
}

.system-core span{
  display:block;

  margin-top:5px;

  color:#91899a;

  font-size:7px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.system-node{
  position:absolute;
  z-index:6;

  width:128px;
  padding:14px 15px;

  border:
    1px solid rgba(255,255,255,.08);

  border-radius:16px;

  background:
    rgba(14,9,21,.70);

  backdrop-filter:
    blur(15px);

  box-shadow:
    0 18px 60px rgba(0,0,0,.22);
}

.system-node small{
  display:block;

  color:#716b79;

  font-size:6px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.system-node b{
  display:block;

  margin-top:5px;

  color:#ded5e2;

  font-size:11px;
}

.sn-device{
  left:8%;
  top:28%;
}

.sn-vpn{
  right:7%;
  top:41%;
}

.sn-web{
  left:17%;
  bottom:16%;
}

.system-status{
  position:absolute;
  z-index:7;

  right:27px;
  bottom:25px;

  text-align:right;
}

.system-status span{
  display:block;

  color:#786f81;

  font-size:7px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.system-status strong{
  display:block;

  margin-top:5px;

  color:#79e7bc;

  font-size:25px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:600;
}

.system-status small{
  color:#9b91a1;

  font-size:7px;
  font-weight:700;
}


/* ==========================================================
   DEVICE STAT
   ========================================================== */

.device-stat{
  padding:115px 0;
}

.device-stat-shell{
  position:relative;

  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:center;

  min-height:470px;

  overflow:hidden;

  padding:55px;

  border:
    1px solid rgba(255,255,255,.075);

  border-radius:35px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(142,64,227,.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 5% 100%,
      rgba(72,112,255,.08),
      transparent 33%
    ),
    rgba(8,6,13,.87);
}

.big-device-number{
  position:relative;
  z-index:2;
}

.big-device-number span{
  display:block;

  color:#857b8b;

  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.big-device-number strong{
  display:block;

  margin-top:12px;

  color:transparent;

  background:
    linear-gradient(
      125deg,
      #fff,
      #d79ee9,
      #8c70ff
    );

  -webkit-background-clip:text;
  background-clip:text;

  font-size:clamp(130px,15vw,210px);
  line-height:.72;
  letter-spacing:-.11em;
  font-weight:600;
}

.big-device-number small{
  display:block;

  margin-top:25px;

  color:#9f96a4;

  font-size:11px;
  line-height:1.6;
}

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

.device-copy h2{
  margin:0;

  font-size:
    clamp(42px,5vw,70px);

  line-height:.94;
  letter-spacing:-.06em;
  font-weight:600;
}

.device-copy p{
  max-width:580px;

  margin:20px 0 0;

  color:#99909f;

  font-size:13px;
  line-height:1.75;
}

.device-links{
  display:flex;
  flex-wrap:wrap;

  gap:8px;

  margin-top:29px;
}

.device-link{
  min-height:42px;

  display:inline-flex;
  align-items:center;

  padding:0 14px;

  border:
    1px solid rgba(255,255,255,.07);

  border-radius:13px;

  color:#a99fac;

  background:
    rgba(255,255,255,.025);

  font-size:9px;
  font-weight:800;

  transition:.2s ease;
}

.device-link:hover{
  color:#fff;

  border-color:
    rgba(203,116,255,.17);

  transform:
    translateY(-2px);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media(max-width:1000px){

  .connection-copy{
    border-right:0;

    border-bottom:
      1px solid rgba(255,255,255,.055);
  }

  .network-stage{
    min-height:600px;
  }

  .device-stat-shell{
    grid-template-columns:1fr;
    gap:25px;
  }

}


@media(max-width:650px){

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

  .network-core strong{
    font-size:125px;
  }

  .connection-room{
    padding-top:40px;
  }

  .connection-copy{
    padding:28px 20px;
  }

  .network-stage{
    min-height:480px;
  }

  .network-hud{
    inset:15px;
  }

  .static-system{
    width:82%;
  }

  .system-core{
    width:130px;
    height:130px;
  }

  .system-core div{
    font-size:25px;
  }

  .system-node{
    width:103px;
    padding:11px;
  }

  .sn-device{
    left:1%;
    top:22%;
  }

  .sn-vpn{
    right:0;
    top:40%;
  }

  .sn-web{
    left:7%;
    bottom:14%;
  }

  .device-stat{
    padding:80px 0;
  }

  .device-stat-shell{
    padding:30px 21px;
    border-radius:26px;
  }

  .big-device-number strong{
    font-size:140px;
  }

}
