:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --accent: #FFB800;
  --accent-dim: rgba(255, 184, 0, 0.15);
  --text: #F0F0F0;
  --text-muted: #8A8A8A;
  --border: #2A2A2A;
  --teal: #00D4AA;
  --orange: #FF6B35;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text);
}
.nav-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}
.launchpad-svg {
  width: 100%;
  max-width: 420px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* SECTIONS */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--text);
}

/* STACK */
.stack {
  padding: 100px 48px;
  background: var(--surface);
}
.stack-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.stack-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stack-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.stack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.stack-card--branding::before { background: var(--accent); }
.stack-card--legal::before { background: #7B61FF; }
.stack-card--network::before { background: var(--teal); }
.stack-card--funding::before { background: var(--orange); }
.stack-card-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--text-muted);
}
.stack-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 12px;
}
.stack-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.manifesto-line {
  width: 40px; height: 1px;
  background: var(--accent);
}
.manifesto-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-style: normal;
}
.manifesto-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* NETWORK */
.network {
  padding: 100px 48px;
  background: var(--surface);
}
.network-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 24px 0 36px;
}
.network-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.nf-check {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
}
/* Founder cards */
.network-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}
.founder-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.founder-avatar--teal { background: var(--teal); color: var(--bg); }
.founder-avatar--orange { background: var(--orange); color: var(--bg); }
.founder-info {
  flex: 1;
}
.founder-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.founder-info span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}
.founder-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,184,0,0.12);
  color: var(--accent);
  flex-shrink: 0;
}
.network-footer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.network-count {
  color: var(--accent);
  font-weight: 600;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 40px;
}
.cta-dot {
  width: 8px; height: 8px;
  background: var(--bg);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.footer-tagline {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.footer-company {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 64px; }
  .stack { padding: 80px 24px; }
  .stack-grid { grid-template-columns: 1fr; }
  .stack-card { padding: 36px 28px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .network { padding: 80px 24px; }
  .network-inner { grid-template-columns: 1fr; gap: 48px; }
  .network-visual { display: none; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
