/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cyan: #00b4d8;
  --cyan-glow: rgba(0, 180, 216, 0.3);
  --purple: #9b59b6;
  --purple-glow: rgba(155, 89, 182, 0.3);
  --gold: #ffd700;
  --green: #2ecc71;
  --red: #e74c3c;
  --blue: #3498db;

  --bg: #0a0b0f;
  --bg-card: #12141a;
  --bg-card-hover: #181b24;
  --bg-surface: #1a1d27;
  --text: #e4e5e7;
  --text-dim: #8b8d94;
  --text-bright: #ffffff;
  --border: rgba(255, 255, 255, 0.06);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
code { font-family: 'JetBrains Mono', 'Fira Code', monospace; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PARTICLES CANVAS ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-bright);
}

.nav-logo img {
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop behind drawer */
.nav-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 840;
  transition: background 0.28s ease;
}

.nav-backdrop.visible {
  background: rgba(0, 0, 0, 0.6);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-primary:hover {
  background: #00c8ef;
  box-shadow: 0 0 30px var(--cyan-glow), 0 0 60px rgba(0, 180, 216, 0.15);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.nav-links .btn {
  background: rgba(0, 180, 216, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.nav-links .btn:hover {
  background: rgba(0, 180, 216, 0.2);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  gap: 60px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse, var(--cyan-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-bright);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero logo animation */
.hero-image {
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 0 40px var(--cyan-glow)) drop-shadow(0 0 80px rgba(155, 89, 182, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-pulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 220px;
  height: 220px;
  border-color: rgba(0, 180, 216, 0.2);
  animation-delay: 0s;
}

.ring-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(155, 89, 182, 0.15);
  animation-delay: 1.3s;
}

.ring-3 {
  width: 340px;
  height: 340px;
  border-color: rgba(0, 180, 216, 0.08);
  animation-delay: 2.6s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}

/* ===== ALPHA TOP BAR ===== */
.alpha-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 165, 0, 0.06);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}

.alpha-topbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.alpha-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #000;
  background: #ffa500;
  border-radius: 4px;
}

.alpha-topbar p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.alpha-topbar a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.alpha-topbar a:hover { color: var(--text-bright); }

.alpha-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.alpha-close:hover { color: var(--text-bright); }

.alpha-topbar.hidden { display: none; }

/* Push nav down when alpha bar is visible */
body:has(.alpha-topbar:not(.hidden)) .nav {
  top: 42px;
}

body:has(.alpha-topbar:not(.hidden)) .hero {
  padding-top: 160px;
}

@media (max-width: 900px) {
  .alpha-topbar-inner {
    text-align: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .alpha-topbar p {
    font-size: 0.75rem;
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .alpha-topbar {
    padding: 12px 0;
  }

  .alpha-topbar-inner {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-right: 40px;
    text-align: center;
  }

  .alpha-topbar p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .alpha-badge {
    font-size: 0.6rem;
  }

  .alpha-close {
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 1.6rem;
    padding: 8px 12px;
    line-height: 1;
  }

  body:has(.alpha-topbar:not(.hidden)) .nav {
    top: 72px;
  }

  body:has(.alpha-topbar:not(.hidden)) .hero {
    padding-top: 190px;
  }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 16px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-cyan { background: rgba(0, 180, 216, 0.1); color: var(--cyan); }
.icon-purple { background: rgba(155, 89, 182, 0.1); color: var(--purple); }
.icon-gold { background: rgba(255, 215, 0, 0.1); color: var(--gold); }
.icon-green { background: rgba(46, 204, 113, 0.1); color: var(--green); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== COMMAND TABS ===== */
.command-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.12); }

.tab.active {
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.25);
}

.command-panel { display: none; }
.command-panel.active { display: block; }

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 12px;
}

.command-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.command-item:hover {
  background: rgba(0, 180, 216, 0.03);
  border-color: rgba(0, 180, 216, 0.15);
}

.command-item code {
  font-size: 0.85rem;
  color: var(--cyan);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.command-item span {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: right;
}

/* ===== DEVELOPMENT ===== */
.dev-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.dev-highlights h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.dev-highlights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dev-highlights li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.dev-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.dev-highlights li strong { color: var(--text); }
.dev-highlights li code {
  font-size: 0.82rem;
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Code window */
.code-window {
  background: #0d0f14;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #febc2e; }
.code-dots span:nth-child(3) { background: #28c840; }

.code-title {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.code-body {
  padding: 20px;
  font-size: 0.82rem;
  line-height: 1.7;
  overflow-x: auto;
  color: var(--text-dim);
}

.code-comment { color: #555b6e; }
.code-keyword { color: var(--cyan); }
.code-fn { color: var(--purple); }
.code-string { color: var(--green); }
.code-operator { color: var(--text-dim); }
.code-dim { color: #444a5e; }

/* ===== SETUP STEPS ===== */
.setup-steps {
  max-width: 720px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.setup-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--purple));
  opacity: 0.25;
}

.setup-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.08);
  border: 2px solid rgba(0, 180, 216, 0.3);
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.step-content code {
  font-size: 0.82rem;
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Discord sidebar preview */
.discord-sidebar {
  max-width: 260px;
  margin: 0 auto;
  background: #2b2d31;
  border-radius: 12px;
  overflow: hidden;
}

.discord-server-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #2b2d31;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f2f3f5;
}

.discord-channels {
  padding: 8px 0;
}

.discord-category {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 18px 8px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #949ba4;
  cursor: default;
}

.discord-category svg {
  color: #949ba4;
}

.discord-channel {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 6px 16px;
  margin: 1px 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #80848e;
  border-radius: 4px;
  cursor: default;
  transition: background 0.1s, color 0.1s;
}

.discord-channel:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #dbdee1;
}

.discord-channel svg {
  flex-shrink: 0;
}

.discord-channel-locked {
  color: #5d6069;
}

.discord-channel-locked:hover {
  color: #b5bac1;
}

/* Channel layout: sidebar + descriptions side by side */
.setup-channels-layout {
  max-width: 720px;
  margin: -8px auto 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  padding-left: 80px;
}

.channel-descriptions {
  padding-top: 12px;
}

.channel-desc-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.channel-desc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-desc-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-desc-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.channel-desc-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.channel-desc-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

@media (max-width: 900px) {
  .setup-channels-layout {
    padding-left: 0;
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .channel-descriptions {
    display: none;
  }
}

@media (max-width: 600px) {
  .setup-channels-layout {
    max-width: 100%;
  }

  .discord-sidebar {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .setup-steps::before { left: 19px; }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .setup-step { gap: 16px; }
  .discord-sidebar { max-width: 100%; }
}

/* ===== PORTAL SECTION ===== */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.portal-bottom {
  max-width: 720px;
  margin: 0 auto;
}

.portal-access-note {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.15);
}

.portal-access-note strong {
  color: var(--cyan);
}

.portal-pricing-asterisk {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

.portal-pricing-asterisk strong {
  color: var(--gold);
}

/* ===== COMING SOON BUTTON ===== */
.btn-coming-soon {
  cursor: default;
  opacity: 0.85;
}

.nav-links .btn-coming-soon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  border-color: rgba(255, 255, 255, 0.1);
  cursor: default;
}

.nav-links .btn-coming-soon:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ===== DEV STATUS ===== */
.dev-status-text {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== ROADMAP ===== */
.roadmap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.roadmap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.roadmap-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.roadmap-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid;
}

.roadmap-item.done .roadmap-marker {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.roadmap-item.done::after { background: var(--cyan); opacity: 0.3; }

.roadmap-item.active .roadmap-marker {
  background: transparent;
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
  animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
  0%, 100% { box-shadow: 0 0 8px var(--cyan-glow); }
  50% { box-shadow: 0 0 20px var(--cyan-glow); }
}

.roadmap-item.upcoming .roadmap-marker {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.roadmap-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-bright);
}

.roadmap-item span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.roadmap-item.upcoming strong { color: var(--text-dim); }
.roadmap-item.upcoming span { color: rgba(255, 255, 255, 0.25); }

/* ===== CTA ===== */
.section-cta {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.06) 0%, transparent 60%);
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

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

/* ===== ALPHA FORM ===== */
.alpha-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-optional {
  font-weight: 400;
  color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 180, 216, 0.4);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238b8d94' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  align-self: center;
  min-width: 200px;
  justify-content: center;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.form-success {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-bright);
}

.footer-brand img { border-radius: 50%; }

.footer-text {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-discord {
  font-size: 0.82rem;
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-discord:hover {
  color: var(--text-bright);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-logo-wrapper {
    width: 240px;
    height: 240px;
  }

  .hero-logo { width: 130px; height: 130px; }
  .ring-1 { width: 170px; height: 170px; }
  .ring-2 { width: 210px; height: 210px; }
  .ring-3 { width: 250px; height: 250px; }

  .dev-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 280px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 80px;
    z-index: 850;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex !important;
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 20px;
    margin: 2px 8px;
    text-align: left;
    border-radius: 8px;
    color: var(--text-dim);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }

  .nav-links a:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links .btn {
    margin: 12px 12px 0;
    text-align: center;
    justify-content: center;
  }

  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 100px 0 60px; gap: 40px; }
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .command-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }

  .hero-logo-wrapper { width: 180px; height: 180px; }
  .hero-logo { width: 100px; height: 100px; }
  .ring-1 { width: 130px; height: 130px; }
  .ring-2 { width: 160px; height: 160px; }
  .ring-3 { width: 190px; height: 190px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; width: 100%; justify-content: center; }

  .command-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .command-item span { text-align: left; }

  .command-item code { white-space: normal; }

  .roadmap-card { padding: 20px; }


  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
