:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --panel: #171717;
  --panel-2: #1e1e1e;
  --yellow: #f5d90a;
  --yellow-hot: #ffe600;
  --yellow-deep: #d4b900;
  --text: #f5f5f2;
  --muted: #9a9a92;
  --line: #262626;
  --radius: 18px;
  --maxw: 1140px;
  --shadow-glow: 0 0 60px rgba(245, 217, 10, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 0 var(--yellow-deep);
}
.btn--primary:hover {
  background: var(--yellow-hot);
  box-shadow: 0 6px 24px rgba(245, 217, 10, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--copy {
  background: var(--yellow);
  color: var(--black);
  padding: 0.6rem 1.2rem;
}
.btn--copy:hover { background: var(--yellow-hot); }
.btn--copy.copied { background: #2ec16b; color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; }
.nav__ticker {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  color: var(--yellow);
}
.nav__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav__links a:hover { color: var(--yellow); }
.nav__cta { margin-left: 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 7rem) 1.25rem clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 780px;
  max-width: 120vw;
  background: radial-gradient(circle, rgba(245, 217, 10, 0.22) 0%, rgba(245, 217, 10, 0) 62%);
  pointer-events: none;
  animation: glowPulse 3.2s ease-in-out infinite;
}
.hero__inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero__logo-wrap { margin: 0 auto 1.5rem; width: fit-content; }
.hero__logo {
  width: clamp(140px, 34vw, 220px);
  height: clamp(140px, 34vw, 220px);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-glow);
}
.hero__title {
  font-size: clamp(3rem, 12vw, 6.5rem);
  color: var(--yellow);
  text-shadow: 0 4px 40px rgba(245, 217, 10, 0.3);
}
.hero__tagline {
  font-size: clamp(1.15rem, 3.2vw, 1.6rem);
  font-weight: 600;
  margin: 1rem auto 0.5rem;
  max-width: 620px;
}
.hero__sub { color: var(--muted); max-width: 540px; margin: 0.25rem auto 0; }
.hero__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* throb animation on the logo — the whole bit */
.throb { animation: throb 1.4s ease-in-out infinite; will-change: transform; }
@keyframes throb {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.06); }
  30% { transform: scale(1.0); }
  45% { transform: scale(1.09); }
  60% { transform: scale(1.0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .throb, .hero__glow, .marquee__track { animation: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 0.55rem 0;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  animation: scroll 22s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Contract ---------- */
.contract { padding: clamp(2.5rem, 6vw, 4rem) 1.25rem; }
.contract__inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.contract__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.contract__row {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.contract__ca {
  flex: 1;
  min-width: 0;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85rem;
  color: var(--text);
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.contract__note { color: var(--muted); font-size: 0.85rem; margin: 0.9rem 0 0; }

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
}
.section--alt {
  max-width: none;
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__head h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.18s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.card__emoji { font-size: 1.8rem; margin-bottom: 0.6rem; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1rem;
  text-align: center;
}
.stat__num {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--yellow);
}
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; }
.fineprint { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 1.5rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; max-width: 760px; margin-inline: auto; }
.step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.step__n {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: "Archivo Black", sans-serif;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.step p { color: var(--muted); margin: 0; }
.buy-cta { text-align: center; margin-top: 2rem; }

/* ---------- Roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.phase {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.phase__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--black);
  background: var(--yellow);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.phase h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.phase p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Community ---------- */
.community { text-align: center; }
.community h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
.community p { color: var(--muted); max-width: 520px; margin: 0.75rem auto 1.75rem; }
.socials { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--black-2); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.25rem; text-align: center; }
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Archivo Black", sans-serif;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer__logo { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.footer__disclaimer { color: var(--muted); font-size: 0.82rem; max-width: 680px; margin: 0 auto 1rem; line-height: 1.6; }
.footer__copy { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .nav__cta { display: none; }
}
