:root {
  --bg: #0d0d0f;
  --surface: #131316;
  --surface-2: #1a1a1e;
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.nav-badge {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.25);
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 48px;
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-token {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}
.hero-token-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-token-address {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(245,158,11,0.2);
}

/* Hero card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), transparent 50%);
  z-index: -1;
}
.hero-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hero-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 24px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-card-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.stat {
  flex: 1;
  padding: 16px 0;
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid var(--border);
}
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-card-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feed-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
}
.feed-time {
  color: var(--text-muted);
  font-size: 12px;
  min-width: 60px;
}
.feed-text {
  color: var(--text);
  opacity: 0.8;
}

/* How it works */
.howitworks {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  padding: 0 8px;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why */
.why {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-stat {
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.why-stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.why-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* Closing */
.closing {
  padding: 100px 0 80px;
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 28px;
  max-width: 700px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 20px;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 40px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    order: -1;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    flex-direction: column;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  .why-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner, .section-inner, .hero-inner, .footer-inner {
    padding: 0 20px;
  }
  .hero {
    padding: 48px 0 60px;
  }
}