:root {
  --bg: #08080b;
  --bg-soft: #0d0d12;
  --card: #121219;
  --card-2: #17171f;

  --text: #f7f7f9;
  --muted: #9696a2;
  --muted-2: #666671;

  --purple: #8c52ff;
  --purple-2: #a56cff;
  --purple-soft: rgba(140, 82, 255, .14);

  --green: #4af28d;
  --green-soft: rgba(74, 242, 141, .12);

  --red: #ff5d6c;
  --red-soft: rgba(255, 93, 108, .12);

  --border: rgba(255,255,255,.075);
  --border-strong: rgba(255,255,255,.12);

  --shadow:
    0 30px 90px
    rgba(0,0,0,.38);

  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;

  --container: 1180px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  min-height: 100vh;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(140,82,255,.16),
      transparent 33%
    ),
    var(--bg);

  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    Inter,
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}


body.no-scroll {
  overflow: hidden;
}


button,
input {
  font: inherit;
}


button {
  cursor: pointer;
}


button:disabled {
  cursor: wait;
  opacity: .65;
}


a {
  color: inherit;
}


.hidden {
  display: none !important;
}


.container {
  width:
    min(
      var(--container),
      calc(100% - 40px)
    );

  margin: 0 auto;
}


/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 20;

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

  background:
    rgba(8,8,11,.76);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


.header-inner {
  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 28px;
}


.logo,
.sidebar-logo {
  font-size: 22px;
  font-weight: 950;

  letter-spacing: -1px;

  text-decoration: none;
}


.logo span,
.sidebar-logo span {
  color: var(--green);

  margin-left: 3px;
}


.nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 30px;
}


.nav a {
  color: var(--muted);

  text-decoration: none;

  font-size: 13px;
  font-weight: 650;

  transition:
    color .2s,
    transform .2s;
}


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

  transform:
    translateY(-1px);
}


/* BUTTONS */

.button {
  min-height: 50px;

  padding:
    0 21px;

  border-radius:
    15px;

  border:
    1px solid
    transparent;

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

  color: var(--text);

  font-weight: 850;
  font-size: 13px;

  text-decoration: none;

  transition:
    transform .2s,
    border-color .2s,
    background .2s,
    box-shadow .2s;
}


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


.button-primary {
  border: 0;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--purple-2)
    );

  box-shadow:
    0 15px 38px
    rgba(140,82,255,.24);
}


.button-primary:hover {
  box-shadow:
    0 18px 45px
    rgba(140,82,255,.32);
}


.button-dark {
  border-color:
    var(--border);

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


.button-dark:hover {
  border-color:
    var(--border-strong);

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


.button.full {
  width: 100%;
}


.text-button {
  width: 100%;

  margin-top: 16px;

  padding: 8px;

  border: 0;

  background: transparent;

  color: var(--muted);

  font-size: 12px;
}


/* PUBLIC HERO */

.hero {
  position: relative;

  overflow: hidden;
}


.hero::before {
  content: "";

  position: absolute;

  width: 560px;
  height: 560px;

  right: -150px;
  top: -110px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(140,82,255,.14),
      transparent 67%
    );

  pointer-events: none;
}


.hero-grid {
  min-height:
    calc(100vh - 77px);

  display: grid;

  grid-template-columns:
    minmax(0,1.08fr)
    minmax(390px,.82fr);

  align-items: center;

  gap: 82px;

  padding:
    80px 0
    100px;
}


.eyebrow {
  color: var(--green);

  font-size: 10px;
  font-weight: 950;

  letter-spacing: 1.5px;
}


.hero h1 {
  max-width: 690px;

  margin:
    13px 0
    24px;

  font-size:
    clamp(
      58px,
      6.5vw,
      88px
    );

  line-height: .94;

  letter-spacing: -5px;
}


.hero h1 span {
  display: block;

  color: #a8a8b4;
}


.hero-description {
  max-width: 560px;

  margin: 0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.58;
}


.hero-buttons {
  display: flex;

  gap: 12px;

  margin-top: 34px;
}


.hero-points {
  margin-top: 31px;

  display: flex;
  flex-wrap: wrap;

  gap:
    12px 22px;

  color: var(--muted);

  font-size: 12px;
}


.hero-points span {
  display: flex;
  align-items: center;

  gap: 7px;
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 510px;

  display: grid;
  place-items: center;
}


.vpn-orbit {
  position: absolute;

  border-radius: 50%;

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


.orbit-one {
  width: 430px;
  height: 430px;
}


.orbit-two {
  width: 340px;
  height: 340px;

  border-color:
    rgba(140,82,255,.2);

  box-shadow:
    0 0 100px
    rgba(140,82,255,.09);
}


.power-card {
  position: relative;
  z-index: 2;

  width: 285px;
  height: 350px;

  padding: 29px;

  border:
    1px solid
    var(--border);

  border-radius: 34px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(140,82,255,.20),
      transparent 46%
    ),
    rgba(18,18,25,.89);

  box-shadow:
    0 45px 110px
    rgba(0,0,0,.55);

  backdrop-filter: blur(25px);
}


.status-dot {
  position: absolute;

  top: 25px;
  right: 25px;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background:
    var(--green);

  box-shadow:
    0 0 18px
    rgba(74,242,141,.72);
}


.power-caption {
  color: var(--muted);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1.2px;
}


.power-icon {
  width: 125px;
  height: 125px;

  margin:
    25px 0
    23px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--purple),
      #6f35ed
    );

  box-shadow:
    0 22px 65px
    rgba(140,82,255,.35);

  font-size: 63px;
  font-weight: 950;

  letter-spacing: -4px;
}


.power-title {
  font-size: 17px;
  font-weight: 850;
}


.power-server {
  margin-top: 7px;

  color: var(--muted);

  font-size: 12px;
}


/* SECTIONS */

.section {
  padding:
    105px 0;
}


.section-head {
  margin-bottom: 35px;
}


.section-head h2 {
  max-width: 660px;

  margin:
    9px 0 0;

  font-size:
    clamp(
      38px,
      4.5vw,
      55px
    );

  line-height: 1;

  letter-spacing: -2.7px;
}


.features-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 16px;
}


.feature-card {
  min-height: 270px;

  padding: 30px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-md);

  background:
    var(--card);

  display: flex;
  flex-direction: column;

  transition:
    transform .25s,
    border-color .25s;
}


.feature-card:hover {
  transform:
    translateY(-4px);

  border-color:
    var(--border-strong);
}


.accent-card {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(140,82,255,.20),
      transparent 48%
    ),
    var(--card);
}


.feature-number {
  color:
    var(--green);

  font-size: 11px;
  font-weight: 950;

  letter-spacing: 1.3px;
}


.feature-card h3 {
  margin:
    auto 0
    9px;

  font-size: 24px;

  letter-spacing: -.9px;
}


.feature-card p {
  margin: 0;

  color:
    var(--muted);

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


/* SERVER PUBLIC */

.server-public-card {
  padding: 24px;

  display: grid;

  grid-template-columns:
    64px
    1fr
    auto;

  align-items: center;

  gap: 18px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-md);

  background:
    var(--card);
}


.server-flag {
  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  border-radius: 18px;

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

  font-size: 34px;
}


.server-public-card strong {
  display: block;

  font-size: 18px;
}


.server-public-card span {
  display: block;

  margin-top: 5px;

  color:
    var(--muted);

  font-size: 12px;
}


.server-online {
  padding:
    8px 12px;

  border-radius:
    999px;

  background:
    var(--green-soft);

  color:
    var(--green);

  font-size: 10px;
  font-weight: 900;
}


/* PRICING */

.pricing-card {
  padding: 36px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 35px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(140,82,255,.19),
      transparent 42%
    ),
    var(--card);
}


.pricing-label {
  color:
    var(--green);

  font-size: 10px;
  font-weight: 950;

  letter-spacing: 1.3px;
}


.pricing-name {
  margin-top: 11px;

  font-size: 32px;
  font-weight: 900;

  letter-spacing: -1.5px;
}


.pricing-card ul {
  margin:
    26px 0
    0;

  padding: 0;

  list-style: none;

  color:
    var(--muted);

  font-size: 13px;
}


.pricing-card li {
  margin-top: 9px;
}


.pricing-card li::before {
  content: "✓";

  margin-right: 8px;

  color:
    var(--green);
}


.pricing-right {
  min-width: 220px;

  text-align: right;
}


.pricing-price {
  font-size: 54px;
  font-weight: 950;

  line-height: 1;

  letter-spacing: -3px;
}


.pricing-unit {
  margin:
    7px 0
    18px;

  color:
    var(--muted);

  font-size: 12px;
}


/* FOOTER */

footer {
  border-top:
    1px solid
    var(--border);
}


.footer-inner {
  min-height: 120px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color:
    var(--muted);

  font-size: 11px;
}


/* AUTH OVERLAY */

.auth-overlay {
  position: fixed;
  z-index: 100;

  inset: 0;

  padding: 20px;

  display: grid;
  place-items: center;

  background:
    rgba(3,3,5,.76);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);
}


.auth-box {
  position: relative;

  width:
    min(
      440px,
      100%
    );

  padding: 34px;

  border:
    1px solid
    var(--border);

  border-radius:
    28px;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(140,82,255,.15),
      transparent 42%
    ),
    #131319;

  box-shadow:
    var(--shadow);
}


.auth-close {
  position: absolute;

  right: 18px;
  top: 18px;

  width: 36px;
  height: 36px;

  border: 0;

  border-radius:
    12px;

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

  color:
    var(--muted);

  font-size: 23px;
}


.auth-box h2 {
  margin:
    19px 0
    8px;

  font-size: 31px;

  letter-spacing: -1.2px;
}


.auth-box p {
  margin:
    0 0
    25px;

  color:
    var(--muted);

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


.auth-box label {
  display: block;

  color:
    var(--muted);

  font-size: 11px;
  font-weight: 750;
}


.auth-box input {
  width: 100%;
  height: 53px;

  margin:
    8px 0
    14px;

  padding:
    0 15px;

  border:
    1px solid
    var(--border);

  border-radius:
    15px;

  outline: 0;

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

  color:
    var(--text);

  transition:
    border-color .2s,
    background .2s;
}


.auth-box input:focus {
  border-color:
    rgba(140,82,255,.7);

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


.code-input {
  height: 64px !important;

  text-align: center;

  font-size: 28px !important;
  font-weight: 900;

  letter-spacing: 8px;
}


.auth-message {
  min-height: 19px;

  margin-top: 14px;

  color:
    #ff858f;

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


/* DASHBOARD */

.dashboard {
  min-height: 100vh;

  background:
    var(--bg);
}


.sidebar {
  position: fixed;

  left: 0;
  top: 0;
  bottom: 0;

  width: 245px;

  padding:
    31px 22px;

  border-right:
    1px solid
    var(--border);

  background:
    #0d0d12;

  display: flex;
  flex-direction: column;

  z-index: 30;
}


.dashboard-nav {
  margin-top: 44px;

  display: flex;
  flex-direction: column;

  gap: 6px;
}


.nav-item {
  width: 100%;

  min-height: 47px;

  padding:
    0 15px;

  border: 0;

  border-radius:
    14px;

  background:
    transparent;

  color:
    var(--muted);

  text-align: left;

  font-size: 13px;
  font-weight: 730;

  transition:
    background .2s,
    color .2s;
}


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

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


.nav-item.active {
  color:
    var(--text);

  background:
    var(--purple-soft);
}


.logout-button {
  min-height: 44px;

  margin-top: auto;

  border:
    1px solid
    var(--border);

  border-radius:
    13px;

  background:
    transparent;

  color:
    var(--muted);

  font-weight: 700;
}


.dashboard-main {
  min-height: 100vh;

  margin-left:
    245px;

  padding:
    58px
    55px
    75px;
}


.mobile-dashboard-header,
.mobile-bottom-nav {
  display: none;
}


.dashboard-page {
  display: none;

  max-width:
    1120px;

  margin: 0 auto;
}


.dashboard-page.active {
  display: block;
}


.dashboard-heading {
  margin-bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.dashboard-heading h1 {
  margin:
    8px 0
    0;

  font-size: 42px;

  letter-spacing: -2px;
}


.dashboard-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 16px;
}


.dashboard-card {
  padding: 27px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-md);

  background:
    var(--card);
}


.subscription-status-card {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(74,242,141,.12),
      transparent 48%
    ),
    var(--card);
}


.server-highlight {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(140,82,255,.16),
      transparent 48%
    ),
    var(--card);
}


.card-label {
  color:
    var(--muted-2);

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

  letter-spacing: 1.25px;
}


.large-status {
  margin-top: 17px;

  font-size: 30px;
  font-weight: 900;

  letter-spacing: -1.4px;
}


.card-muted {
  margin-top: 7px;

  color:
    var(--muted);

  font-size: 12px;
}


.server-dashboard-row {
  margin-top: 22px;

  display: flex;
  align-items: center;

  gap: 13px;
}


.big-flag {
  font-size: 38px;
}


.server-dashboard-row strong,
.server-list-card strong {
  display: block;

  font-size: 16px;
}


.server-dashboard-row span,
.server-list-card span,
.device-card span {
  display: block;

  margin-top: 4px;

  color:
    var(--muted);

  font-size: 11px;
}


/* LISTS */

.list-stack {
  display: flex;
  flex-direction: column;

  gap: 12px;
}


.device-card,
.server-list-card {
  display: flex;
  align-items: center;

  gap: 16px;
}


.device-card {
  justify-content:
    space-between;
}


.device-card strong {
  display: block;

  font-size: 15px;
}


.server-list-card {
  display: grid;

  grid-template-columns:
    55px
    1fr
    auto;
}


.state-on,
.state-off {
  padding:
    7px 10px;

  border-radius:
    999px;

  font-size: 10px;
  font-weight: 850;

  white-space: nowrap;
}


.state-on {
  color:
    var(--green);

  background:
    var(--green-soft);
}


.state-off {
  color:
    var(--red);

  background:
    var(--red-soft);
}


.empty-card {
  color:
    var(--muted);

  font-size: 13px;
}


.profile-card {
  max-width:
    680px;
}


.profile-row {
  min-height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  border-bottom:
    1px solid
    var(--border);
}


.profile-row:last-child {
  border-bottom: 0;
}


.profile-row span {
  color:
    var(--muted);

  font-size: 12px;
}


.profile-row strong {
  font-size: 13px;
}


/* TABLET */

@media (
  max-width: 980px
) {

  .nav {
    display: none;
  }


  .header-inner
  .button-dark {
    margin-left: auto;
  }


  .hero-grid {
    grid-template-columns:
      1fr;

    gap: 30px;

    padding:
      75px 0
      90px;
  }


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


  .hero h1 {
    font-size:
      clamp(
        60px,
        10vw,
        80px
      );
  }


  .hero-visual {
    min-height:
      430px;
  }


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


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


  .dashboard-grid
  .dashboard-card:last-child {
    grid-column:
      1 / -1;
  }

}


/* MOBILE DASHBOARD */

@media (
  max-width: 760px
) {

  .sidebar {
    display: none;
  }


  .dashboard-main {
    margin-left: 0;

    padding:
      0 15px
      100px;
  }


  .mobile-dashboard-header {
    min-height: 69px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
      1px solid
      var(--border);
  }


  .mini-button {
    padding:
      8px 11px;

    border:
      1px solid
      var(--border);

    border-radius:
      11px;

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

    color:
      var(--muted);

    font-size: 11px;
  }


  .dashboard-page {
    padding-top: 30px;
  }


  .dashboard-heading {
    margin-bottom: 20px;
  }


  .dashboard-heading h1 {
    font-size: 33px;
  }


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


  .dashboard-grid
  .dashboard-card:last-child {
    grid-column: auto;
  }


  .mobile-bottom-nav {
    position: fixed;

    left: 10px;
    right: 10px;
    bottom:
      max(
        10px,
        env(safe-area-inset-bottom)
      );

    z-index: 80;

    min-height: 62px;

    padding: 7px;

    display: grid;

    grid-template-columns:
      repeat(4,1fr);

    gap: 5px;

    border:
      1px solid
      var(--border);

    border-radius:
      20px;

    background:
      rgba(18,18,25,.92);

    backdrop-filter:
      blur(20px);

    -webkit-backdrop-filter:
      blur(20px);

    box-shadow:
      0 20px 60px
      rgba(0,0,0,.4);
  }


  .mobile-nav-item {
    border: 0;

    border-radius:
      14px;

    background:
      transparent;

    color:
      var(--muted);

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


  .mobile-nav-item.active {
    color:
      var(--text);

    background:
      var(--purple-soft);
  }

}


/* MOBILE PUBLIC */

@media (
  max-width: 620px
) {

  .container {
    width:
      calc(100% - 28px);
  }


  .header-inner {
    min-height:
      68px;
  }


  .logo {
    font-size: 20px;
  }


  .header-inner
  .button {
    min-height: 40px;

    padding:
      0 14px;

    border-radius:
      12px;

    font-size: 11px;
  }


  .hero-grid {
    min-height: auto;

    padding:
      62px 0
      70px;
  }


  .hero h1 {
    margin-top: 10px;

    font-size:
      clamp(
        48px,
        14vw,
        62px
      );

    letter-spacing:
      -3px;
  }


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


  .hero-buttons {
    flex-direction: column;
  }


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


  .hero-points {
    flex-direction:
      column;

    gap: 9px;
  }


  .hero-visual {
    min-height:
      380px;
  }


  .orbit-one {
    width: 335px;
    height: 335px;
  }


  .orbit-two {
    width: 270px;
    height: 270px;
  }


  .power-card {
    width: 235px;
    height: 305px;

    border-radius:
      28px;
  }


  .power-icon {
    width: 108px;
    height: 108px;

    font-size: 55px;
  }


  .section {
    padding:
      75px 0;
  }


  .section-head h2 {
    font-size: 36px;

    letter-spacing:
      -2px;
  }


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


  .feature-card {
    min-height: 220px;
  }


  .server-public-card {
    grid-template-columns:
      52px
      1fr;

    padding: 17px;
  }


  .server-flag {
    width: 50px;
    height: 50px;

    border-radius:
      15px;

    font-size: 28px;
  }


  .server-online {
    grid-column: 2;

    justify-self: start;
  }


  .pricing-card {
    padding: 25px;

    flex-direction:
      column;

    align-items:
      stretch;
  }


  .pricing-name {
    font-size: 27px;
  }


  .pricing-right {
    min-width: 0;

    text-align: left;
  }


  .pricing-price {
    font-size: 47px;
  }


  .pricing-right
  .button {
    width: 100%;
  }


  .footer-inner {
    min-height:
      110px;

    flex-direction:
      column;

    align-items:
      flex-start;

    justify-content:
      center;
  }


  .auth-overlay {
    align-items:
      end;

    padding:
      10px;
  }


  .auth-box {
    width: 100%;

    padding:
      27px 20px
      calc(
        25px +
        env(safe-area-inset-bottom)
      );

    border-radius:
      27px;
  }


  .auth-box h2 {
    font-size: 28px;
  }


  .server-list-card {
    grid-template-columns:
      46px
      1fr;
  }


  .server-list-card
  .state-on,
  .server-list-card
  .state-off {
    grid-column: 2;

    justify-self: start;
  }


  .profile-row {
    flex-direction: column;

    align-items:
      flex-start;

    justify-content:
      center;

    gap: 5px;

    padding:
      12px 0;
  }

}


/* VERY SMALL */

@media (
  max-width: 380px
) {

  .hero h1 {
    font-size: 43px;
  }


  .power-card {
    width: 215px;
  }


  .orbit-one {
    width: 300px;
    height: 300px;
  }


  .orbit-two {
    width: 245px;
    height: 245px;
  }

}
