:root {
  --page-bg: #1c1c1c;
  --bar-bg: #121212;
  --panel-bg: #101b2c;
  --panel-bg-2: #0d1727;
  --border: rgba(137, 158, 199, 0.13);
  --text: #f3f6ff;
  --muted: #9a9a9a;
  --silver: #c0c0c0;
  --purple: #c0c0c0;
  --purple-2: #c0c0c0;
  --blue: #4d75ff;
  --green: #32d17d;
  --pink: #c0c0c0;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* Vendetta navigation */
.site-header {
  position: fixed;
  z-index: 9999;
  inset: 0 0 auto;
  height: 74px;
  background: rgba(18, 18, 18, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vendetta-nav-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 clamp(28px, 3.4vw, 56px);
  background: transparent;
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  background: transparent;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 auto 0 0;
  padding: 0;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.navbar-icon {
  display: block;
  width: auto;
  height: 48px;
}

.navbar-brand.active img {
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.78))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
}

.navbar-brand:hover,
.navbar-brand:focus {
  transform: translateY(-1px);
}

.navbar-collapse {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
}

.navbar-nav {
  width: auto;
  margin: 0;
  padding: 4px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.032);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.014);
  list-style: none;
}

.nav-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.nav-link {
  width: auto;
  min-width: 0;
  padding: 11px 14px;
  position: relative;
  border-radius: 7px;
  color: #c0c0c0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    transform 0.16s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff;
  background: rgba(192, 192, 192, 0.11);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.navbar-toggler {
  display: none;
  width: 42px;
  height: 36px;
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--silver);
}

.navbar-toggler-icon {
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

/* Pattern classes remain only for positioning; the old page-wide pattern is removed. */
.hex-bg,
.hex-bg-soft {
  position: relative;
  overflow: hidden;
}

/* Hero */
.hero {
  min-height: 590px;
  padding-top: 134px;
  background: var(--page-bg);
}

.hero-grid {
  min-height: 465px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 520px;
  padding-left: 12px;
}

h1 {
  margin: 0 0 12px;
  color: var(--silver);
  font-size: clamp(42px, 5vw, 61px);
  line-height: 0.98;
  letter-spacing: -2.6px;
}

h1 span {
  color: var(--text);
}

.hero-copy p {
  max-width: 445px;
  margin: 0;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.6;
}

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

.btn {
  min-height: 42px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.btn-primary {
  color: #171717;
  background: linear-gradient(135deg, #d0d0d0, #a9a9a9);
  box-shadow:
    0 9px 25px rgba(192, 192, 192, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(192, 192, 192, 0.24);
  color: #d7d7d7;
  background: rgba(20, 20, 20, 0.88);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.045),
    0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(218, 218, 218, 0.46);
  color: #ffffff;
  background: rgba(39, 39, 39, 0.95);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.07),
    0 10px 26px rgba(0, 0, 0, 0.24);
}

.chat-dot {
  width: 11px;
  height: 9px;
  display: inline-block;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.75;
}

.chat-dot::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -3px;
  width: 4px;
  height: 4px;
  border-left: 1px solid currentColor;
  transform: rotate(-28deg);
}

.hero-art {
  min-height: 340px;
  position: relative;
  display: grid;
  place-items: center;
}

.logo-orb {
  width: 138px;
  height: 138px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #3a3a3a 0%, #202020 48%, #0f0f0f 100%);
  box-shadow:
    0 0 38px rgba(192, 192, 192, 0.30),
    0 0 95px rgba(192, 192, 192, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.34),
    inset 0 -18px 30px rgba(0, 0, 0, 0.48);
  animation: orbFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.logo-orb::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 255, 255, 0.14), transparent 36%),
    radial-gradient(circle at 50% 65%, transparent 40%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
}

.logo-orb::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 24%,
      transparent 62%,
      rgba(18, 18, 18, 0.82) 100%
    ),
    radial-gradient(
      circle at 50% 46%,
      transparent 45%,
      rgba(8, 8, 8, 0.18) 70%,
      rgba(8, 8, 8, 0.64) 100%
    );
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hunter-orb-image {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 205%;
  max-width: none;
  height: auto;
  opacity: 0.96;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -46%);
  filter:
    grayscale(1)
    contrast(1.14)
    brightness(0.96)
    drop-shadow(0 8px 8px rgba(0, 0, 0, 0.72));
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.78) 84%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.78) 84%,
    transparent 100%
  );
  animation: hunterDrift 5.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.35deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.45deg);
  }
}

@keyframes hunterDrift {
  0%,
  100% {
    transform: translate(-50%, -46%) scale(1);
  }

  50% {
    transform: translate(-50%, -48%) scale(1.025);
  }
}

@keyframes satelliteDriftOne {
  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-1px, -3px);
  }

  50% {
    transform: translate(2px, -9px);
  }

  75% {
    transform: translate(-1px, -4px);
  }
}

@keyframes satelliteDriftTwo {
  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(1px, -4px);
  }

  50% {
    transform: translate(-2px, -11px);
  }

  75% {
    transform: translate(1px, -5px);
  }
}

@keyframes satelliteDriftThree {
  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-1px, -2px);
  }

  50% {
    transform: translate(1px, -8px);
  }

  75% {
    transform: translate(2px, -4px);
  }
}

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

  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
  will-change: transform;
}

.dot-1 {
  width: 8px;
  height: 8px;
  top: 63px;
  right: 98px;
  color: #c0c0c0;
  background: currentColor;
  animation: satelliteDriftOne 5.8s ease-in-out infinite;
}

.dot-2 {
  width: 5px;
  height: 5px;
  top: 145px;
  right: 76px;
  color: #a8a8a8;
  background: currentColor;
  animation: satelliteDriftTwo 5.8s ease-in-out infinite;
}

.dot-3 {
  width: 4px;
  height: 4px;
  bottom: 56px;
  left: 114px;
  color: #c0c0c0;
  background: currentColor;
  animation: satelliteDriftThree 5.8s ease-in-out infinite;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #9a9a9a;
  font-size: 7px;
  letter-spacing: 1.6px;
  transform: translateX(-50%);
  animation: scrollBounce 2.2s ease-in-out infinite;
  will-change: transform;
}

.scroll-hint span {
  font-size: 11px;
}

/* Middle statistics bar */
.stats-strip {
  min-height: 68px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(28, 28, 28, 0.82) 0%,
      rgba(28, 28, 28, 0.68) 100%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.stats-strip::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 22% 0%,
      rgba(255, 255, 255, 0.055),
      transparent 34%
    ),
    radial-gradient(
      circle at 78% 100%,
      rgba(255, 255, 255, 0.025),
      transparent 36%
    ),
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.018) 48%,
      transparent
    );
}

.stats-strip .stats-grid {
  position: relative;
  z-index: 1;
}

.stats-grid {
  width: min(920px, calc(100% - 44px));
  min-height: 68px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 22px;
}

.stat {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 7px;
  color: #c0c0c0;
  background: rgba(192, 192, 192, 0.10);
}

.infected-icon {
  position: relative;
}

.infected-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1.25px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.infected-icon::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  inset: 50% auto auto 50%;
  background:
    linear-gradient(currentColor, currentColor) center top / 1px 4px no-repeat,
    linear-gradient(currentColor, currentColor) center bottom / 1px 4px no-repeat,
    linear-gradient(currentColor, currentColor) left center / 4px 1px no-repeat,
    linear-gradient(currentColor, currentColor) right center / 4px 1px no-repeat;
  transform: translate(-50%, -50%);
}

.stat strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.stat small {
  display: block;
  margin-top: 2px;
  color: #9a9a9a;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.45px;
}

/* Main sections */
.section {
  padding: 61px 0;
  background: var(--page-bg);
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
  text-align: center;
}

.section-kicker {
  color: #c0c0c0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-heading h2 {
  margin: 7px 0 6px;
  font-size: 22px;
  letter-spacing: -0.65px;
}

.section-heading p {
  margin: 0;
  color: #9a9a9a;
  font-size: 10px;
}

/* Live servers */
.servers-section {
  padding-top: 54px;
  padding-bottom: 38px;
}

.server-grid {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.server-card {
  min-width: 0;
  min-height: 196px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(137, 158, 199, 0.13);
  border-radius: 11px;
  background: #121212;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.018);
}

.server-card-top {
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}


.server-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.server-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
}

.server-status.is-online {
  color: #35d67a;
  background: rgba(34, 190, 109, 0.09);
}

.server-status.is-offline {
  color: #e16d75;
  background: rgba(211, 75, 87, 0.08);
}

.server-status.is-loading {
  color: #c0c0c0;
  background: rgba(192, 192, 192, 0.10);
}

.server-card h3 {
  overflow: hidden;
  margin: 0 0 6px;
  color: #f3f6ff;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-address {
  margin: 0;
  color: #9a9a9a;
  font-size: 9px;
}

.server-facts {
  margin: 12px 0 14px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10px;
}

.server-facts span {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.018);
}

.server-facts small {
  display: block;
  margin-bottom: 4px;
  color: #c0c0c0;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.55px;
}

.server-facts strong {
  display: block;
  overflow: hidden;
  color: #9a9a9a;
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-connect {
  min-height: 32px;
  margin-top: auto;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  border: 1px solid rgba(53, 214, 122, 0.34);
  border-radius: 7px;
  color: #07170e;
  background: linear-gradient(135deg, #3ddd83, #26ad67);
  box-shadow: 0 7px 18px rgba(53, 214, 122, 0.18);
  font-size: 9px;
  font-weight: 700;
  transition:
    transform 0.16s ease,
    filter 0.16s ease,
    border-color 0.16s ease;
}

.server-connect:hover,
.server-connect:focus {
  color: #04120a;
  border-color: rgba(73, 229, 140, 0.58);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.server-connect.is-disabled {
  color: #68748a;
  border-color: rgba(255, 255, 255, 0.035);
  background: #171717;
  box-shadow: none;
  cursor: not-allowed;
}

.server-card-loading {
  opacity: 0.75;
}

.server-widget-error {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid rgba(225, 109, 117, 0.18);
  border-radius: 10px;
  color: #d9a4a8;
  background: #121212;
  text-align: center;
  font-size: 10px;
}

.server-refresh-note {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: #9a9a9a;
  text-align: center;
  font-size: 8px;
}

/* Vendetta feature showcase */
.features-showcase-section {
  padding-top: 48px;
  padding-bottom: 68px;
}

.feature-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.feature-showcase-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;
  background: #121212;
  box-shadow: 0 16px 35px rgba(2, 7, 15, 0.12);
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.feature-showcase-card:hover {
  border-color: rgba(192, 192, 192, 0.16);
  background: #141414;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.feature-showcase-body {
  flex: 1;
  min-height: 225px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.feature-showcase-meta {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-showcase-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-right: auto;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #d0d0d0, #a8a8a8);
  box-shadow: 0 7px 18px rgba(192, 192, 192, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.feature-tag {
  padding: 3px 7px;
  border: 1px solid rgba(192, 192, 192, 0.10);
  border-radius: 5px;
  color: #c0c0c0;
  background: rgba(192, 192, 192, 0.08);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.35px;
}

.feature-showcase-body h3 {
  margin: 20px 0 9px;
  color: #f3f6ff;
  font-size: 12px;
}

.feature-showcase-body p {
  margin: 0;
  color: #9a9a9a;
  font-size: 9px;
  line-height: 1.6;
}

.feature-showcase-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  color: #c0c0c0;
  font-size: 9px;
  font-weight: 600;
  transition: color 0.16s ease, gap 0.16s ease;
}

.feature-showcase-body a:hover,
.feature-showcase-body a:focus-visible {
  color: #ffffff;
  gap: 11px;
}


/* Footer */
.site-footer {
  padding: 34px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  background: #121212;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(110px, 0.55fr) minmax(150px, 0.65fr);
  align-items: start;
  gap: clamp(48px, 6vw, 82px);
}

.footer-brand p {
  max-width: 340px;
  margin: 10px 0 0;
  color: #9a9a9a;
  font-size: 9.5px;
  line-height: 1.65;
}

.footer-wordmark {
  display: inline-flex;
  color: #f3f6ff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
  transition: color 0.16s ease, text-shadow 0.16s ease;
}

.footer-wordmark:hover,
.footer-wordmark:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.24);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  margin: 3px 0 10px;
  color: #c0c0c0;
  font-size: 8px;
  letter-spacing: 0.65px;
}

.footer-column a {
  width: fit-content;
  position: relative;
  color: #9a9a9a;
  font-size: 9.5px;
  line-height: 1.5;
  transition: color 0.16s ease, transform 0.16s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: #c0c0c0;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #e8e8e8;
  transform: translateX(2px);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.steam-group-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.steam-mark {
  width: 13px;
  height: 13px;
  display: inline-block;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.steam-mark::before,
.steam-mark::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.steam-mark::before {
  width: 4px;
  height: 4px;
  top: 1px;
  right: 1px;
}

.steam-mark::after {
  width: 3px;
  height: 3px;
  left: -3px;
  bottom: -1px;
  box-shadow: 5px -4px 0 -1px currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  color: #9a9a9a;
  font-size: 7.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .vendetta-nav-container {
    padding: 0 24px;
  }

  .navbar-nav {
    gap: 2px;
  }

  .nav-link {
    padding-inline: 11px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 240px;
  }

  .stats-grid {
    width: min(650px, calc(100% - 44px));
    padding: 0;
    gap: 16px;
  }

  .server-grid {
    width: min(650px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .server-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .feature-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }

  .vendetta-nav-container {
    width: 100%;
    padding: 0 16px;
  }

  .navbar {
    min-height: 68px;
    position: relative;
    padding: 0;
  }

  .navbar-icon {
    height: 44px;
  }

  .navbar-brand {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-toggler {
    display: block;
    margin-right: 10px;
  }

  .navbar-collapse {
    display: none;
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bar-bg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    display: block;
    width: 100%;
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-item {
    display: block;
  }

  .nav-link {
    width: 100%;
    display: block;
    padding: 13px 16px;
    text-align: left;
    font-size: 13px;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 0;
  }

  .hero-copy {
    position: relative;
    isolation: isolate;
  }

  .hero-copy::before {
    content: "";
    width: min(470px, 112vw);
    height: 230px;
    position: absolute;
    z-index: -1;
    top: -72px;
    left: 50%;
    pointer-events: none;
    background: radial-gradient(
      ellipse at center,
      rgba(205, 205, 205, 0.075) 0%,
      rgba(181, 181, 181, 0.032) 46%,
      transparent 74%
    );
    transform: translateX(-50%);
  }

  .hero-art {
    min-height: 280px;
    margin-top: 14px;
    padding-bottom: 42px;
  }

  .dot-1 {
    right: 15%;
  }

  .dot-2 {
    right: 9%;
  }

  .dot-3 {
    left: 16%;
  }

  .scroll-hint {
    bottom: 17px;
  }

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

  h1 {
    font-size: 43px;
  }

  .stats-grid {
    width: min(100% - 28px, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 0;
    column-gap: 8px;
    row-gap: 14px;
  }

  .stat {
    min-height: 34px;
    display: grid;
    grid-template-columns: 28px minmax(0, 105px);
    justify-content: center;
    gap: 9px;
  }

  .stat > div {
    width: 100%;
    min-width: 0;
  }

  .stat small {
    min-height: 18px;
    line-height: 1.25;
  }

  .server-grid,
  .feature-showcase-grid {
    grid-template-columns: 1fr;
  }

  .server-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-orb,
  .hunter-orb-image,
  .orbit-dot,
  .scroll-hint {
    animation: none;
  }
}
