:root {
  --bg: #06251c;
  --bg-2: #0b3a2d;
  --ink: #f3fff8;
  --muted: #b7d4c8;
  --line: #1f5a46;
  --accent: #2ecc71;
  --accent-2: #19a85a;
  --card: #0e3328;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #0f4a38 0%, var(--bg) 55%);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}

.glow {
  pointer-events: none;
  position: fixed;
  inset: -20% 20% auto;
  height: 40vh;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.18), transparent 70%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

.nav, main, footer { position: relative; z-index: 1; }

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand, .foot-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img, .foot-brand img, .hero-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.35);
}

.nav nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
}

.nav nav a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #042016;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover { background: #5ee89a; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-small { padding: 0.5rem 0.95rem; font-size: 0.92rem; }

section { padding: 5.5rem 6vw; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

h1, h2, h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  max-width: 14ch;
}

h1 em { font-style: normal; color: var(--accent); }

h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; }

.lead, .story p, .why p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero {
  text-align: center;
  display: grid;
  justify-items: center;
  padding-top: 4rem;
}

.hero-logo {
  width: 168px;
  height: 168px;
  margin-bottom: 1.6rem;
  box-shadow: 0 0 80px rgba(46, 204, 113, 0.35);
}

.hero .lead { margin: 1.1rem auto 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline article,
.facts,
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
}

.timeline time {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
}

.timeline h3 { margin: 0.35rem 0 0.55rem; font-size: 1.35rem; }

.quote { padding-top: 0; }

blockquote {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.25;
  max-width: 46rem;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
}

.why {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.why p + p { margin-top: 1rem; }

.facts h3 { margin-bottom: 0.8rem; }

.facts ul { padding-left: 1.1rem; color: var(--muted); }

.facts li + li { margin-top: 0.55rem; }

.token { text-align: center; }

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.stat strong { font-family: "Syne", sans-serif; font-size: 1.25rem; }

.ca-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.ca {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  word-break: break-all;
  max-width: 42rem;
  margin: 0 auto 1.4rem;
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--accent);
}

.disclaimer {
  max-width: 40rem;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 6vw 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav nav, .nav .btn-small { display: none; }
  .why, .token-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}
