/* Fonts: Orbitron for headings, Inter for body */
:root {
  --bg: #070712;
  --card: #0e0e1c;
  --text: #e9e9ff;
  --muted: #a7a7c8;
  --neon-pink: #ff3fd1;
  --neon-purple: #9b5cff;
  --neon-blue: #33e1ff;
  --accent: #00ffc6;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(153, 72, 255, 0.2), transparent 60%),
              radial-gradient(900px 500px at -10% 20%, rgba(0, 255, 198, 0.12), transparent 60%),
              var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7,7,18,0.6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.logo { height: 40px; display: block; }
.logo.small { height: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.menu { display: none; gap: 24px; }
.menu a { color: var(--muted); text-decoration: none; font-weight: 600; }
.menu a:hover { color: var(--text); }

.cta.gradient { padding: 10px 16px; border-radius: 12px; text-decoration: none; color: #0b0b11; font-weight: 800; background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-blue)); box-shadow: 0 0 24px rgba(255, 63, 209, 0.45), inset 0 0 16px rgba(255,255,255,0.25); }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr; align-items: center; gap: 32px; padding: 80px 20px 40px; position: relative; }
.hero-copy .eyebrow { letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.title { font-family: Orbitron, Inter, sans-serif; font-size: 40px; line-height: 1.1; margin: 10px 0; }
.title .neon { color: var(--neon-pink); text-shadow: 0 0 16px rgba(255,63,209,0.75), 0 0 36px rgba(51,225,255,0.35); }
.subtitle { color: var(--muted); margin: 0 0 10px; }
.subtitle .solana { color: var(--neon-purple); }
.lead { max-width: 64ch; color: var(--text); opacity: 0.95; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 6px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:12px; padding:12px 16px; text-decoration:none; font-weight:800; border:1px solid rgba(255,255,255,0.12); color:var(--text); }
.btn:focus-visible, .menu a:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(51,225,255,0.35), 0 0 0 6px rgba(255,63,209,0.25); border-color: transparent; }
.btn.primary { background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink)); color: #0b0b11; border:none; box-shadow: 0 8px 24px rgba(51,225,255,0.25); }
.btn.ghost:hover { border-color: rgba(255,255,255,0.35); }
.note { color: var(--muted); font-size: 14px; }

.hero-art { position: relative; width: 100%; height: 420px; display: grid; place-items: center; }
.phone { width: min(560px, 90%); height: auto; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8)); transform: rotate(-6deg); position: relative; z-index: 1; }
.glow { position: absolute; width: 60%; height: 60%; border-radius: 50%; filter: blur(80px); opacity: 0.55; mix-blend-mode: screen; z-index: 0; pointer-events: none; }
.glow.pink { background: var(--neon-pink); left: 10%; top: 18%; }
.glow.purple { background: var(--neon-purple); right: 10%; bottom: 10%; }
.glow.blue { background: var(--neon-blue); right: 30%; top: 0; }

/* Sections */
.section { padding: 72px 20px; scroll-margin-top: 88px; }
.section-title { font-family: Orbitron, Inter, sans-serif; font-size: 24px; margin: 0 0 24px; letter-spacing: 0.04em; }

.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 10px 30px rgba(0,0,0,0.35); }
.card h4 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0 0 10px; color: var(--muted); }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); }

.stack { display: grid; grid-template-columns: 1fr; gap: 16px; }
.stack-item { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 18px; }

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--neon-purple), transparent); opacity: 0.5; }
.step { position: relative; padding-left: 56px; margin: 14px 0; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding-top: 14px; padding-bottom: 14px; }
.badge { position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: #0b0b11; font-weight: 800; background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink)); box-shadow: 0 0 0 3px rgba(255,255,255,0.06); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0; background: rgba(7,7,18,0.7); }
.footer-content { display: grid; gap: 18px; align-items: center; }
.brandline { display: flex; align-items: center; gap: 12px; }
.tag { color: var(--muted); }
.links { display: flex; flex-wrap: wrap; gap: 12px; }
.legal { color: var(--muted); font-size: 14px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Starfield canvas fills viewport */
#stars { position: fixed; inset: 0; z-index: -1; }

/* Responsive */
@media (min-width: 900px) {
  .menu { display: flex; }
  .hero { grid-template-columns: 1.1fr 0.9fr; padding: 120px 20px 80px; }
  .title { font-size: 64px; }
  .hero-art { height: 560px; }
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .stack { grid-template-columns: repeat(3, 1fr); }
  .footer-content { grid-template-columns: auto 1fr auto; }
}


