:root {
  --bg: #07090f;
  --bg-soft: #101522;
  --card: rgba(18, 24, 38, 0.82);
  --text: #f5f7fb;
  --muted: #a8b0c3;
  --accent: #7c3cff;
  --accent-2: #00d4ff;
  --discord: #5865f2;
  --discord-hover: #6f79ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 60, 255, 0.25), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.16), transparent 30rem),
    linear-gradient(135deg, #05060a 0%, var(--bg) 48%, #0c101d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
}

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

.site-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 56px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.status-online {
  background: #39ff88;
  box-shadow: 0 0 18px rgba(57, 255, 136, 0.9);
}

.status-warning {
  background: #ffcc66;
  box-shadow: 0 0 18px rgba(255, 204, 102, 0.7);
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(120deg, #fff, #bda8ff 45%, #73e8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 34px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-discord {
  background: var(--discord);
  box-shadow: 0 16px 42px rgba(88, 101, 242, 0.42);
}

.btn-discord:hover {
  background: var(--discord-hover);
  box-shadow: 0 20px 48px rgba(88, 101, 242, 0.55);
}

.discord-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.4), transparent 35%, rgba(0, 212, 255, 0.28));
  opacity: 0.45;
  pointer-events: none;
}

.panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.server-window {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(5, 7, 12, 0.72);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.window-content {
  padding: 22px;
}

.window-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
}

.window-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pill-online {
  background: rgba(57, 255, 136, 0.14);
  color: #8dffb7;
  border: 1px solid rgba(57, 255, 136, 0.35);
  box-shadow: 0 0 20px rgba(57, 255, 136, 0.14);
}

.pill-offline {
  background: rgba(255, 85, 85, 0.13);
  color: #ff9b9b;
  border: 1px solid rgba(255, 85, 85, 0.35);
  box-shadow: 0 0 20px rgba(255, 85, 85, 0.12);
}

.pill-neutral {
  background: rgba(124, 60, 255, 0.18);
  color: #d6ccff;
  border: 1px solid rgba(124, 60, 255, 0.2);
}

.server-highlight strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.server-highlight small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.stat {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

footer {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 12, 0.35);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

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

  .hero-card {
    order: -1;
  }
}

@media (max-width: 560px) {
  .site-wrap {
    width: min(100% - 22px, 1120px);
  }

  .hero-card {
    padding: 16px;
    border-radius: 22px;
  }

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

  .btn {
    width: 100%;
  }
}
