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

:root {
  color-scheme: dark;
  --bg: #0b0f1f;
  --bg-alt: #0f1428;
  --card: rgba(255, 255, 255, 0.06);
  --muted: rgba(255, 255, 255, 0.65);
  --primary: #6c7dff;
  --primary-strong: #8ea1ff;
  --accent: #39f6c2;
  --border: rgba(255, 255, 255, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1b1f3c 0%, var(--bg) 45%);
  color: #ffffff;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 15, 31, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

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

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #0b0f1f;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.hero {
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #0b0f1f;
}

.btn.ghost {
  border-color: var(--border);
  color: #ffffff;
}

.btn-discord {
  gap: 10px;
}

.btn-discord .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.btn-discord svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

.hero-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  font-weight: 700;
  font-size: 1.2rem;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  display: grid;
  gap: 20px;
}

.stat-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.stat-title {
  font-weight: 600;
  margin-bottom: 18px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
}

.stat-row strong {
  color: #fff;
}

.stat-bar {
  margin-top: 18px;
}

.bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  overflow: hidden;
}

.bar-fill {
  width: 86%;
  height: 100%;
  background: linear-gradient(120deg, var(--accent), #6cf3ff);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}

.mini-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.mini-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 24px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 100%;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.feature h3 {
  margin-bottom: 8px;
}

.pricing .price {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing .price span {
  font-size: 1rem;
  color: var(--muted);
}

.highlighted {
  border: 1px solid var(--primary);
  box-shadow: 0 18px 40px rgba(108, 125, 255, 0.2);
  position: relative;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: #061514;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.network {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.network-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
}

.network-list strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.map-card {
  background: rgba(108, 125, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
}

.map {
  position: relative;
  height: 240px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 40%, rgba(108, 125, 255, 0.25), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(57, 246, 194, 0.2), transparent 45%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  overflow: hidden;
}

.pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(57, 246, 194, 0.6);
  animation: pulse 2.6s infinite;
}

.p1 {
  top: 40%;
  left: 30%;
}

.p2 {
  top: 30%;
  left: 65%;
  animation-delay: 0.6s;
}

.p3 {
  top: 65%;
  left: 55%;
  animation-delay: 1.2s;
}

.p4 {
  top: 50%;
  left: 75%;
  animation-delay: 1.6s;
}

.p5 {
  top: 70%;
  left: 28%;
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 246, 194, 0.5);
  }
  70% {
    box-shadow: 0 0 0 24px rgba(57, 246, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 246, 194, 0);
  }
}

.map-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  color: var(--muted);
}

.map-stats strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.testimonials .quote {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.cta {
  padding-bottom: 110px;
}

.cta-box {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, rgba(108, 125, 255, 0.2), rgba(57, 246, 194, 0.2));
  border-radius: 26px;
  padding: 32px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  background: #070a16;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 76px;
    right: 4%;
    flex-direction: column;
    background: rgba(11, 15, 31, 0.98);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 40px;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .map-stats {
    flex-direction: column;
  }
}
