:root {
  --bg: #08080c;
  --surface: #111116;
  --surface2: #19191f;
  --surface3: #222228;
  --accent: #9b6bff;
  --accent-dim: rgba(155, 107, 255, 0.15);
  --lime: #c8ff00;
  --lime-dim: rgba(200, 255, 0, 0.1);
  --text: #f2f2f5;
  --text-dim: rgba(242, 242, 245, 0.45);
  --text-muted: rgba(242, 242, 245, 0.25);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(155, 107, 255, 0.2);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.01em;
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 8px;
  transition: all 0.2s;
}
.btn-primary:hover { background: #b580ff; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.01em;
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--border); text-decoration: none;
  padding: 14px 28px; border-radius: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--text-dim); color: var(--text); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  background: rgba(8, 8, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 18px; letter-spacing: -0.02em;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.nav-tag {
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── HERO — with image background ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 12, 0.92) 0%,
    rgba(8, 8, 12, 0.75) 45%,
    rgba(8, 8, 12, 0.4) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, rgba(8,8,12,0.9) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding: 160px 80px 100px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 500;
  margin-bottom: 24px;
}
.hero-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95; letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px; color: var(--text-dim);
  max-width: 480px; line-height: 1.6;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Social proof pills */
.hero-proof {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(17, 17, 22, 0.7);
  border: 1px solid var(--border);
  border-radius: 99px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hero-proof .proof-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 24px; gap: 2px;
}
.hero-proof .proof-divider {
  width: 1px; height: 36px;
  background: var(--border);
}
.hero-proof .proof-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 18px; color: var(--text);
  letter-spacing: -0.02em;
}
.hero-proof .proof-label {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  white-space: nowrap;
}

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}

/* Pulse glow on accent dot */
@keyframes accentPulse {
  0%, 100% { box-shadow: 0 0 10px var(--accent); }
  50% { box-shadow: 0 0 20px var(--accent), 0 0 30px rgba(155,107,255,0.4); }
}
.nav-logo-dot { animation: accentPulse 2.5s ease-in-out infinite; }

/* Subtle parallax-like float on hero CTA */
@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hero-actions .btn-primary { animation: ctaFloat 3s ease-in-out infinite; }

/* Beat card pulse on hover */
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 12px 40px rgba(155, 107, 255, 0.1); }
  50% { box-shadow: 0 12px 40px rgba(155, 107, 255, 0.22); }
}
.card:hover { animation: cardGlow 2s ease-in-out infinite; }

/* ── TRUST SIGNALS ── */
.trust {
  padding: 80px 80px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.trust-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 40px;
  text-align: center;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 900px; margin: 0 auto 48px;
}
.trust-stat {
  text-align: center; padding: 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.trust-stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 32px; color: var(--text);
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
}
.trust-stat-label {
  font-size: 13px; color: var(--text-dim);
}
.trust-quote {
  text-align: center; max-width: 560px; margin: 0 auto 48px;
}
.trust-quote-text {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 20px; color: var(--text);
  line-height: 1.5; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.trust-quote-author {
  font-size: 13px; color: var(--text-muted);
}
.trust-venues {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.trust-venue-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
}
.trust-venue-slot {
  font-size: 13px; color: var(--text-dim);
  background: var(--surface2); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 6px;
  font-family: 'Syne', sans-serif; font-weight: 600;
  letter-spacing: 0.01em;
}

.trust-platform { transition: transform 0.2s, border-color 0.2s; }
.trust-platform:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

/* ── MANIFESTO ── */
.manifesto { padding: 120px 80px; border-top: 1px solid var(--border); }
.manifesto-inner { max-width: 760px; }
.manifesto-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 32px; font-weight: 500;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--text); margin-bottom: 40px;
}
.manifesto-body {
  font-size: 18px; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px;
}
.manifesto-highlight {
  color: var(--text); font-size: 20px; font-weight: 500; margin-top: 40px;
}

/* ── STACK ── */
.stack {
  padding: 120px 80px; background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stack-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 48px; font-weight: 500;
}
.stack-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 48px;
}
.stream { background: var(--surface); padding: 48px 40px; }
.stream-num {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 64px;
  color: var(--lime); opacity: 0.25; line-height: 1; margin-bottom: 32px;
}
.stream-name {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 26px;
  letter-spacing: -0.01em; color: var(--text); margin-bottom: 16px;
}
.stream-desc {
  font-size: 15px; color: var(--text-dim); line-height: 1.6; margin-bottom: 28px;
}
.stream-target {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lime); font-weight: 500;
}
.stack-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--border); padding-top: 28px;
}
.stack-total-label {
  font-size: 13px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.stack-total-num {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 36px;
  color: var(--text); letter-spacing: -0.02em;
}

/* ── NUMBERS ── */
.numbers { padding: 120px 80px; }
.numbers-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 48px; font-weight: 500;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.num-val {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 48px;
  color: var(--text); letter-spacing: -0.03em; line-height: 1; margin-bottom: 16px;
}
.num-desc {
  font-size: 14px; color: var(--text-dim); line-height: 1.5;
}

/* ── CLOSING ── */
.closing { padding: 120px 80px 160px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 820px; }
.closing-headline {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.0;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 40px;
}
.closing-body {
  font-size: 20px; color: var(--text-dim); line-height: 1.6;
  max-width: 560px; margin-bottom: 48px;
}
.closing-checklist {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
}
.check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-dim); font-weight: 500;
}
.check-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); flex-shrink: 0;
}
.closing-fade { font-size: 15px; color: var(--text-muted); font-style: italic; }

/* ── FOOTER ── */
.footer { padding: 48px 80px; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 16px; color: var(--text);
}
.footer-sub {
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.1em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-content { padding: 140px 32px 80px; }
  .manifesto, .stack, .numbers, .closing, .trust { padding: 80px 32px; }
  .footer { padding: 40px 32px; }
  .stack-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .stack-total { flex-direction: column; gap: 8px; }
  .hero-proof { flex-wrap: wrap; border-radius: 12px; }
}