:root {
  --bg:          #080c14;
  --surface:     #0e1520;
  --surface2:    #141d2b;
  --border:      rgba(255,255,255,0.06);
  --border2:     rgba(255,255,255,0.12);
  --accent:      #3b82f6;
  --accent2:     #60a5fa;
  --accent-glow: rgba(59,130,246,0.25);
  --gold:        #f59e0b;
  --gold-glow:   rgba(245,158,11,0.2);
  --discord:     #5865f2;
  --discord-glow:rgba(88,101,242,0.3);
  --text:        #e2e8f0;
  --muted:       #64748b;
  --muted2:      #94a3b8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ── GRID OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER / NAV ──────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent-glow);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center top,
    rgba(59,130,246,0.12) 0%,
    rgba(59,130,246,0.04) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-kicker {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 0.6s ease 0.1s forwards;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  animation: fade-up 0.6s ease 0.2s forwards;
}

.hero h1 .highlight {
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  text-stroke: 1px var(--accent);
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted2);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.6s ease 0.35s forwards;
}

.hero-actions {
  margin-top: 2.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.6s ease 0.5s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.18s;
}

.btn:hover::before { opacity: 1; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg    { flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(59,130,246,0.4), 0 6px 20px rgba(0,0,0,0.5);
}

.btn-secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.btn-discord {
  background: var(--discord);
  color: #fff;
  box-shadow: 0 0 24px var(--discord-glow), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-discord:hover {
  box-shadow: 0 0 36px rgba(88,101,242,0.45), 0 6px 20px rgba(0,0,0,0.5);
}

/* ── ACCESS NOTICE ─────────────────────────────────── */
.access-notice {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  opacity: 0;
  animation: fade-up 0.6s ease 0.62s forwards;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.access-badge svg { flex-shrink: 0; }

.access-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.6;
}

.access-desc a {
  color: var(--muted2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.access-desc a:hover { color: #fff; }

/* ── INFO STRIP ────────────────────────────────────── */
.info-strip {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 3rem auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  animation: fade-up 0.6s ease 0.75s forwards;
}

.info-cell {
  background: var(--surface);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-cell .label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.info-cell .value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-brand span { color: var(--muted2); }

.footer-links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.footer-links a:hover {
  color: var(--muted2);
  background: rgba(255,255,255,0.04);
}

/* ── CORNER DECORATIONS ────────────────────────────── */
.corner-deco {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.corner-deco.tl { top: 0; left: 0; }
.corner-deco.br { bottom: 0; right: 0; transform: rotate(180deg); }

/* ── PAGE CONTENT STYLES ───────────────────────────── */
.page-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.content-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.content-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent2);
  margin: 1.5rem 0 0.75rem;
}

.content-card p {
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-card ul {
  color: var(--muted2);
  line-height: 1.75;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-card li {
  margin-bottom: 0.5rem;
}

.content-card a {
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.2s;
}

.content-card a:hover {
  color: #fff;
}

/* Feature grid for about page */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.feature-item .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-item .feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-item .feature-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Dev note box - for internal notes (convert to comments before publishing) */
.dev-note {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.dev-note .dev-note-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-note p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Human-made badge */
.human-made-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #10b981;
  margin: 1rem 0;
}

.human-made-badge svg { flex-shrink: 0; }

/* Roadmap progress bars */
.roadmap-section {
  margin-bottom: 2.5rem;
}

.roadmap-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 1rem;
}

.progress-item {
  margin-bottom: 1.25rem;
}

.progress-item .progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.progress-item .progress-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.progress-item .progress-percent {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent2);
}

.progress-bar {
  height: 8px;
  background: var(--surface2);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--accent-glow);
}

.progress-bar .progress-fill.complete {
  background: linear-gradient(90deg, #10b981, #34d399);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.progress-bar .progress-fill.high {
  background: linear-gradient(90deg, #10b981, #34d399);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.progress-bar .progress-fill.medium {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.progress-bar .progress-fill.low {
  background: linear-gradient(90deg, #ef4444, #f87171);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Roadmap timeline */
.roadmap-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border2);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  border-left: 2px solid var(--surface2);
  margin-left: -2rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-item.completed::before {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.timeline-item.current::before {
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.timeline-item .timeline-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.timeline-item .timeline-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.timeline-item .timeline-desc {
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .info-strip { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .page-container { padding: 3rem 1.25rem 4rem; }
  .content-card { padding: 1.5rem; }
}
