:root {
  --ink: #0a0714;
  --ink-2: #170b2e;
  --ink-3: #241245;
  --panel: rgba(26, 14, 48, 0.78);
  --panel-solid: #1a0f33;
  --line: rgba(196, 160, 255, 0.18);
  --line-strong: rgba(168, 85, 247, 0.45);
  --text: #f6f1ff;
  --muted: #b6a4d9;
  --soft: #7d6a9e;
  --sky: #60a5fa;
  --mint: #d946ef;
  --leaf: #22d3ee;
  --gold: #ffd166;
  --lava: #ff7a4f;
  --red: #ff5f63;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
  --grad: linear-gradient(135deg, #a855f7 0%, #d946ef 50%, #60a5fa 100%);
  --r: 8px;
  --hn-purple: #a855f7;
  --hn-magenta: #d946ef;
  --hn-violet: #7c3aed;
  --hn-pink: #ec4899;
  --hn-cyan: #22d3ee;
  --hn-blue: #3b82f6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(168, 85, 247, 0.16), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(10, 7, 20, 0.94), rgba(15, 8, 28, 0.98)),
    #0a0714;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(196, 160, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 160, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-fade {
  animation: pageIn 0.42s ease both;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0a0714;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.08) contrast(1.08);
}

.page-loader-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(7, 20, 24, 0.8), rgba(13, 38, 43, 0.72)),
    radial-gradient(circle at 50% 38%, rgba(168, 85, 247, 0.22), transparent 36%);
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 950;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.loader-mark {
  position: relative;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
}

.loader-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.65));
}

.loader-mark span {
  position: absolute;
  inset: 0;
  border: 4px solid rgba(168, 85, 247, 0.18);
  border-top-color: var(--hn-magenta, #d946ef);
  border-right-color: var(--hn-cyan, #22d3ee);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
}

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

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

@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(5, 14, 18, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.45));
  animation: logoFloat 4s ease-in-out infinite;
}

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

.nav-name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-side a,
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--r);
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-side a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-side a:hover,
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(96, 165, 250, 0.12);
  border-color: var(--line-strong);
}

.nav-spacer {
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn-discord {
  background: #5865f2 !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.flash {
  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 900;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(560px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(7, 20, 24, 0.92);
  box-shadow: var(--shadow);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.flash-success {
  color: var(--mint);
}

.flash-error {
  color: var(--red);
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 54px;
  isolation: isolate;
}

.hero-video,
.services-video,
.lost-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  background: #0a0714;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 11, 13, 0.82) 0%, rgba(3, 11, 13, 0.42) 48%, rgba(3, 11, 13, 0.78) 100%),
    linear-gradient(180deg, rgba(61, 173, 216, 0.34) 0%, rgba(7, 24, 27, 0.2) 42%, rgba(4, 10, 12, 0.92) 100%);
}

.hero-sky {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -2;
  background: linear-gradient(0deg, #0a0714 0%, rgba(6, 16, 20, 0) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  align-items: center;
  gap: 52px;
}

.hero-copy h1,
.services-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 950;
}

.hero-copy p,
.services-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #d5eee8;
  font-size: 18px;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: rgba(8, 27, 32, 0.7);
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
  animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.76); }
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: #062126;
  background: var(--grad);
  box-shadow: 0 12px 32px rgba(217, 70, 239, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-console,
.plan-meter,
.custom-panel,
.lost-panel {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(10, 30, 36, 0.88), rgba(7, 20, 24, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-console {
  padding: 18px;
}

.console-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.console-top span:nth-child(2) {
  background: var(--gold);
}

.console-top span:nth-child(3) {
  background: var(--mint);
}

.console-title {
  color: var(--soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  margin-bottom: 14px;
}

.ip-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
}

.kicker {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.ip-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--sky);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.copy-btn {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: rgba(96, 165, 250, 0.12);
  color: var(--sky);
  cursor: pointer;
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.console-grid div,
.strip-item,
.region-row,
.loc-card,
.feat-card,
.member-card,
.tier-card,
.included-list div {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.055);
}

.console-grid div {
  min-height: 92px;
  padding: 14px;
}

.console-grid span,
.tier-specs,
.tier-features,
.member-bio,
.section-sub {
  color: var(--muted);
}

.console-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.launch-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.launch-row p {
  margin: 0;
}

.signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.signal-bars span {
  width: 5px;
  border-radius: 3px;
  background: var(--mint);
}

.signal-bars span:nth-child(1) { height: 7px; }
.signal-bars span:nth-child(2) { height: 12px; }
.signal-bars span:nth-child(3) { height: 17px; }
.signal-bars span:nth-child(4) { height: 22px; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 30px;
  height: 44px;
  border: 1px solid rgba(242, 251, 248, 0.45);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 5px;
  height: 9px;
  border-radius: 5px;
  background: var(--text);
  animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

.section {
  position: relative;
  z-index: 1;
  padding: 86px 0;
}

.home-strip {
  padding: 26px 0;
  background: #0d0620;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.strip-item {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.strip-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: var(--r);
  background: rgba(217, 70, 239, 0.13);
  color: var(--mint);
  font-size: 20px;
}

.strip-item strong,
.region-row strong,
.loc-country,
.feat-card h3,
.member-name {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.strip-item span,
.region-row span,
.loc-city {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section-hdr {
  max-width: 680px;
  margin-bottom: 38px;
}

.section-hdr.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 920;
}

.section-sub {
  margin: 14px 0 0;
  font-size: 16px;
}

.network-section {
  background:
    linear-gradient(180deg, #0d0620, #170b2e),
    #170b2e;
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}

.world-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

#worldMap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 460px;
  background: var(--ink-2);
}

.world-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.world-fallback i {
  color: var(--sky);
  font-size: 34px;
}

.leaflet-container {
  background: #170b2e !important;
  font-family: 'Outfit', sans-serif !important;
}

.leaflet-control-attribution {
  background: rgba(7, 20, 24, 0.78) !important;
  color: var(--soft) !important;
  font-size: 10px !important;
}

.leaflet-control-attribution a,
.leaflet-popup-content b {
  color: #0e9bc8 !important;
}

.leaflet-control-zoom a {
  background: var(--panel-solid) !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}

.pc-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-flag-pin {
  font-size: 31px;
  line-height: 1;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.55));
}

.pc-ping-bubble {
  margin-top: -2px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 20, 24, 0.86);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.pc-ping-low { color: var(--mint); border-color: rgba(217, 70, 239, 0.5); }
.pc-ping-mid { color: var(--gold); border-color: rgba(255, 209, 102, 0.5); }
.pc-ping-high { color: var(--red); border-color: rgba(255, 95, 99, 0.5); }

.region-stack {
  display: grid;
  gap: 10px;
}

.region-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.region-flag {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.08);
  font-size: 25px;
}

.locations-section {
  background: linear-gradient(180deg, #170b2e, #0d0620);
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 14px;
}

.loc-card {
  min-height: 190px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.loc-card:hover,
.feat-card:hover,
.member-card:hover,
.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.loc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.loc-flag {
  font-size: 34px;
  line-height: 1;
}

.loc-ping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 800;
}

.ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ping-low { color: var(--mint); }
.ping-low .ping-dot { background: var(--mint); }
.ping-mid { color: var(--gold); }
.ping-mid .ping-dot { background: var(--gold); }
.ping-high { color: var(--red); }
.ping-high .ping-dot { background: var(--red); }

.loc-badge,
.tier-badge,
.member-role {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.badge-avail {
  color: var(--mint);
  background: rgba(217, 70, 239, 0.1);
  border-color: rgba(217, 70, 239, 0.32);
}

.badge-unavail {
  color: var(--red);
  background: rgba(255, 95, 99, 0.1);
  border-color: rgba(255, 95, 99, 0.32);
}

.features-section {
  background:
    linear-gradient(180deg, rgba(10, 29, 36, 0.94), rgba(15, 35, 33, 0.98)),
    #1e1040;
}

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

.feat-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--r);
  background: rgba(255, 209, 102, 0.13);
  color: var(--gold);
  font-size: 24px;
}

.feat-card h3 {
  margin: 0 0 10px;
}

.feat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.team-section {
  background: linear-gradient(180deg, #1e1040, #0a0714);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.member-card {
  min-height: 238px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.member-avatar,
.member-avatar-placeholder {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: var(--r);
  border: 1px solid var(--line-strong);
  object-fit: cover;
}

.member-avatar-placeholder {
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #062126;
  font-size: 28px;
  font-weight: 950;
}

.member-role {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.member-bio {
  max-width: 250px;
  margin: 12px auto 0;
  font-size: 13px;
}

.reviews-section {
  background:
    linear-gradient(180deg, #0a0714, #0e201d),
    #0e201d;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.review-form-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.review-form-card {
  padding: 22px;
  position: sticky;
  top: 92px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-user img,
.review-card-top img,
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

.review-user strong,
.review-card-top strong {
  display: block;
}

.review-user a,
.review-card-top span {
  color: var(--muted);
  font-size: 13px;
}

.review-form {
  display: grid;
  gap: 10px;
}

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

.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(5, 14, 18, 0.72);
  color: var(--text);
  padding: 12px;
  outline: none;
}

.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.08);
}

.login-review-box {
  text-align: center;
}

.login-review-box > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.12);
  color: var(--sky);
  font-size: 24px;
}

.login-review-box h3 {
  margin: 0;
  font-size: 24px;
}

.login-review-box p {
  color: var(--muted);
}

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

.review-card {
  min-height: 210px;
  padding: 20px;
  animation: cardFloat 5s ease-in-out infinite;
}

.review-card:nth-child(2n) {
  animation-delay: 0.8s;
}

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

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #062126;
  font-weight: 950;
}

.review-stars {
  margin-top: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}

.review-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.empty-review {
  display: grid;
  align-content: center;
}

.services-hero {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
  display: grid;
  align-items: end;
  padding: 100px 0 58px;
  isolation: isolate;
}

.services-video {
  filter: saturate(0.95) contrast(1.08);
}

.services-veil,
.lost-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.services-veil {
  background:
    linear-gradient(90deg, rgba(6, 16, 20, 0.9), rgba(21, 40, 25, 0.62), rgba(6, 16, 20, 0.9)),
    linear-gradient(180deg, rgba(255, 209, 102, 0.18), rgba(6, 16, 20, 0.96));
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 32px;
}

.plan-meter {
  padding: 20px;
}

.meter-title {
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.meter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.meter-row strong {
  color: var(--text);
}

.meter-bar {
  height: 9px;
  margin: 8px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.meter-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
}

.pricing-section {
  background:
    linear-gradient(180deg, #0a0714, #1a0f2e),
    #1a0f2e;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.tier-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tier-card.highlight {
  border-color: rgba(255, 209, 102, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.1), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.tier-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.tier-name {
  color: var(--mint);
  font-size: 15px;
  font-weight: 900;
}

.tier-ram {
  margin-top: 8px;
  color: var(--text);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.tier-badge {
  color: #332204;
  background: var(--gold);
  border-color: transparent;
  white-space: nowrap;
}

.tier-price {
  margin-top: 22px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 930;
}

.tier-specs {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  font-size: 14px;
}

.tier-specs i {
  width: 18px;
  color: var(--sky);
}

.tier-features {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.tier-features li {
  display: flex;
  gap: 9px;
}

.tier-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--mint);
}

.tier-cta {
  margin-top: auto;
  padding-top: 24px;
}

.tier-cta .btn-primary {
  width: 100%;
}

.compare-section {
  background: #1a0f2e;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: center;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.included-list div {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.included-list i {
  color: var(--mint);
}

.custom-section {
  background:
    linear-gradient(180deg, #1a0f2e, #0a0714),
    #0a0714;
}

.custom-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
}

.custom-panel h2 {
  max-width: 680px;
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.custom-panel p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-404 .navbar {
  position: fixed;
  width: 100%;
}

.lost-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 80px;
  isolation: isolate;
  overflow: hidden;
}

.lost-veil {
  background:
    linear-gradient(180deg, rgba(6, 16, 20, 0.55), rgba(6, 16, 20, 0.96)),
    linear-gradient(90deg, rgba(255, 122, 79, 0.22), rgba(96, 165, 250, 0.2));
}

.lost-panel {
  width: min(560px, 100%);
  padding: 34px;
  text-align: center;
}

.lost-panel h1 {
  margin: 0;
  color: var(--gold);
  font-size: 112px;
  line-height: 1;
  font-weight: 950;
}

.lost-panel p {
  max-width: 420px;
  margin: 16px auto 24px;
  color: var(--muted);
  font-size: 17px;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 50px 0 24px;
  border-top: 1px solid var(--line);
  background: #0a0714;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 950;
}

.footer-desc {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

.footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: var(--r);
  background: #5865f2;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 14px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 9px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

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

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}

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

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

@media (max-width: 980px) {
  .hero-content,
  .services-hero-grid,
  .world-layout,
  .compare-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .services-copy h1 {
    font-size: 52px;
  }

  .hero-console,
  .plan-meter,
  .review-form-card {
    max-width: 620px;
    position: static;
  }

  .strip-grid,
  .feat-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .world-panel,
  #worldMap {
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-inner {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    min-height: 64px;
  }

  .nav-side {
    display: none;
  }

  .hamburger {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(6, 16, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 88svh;
    padding: 72px 0 46px;
  }

  .hero-content {
    gap: 26px;
  }

  .hero-copy h1,
  .services-copy h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .services-copy p {
    font-size: 16px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-console {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .section-title,
  .custom-panel h2 {
    font-size: 32px;
  }

  .strip-grid,
  .feat-grid,
  .reviews-grid,
  .included-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .world-panel,
  #worldMap {
    min-height: 330px;
    height: 330px;
  }

  .region-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .region-row .loc-ping {
    grid-column: 2;
    margin-top: 0;
  }

  .services-hero {
    min-height: 68svh;
    padding: 86px 0 44px;
  }

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

  .custom-panel,
  .lost-panel {
    padding: 24px;
  }

  .lost-panel h1 {
    font-size: 86px;
  }
}

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

/* ══════════════════════════════════════════════════════════════════════
   HYPENODE — RGB NEON REBRAND (appended, overrides + new components)
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --hn-purple: #a855f7;
  --hn-magenta: #d946ef;
  --hn-violet: #7c3aed;
  --hn-pink: #ec4899;
  --hn-cyan: #22d3ee;
  --grad: linear-gradient(135deg, var(--hn-purple) 0%, var(--hn-magenta) 50%, var(--hn-cyan) 100%);
  --line-strong: rgba(168, 85, 247, 0.45);
}

@keyframes hnRgbGlow {
  0%   { filter: drop-shadow(0 0 14px rgba(168,85,247,.85)) drop-shadow(0 0 28px rgba(217,70,239,.5)); }
  33%  { filter: drop-shadow(0 0 14px rgba(217,70,239,.85)) drop-shadow(0 0 28px rgba(34,211,238,.5)); }
  66%  { filter: drop-shadow(0 0 14px rgba(34,211,238,.85)) drop-shadow(0 0 28px rgba(168,85,247,.5)); }
  100% { filter: drop-shadow(0 0 14px rgba(168,85,247,.85)) drop-shadow(0 0 28px rgba(217,70,239,.5)); }
}

@keyframes hnRgbText {
  0%   { color: var(--hn-purple); }
  33%  { color: var(--hn-magenta); }
  66%  { color: var(--hn-cyan); }
  100% { color: var(--hn-purple); }
}

.nav-logo, .footer-logo, .auth-logo {
  animation: hnRgbGlow 4s ease-in-out infinite;
  border-radius: 50%;
}
.footer-logo { width: 26px; height: 26px; vertical-align: middle; margin-right: 6px; }
.auth-logo { width: 80px; height: 80px; display: block; margin: 0 auto 18px; }

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  animation: hnRgbGlow 4s ease-in-out infinite;
}

.btn-primary, .buy-btn {
  background: var(--grad) !important;
  background-size: 200% 200% !important;
  animation: hnGradShift 6s ease infinite;
  border: none !important;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.35);
}
@keyframes hnGradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-discord, .footer-discord {
  background: linear-gradient(135deg, #5865F2, var(--hn-purple));
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-discord:hover, .footer-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(88, 101, 242, 0.4);
}

.btn-logout {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
}
.btn-logout:hover { color: var(--hn-pink); }

.nav-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(168, 85, 247, 0.08);
}
.nav-user-chip img {
  width: 22px; height: 22px; border-radius: 50%;
}

/* live server count badge */
.hero-badge .live-tick { color: #22c55e; margin-left: 4px; }
.live-count { color: #22c55e !important; display: flex; align-items: center; gap: 6px; }
.live-count i { font-size: 14px; }

/* category tabs on services page */
.category-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.cat-tab {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s ease;
  background: rgba(168, 85, 247, 0.04);
}
.cat-tab:hover { border-color: var(--line-strong); color: var(--text); }
.cat-tab.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(168, 85, 247, 0.35);
}

.tier-badge-offer {
  background: linear-gradient(135deg, var(--hn-pink), var(--hn-magenta));
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}
.tier-price-old {
  text-decoration: line-through;
  color: var(--soft);
  font-size: 18px;
  margin-right: 8px;
  font-weight: 500;
}
.tier-price-per { font-size: 14px; color: var(--muted); font-weight: 400; }

/* checkout modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 16, 20, 0.82);
  backdrop-filter: blur(6px);
}
.checkout-modal.open { display: flex; }
.checkout-modal-box {
  position: relative;
  width: min(440px, calc(100% - 32px));
  background: var(--panel-solid);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.checkout-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}
.checkout-plan-line { color: var(--muted); margin-bottom: 16px; }
.coupon-row { display: flex; gap: 8px; margin-bottom: 6px; }
.coupon-row input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.coupon-msg { font-size: 13px; min-height: 18px; margin: 4px 0 14px; }
.coupon-msg.good { color: #22c55e; }
.coupon-msg.bad { color: var(--red); }
.checkout-total { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.checkout-total strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
#payNowBtn { width: 100%; justify-content: center; }

/* profile setup / auth pages */
.auth-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 60px;
}
.auth-box {
  width: min(480px, 100%);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.auth-box h1 { margin: 0 0 8px; font-size: 28px; }
.auth-form { text-align: left; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--muted); font-weight: 600; }
.form-hint { font-size: 12px; color: var(--soft); }
.form-control {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.form-control:focus { outline: none; border-color: var(--hn-purple); box-shadow: 0 0 0 3px rgba(168,85,247,.2); }

.success-box { }
.success-icon { font-size: 56px; color: #22c55e; margin-bottom: 12px; display: block; }
.provision-box {
  margin: 20px 0;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.provision-box.good { border-color: rgba(34,197,94,.4); background: rgba(34,197,94,.06); }
.provision-box.pending { border-color: rgba(255,209,102,.4); background: rgba(255,209,102,.06); }
.provision-box i { font-size: 22px; margin-top: 2px; }
.provision-box.good i { color: #22c55e; }
.provision-box.pending i { color: var(--gold); }

/* help page */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.help-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.help-card i { font-size: 30px; color: var(--hn-purple); margin-bottom: 12px; }
.help-card h3 { margin: 0 0 8px; }
.help-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.help-discord-cta { text-align: center; margin: 40px 0; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   FLOATING HELP & SUPPORT WIDGET — bottom right corner
   ══════════════════════════════════════════════════════════════════════ */
.help-fab-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.help-fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  background-size: 200% 200%;
  animation: hnGradShift 6s ease infinite, hnFabPulse 2.4s ease-in-out infinite;
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.5);
}
.help-fab-btn:hover { transform: scale(1.06); }

@keyframes hnFabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(168, 85, 247, 0.5); }
  50% { box-shadow: 0 10px 40px rgba(217, 70, 239, 0.7); }
}

.help-fab-panel {
  width: min(300px, calc(100vw - 44px));
  background: var(--panel-solid);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: all 0.22s ease;
}
.help-fab-wrap.open .help-fab-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.help-fab-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.help-fab-hdr img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  animation: hnRgbGlow 4s ease-in-out infinite;
}
.help-fab-hdr strong { display: block; font-size: 14px; }
.help-fab-hdr span { display: block; font-size: 11px; color: var(--muted); }
.help-fab-hdr button {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.help-fab-body {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 6px;
}
.help-fab-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.help-fab-link i { color: var(--hn-purple); width: 16px; text-align: center; }
.help-fab-link:hover { background: rgba(168, 85, 247, 0.12); }
.help-fab-link.help-fab-discord i { color: #5865F2; }

@media (max-width: 480px) {
  .help-fab-wrap { right: 14px; bottom: 14px; }
  .help-fab-btn { width: 52px; height: 52px; font-size: 20px; }
}

/* Free-checkout button (100% coupon / full discount) */
#payNowBtn.btn-free {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

/* Panel credentials box on checkout success */
.panel-creds {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin: 12px 0;
  text-align: left;
}
.panel-creds div { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; }
.panel-creds span { color: var(--muted); }
.panel-creds strong { font-family: monospace; color: var(--text); }
.panel-creds-note { font-size: 11px; color: var(--gold); margin: 8px 0 0; }
