:root {

  --bg: #08070d;

  --bg-secondary: #0d0a13;

  --surface: #100d18;

  --card: #15111f;

  --card-hover: #1b1627;

  --primary: #7c3aed;

  --primary-dark: #6d28d9;

  --primary-light: #a855f7;

  --primary-soft: #c084fc;

  --text: #f5f3ff;

  --text-secondary: #d8d2e4;

  --text-muted: #a8a3b5;

  --text-dark: #777080;

  --border: #292332;

  --border-light: rgba(255,255,255,.07);

  --success: #22c55e;

  --container: 1180px;

  --radius: 20px;

  --radius-small: 12px;

  --transition: .25s ease;

}


/* =========================================
   RESET
========================================= */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}


html {

  scroll-behavior: smooth;

}


body {

  background: var(--bg);

  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  overflow-x: hidden;

}


body::selection {

  background: var(--primary);

  color: white;

}


img {

  max-width: 100%;

  display: block;

}


a {

  color: inherit;

  text-decoration: none;

}


button,
input,
textarea,
select {

  font: inherit;

}


button {

  cursor: pointer;

}


/* =========================================
   GLOBAL
========================================= */

.container {

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

  margin: 0 auto;

}


.section {

  padding: 125px 0;

  position: relative;

}


.section-dark {

  background:
    linear-gradient(
      180deg,
      rgba(124,58,237,.035),
      rgba(124,58,237,.012)
    );

  border-top:
    1px solid rgba(255,255,255,.035);

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

}


/* =========================================
   BACKGROUND
========================================= */

.background-grid {

  position: fixed;

  inset: 0;

  z-index: -10;

  pointer-events: none;

  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: 70px 70px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 85%
    );

}


.background-glow {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(100px);

  z-index: -5;

}


.glow-one {

  width: 500px;

  height: 500px;

  background:
    rgba(124,58,237,.12);

  top: 80px;

  right: -230px;

}


.glow-two {

  width: 400px;

  height: 400px;

  background:
    rgba(168,85,247,.08);

  top: 900px;

  left: -250px;

}


/* =========================================
   HEADER
========================================= */

.header {

  position: sticky;

  top: 0;

  z-index: 100;

  background:
    rgba(8,7,13,.75);

  backdrop-filter:
    blur(20px);

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

}


.header-container {

  height: 78px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


/* =========================================
   VEXORAHOST LOGO
========================================= */

/* =========================================
   LOGO
========================================= */

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: 175px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .logo-image {

    width: 145px;

    max-height: 42px;

  }

}

/* NAV */

.navigation {

  display: flex;

  align-items: center;

  gap: 32px;

  margin-left: auto;

  margin-right: 35px;

}


.navigation a {

  color: var(--text-muted);

  font-size: 13px;

  font-weight: 600;

  transition:
    color var(--transition);

}


.navigation a:hover {

  color: white;

}


/* LOGIN */

.header-login {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 15px;

  border:
    1px solid
    rgba(168,85,247,.35);

  border-radius: 11px;

  background:
    rgba(124,58,237,.07);

  font-size: 12px;

  font-weight: 750;

  transition:
    all var(--transition);

}


.header-login span {

  color: var(--primary-soft);

}


.header-login:hover {

  background:
    rgba(124,58,237,.14);

  border-color:
    rgba(168,85,247,.6);

}


/* MOBILE MENU */

.mobile-menu-button {

  display: none;

  width: 42px;

  height: 42px;

  border: 0;

  background: transparent;

}


.mobile-menu-button span {

  display: block;

  width: 23px;

  height: 2px;

  margin: 5px auto;

  background: white;

  border-radius: 5px;

}


/* MOBILE NAV */

.mobile-navigation {

  display: none;

}


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

.hero {

  padding:
    105px 0 90px;

  position: relative;

}


.hero-container {

  min-height: 610px;

  display: grid;

  grid-template-columns:
    1.02fr
    .98fr;

  align-items: center;

  gap: 80px;

}


.hero-content {

  max-width: 680px;

}


/* BADGE */

.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding:
    8px 12px;

  border:
    1px solid
    rgba(168,85,247,.2);

  background:
    rgba(124,58,237,.06);

  border-radius: 999px;

  color: #c7b8e5;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .13em;

}


.status-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background:
    var(--primary-light);

  box-shadow:
    0 0 14px
    var(--primary-light);

}


/* HERO TITLE */

.hero h1 {

  margin-top: 24px;

  font-size:
    clamp(
      52px,
      7vw,
      86px
    );

  line-height: .98;

  letter-spacing: -.065em;

  font-weight: 850;

}


.hero h1 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #ffffff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


/* HERO DESCRIPTION */

.hero-description {

  max-width: 650px;

  margin:
    28px 0 32px;

  color: var(--text-muted);

  font-size: 18px;

  line-height: 1.7;

}


/* BUTTONS */

.hero-buttons {

  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

}


.button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  min-height: 47px;

  padding:
    0 19px;

  border-radius: 12px;

  font-size: 13px;

  font-weight: 800;

  transition:
    all var(--transition);

}


.button-primary {

  color: white;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );

  box-shadow:
    0 15px 35px
    rgba(124,58,237,.22);

}


.button-primary:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 18px 45px
    rgba(124,58,237,.36);

}


.button-secondary {

  color: white;

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

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

}


.button-secondary:hover {

  border-color:
    rgba(168,85,247,.5);

  background:
    rgba(124,58,237,.08);

}


.button-outline {

  width: 100%;

  color: white;

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

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

}


.button-outline:hover {

  border-color:
    rgba(168,85,247,.55);

  background:
    rgba(124,58,237,.08);

}


.button-full {

  width: 100%;

}


/* HERO FEATURES */

.hero-features {

  display: flex;

  align-items: center;

  gap: 17px;

  flex-wrap: wrap;

  margin-top: 24px;

}


.hero-features span {

  color:
    #817a8c;

  font-size: 11px;

  white-space: nowrap;

}


/* =========================================
   SERVER VISUAL
========================================= */

.hero-visual {

  position: relative;

  min-height: 500px;

  display: grid;

  place-items: center;

}


.server-glow {

  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background:
    rgba(124,58,237,.13);

  filter:
    blur(90px);

}


.server-perspective {

  position: relative;

  width: min(100%, 510px);

  transform:
    perspective(1400px)
    rotateY(-4deg)
    rotateX(1deg);

  transform-style: preserve-3d;

}


.server-window {

  width: 100%;

  position: relative;

  z-index: 2;

  padding: 28px;

  border:
    1px solid
    rgba(168,85,247,.28);

  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      rgba(27,22,39,.97),
      rgba(12,10,18,.97)
    );

  box-shadow:

    0 35px 100px
    rgba(0,0,0,.5),

    0 0 90px
    rgba(124,58,237,.09);

}


.server-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

}


.server-label {

  display: block;

  color:
    #746d80;

  font-size: 9px;

  font-weight: 850;

  letter-spacing: .16em;

}


.server-header h3 {

  margin-top: 6px;

  font-size: 25px;

  letter-spacing: -.04em;

}


.server-status {

  padding:
    7px 9px;

  border-radius: 8px;

  background:
    rgba(34,197,94,.07);

  color:
    #b8f2c9;

  font-size: 9px;

  font-weight: 850;

}


.server-status span {

  display: inline-block;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background:
    var(--success);

  box-shadow:
    0 0 10px
    var(--success);

  margin-right: 5px;

}


.server-ip {

  display: flex;

  gap: 10px;

  align-items: center;

  margin:
    25px 0 17px;

  padding:
    12px 13px;

  border:
    1px solid
    #241f2d;

  border-radius: 10px;

  background:
    #0b0910;

  color:
    #8b8395;

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 11px;

}


.server-ip span {

  color:
    #5e5867;

  font-family:
    inherit;

}


/* METRICS */

.server-metrics {

  display: grid;

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

  gap: 9px;

}


.metric {

  padding: 15px;

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

  border-radius: 13px;

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

}


.metric span {

  display: block;

  color:
    #6f6878;

  font-size: 9px;

  font-weight: 700;

}


.metric strong {

  display: block;

  margin: 5px 0 2px;

  font-size: 18px;

}


.metric small {

  color:
    #625c6b;

  font-size: 9px;

}


/* RESOURCE */

.server-resource {

  margin-top: 21px;

}


.resource-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  color:
    #716a7a;

  font-size: 10px;

}


.resource-header strong {

  color:
    #d4cce0;

}


.resource-bar {

  height: 7px;

  margin-top: 8px;

  overflow: hidden;

  border-radius: 999px;

  background:
    #24202d;

}


.resource-bar span {

  display: block;

  width: 23%;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--primary-light)
    );

  box-shadow:
    0 0 15px
    rgba(168,85,247,.45);

}


/* SERVER FOOTER */

.server-footer {

  display: flex;

  justify-content: space-between;

  margin-top: 18px;

  color:
    #6e6778;

  font-size: 9px;

}


/* FLOATING CARDS */

.floating-card {

  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    11px 14px;

  border:
    1px solid
    rgba(168,85,247,.25);

  border-radius: 12px;

  background:
    rgba(18,14,26,.9);

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

  backdrop-filter:
    blur(12px);

}


.floating-card-one {

  top: 10px;

  right: -18px;

}


.floating-card-two {

  bottom: 42px;

  left: -22px;

}


.floating-icon {

  width: 32px;

  height: 32px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border-radius: 9px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.18),
      rgba(168,85,247,.07)
    );

  border:
    1px solid
    rgba(168,85,247,.18);

  color:
    #c084fc;

}


.floating-icon svg {

  width: 16px;

  height: 16px;

}


.floating-card strong {

  display: block;

  color: #f2edf8;

  font-size: 10px;

}


.floating-card small {

  display: block;

  margin-top: 2px;

  color: #716a7c;

  font-size: 9px;

}


.server-online-dot {

  display: inline-block;

  width: 5px;

  height: 5px;

  margin-right: 5px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 10px
    rgba(34,197,94,.8);

}

/* =========================================
   TRUST BAR
========================================= */

.trust-bar {

  border-top:
    1px solid
    rgba(255,255,255,.05);

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

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

}


.trust-container {

  display: grid;

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

}


.trust-item {

  padding:
    25px 20px;

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

}


.trust-item:last-child {

  border-right: 0;

}


.trust-item strong {

  display: block;

  font-size: 17px;

}


.trust-item span {

  display: block;

  margin-top: 2px;

  color:
    #716b79;

  font-size: 10px;

}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {

  max-width: 720px;

  margin-bottom: 52px;

}


.section-label {

  display: inline-block;

  margin-bottom: 17px;

  color:
    #bba6db;

  font-size: 10px;

  font-weight: 850;

  letter-spacing: .17em;

}


.section-heading h2 {

  font-size:
    clamp(
      38px,
      5vw,
      59px
    );

  line-height: 1.02;

  letter-spacing: -.055em;

}


.section-heading h2 span {

  background:
    linear-gradient(
      105deg,
      #fff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.section-heading p {

  max-width: 650px;

  margin-top: 19px;

  color:
    var(--text-muted);

  font-size: 15px;

}


/* =========================================
   PLANS
========================================= */

.plans-grid {

  display: grid;

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

  gap: 18px;

}


.plan-card {

  position: relative;

  min-height: 585px;

  display: flex;

  flex-direction: column;

  padding: 28px;

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

  border-radius:
    var(--radius);

  background:
    linear-gradient(
      180deg,
      rgba(21,17,31,.97),
      rgba(13,11,20,.97)
    );

  box-shadow:
    0 20px 70px
    rgba(0,0,0,.17);

}


.plan-featured {

  border-color:
    rgba(168,85,247,.52);

  box-shadow:
    0 25px 80px
    rgba(124,58,237,.12);

}


.popular-badge {

  position: absolute;

  top: 17px;

  right: 17px;

  padding:
    6px 9px;

  border:
    1px solid
    rgba(168,85,247,.35);

  border-radius: 7px;

  background:
    rgba(124,58,237,.12);

  color:
    #d9c8ee;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .08em;

}


.plan-top {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

}


.plan-category {

  color:
    #756e7f;

  font-size: 9px;

  font-weight: 850;

  letter-spacing: .15em;

}


.plan-top h3 {

  margin-top: 7px;

  font-size: 25px;

  letter-spacing: -.04em;

}


.plan-number {

  width: 34px;

  height: 34px;

  display: grid;

  place-items: center;

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

  border-radius: 10px;

  color:
    #736c7d;

  font-size: 9px;

  font-weight: 850;

}


.plan-price {

  display: flex;

  align-items: flex-end;

  gap: 6px;

  margin-top: 31px;

}


.plan-price strong {

  font-size: 43px;

  line-height: 1;

  letter-spacing: -.065em;

}


.plan-price span {

  margin-bottom: 5px;

  color:
    #716a7a;

  font-size: 12px;

}


.plan-description {

  min-height: 62px;

  margin:
    14px 0 18px;

  color:
    #817a8b;

  font-size: 12px;

}


.plan-divider {

  height: 1px;

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

}


.plan-features {

  padding: 0;

  margin: 0 0 24px;

  list-style: none;

}


.plan-features li {

  padding:
    10px 0;

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

  color:
    #8d8696;

  font-size: 11px;

}


.plan-features li::before {

  content: "✓";

  margin-right: 9px;

  color:
    var(--primary-soft);

  font-weight: 900;

}


.plan-features strong {

  color:
    #eeeaf5;

}


.plan-card .button {

  margin-top: auto;

}


.pricing-disclaimer {

  margin-top: 17px;

  color:
    #625c69;

  font-size: 10px;

}


/* =========================================
   FEATURES
========================================= */

.features-grid {

  display: grid;

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

  gap: 1px;

  overflow: hidden;

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

  border-radius:
    var(--radius);

  background:
    var(--border);

}


.feature-card {

  min-height: 220px;

  padding: 30px;

  background:
    rgba(14,11,21,.92);

}


.feature-icon {

  width: 43px;

  height: 43px;

  display: grid;

  place-items: center;

  margin-bottom: 20px;

  border:
    1px solid
    rgba(168,85,247,.2);

  border-radius: 12px;

  background:
    rgba(124,58,237,.1);

  color:
    #cdb8ea;

}


.feature-card h3 {

  margin-bottom: 9px;

  font-size: 18px;

  letter-spacing: -.025em;

}


.feature-card p {

  color:
    #797281;

  font-size: 12px;

}


/* =========================================
   SOLUTIONS
========================================= */

.solutions-container {

  display: grid;

  grid-template-columns:
    .78fr
    1.22fr;

  gap: 85px;

  align-items: start;

}


.solutions-intro {

  position: sticky;

  top: 130px;

}


.solutions-intro h2 {

  font-size:
    clamp(
      38px,
      5vw,
      58px
    );

  line-height: 1.02;

  letter-spacing: -.055em;

}


.solutions-intro h2 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #fff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.solutions-intro p {

  max-width: 440px;

  margin:
    22px 0 23px;

  color:
    var(--text-muted);

  font-size: 14px;

}


.text-button {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color:
    #d5c3ea;

  font-size: 12px;

  font-weight: 800;

}


.text-button:hover {

  color: white;

}


.solutions-grid {

  display: grid;

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

  gap: 14px;

}


.solution-card {

  min-height: 185px;

  padding: 25px;

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

  border-radius: 17px;

  background:
    rgba(16,13,24,.8);

  transition:
    all var(--transition);

}


.solution-card:hover {

  transform:
    translateY(-3px);

  border-color:
    rgba(168,85,247,.3);

  background:
    var(--card-hover);

}


.solution-number {

  color:
    #6d6676;

  font-size: 9px;

  font-weight: 900;

}


.solution-card h3 {

  margin:
    23px 0 8px;

  font-size: 18px;

}


.solution-card p {

  color:
    #77707f;

  font-size: 11px;

}


/* =========================================
   INFRASTRUCTURE
========================================= */

.infrastructure-section {

  padding:
    10px 0 120px;

}


.infrastructure-card {

  position: relative;

  min-height: 550px;

  display: grid;

  grid-template-columns:
    .9fr
    1.1fr;

  align-items: center;

  overflow: hidden;

  padding:
    65px;

  border:
    1px solid
    rgba(168,85,247,.23);

  border-radius:
    27px;

  background:

    radial-gradient(
      circle at 80% 40%,
      rgba(124,58,237,.14),
      transparent 38%
    ),

    linear-gradient(
      135deg,
      #161120,
      #0d0a12
    );

}


.infrastructure-content {

  position: relative;

  z-index: 2;

}


.infrastructure-content h2 {

  max-width: 530px;

  font-size:
    clamp(
      40px,
      5vw,
      60px
    );

  line-height: 1;

  letter-spacing: -.055em;

}


.infrastructure-content h2 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      white,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.infrastructure-content > p {

  max-width: 480px;

  margin:
    23px 0 28px;

  color:
    var(--text-muted);

  font-size: 14px;

}


.infrastructure-points {

  display: flex;

  flex-direction: column;

  gap: 16px;

}


.infrastructure-points > div {

  display: flex;

  gap: 12px;

  align-items: flex-start;

}


.infrastructure-points > div > span {

  color:
    var(--primary-soft);

}


.infrastructure-points strong {

  display: block;

  font-size: 12px;

}


.infrastructure-points small {

  display: block;

  margin-top: 2px;

  color:
    #716a79;

  font-size: 10px;

}


/* =========================================
   ORBITAL INFRASTRUCTURE
========================================= */

.infrastructure-visual {

  position: relative;

  min-height: 470px;

  display: grid;

  place-items: center;

}


.orbital-system {

  position: relative;

  width: 470px;

  height: 470px;

}


/* =========================================
   ORBITS
========================================= */

.orbit {

  position: absolute;

  top: 50%;

  left: 50%;

  border:
    1px solid
    rgba(168,85,247,.12);

  border-radius: 50%;

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

}


.orbit-one {

  width: 210px;

  height: 210px;

}


.orbit-two {

  width: 330px;

  height: 330px;

  border-color:
    rgba(168,85,247,.09);

}


.orbit-three {

  width: 450px;

  height: 450px;

  border-color:
    rgba(168,85,247,.06);

}


/* =========================================
   CENTER
========================================= */

.vexora-core {

  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 5;

  width: 125px;

  height: 125px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

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

  border:
    1px solid
    rgba(168,85,247,.45);

  border-radius: 50%;

  background:

    radial-gradient(
      circle at 35% 30%,
      rgba(168,85,247,.2),
      rgba(12,9,18,.98) 68%
    );

  box-shadow:

    0 0 0 8px
    rgba(124,58,237,.025),

    0 0 70px
    rgba(124,58,237,.18),

    inset 0 0 35px
    rgba(124,58,237,.08);

}


.core-logo {

  width: 38px;

  height: 38px;

  display: grid;

  place-items: center;

  margin-bottom: 8px;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-light)
    );

  color: white;

  font-size: 17px;

  font-weight: 900;

  box-shadow:
    0 8px 25px
    rgba(124,58,237,.35);

}


.vexora-core span {

  color:
    #d7c8e6;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .16em;

}


.vexora-core small {

  margin-top: 1px;

  color:
    #756c80;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .2em;

}


/* =========================================
   SERVICE NODES
========================================= */

.service-node {

  position: absolute;

  z-index: 6;

  width: 92px;

  height: 76px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 7px;

  border:
    1px solid
    rgba(168,85,247,.23);

  border-radius: 16px;

  background:
    rgba(14,11,21,.88);

  box-shadow:
    0 15px 45px
    rgba(0,0,0,.25);

  backdrop-filter:
    blur(12px);

  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease;

}


.service-node:hover {

  transform:
    translateY(-4px);

  border-color:
    rgba(168,85,247,.55);

  background:
    rgba(24,18,35,.96);

}


.service-icon {

  width: 30px;

  height: 30px;

  display: grid;

  place-items: center;

  border:
    1px solid
    rgba(168,85,247,.18);

  border-radius: 9px;

  background:
    rgba(124,58,237,.1);

  color:
    #c084fc;

}


.service-icon svg {

  width: 16px;

  height: 16px;

}


.service-node > span {

  color:
    #aaa0b7;

  font-size: 7px;

  font-weight: 900;

  letter-spacing: .13em;

}


/* =========================================
   NODE POSITIONS
========================================= */

.service-vps {

  top: 26px;

  left: 50%;

  transform:
    translateX(-50%);

}


.service-cloud {

  top: 105px;

  right: 13px;

}


.service-api {

  bottom: 70px;

  right: 34px;

}


.service-hosting {

  bottom: 25px;

  left: 50%;

  transform:
    translateX(-50%);

}


.service-email {

  bottom: 70px;

  left: 34px;

}


.service-database {

  top: 105px;

  left: 13px;

}


/* =========================================
   ORBITAL DOTS
========================================= */

.orbital-dot {

  position: absolute;

  width: 5px;

  height: 5px;

  border-radius: 50%;

  background:
    #a855f7;

  box-shadow:
    0 0 14px
    rgba(168,85,247,.9);

}


.dot-a {

  top: 53px;

  left: 145px;

}


.dot-b {

  top: 205px;

  right: 10px;

}


.dot-c {

  bottom: 54px;

  right: 150px;

}


.dot-d {

  bottom: 198px;

  left: 8px;

}


/* =========================================
   CONNECTION GLOW
========================================= */

.orbital-system::after {

  content: "";

  position: absolute;

  inset: 80px;

  z-index: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(124,58,237,.08),
      transparent 68%
    );

  filter:
    blur(18px);

  pointer-events: none;

}




/* =========================================
   STEPS
========================================= */

.steps-grid {

  display: grid;

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

  gap: 16px;

}


.step-card {

  display: flex;

  gap: 20px;

  min-height: 180px;

  padding: 28px;

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

  border-radius: 18px;

  background:
    rgba(16,13,24,.8);

}


.step-number {

  color:
    var(--primary-soft);

  font-size: 11px;

  font-weight: 900;

}


.step-card h3 {

  margin-bottom: 10px;

  font-size: 18px;

}


.step-card p {

  color:
    #77707f;

  font-size: 12px;

}


/* =========================================
   FAQ
========================================= */

.faq-container {

  display: grid;

  grid-template-columns:
    .72fr
    1.28fr;

  gap: 90px;

}


.faq-intro h2 {

  font-size:
    clamp(
      40px,
      5vw,
      60px
    );

  line-height: 1;

  letter-spacing: -.055em;

}


.faq-intro h2 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #fff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.faq-intro p {

  max-width: 390px;

  margin-top: 20px;

  color:
    var(--text-muted);

  font-size: 14px;

}


.faq-list {

  display: flex;

  flex-direction: column;

  gap: 10px;

}


.faq-item {

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

  border-radius: 14px;

  background:
    rgba(16,13,24,.82);

}


.faq-item summary {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding:
    18px;

  cursor: pointer;

  list-style: none;

  font-size: 13px;

  font-weight: 750;

}


.faq-item summary::-webkit-details-marker {

  display: none;

}


.faq-item summary span {

  color:
    var(--primary-soft);

  font-size: 18px;

  transition:
    transform var(--transition);

}


.faq-item[open]
summary span {

  transform:
    rotate(45deg);

}


.faq-item p {

  padding:
    0 18px 19px;

  color:
    #7d7685;

  font-size: 12px;

}


/* =========================================
   CTA
========================================= */

.cta-section {

  padding:
    20px 0 120px;

}


.cta-card {

  position: relative;

  min-height: 280px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  overflow: hidden;

  padding:
    50px;

  border:
    1px solid
    rgba(168,85,247,.3);

  border-radius:
    27px;

  background:

    radial-gradient(
      circle at 80% 25%,
      rgba(124,58,237,.2),
      transparent 45%
    ),

    linear-gradient(
      135deg,
      #171122,
      #0e0b15
    );

}


.cta-glow {

  position: absolute;

  width: 300px;

  height: 300px;

  top: -170px;

  right: 50px;

  border-radius: 50%;

  background:
    rgba(168,85,247,.14);

  filter:
    blur(80px);

}


.cta-content {

  position: relative;

  z-index: 2;

}


.cta-content h2 {

  max-width: 700px;

  font-size:
    clamp(
      32px,
      4vw,
      52px
    );

  line-height: 1;

  letter-spacing: -.055em;

}


.cta-content h2 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #fff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.cta-content p {

  margin-top: 14px;

  color:
    #888190;

  font-size: 13px;

}


/* =========================================
   FOOTER
========================================= */

.footer {

  border-top:
    1px solid
    rgba(255,255,255,.05);

  background:
    #07060b;

}


.footer-main {

  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

  gap: 60px;

  padding:
    65px 0 55px;

}


.footer-brand p {

  max-width: 310px;

  margin-top: 16px;

  color:
    #68616f;

  font-size: 11px;

}


.footer-column {

  display: flex;

  flex-direction: column;

  gap: 9px;

}


.footer-column h4 {

  margin-bottom: 8px;

  color:
    #c5bfce;

  font-size: 11px;

}


.footer-column a {

  color:
    #68616f;

  font-size: 11px;

  transition:
    color var(--transition);

}


.footer-column a:hover {

  color: white;

}


.footer-bottom {

  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding:
    18px 0;

  border-top:
    1px solid
    rgba(255,255,255,.05);

  color:
    #504b57;

  font-size: 9px;

}


.footer-bottom div {

  display: flex;

  gap: 20px;

}


.footer-bottom a {

  color:
    #504b57;

}


/* =========================================
   ANIMATIONS
========================================= */

.reveal {

  opacity: 0;

  transform:
    translateY(22px);

  transition:
    opacity .7s ease,
    transform .7s ease;

}


.reveal.visible {

  opacity: 1;

  transform:
    translateY(0);

}


/* =========================================
   TABLET
========================================= */

@media(max-width: 1000px) {

  .hero-container {

    grid-template-columns: 1fr;

    gap: 40px;

  }


  .hero-content {

    max-width: 750px;

  }


  .hero-visual {

    min-height: 430px;

  }


  .plans-grid {

    grid-template-columns:
      1fr;

  }


  .plan-card {

    min-height: auto;

  }


  .features-grid {

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

  }


  .solutions-container {

    grid-template-columns:
      1fr;

    gap: 50px;

  }


  .solutions-intro {

    position: static;

  }


  .infrastructure-card {

    grid-template-columns:
      1fr;

    gap: 30px;

    padding: 50px;

  }


  .infrastructure-visual {

    min-height: 350px;

  }


  .steps-grid {

    grid-template-columns:
      1fr;

  }


  .faq-container {

    grid-template-columns:
      1fr;

    gap: 45px;

  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 760px) {

  .container {

    width:
      min(
        calc(100% - 28px),
        var(--container)
      );

  }


  .header-container {

    height: 70px;

  }


  .navigation,
  .header-login {

    display: none;

  }


  .mobile-menu-button {

    display: block;

  }


  .mobile-navigation {

    position: absolute;

    top: 70px;

    left: 14px;

    right: 14px;

    display: none;

    flex-direction: column;

    padding: 10px;

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

    border-radius: 16px;

    background:
      rgba(14,11,21,.98);

    box-shadow:
      0 25px 70px
      rgba(0,0,0,.5);

  }


  .mobile-navigation.open {

    display: flex;

  }


  .mobile-navigation a {

    padding: 12px;

    color:
      var(--text-muted);

    font-size: 13px;

  }


  .mobile-navigation .mobile-login {

    margin-top: 5px;

    border-radius: 10px;

    background:
      rgba(124,58,237,.1);

    color: white;

  }


  .hero {

    padding:
      75px 0 70px;

  }


  .hero-container {

    min-height: auto;

  }


  .hero h1 {

    font-size:
      clamp(
        46px,
        14vw,
        65px
      );

  }


  .hero-description {

    font-size: 16px;

  }


  .hero-buttons {

    flex-direction: column;

    align-items: stretch;

  }


  .hero-buttons .button {

    width: 100%;

  }


  .hero-features {

    gap: 10px;

  }


  .hero-visual {

    min-height: 390px;

  }


  .server-window {

    transform: none;

    padding: 20px;

  }


  .floating-card-one {

    top: 20px;

    right: -2px;

  }


  .floating-card-two {

    bottom: 20px;

    left: -2px;

  }


  .trust-container {

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

  }


  .trust-item {

    padding:
      20px 12px;

  }


  .trust-item:nth-child(2) {

    border-right: 0;

  }


  .section {

    padding:
      85px 0;

  }


  .features-grid {

    grid-template-columns:
      1fr;

  }


  .solutions-grid {

    grid-template-columns:
      1fr;

  }


  .infrastructure-card {

    padding:
      35px 25px;

  }


  .infrastructure-visual {

    min-height: 300px;

  }


  .node-one {

    left: 3%;

  }


  .node-two {

    right: 0;

  }


  .node-three {

    right: 10%;

  }


  .line-one {

    width: 130px;

  }


  .line-two {

    width: 130px;

  }


  .line-three {

    width: 110px;

  }


  .cta-card {

    flex-direction: column;

    align-items: flex-start;

    padding:
      35px 25px;

  }


  .footer-main {

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

    gap: 40px;

  }


  .footer-brand {

    grid-column:
      1 / -1;

  }


  .footer-bottom {

    flex-direction: column;

  }

}


  .orbital-system {

    width: 340px;

    height: 340px;

  }


  .orbit-one {

    width: 155px;

    height: 155px;

  }


  .orbit-two {

    width: 240px;

    height: 240px;

  }


  .orbit-three {

    width: 325px;

    height: 325px;

  }


  .vexora-core {

    width: 92px;

    height: 92px;

  }


  .core-logo {

    width: 30px;

    height: 30px;

    font-size: 13px;

  }


  .service-node {

    width: 72px;

    height: 60px;

    border-radius: 13px;

  }


  .service-icon {

    width: 25px;

    height: 25px;

  }


  .service-icon svg {

    width: 14px;

    height: 14px;

  }


  .service-vps {

    top: 15px;

  }


  .service-cloud {

    top: 70px;

    right: 0;

  }


  .service-api {

    bottom: 45px;

    right: 18px;

  }


  .service-hosting {

    bottom: 12px;

  }


  .service-email {

    bottom: 45px;

    left: 18px;

  }


  .service-database {

    top: 70px;

    left: 0;

  }

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width: 430px) {

  .hero h1 {

    font-size: 45px;

  }


  .hero-description {

    font-size: 15px;

  }


  .server-metrics {

    gap: 5px;

  }


  .metric {

    padding: 10px;

  }


  .metric strong {

    font-size: 15px;

  }


  .floating-card {

    padding:
      8px 10px;

  }


  .floating-card strong {

    font-size: 9px;

  }


  .floating-card small {

    font-size: 8px;

  }


  .footer-main {

    grid-template-columns:
      1fr;

  }


  .footer-brand {

    grid-column:
      auto;

  }

}


/* =========================================
   VEXORAHOST — PLANS PAGE
========================================= */


/* =========================================
   PLANS HERO
========================================= */

.plans-hero {

  padding:
    105px 0 55px;

  text-align: center;

}


.plans-hero-content {

  max-width: 820px;

  margin:
    0 auto;

}


.plans-hero h1 {

  font-size:
    clamp(
      46px,
      6vw,
      72px
    );

  line-height: 1;

  letter-spacing: -.06em;

}


.plans-hero h1 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #ffffff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.plans-hero p {

  max-width: 650px;

  margin:
    24px auto 0;

  color:
    var(--text-muted);

  font-size: 16px;

}


/* =========================================
   BILLING SWITCH
========================================= */

.billing-switch-wrapper {

  display: flex;

  justify-content: center;

  margin-top: 32px;

}


.billing-switch {

  display: flex;

  padding: 5px;

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

  border-radius: 13px;

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

}


.billing-option {

  position: relative;

  border: 0;

  padding:
    10px 18px;

  border-radius: 9px;

  background: transparent;

  color:
    #77707f;

  font-size: 11px;

  font-weight: 800;

  transition:
    all var(--transition);

}


.billing-option span {

  margin-left: 5px;

  color:
    var(--primary-soft);

  font-size: 8px;

  text-transform: uppercase;

  letter-spacing: .05em;

}


.billing-option.active {

  color: white;

  background:
    rgba(124,58,237,.22);

  box-shadow:
    0 5px 20px
    rgba(124,58,237,.12);

}


/* =========================================
   PLANS SECTION
========================================= */

.plans-page-section {

  padding:
    35px 0 110px;

}


.plans-page-grid {

  display: grid;

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

  gap: 18px;

}


.plans-page-card {

  position: relative;

  display: flex;

  flex-direction: column;

  padding: 30px;

  min-height: 650px;

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

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(21,17,31,.97),
      rgba(12,10,18,.97)
    );

  box-shadow:
    0 25px 80px
    rgba(0,0,0,.18);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;

}


.plans-page-card:hover {

  transform:
    translateY(-4px);

  border-color:
    rgba(168,85,247,.32);

  box-shadow:
    0 30px 90px
    rgba(124,58,237,.09);

}


.plans-page-featured {

  border-color:
    rgba(168,85,247,.52);

  box-shadow:
    0 30px 100px
    rgba(124,58,237,.13);

}


.plans-page-popular {

  position: absolute;

  top: 18px;

  right: 18px;

  padding:
    6px 9px;

  border:
    1px solid
    rgba(168,85,247,.35);

  border-radius: 7px;

  background:
    rgba(124,58,237,.11);

  color:
    #d8c5ed;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .09em;

}


/* HEADER */

.plans-page-card-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

}


.plans-page-card h2 {

  margin-top: 7px;

  font-size: 27px;

  letter-spacing: -.045em;

}


.plans-page-card .plan-number {

  flex-shrink: 0;

}


/* DESCRIPTION */

.plans-page-description {

  min-height: 60px;

  margin-top: 19px;

  color:
    #81798b;

  font-size: 12px;

}


/* PRICE */

.plans-page-price {

  display: flex;

  align-items: flex-end;

  gap: 6px;

  margin-top: 25px;

}


.plans-page-price strong {

  font-size: 46px;

  line-height: 1;

  letter-spacing: -.065em;

}


.plans-page-price span {

  margin-bottom: 6px;

  color:
    #6e6778;

  font-size: 12px;

}


.annual-note {

  min-height: 18px;

  margin-top: 8px;

  color:
    #756d80;

  font-size: 9px;

}


/* BUTTON */

.plans-page-card .button {

  margin-top: 18px;

}


/* DIVIDER */

.plans-page-divider {

  height: 1px;

  margin:
    27px 0 21px;

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

}


/* RESOURCE TITLE */

.resources-title {

  margin-bottom: 5px;

  color:
    #625b6b;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .14em;

}


/* FEATURES */

.plans-page-features {

  padding: 0;

  margin: 0;

  list-style: none;

}


.plans-page-features li {

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    10px 0;

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

}


.plans-page-features li:last-child {

  border-bottom: 0;

}


.feature-check {

  width: 21px;

  height: 21px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border-radius: 6px;

  background:
    rgba(124,58,237,.1);

  color:
    var(--primary-soft);

  font-size: 10px;

  font-weight: 900;

}


.plans-page-features strong {

  display: block;

  color:
    #ded8e7;

  font-size: 11px;

}


.plans-page-features small {

  display: block;

  margin-top: 1px;

  color:
    #67606f;

  font-size: 9px;

}


/* =========================================
   INFORMATION STRIP
========================================= */

.plans-information {

  display: grid;

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

  margin-top: 35px;

  overflow: hidden;

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

  border-radius: 17px;

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

}


.plans-info-item {

  display: flex;

  align-items: center;

  gap: 13px;

  padding:
    21px;

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

}


.plans-info-item:last-child {

  border-right: 0;

}


.plans-info-icon {

  width: 36px;

  height: 36px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border:
    1px solid
    rgba(168,85,247,.2);

  border-radius: 10px;

  background:
    rgba(124,58,237,.08);

  color:
    #b98bea;

}


.plans-info-icon svg {

  width: 17px;

  height: 17px;

}


.plans-info-item strong {

  display: block;

  font-size: 11px;

}


.plans-info-item span {

  display: block;

  margin-top: 2px;

  color:
    #68616f;

  font-size: 9px;

}


/* =========================================
   PLANS FAQ
========================================= */

.plans-faq {

  display: grid;

  grid-template-columns:
    .75fr
    1.25fr;

  gap: 70px;

  margin-top: 115px;

}


.plans-faq-heading h2 {

  font-size: 37px;

  line-height: 1;

  letter-spacing: -.05em;

}


.plans-faq-grid {

  display: flex;

  flex-direction: column;

  gap: 9px;

}


.plans-faq-grid details {

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

  border-radius: 13px;

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

}


.plans-faq-grid summary {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding:
    17px;

  cursor: pointer;

  list-style: none;

  color:
    #ddd7e5;

  font-size: 11px;

  font-weight: 750;

}


.plans-faq-grid summary::-webkit-details-marker {

  display: none;

}


.plans-faq-grid summary span {

  color:
    var(--primary-soft);

  font-size: 18px;

  transition:
    transform .2s ease;

}


.plans-faq-grid details[open]
summary span {

  transform:
    rotate(45deg);

}


.plans-faq-grid p {

  padding:
    0 17px 17px;

  color:
    #706977;

  font-size: 10px;

}


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

@media(max-width: 1000px) {

  .plans-page-grid {

    grid-template-columns:
      1fr;

    max-width: 650px;

    margin: 0 auto;

  }


  .plans-page-card {

    min-height: auto;

  }


  .plans-information {

    grid-template-columns:
      1fr;

  }


  .plans-info-item {

    border-right: 0;

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

  }


  .plans-info-item:last-child {

    border-bottom: 0;

  }


  .plans-faq {

    grid-template-columns:
      1fr;

    gap: 40px;

  }

}


@media(max-width: 760px) {

  .plans-hero {

    padding:
      75px 0 40px;

  }


  .plans-hero h1 {

    font-size:
      clamp(
        42px,
        12vw,
        58px
      );

  }


  .plans-hero p {

    font-size: 14px;

  }


  .plans-page-section {

    padding-top: 20px;

  }


  .plans-page-card {

    padding: 24px;

  }


  .plans-page-price strong {

    font-size: 42px;

  }


  .plans-information {

    margin-top: 25px;

  }


  .plans-info-item {

    padding: 17px;

  }


  .plans-faq {

    margin-top: 80px;

  }

}


/* =========================================
   VEXORAHOST — CONTACT PAGE
========================================= */


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {

  padding:
    105px 0 90px;

}


.contact-hero-content {

  max-width: 760px;

  margin:
    0 auto;

  text-align: center;

}


.contact-hero-content h1 {

  font-size:
    clamp(
      46px,
      6vw,
      70px
    );

  line-height: 1;

  letter-spacing: -.06em;

}


.contact-hero-content h1 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #ffffff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.contact-hero-content p {

  max-width: 620px;

  margin:
    25px auto 0;

  color:
    var(--text-muted);

  font-size: 15px;

  line-height: 1.7;

}


/* =========================================
   CONTACT CHANNELS
========================================= */

.contact-channels {

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;

  max-width: 900px;

  margin:
    65px auto 0;

}


.contact-card {

  position: relative;

  display: flex;

  gap: 22px;

  min-height: 245px;

  padding: 30px;

  overflow: hidden;

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

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(22,18,32,.95),
      rgba(11,9,16,.97)
    );

  box-shadow:
    0 25px 80px
    rgba(0,0,0,.18);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;

}


.contact-card::before {

  content: "";

  position: absolute;

  top: -100px;

  right: -100px;

  width: 240px;

  height: 240px;

  border-radius: 50%;

  background:
    rgba(124,58,237,.08);

  filter:
    blur(40px);

  pointer-events: none;

}


.contact-card:hover {

  transform:
    translateY(-5px);

  border-color:
    rgba(168,85,247,.35);

  box-shadow:
    0 30px 90px
    rgba(124,58,237,.09);

}


/* =========================================
   CONTACT ICON
========================================= */

.contact-card-icon {

  width: 50px;

  height: 50px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border:
    1px solid
    rgba(168,85,247,.25);

  border-radius: 14px;

  background:
    rgba(124,58,237,.09);

  color:
    #c084fc;

  box-shadow:
    0 10px 30px
    rgba(124,58,237,.08);

}


.contact-card-icon svg {

  width: 23px;

  height: 23px;

}


/* =========================================
   CONTACT CONTENT
========================================= */

.contact-card-content {

  position: relative;

  z-index: 2;

  flex: 1;

}


.contact-card-label {

  display: block;

  color:
    #665e70;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .14em;

}


.contact-card h2 {

  margin-top: 8px;

  color:
    #f0ebf5;

  font-size: 27px;

  letter-spacing: -.04em;

}


.contact-card p {

  max-width: 340px;

  margin-top: 10px;

  color:
    #777080;

  font-size: 11px;

  line-height: 1.7;

}


/* =========================================
   CONTACT LINK
========================================= */

.contact-link {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 25px;

  color:
    #c084fc;

  font-size: 11px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color .2s ease,
    gap .2s ease;

}


.contact-link span {

  font-size: 16px;

}


.contact-link:hover {

  gap: 13px;

  color:
    #d8b4fe;

}


/* =========================================
   TELEGRAM CARD
========================================= */

.contact-card-telegram {

  border-color:
    rgba(168,85,247,.28);

}


.contact-card-telegram .contact-card-icon {

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.16),
      rgba(168,85,247,.05)
    );

}


/* TEMPORARY DISABLED TELEGRAM */

.contact-link-disabled {

  opacity: .55;

  cursor: default;

}


.contact-link-disabled:hover {

  gap: 9px;

  color:
    #c084fc;

}


/* =========================================
   SUPPORT NOTE
========================================= */

.contact-note {

  display: flex;

  align-items: center;

  gap: 17px;

  max-width: 900px;

  margin:
    22px auto 0;

  padding:
    20px 24px;

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

  border-radius: 16px;

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

}


.contact-note-icon {

  width: 38px;

  height: 38px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border-radius: 11px;

  background:
    rgba(124,58,237,.08);

  color:
    #a78bfa;

}


.contact-note-icon svg {

  width: 18px;

  height: 18px;

}


.contact-note strong {

  display: block;

  color:
    #d9d2e1;

  font-size: 11px;

}


.contact-note p {

  margin-top: 3px;

  color:
    #6c6573;

  font-size: 9px;

  line-height: 1.6;

}


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

@media(max-width: 760px) {

  .contact-hero {

    padding:
      75px 0 70px;

  }


  .contact-hero-content h1 {

    font-size:
      clamp(
        42px,
        12vw,
        58px
      );

  }


  .contact-hero-content p {

    font-size: 13px;

  }


  .contact-channels {

    grid-template-columns:
      1fr;

    margin-top: 45px;

  }


  .contact-card {

    min-height: auto;

    padding: 24px;

  }


  .contact-card h2 {

    font-size: 24px;

  }


  .contact-note {

    align-items: flex-start;

    padding: 17px;

  }

}

/* =========================================
   VEXORAHOST — LEGAL PAGES
========================================= */

.legal-hero {

  padding:
    105px 0 110px;

}


.legal-hero-content {

  max-width: 800px;

  margin:
    0 auto 70px;

  text-align: center;

}


.legal-hero-content h1 {

  font-size:
    clamp(
      46px,
      6vw,
      68px
    );

  line-height: 1;

  letter-spacing: -.06em;

}


.legal-hero-content h1 span {

  display: block;

  background:
    linear-gradient(
      105deg,
      #ffffff,
      var(--primary-soft)
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.legal-hero-content > p {

  max-width: 650px;

  margin:
    24px auto 0;

  color:
    var(--text-muted);

  font-size: 14px;

  line-height: 1.7;

}


.legal-updated {

  margin-top: 22px;

  color:
    #625b6a;

  font-size: 9px;

}


.legal-updated strong {

  color:
    #8c8297;

}


/* =========================================
   LEGAL LAYOUT
========================================= */

.legal-layout {

  display: grid;

  grid-template-columns:
    220px
    minmax(0,1fr);

  gap: 70px;

  max-width: 1100px;

  margin: 0 auto;

}


/* =========================================
   LEGAL SIDEBAR
========================================= */

.legal-sidebar {

  position: sticky;

  top: 110px;

  align-self: start;

  display: flex;

  flex-direction: column;

  gap: 5px;

  padding:
    18px;

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

  border-radius: 16px;

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

}


.legal-sidebar > span {

  margin-bottom: 8px;

  color:
    #5f5868;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .14em;

}


.legal-sidebar a {

  padding:
    8px 9px;

  border-radius: 7px;

  color:
    #756d7e;

  font-size: 9px;

  text-decoration: none;

  transition:
    all .2s ease;

}


.legal-sidebar a:hover {

  color:
    #c084fc;

  background:
    rgba(124,58,237,.07);

}


/* =========================================
   LEGAL CONTENT
========================================= */

.legal-content {

  min-width: 0;

}


.legal-content section {

  scroll-margin-top: 110px;

  padding:
    0 0 55px;

  margin-bottom: 55px;

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

}


.legal-number {

  display: inline-block;

  margin-bottom: 10px;

  color:
    #8b5cf6;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .12em;

}


.legal-content h2 {

  margin-bottom: 18px;

  color:
    #eee9f2;

  font-size: 27px;

  letter-spacing: -.04em;

}


.legal-content p {

  max-width: 760px;

  margin-top: 13px;

  color:
    #807887;

  font-size: 12px;

  line-height: 1.9;

}


.legal-content p:first-of-type {

  margin-top: 0;

}


/* =========================================
   LEGAL CONTACT
========================================= */

.legal-contact {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  padding:
    28px;

  border:
    1px solid
    rgba(168,85,247,.2);

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.08),
      rgba(255,255,255,.015)
    );

}


.legal-contact h3 {

  margin-top: 8px;

  color:
    #eee8f3;

  font-size: 22px;

  letter-spacing: -.035em;

}


.legal-contact p {

  margin-top: 5px;

  font-size: 10px;

}


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

@media(max-width: 850px) {

  .legal-layout {

    grid-template-columns: 1fr;

    gap: 35px;

  }


  .legal-sidebar {

    position: static;

    display: grid;

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

  }


  .legal-sidebar > span {

    grid-column:
      1 / -1;

  }

}


@media(max-width: 600px) {

  .legal-hero {

    padding:
      75px 0 80px;

  }


  .legal-hero-content h1 {

    font-size:
      clamp(
        42px,
        12vw,
        57px
      );

  }


  .legal-layout {

    gap: 25px;

  }


  .legal-sidebar {

    grid-template-columns:
      1fr;

  }


  .legal-content h2 {

    font-size: 24px;

  }


  .legal-content p {

    font-size: 11px;

  }


  .legal-contact {

    align-items: flex-start;

    flex-direction: column;

  }

}

/* =========================================
   VEXORAHOST
   GLOBAL INFRASTRUCTURE
========================================= */

.global-infrastructure {

  position: relative;

  padding:
    125px 0 120px;

  overflow: hidden;

}


/* =========================================
   BACKGROUND
========================================= */

.global-infrastructure::before {

  content: "";

  position: absolute;

  width: 800px;

  height: 500px;

  top: 0;

  left: 50%;

  transform:
    translateX(-50%);

  background:
    radial-gradient(
      ellipse,
      rgba(124,58,237,.09),
      transparent 70%
    );

  pointer-events: none;

}


/* =========================================
   HEADER
========================================= */

.global-heading {

  position: relative;

  z-index: 2;

  max-width: 760px;

  margin:
    0 auto 60px;

  text-align: center;

}


.global-heading .section-label {

  display: inline-flex;

  align-items: center;

  gap: 8px;

}


.global-heading h2 {

  margin-top: 20px;

  font-size:
    clamp(
      42px,
      6vw,
      68px
    );

  line-height: .98;

  letter-spacing:
    -.065em;

}


.global-heading h2 span {

  display: block;

  background:
    linear-gradient(
      100deg,
      #ffffff 0%,
      #d8b4fe 45%,
      #8b5cf6 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}


.global-heading p {

  max-width: 620px;

  margin:
    24px auto 0;

  color:
    var(--text-muted);

  font-size: 13px;

  line-height: 1.8;

}


/* =========================================
   LOCATIONS GRID
========================================= */

.locations-grid {

  position: relative;

  z-index: 2;

  display: grid;

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

  gap: 14px;

}


/* =========================================
   LOCATION CARD
========================================= */

.location-card {

  position: relative;

  min-height: 245px;

  padding: 25px;

  overflow: hidden;

  isolation: isolate;

  border:
    1px solid
    rgba(168,85,247,.18);

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(25,18,39,.95),
      rgba(10,8,15,.98)
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.025);

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;

}


.location-card::before {

  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  right: -120px;

  bottom: -130px;

  border-radius: 50%;

  background:
    rgba(139,92,246,.08);

  filter:
    blur(45px);

  pointer-events: none;

  transition:
    opacity .3s ease;

}


.location-card::after {

  content: "";

  position: absolute;

  top: 24px;

  right: 24px;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background:
    #a855f7;

  box-shadow:
    0 0 10px
    rgba(168,85,247,.85),

    0 0 22px
    rgba(168,85,247,.35);

}


.location-card:hover {

  transform:
    translateY(-4px);

  border-color:
    rgba(168,85,247,.38);

  box-shadow:
    0 20px 50px
    rgba(0,0,0,.28);

}


.location-card:hover::before {

  opacity:
    1.5;

}


/* =========================================
   CARD CONTENT
========================================= */

.location-card-content {

  position: relative;

  z-index: 2;

  width: 100%;

}


.location-top {

  display: flex;

  align-items: center;

  gap: 12px;

}


.country-flag {

  display: grid;

  place-items: center;

  width: 45px;

  height: 45px;

  flex-shrink: 0;

  border:
    1px solid
    rgba(168,85,247,.20);

  border-radius: 50%;

  background:
    rgba(124,58,237,.09);

  font-size: 22px;

}


.location-top h3 {

  color:
    #f1edf5;

  font-size: 17px;

  font-weight: 700;

  line-height: 1.1;

  letter-spacing:
    -.035em;

}


.region-code {

  display: inline-block;

  margin-top: 6px;

  padding:
    4px 8px;

  border-radius: 6px;

  background:
    rgba(124,58,237,.12);

  color:
    #c084fc;

  font-size: 8px;

  font-weight: 800;

  line-height: 1;

  letter-spacing:
    .05em;

}


/* =========================================
   DESCRIPTION
========================================= */

.location-description {

  max-width: 250px;

  margin-top: 22px;

  color:
    #746b7d;

  font-size: 9px;

  line-height: 1.7;

}


/* =========================================
   FEATURES
========================================= */

.location-features {

  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: 20px;

}


.location-features > div {

  display: flex;

  align-items: center;

  gap: 8px;

  color:
    #aaa1b2;

  font-size: 9px;

  line-height: 1.3;

}


.feature-icon {

  display: grid;

  place-items: center;

  width: 15px;

  height: 15px;

  flex-shrink: 0;

  color:
    #b784f5;

}


.feature-icon svg {

  width: 13px;

  height: 13px;

  fill: none;

  stroke:
    currentColor;

  stroke-width:
    1.5;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


/* =========================================
   DECORATIVE LINE
========================================= */

.location-card-content::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -17px;

  width: 40px;

  height: 2px;

  border-radius: 2px;

  background:
    linear-gradient(
      90deg,
      #a855f7,
      transparent
    );

}


/* =========================================
   SECURITY MESSAGE
========================================= */

.global-security {

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 18px;

  max-width: 850px;

  margin:
    22px auto 0;

  padding:
    20px 25px;

  border:
    1px solid
    rgba(168,85,247,.17);

  border-radius: 16px;

  background:
    linear-gradient(
      110deg,
      rgba(124,58,237,.07),
      rgba(255,255,255,.012)
    );

}


.security-icon {

  display: grid;

  place-items: center;

  width: 48px;

  height: 48px;

  flex-shrink: 0;

  border:
    1px solid
    rgba(168,85,247,.30);

  border-radius: 13px;

  background:
    rgba(124,58,237,.10);

  color:
    #b784f5;

}


.security-icon svg {

  width: 23px;

  height: 23px;

  fill: none;

  stroke:
    currentColor;

  stroke-width:
    1.5;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


.global-security strong {

  display: block;

  color:
    #ddd6e5;

  font-size: 11px;

}


.global-security p {

  margin-top: 5px;

  color:
    #746c7c;

  font-size: 9px;

  line-height: 1.6;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .locations-grid {

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .global-infrastructure {

    padding:
      90px 0;

  }


  .global-heading {

    margin-bottom:
      40px;

  }


  .global-heading h2 {

    font-size:
      43px;

  }


  .global-heading p {

    font-size:
      11px;

  }


  .locations-grid {

    grid-template-columns:
      1fr;

    gap: 12px;

  }


  .location-card {

    min-height:
      220px;

    padding:
      22px;

  }


  .location-top h3 {

    font-size:
      16px;

  }


  .location-description {

    max-width:
      290px;

  }


  .global-security {

    align-items:
      flex-start;

    padding:
      18px;

  }


  .security-icon {

    width:
      42px;

    height:
      42px;

  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .global-heading h2 {

    font-size:
      38px;

  }


  .location-card {

    min-height:
      215px;

  }


  .location-features > div {

    font-size:
      8.5px;

  }

}

/* =========================================
   SOLUCIONES DROPDOWN
========================================= */

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}


/* BOTÓN SOLUCIONES */

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 0;

  border: 0;
  outline: none;

  background: transparent;

  color: var(--text-muted);

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    color .25s ease;
}

.nav-dropdown-toggle:hover {
  color: #ffffff;
}


/* FLECHA */

.nav-arrow {
  display: inline-flex;

  font-size: 9px;

  opacity: .65;

  transition:
    transform .25s ease;
}


/* =========================================
   MENÚ
========================================= */

.nav-dropdown-menu {

  position: absolute;

  top: calc(100% + 14px);

  left: 50%;

  width: 310px;

  padding: 8px;

  display: flex;

  flex-direction: column;

  gap: 3px;

  transform:
    translateX(-50%)
    translateY(-8px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  z-index: 1000;

  border:
    1px solid
    rgba(168,85,247,.22);

  border-radius: 16px;

  background:
    rgba(12,9,18,.97);

  box-shadow:
    0 25px 70px
    rgba(0,0,0,.55),

    0 0 40px
    rgba(124,58,237,.08);

  backdrop-filter:
    blur(20px);

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

  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease;
}


/* PEQUEÑO PUENTE ENTRE BOTÓN Y MENÚ */

.nav-dropdown-menu::before {

  content: "";

  position: absolute;

  top: -14px;

  left: 0;

  right: 0;

  height: 14px;
}


/* =========================================
   MOSTRAR DROPDOWN
========================================= */

.nav-dropdown:hover .nav-dropdown-menu,

.nav-dropdown:focus-within .nav-dropdown-menu {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);
}


.nav-dropdown:hover .nav-arrow {

  transform:
    rotate(180deg);
}


/* =========================================
   ELEMENTOS DEL MENÚ
========================================= */

.nav-dropdown-menu a {

  width: 100%;

  min-height: 58px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px;

  border-radius: 11px;

  color: #bcb3c5;

  text-decoration: none;

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


.nav-dropdown-menu a:hover {

  background:
    rgba(124,58,237,.10);

  color:
    #ffffff;

  transform:
    translateX(2px);
}


/* =========================================
   ICONOS
========================================= */

.dropdown-icon {

  width: 36px;

  height: 36px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border:
    1px solid
    rgba(168,85,247,.20);

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.16),
      rgba(168,85,247,.06)
    );

  color:
    #c084fc;

  font-size: 8px;

  font-weight: 850;

  letter-spacing:
    -.01em;

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


.nav-dropdown-menu a:hover .dropdown-icon {

  background:
    rgba(124,58,237,.20);

  border-color:
    rgba(168,85,247,.45);
}


/* =========================================
   TEXTO
========================================= */

.nav-dropdown-menu a > span:last-child {

  min-width: 0;

  display: block;
}


.nav-dropdown-menu a strong {

  display: block;

  color:
    #eeeaf5;

  font-size: 11px;

  font-weight: 750;

  line-height: 1.2;
}


.nav-dropdown-menu a small {

  display: block;

  margin-top: 4px;

  color:
    #716a7c;

  font-size: 9px;

  font-weight: 500;

  line-height: 1.35;
}


.nav-dropdown-menu a:hover small {

  color:
    #958ba0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .navigation {

    gap: 20px;

    margin-right: 20px;

  }

  .nav-dropdown-menu {

    width: 290px;

  }

}


@media (max-width: 700px) {

  .nav-dropdown {

    display: block;

  }

  .nav-dropdown-menu {

    display: none;

  }

}


/* =========================================
   CLIENT CONTROL
========================================= */

.traccar-client-control {

  max-width: 1050px;

  margin:
    110px auto 0;

}


.traccar-client-control-box {

  position: relative;

  overflow: hidden;

  padding:
    55px;

  border:
    1px solid
    rgba(168,85,247,.16);

  border-radius:
    24px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.08),
      rgba(10,8,15,.96)
    );

}


/* Glow */

.traccar-client-control-box::before {

  content: "";

  position: absolute;

  width: 380px;

  height: 380px;

  right: -150px;

  top: -180px;

  border-radius: 50%;

  background:
    rgba(124,58,237,.12);

  filter:
    blur(80px);

  pointer-events: none;

}


.client-control-content {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap: 60px;

  align-items: center;

}


/* =========================================
   TEXT
========================================= */

.client-control-text h2 {

  margin-top: 18px;

  color:
    #f5f1f7;

  font-size:
    clamp(32px, 4vw, 48px);

  line-height:
    .98;

  letter-spacing:
    -.06em;

}


.client-control-text h2 span {

  display: block;

  color:
    #b784f5;

}


.client-control-text > p {

  max-width:
    470px;

  margin-top:
    20px;

  color:
    #756c7e;

  font-size:
    10px;

  line-height:
    1.85;

}


/* =========================================
   FEATURES
========================================= */

.client-control-features {

  display:
    flex;

  flex-direction:
    column;

  gap:
    16px;

  margin-top:
    30px;

}


.client-control-feature {

  display:
    flex;

  align-items:
    flex-start;

  gap:
    12px;

}


.client-control-feature-icon {

  display:
    grid;

  place-items:
    center;

  width:
    30px;

  height:
    30px;

  flex-shrink:
    0;

  border:
    1px solid
    rgba(168,85,247,.20);

  border-radius:
    9px;

  background:
    rgba(124,58,237,.08);

  color:
    #b784f5;

  font-size:
    13px;

  font-weight:
    800;

}


.client-control-feature strong {

  display:
    block;

  color:
    #ded8e5;

  font-size:
    9px;

}


.client-control-feature span {

  display:
    block;

  margin-top:
    4px;

  color:
    #665e6c;

  font-size:
    7px;

  line-height:
    1.6;

}


/* =========================================
   CLIENT PANEL
========================================= */

.client-control-visual {

  position:
    relative;

}


.client-panel {

  position:
    relative;

  padding:
    23px;

  border:
    1px solid
    rgba(168,85,247,.20);

  border-radius:
    18px;

  background:
    linear-gradient(
      145deg,
      rgba(27,20,40,.98),
      rgba(11,8,17,.98)
    );

  box-shadow:
    0 30px 80px
    rgba(0,0,0,.30);

}


/* =========================================
   PANEL HEADER
========================================= */

.client-panel-header {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  padding-bottom:
    18px;

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

}


.client-panel-eyebrow {

  display:
    block;

  color:
    #6f6577;

  font-size:
    6px;

  font-weight:
    800;

  letter-spacing:
    .16em;

}


.client-panel-header h3 {

  margin-top:
    5px;

  color:
    #f4eff8;

  font-size:
    17px;

  letter-spacing:
    -.03em;

}


.client-status {

  display:
    flex;

  align-items:
    center;

  gap:
    6px;

  padding:
    7px 9px;

  border:
    1px solid
    rgba(34,197,94,.12);

  border-radius:
    999px;

  background:
    rgba(34,197,94,.06);

  color:
    #70d991;

  font-size:
    6px;

  font-weight:
    800;

}


.client-status span {

  width:
    5px;

  height:
    5px;

  border-radius:
    50%;

  background:
    #22c55e;

  box-shadow:
    0 0 8px
    rgba(34,197,94,.7);

}


/* =========================================
   URL
========================================= */

.client-panel-url {

  margin-top:
    18px;

  padding:
    12px;

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

  border-radius:
    9px;

  background:
    rgba(0,0,0,.18);

}


.client-panel-url span {

  display:
    block;

  color:
    #625a68;

  font-size:
    6px;

  font-weight:
    800;

  letter-spacing:
    .08em;

}


.client-panel-url strong {

  display:
    block;

  margin-top:
    5px;

  color:
    #b784f5;

  font-size:
    9px;

}


/* =========================================
   ACTIONS
========================================= */

.client-panel-actions {

  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    9px;

  margin-top:
    12px;

}


.client-action {

  padding:
    14px;

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

  border-radius:
    11px;

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

  transition:
    .25s ease;

}


.client-action:hover,
.client-action.active {

  border-color:
    rgba(168,85,247,.25);

  background:
    rgba(124,58,237,.07);

}


.client-action-icon {

  display:
    grid;

  place-items:
    center;

  width:
    27px;

  height:
    27px;

  margin-bottom:
    10px;

  border:
    1px solid
    rgba(168,85,247,.16);

  border-radius:
    8px;

  background:
    rgba(124,58,237,.08);

  color:
    #b784f5;

  font-size:
    11px;

  font-weight:
    800;

}


.client-action strong {

  display:
    block;

  color:
    #dcd5e3;

  font-size:
    8px;

}


.client-action span {

  display:
    block;

  margin-top:
    4px;

  color:
    #655d6b;

  font-size:
    6px;

}


/* =========================================
   FOOTER INFO
========================================= */

.client-panel-footer {

  display:
    grid;

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

  gap:
    10px;

  margin-top:
    12px;

  padding-top:
    15px;

  border-top:
    1px solid
    rgba(255,255,255,.05);

}


.client-panel-footer span {

  display:
    block;

  color:
    #5f5766;

  font-size:
    5px;

  font-weight:
    800;

  letter-spacing:
    .08em;

}


.client-panel-footer strong {

  display:
    block;

  margin-top:
    4px;

  color:
    #bdb4c5;

  font-size:
    7px;

}


.client-panel-footer .online-text {

  color:
    #6bd58a;

}


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

@media (max-width: 850px) {

  .client-control-content {

    grid-template-columns:
      1fr;

    gap:
      40px;

  }

}


@media (max-width: 650px) {

  .traccar-client-control-box {

    padding:
      30px 20px;

  }

  .client-panel-actions {

    grid-template-columns:
      1fr;

  }

  .client-panel-footer {

    grid-template-columns:
      1fr;

  }

}