@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --bg: #08090f;
  --bg-soft: #10111a;
  --glass: rgba(17, 19, 30, 0.55);
  --glass-border: rgba(255, 209, 102, 0.35);
  --gold: #ffd166;
  --gold-neon: #ffbf3c;
  --text: #f5f7ff;
  --muted: #bec4d6;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 0%, #17121e 0%, var(--bg) 45%), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

.particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(14px);
  background: rgba(8, 9, 15, 0.65);
  border-bottom: 1px solid rgba(255, 209, 102, 0.25);
}

.brand {
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 209, 102, 0.16);
  box-shadow: 0 0 16px rgba(255, 209, 102, 0.24);
}

.live-banner {
  position: sticky;
  top: 72px;
  z-index: 28;
  text-align: center;
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(8, 9, 15, 0.7);
  border-bottom: 1px solid rgba(255, 209, 102, 0.2);
}

.live-banner-ok {
  color: #57f287;
}

.live-banner-bad {
  color: #ed4245;
}

main {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.section {
  margin-top: 1.5rem;
}

.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.glass-card {
  background: linear-gradient(130deg, rgba(255, 209, 102, 0.08), rgba(255, 209, 102, 0.02)) var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero .glass-card {
  max-width: 900px;
  padding: 2rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0.35rem 0;
  font-family: Poppins, Inter, sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 5rem);
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255, 209, 102, 0.5);
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-metrics {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.metric-pill {
  border: 1px solid rgba(255, 209, 102, 0.3);
  background: rgba(255, 209, 102, 0.06);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.btn {
  border: 1px solid rgba(255, 209, 102, 0.42);
  background: rgba(255, 209, 102, 0.08);
  color: var(--text);
  padding: 0.72rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 209, 102, 0.2);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.45);
}

.grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.live-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

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

.feature-card {
  padding: 1rem;
}

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

.core-card {
  padding: 1.1rem;
}

.cta-band {
  margin-top: 1.6rem;
  padding: 1.2rem;
  text-align: center;
}

.pricing-card {
  margin-top: 1.6rem;
  padding: 1.2rem;
}

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

.plan-card {
  border: 1px solid rgba(255, 209, 102, 0.25);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 209, 102, 0.04);
}

.plan-highlight {
  border-color: rgba(255, 209, 102, 0.52);
  box-shadow: 0 0 22px rgba(255, 209, 102, 0.2);
}

.plan-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 0.2rem 0 0.5rem;
}

.command-highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.command-highlight-card {
  padding: 1rem;
}

.faq-card {
  margin-top: 1.5rem;
  padding: 1.2rem;
}

.faq-item + .faq-item {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 209, 102, 0.2);
}

.stat-card,
.command-card,
.owner-card,
.legal-card {
  padding: 1rem;
  transition: transform 0.22s ease, box-shadow 0.25s ease;
}

.stat-card:hover,
.command-card:hover,
.owner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.18);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.session-ok {
  color: #57f287;
}

.session-bad {
  color: #ed4245;
}

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

.owner-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.owners-hero {
  padding: 1.1rem;
}

.owner-header {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.owner-card {
  overflow: hidden;
  border: 1px solid rgba(255, 209, 102, 0.36);
  box-shadow: 0 0 0 1px rgba(255, 209, 102, 0.1), 0 0 22px rgba(255, 209, 102, 0.18);
}

.owner-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.owner-banner {
  width: calc(100% + 2rem);
  max-height: 110px;
  object-fit: cover;
  margin: -1rem -1rem 0.8rem;
  border-bottom: 1px solid rgba(255, 209, 102, 0.22);
}

.owner-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 209, 102, 0.9);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.45);
}

.owner-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.owner-badges {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.owner-icons {
  margin: 0.7rem 0 0.25rem;
  font-size: 1.35rem;
  letter-spacing: 0.08rem;
}

.owner-mutual {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 1rem;
}

.owner-meta-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-meta,
.owner-bio {
  margin: 0.35rem 0;
}

.owner-meta {
  padding: 0.55rem;
  border-radius: 10px;
  background: rgba(255, 209, 102, 0.06);
  border: 1px solid rgba(255, 209, 102, 0.2);
}

.owner-meta strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.owner-meta-wide {
  grid-column: 1 / -1;
}

.owner-about {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 209, 102, 0.24);
}

.owner-about h4 {
  margin: 0;
  color: var(--gold);
  font-size: 0.95rem;
}

.owner-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: #9bc4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.badge {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  margin-top: 0.5rem;
  background: rgba(255, 209, 102, 0.18);
  border: 1px solid rgba(255, 209, 102, 0.38);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.45rem;
}

.status-online { background: #57f287; }
.status-idle { background: #faa61a; }
.status-dnd { background: #ed4245; }
.status-offline { background: #747f8d; }

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

.command-list {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ea5ba;
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .nav-links {
    justify-content: center;
  }

  .owner-meta-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-metrics {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
