:root {
  --bg: #030407;
  --panel: rgba(15, 18, 26, 0.8);
  --accent: #6200ff;
  --cyan: #00d4ff;
  --text: #f0f0f5;
  --muted: #8a8f9d;
  --border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

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

/* Glow Effects */
.glow-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.3;
}
.sphere-1 { width: 500px; height: 500px; background: var(--accent); top: -10%; left: -10%; }
.sphere-2 { width: 400px; height: 400px; background: var(--cyan); bottom: -10%; right: -10%; }

/* Navbar */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 4, 7, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; justify-content: space-between; width: 100%; align-items: center; }

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1px;
}
.logo span { color: var(--accent); font-weight: 300; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; opacity: 0.7; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--cyan); }

/* Hero */
.hero { padding: 120px 0 80px; text-align: center; }
.kicker { font-family: var(--font-heading); font-size: 12px; letter-spacing: 4px; color: var(--cyan); text-transform: uppercase; margin-bottom: 16px; display: block; }
.h1 { font-family: var(--font-heading); font-size: clamp(48px, 8vw, 90px); line-height: 1; font-weight: 700; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(to right, var(--accent), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-p { max-width: 600px; margin: 0 auto 40px; color: var(--muted); font-size: 18px; }

/* Buttons */
.btn {
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 10px 20px rgba(98, 0, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); background: #7a26ff; }
.btn-outline { border: 1px solid var(--border); color: white; background: transparent; }
.btn-glass { background: rgba(255, 255, 255, 0.05); color: white; backdrop-filter: blur(10px); }

/* Section Styles */
.section { padding: 100px 0; }
.section-title { font-family: var(--font-heading); font-size: 40px; margin-bottom: 24px; }
.muted { color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.feature-item { margin-top: 32px; border-left: 2px solid var(--accent); padding-left: 24px; }
.feature-item strong { display: block; margin-bottom: 8px; font-size: 18px; }

/* Vinyl Animation */
.vinyl-record {
  width: 400px; height: 400px;
  background: #111;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #111, #111 2px, #181818 4px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s linear infinite;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.vinyl-label { width: 150px; height: 150px; background: linear-gradient(45deg, var(--accent), var(--cyan)); border-radius: 50%; border: 5px solid #000; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.glass-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  transition: 0.3s;
}
.glass-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.card-img { width: 100%; aspect-ratio: 1; border-radius: 8px; margin-bottom: 20px; }

/* Manifesto / Code */
.manifesto-box { background: #000; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.manifesto-header { padding: 12px 20px; background: #111; display: flex; justify-content: space-between; align-items: center; font-family: monospace; font-size: 12px; }
.status-dot { width: 8px; height: 8px; background: #00ff00; border-radius: 50%; box-shadow: 0 0 10px #00ff00; }
.manifesto-body { padding: 40px; }
.code-block { background: #080808; padding: 20px; border-radius: 4px; margin: 24px 0; border-left: 2px solid var(--cyan); }
.code-block pre { font-family: monospace; color: var(--cyan); font-size: 14px; }

/* Roadmap */
.roadmap-container { border-left: 1px solid var(--border); padding-left: 40px; position: relative; margin-top: 40px; }
.road-step { margin-bottom: 60px; position: relative; }
.step-num {
  position: absolute; left: -60px; top: 0;
  width: 40px; height: 40px; background: var(--bg); border: 2px solid var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading); color: var(--accent);
}

/* Footer */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); background: #050508; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 16px; max-width: 300px; }
.footer-links h4 { margin-bottom: 20px; font-family: var(--font-heading); }
.footer-links a { display: block; color: var(--muted); text-decoration: none; margin-bottom: 12px; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--border); text-align: center; font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .grid-2, .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .h1 { font-size: 50px; }
  .visual-box { order: -1; margin-bottom: 40px; display: flex; justify-content: center; }
  .vinyl-record { width: 300px; height: 300px; }
}