/* =========================================================
   HOOD PHOENIX — styles
   Palette: near-black + neon lime (matches logo)
   ========================================================= */
:root {
  --bg: #090a06;
  --bg-2: #0e1009;
  --surface: #13160c;
  --surface-2: #191d10;
  --border: rgba(196, 240, 0, 0.16);
  --neon: #c4f000;
  --neon-soft: #d7ff3a;
  --neon-dim: #8fa900;
  --text: #f3f6e7;
  --muted: #9ba088;
  --radius: 16px;
  --maxw: 1160px;
  --shadow-neon: 0 0 0 1px rgba(196, 240, 0, 0.25), 0 12px 40px -12px rgba(196, 240, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---------- ambient fx ---------- */
.fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.blob--1 {
  width: 520px; height: 520px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(196,240,0,0.5), transparent 70%);
}
.blob--2 {
  width: 460px; height: 460px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle, rgba(196,240,0,0.22), transparent 70%);
}
#fireCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
main { position: relative; z-index: 1; }
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px;
}
.section--alt {
  max-width: none;
  background:
    linear-gradient(180deg, transparent, rgba(196,240,0,0.03), transparent),
    var(--bg-2);
  border-block: 1px solid var(--border);
}
.section--alt > * { max-width: var(--maxw); margin-inline: auto; }
.section__head { margin-bottom: 48px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
}
.section h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.hl, .flame { color: var(--neon); }
.flame {
  text-shadow: 0 0 24px rgba(196, 240, 0, 0.55);
}

/* ---------- buttons ---------- */
.btn {
  --pad: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--pad);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px 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--neon {
  background: var(--neon);
  color: #0a0c04;
  box-shadow: 0 8px 30px -8px rgba(196, 240, 0, 0.6);
}
.btn--neon:hover { background: var(--neon-soft); box-shadow: 0 10px 40px -6px rgba(196, 240, 0, 0.8); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(196, 240, 0, 0.06);
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }
.btn--lg { --pad: 15px 30px; font-size: 1.02rem; }
.btn--sm { --pad: 8px 16px; font-size: 0.85rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  backdrop-filter: blur(14px);
}
.nav::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(9, 10, 6, 0.72);
  border-bottom: 1px solid var(--border);
  z-index: -1;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 50%;
  box-shadow: 0 0 0 2px var(--neon), 0 0 18px rgba(196,240,0,0.5);
}
.brand__name {
  font-family: "Archivo", sans-serif; font-weight: 900;
  font-size: 1.1rem; letter-spacing: -0.01em;
}
.brand__name span { color: var(--neon); }
.nav__menu { display: contents; } /* desktop: children join the nav flex row */
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-weight: 600; font-size: 0.94rem; color: var(--muted);
  transition: color 0.15s ease; position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--neon); transition: width 0.2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: 10px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); transition: 0.25s; border-radius: 2px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(196,240,0,0.05);
  font-size: 0.8rem; font-weight: 600; color: var(--neon-soft);
  margin-bottom: 22px;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--neon);
  box-shadow: 0 0 10px var(--neon); animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero__title { font-size: clamp(2.8rem, 8vw, 5.6rem); }
.hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 46ch; margin: 22px 0 30px; }
.hero__sub strong { color: var(--text); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.stats {
  display: flex; gap: 34px; margin: 42px 0 0; padding-top: 26px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stats dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.stats dd { margin: 4px 0 0; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--neon); }

/* ---------- cinematic video hero ---------- */
.hero--video {
  display: block;
  max-width: none;
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 88vh, 780px);
  padding: 0;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 14%; /* keep the hood in frame when cropping */
  background: #0a0b07; /* while loading: plain dark, no poster flash */
  opacity: 0;
  transition: opacity 1s ease; /* fade in once the video can play */
}
.hero__video.is-ready { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,10,6,0.94) 0%, rgba(9,10,6,0.72) 36%, rgba(9,10,6,0.24) 66%, rgba(9,10,6,0.38) 100%),
    linear-gradient(180deg, rgba(9,10,6,0.62) 0%, rgba(9,10,6,0) 24%, rgba(9,10,6,0) 62%, var(--bg) 100%);
}
.hero--video .hero__copy {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(90px, 16vh, 150px) 24px 90px;
}
.hero--video .hero__title { font-size: clamp(2.6rem, 6.6vw, 4.8rem); max-width: 11ch; }
.hero--video .hero__sub { text-shadow: 0 2px 18px rgba(0,0,0,0.65); }
@media (max-width: 900px) { .hero--video .hero__title { max-width: none; } }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__logo {
  width: min(440px, 96%); border-radius: 24px;
  background: #000;
  border: 1px solid rgba(196, 240, 0, 0.25);
  box-shadow: inset 0 0 80px rgba(196,240,0,0.07), 0 24px 70px -16px rgba(196,240,0,0.5);
  animation: float 6s ease-in-out infinite;
}
.hero__ring {
  position: absolute; width: min(460px, 96%); aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(196,240,0,0.35);
  animation: spin 26s linear infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border);
  background: var(--neon); color: #0a0c04;
  padding: 12px 0; margin-top: 30px;
}
.marquee__track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  font-family: "Archivo", sans-serif; font-weight: 900; font-size: 1.1rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  animation: scroll 22s linear infinite;
}
.marquee__track span { display: inline-block; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- legend / cards ---------- */
.legend > p { font-size: 1.2rem; max-width: 62ch; color: var(--text); margin: 0 0 44px; }
.legend > p em { color: var(--neon); font-style: normal; }
.legend__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--neon); box-shadow: var(--shadow-neon); }
.card__ico { font-size: 2rem; display: block; margin-bottom: 14px; }
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }

/* ---------- tokenomics ---------- */
.tok { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.tok__cell {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.tok__cell:hover { border-color: var(--neon); background: var(--surface-2); }
.tok__k { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.tok__v { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--neon); }
.ca {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--surface); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 16px 20px;
}
.ca__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.ca code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--neon-soft); font-size: 0.95rem; word-break: break-all; margin-right: auto;
}

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; position: relative; overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.step:hover { transform: translateY(-6px); border-color: var(--neon); }
.step__n {
  font-family: "Archivo", sans-serif; font-weight: 900; font-size: 2.6rem;
  color: rgba(196,240,0,0.16); line-height: 1; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0 0 14px; font-size: 0.95rem; }
.step .btn { margin-top: auto; }

/* ---------- roadmap ---------- */
.road { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.road__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.road__item:hover { border-color: var(--neon); transform: translateY(-4px); }
.road__phase {
  display: inline-block; font-family: "Archivo", sans-serif; font-weight: 800;
  color: var(--neon); margin-bottom: 14px; font-size: 1.05rem;
}
.road__item ul { margin: 0; padding-left: 18px; color: var(--muted); }
.road__item li { margin-bottom: 8px; }

/* ---------- CTA ---------- */
.cta {
  max-width: 820px; margin: 30px auto 0; padding: 80px 24px; text-align: center;
}
.cta__logo { width: min(300px, 82%); height: auto; border-radius: 22px; background: #000; border: 1px solid rgba(196, 240, 0, 0.25); box-shadow: inset 0 0 60px rgba(196,240,0,0.07), 0 20px 60px -14px rgba(196,240,0,0.5); margin: 0 auto 24px; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.cta p { color: var(--muted); font-size: 1.15rem; margin: 12px 0 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border); background: var(--bg-2);
  padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center;
}
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: "Archivo", sans-serif; font-weight: 900; letter-spacing: 0.02em; }
.footer__brand img { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 0 0 2px var(--neon); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--border); color: var(--muted); transition: 0.2s;
}
.socials a:hover { color: #0a0c04; background: var(--neon); border-color: var(--neon); transform: translateY(-3px); }
.footer__legal { color: var(--muted); font-size: 0.82rem; max-width: 60ch; margin: 0; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__scrim {
    background:
      rgba(9, 10, 6, 0.58),
      linear-gradient(180deg, rgba(9,10,6,0.55) 0%, rgba(9,10,6,0) 26%, rgba(9,10,6,0) 60%, var(--bg) 100%);
  }
  .hero--video .hero__copy { padding-top: 84px; padding-bottom: 70px; }
  .hero__actions, .stats { justify-content: center; }
  .legend__cards, .tok, .steps, .road { grid-template-columns: 1fr 1fr; }
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  /* one solid dropdown panel: links + CTA stacked, height auto */
  .nav.open .nav__menu {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(9, 10, 6, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 22px;
    backdrop-filter: blur(14px);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav.open .nav__links { display: flex; flex-direction: column; gap: 10px; }
  .nav.open .nav__cta { display: flex; flex-direction: column; gap: 10px; }
  .nav.open .nav__cta .btn { justify-content: center; }
}
@media (max-width: 560px) {
  .section { padding: 64px 20px; }
  .legend__cards, .tok, .steps, .road { grid-template-columns: 1fr; }
  .stats { gap: 22px; }
}

/* ========================================================= */
/*  NARRATIVE SECTIONS                                        */
/* ========================================================= */

/* shared art card (black-bg emblems framed as unified cards) */
.story__art img, .split__art img, .creed__art img {
  background: #000;
  border-radius: 22px;
  border: 1px solid rgba(196, 240, 0, 0.22);
  box-shadow:
    inset 0 0 60px rgba(196, 240, 0, 0.06),
    0 18px 50px -14px rgba(196, 240, 0, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.story__art img:hover, .split__art img:hover, .creed__art img:hover {
  transform: translateY(-6px);
  border-color: var(--neon);
  box-shadow:
    inset 0 0 60px rgba(196, 240, 0, 0.1),
    0 26px 60px -12px rgba(196, 240, 0, 0.6);
}

/* ---------- prophecy ---------- */
.prophecy {
  max-width: 860px; margin: 60px auto; padding: 0 24px; text-align: center; position: relative;
}
.prophecy__mark {
  font-family: "Archivo", sans-serif; font-weight: 900; font-size: 6rem; line-height: 0;
  color: var(--neon); opacity: 0.5; margin: 0 0 10px;
}
.prophecy blockquote {
  margin: 0; font-family: "Archivo", sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3.6vw, 2.3rem); line-height: 1.25; letter-spacing: -0.01em;
}
.prophecy blockquote em { color: var(--neon); font-style: normal; }
.prophecy cite { display: block; margin-top: 22px; color: var(--muted); font-style: normal; font-size: 0.92rem; letter-spacing: 0.02em; }

/* ---------- story chapters ---------- */
.story {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
  padding: 46px 0; border-top: 1px solid var(--border);
}
.story:first-of-type { border-top: 0; }
.story--rev .story__art { order: 2; }
.story__art { display: grid; place-items: center; }
.story__art img { width: min(360px, 100%); }
.story__ch {
  display: inline-block; font-family: "Archivo", sans-serif; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.8rem; color: var(--neon); margin-bottom: 10px;
}
.story__text h3 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.story__text p { color: var(--muted); font-size: 1.06rem; margin: 0 0 14px; }
.story__text p strong { color: var(--text); }
.story__text p em { color: var(--neon-soft); font-style: normal; }

/* ---------- creed ---------- */
.creed { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.creed__art img { width: min(340px, 100%); }
.creed__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.creed__list li {
  display: flex; gap: 16px; align-items: baseline;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 20px; font-size: 1.05rem; transition: border-color 0.2s ease, transform 0.2s ease;
}
.creed__list li:hover { border-color: var(--neon); transform: translateX(6px); }
.creed__list li span {
  font-family: "Archivo", sans-serif; font-weight: 900; color: var(--neon);
  font-size: 0.95rem; min-width: 26px;
}
.creed__list li strong { color: var(--neon-soft); }

/* ---------- split layout (chain / roadmap / tokenomics) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split--tok { grid-template-columns: 0.8fr 1.2fr; }
.split__art { display: grid; place-items: center; }
.split__art img { width: min(380px, 100%); }
.split__text h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; }
.split__text > p { color: var(--muted); font-size: 1.08rem; margin: 0 0 22px; }
.split__text > p strong { color: var(--text); }
.ticks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: var(--muted); }
.ticks li strong { color: var(--neon-soft); }
.ticks li::before {
  content: "▲"; position: absolute; left: 0; top: 1px; color: var(--neon); font-size: 0.8rem;
}

/* ---------- contract pending ---------- */
.ca--pending { flex-direction: column; align-items: flex-start; gap: 12px; border-style: dashed; }
.ca__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; width: 100%; }
.ca__status {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem;
  color: var(--neon); text-transform: uppercase; letter-spacing: 0.06em;
}
.ca__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: pulse 1.6s infinite; }
.ca--pending code { margin: 0; font-size: 1.05rem; }
.ca__warn { margin: 0; color: var(--muted); font-size: 0.9rem; max-width: 70ch; line-height: 1.55; }
.ca__warn strong { color: var(--neon-soft); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.is-soon { opacity: 0.55; cursor: default; }
.is-soon:hover { transform: none; border-color: var(--border); color: inherit; background: rgba(196, 240, 0, 0.06); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 4px 22px; transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--neon); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-family: "Archivo", sans-serif;
  font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--neon); font-size: 1.6rem; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 18px; line-height: 1.6; }

/* cta art float (keeps the card glow above) */
.cta__logo { animation: float 6s ease-in-out infinite; }

/* ---------- who / identity Q&A ---------- */
.qa { display: grid; gap: 14px; }
.qa__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 20px; transition: border-color 0.2s ease, transform 0.2s ease;
}
.qa__item:hover { border-color: var(--neon); transform: translateX(6px); }
.qa__q { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.12rem; color: var(--neon-soft); margin: 0 0 6px; }
.qa__a { color: var(--muted); margin: 0; }

/* ---------- coming soon ---------- */
.section__lead { color: var(--muted); font-size: 1.1rem; max-width: 62ch; margin: 14px 0 0; }
.soon { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.soon-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.soon-card:hover { transform: translateY(-6px); border-color: var(--neon); box-shadow: var(--shadow-neon); }
.soon-tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--neon); background: rgba(196, 240, 0, 0.08);
  border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px;
}
.soon-tag--live {
  background: var(--neon); color: #0a0c04; border-color: var(--neon);
  box-shadow: 0 0 18px rgba(196, 240, 0, 0.5);
}
.ca__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.soon-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #000; border: 1px solid var(--border); border-radius: 12px; }
.soon-ico { font-size: 3rem; line-height: 1; filter: drop-shadow(0 0 18px rgba(196, 240, 0, 0.4)); }
.soon-card h3 { font-size: 1.35rem; }
.soon-card p { color: var(--muted); margin: 0; flex: 1; }
.soon-card .btn { align-self: flex-start; }

/* ---------- more than a meme (manifesto) ---------- */
.manifesto {
  max-width: 880px; margin: 30px auto; padding: 92px 24px; text-align: center;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(196, 240, 0, 0.04), transparent);
}
.manifesto h2 { font-size: clamp(2rem, 5.5vw, 3.3rem); margin: 16px 0 28px; }
.manifesto__lead { color: rgba(243, 246, 231, 0.85); font-size: 1.18rem; max-width: 58ch; margin: 0 auto 20px; line-height: 1.65; }
.manifesto__lead em { color: var(--neon); font-style: normal; }
.manifesto__sign { color: var(--neon); font-family: "Archivo", sans-serif; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.95rem; margin-top: 28px; }

/* ---------- narrative responsive ---------- */
@media (max-width: 900px) {
  .story, .creed, .split, .split--tok, .soon { grid-template-columns: 1fr; gap: 28px; }
  .story--rev .story__art { order: 0; }
  .story__art, .split__art, .creed__art { max-width: 320px; margin: 0 auto; }
  .split__art { order: -1; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
