:root {
  --bg-deep: #050b14;
  --bg-card: #0c1629;
  --border: rgba(34, 211, 238, 0.35);
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --blue: #38bdf8;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --radius: 14px;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.glow--one {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: #0891b2;
}

.glow--two {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -100px;
  background: #2563eb;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(5, 11, 20, 0.75);
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
}

.logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(34, 211, 238, 0.06);
  flex-shrink: 0;
}

.logo__accent {
  color: var(--cyan);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--cyan);
}

main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  text-align: center;
  padding: 3rem 0 3.5rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border);
  background: rgba(34, 211, 238, 0.08);
  margin: 0 0 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #67e8f9);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.5);
}

.btn--ghost {
  color: var(--cyan);
  border: 1px solid var(--border);
  background: rgba(34, 211, 238, 0.06);
}

.btn--ghost:hover {
  background: rgba(34, 211, 238, 0.12);
}

.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 1rem;
}

.status {
  padding: 2rem 0;
}

.status__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.06) inset;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.stat-card:hover {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.12);
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.stat-card__icon--server {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid var(--border);
}

.stat-card__icon--discord {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.35);
}

.stat-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.stat-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.stat-card__value.is-online {
  color: #4ade80;
}

.stat-card__value.is-offline {
  color: #f87171;
}

.stat-card__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.roles {
  padding: 2.5rem 0;
}

.roles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.role-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.25s;
}

.role-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(34, 211, 238, 0.15);
}

.role-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}

.role-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.role-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.role-card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(34, 211, 238, 0.08);
}
