/* ============================================
   $LATE — Global Stylesheet
   Original design, multi-page edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Serif+Display:ital@0;1&family=Syne:wght@400;700;800&display=swap');

:root {
  --black:       #080810;
  --deep:        #0d0d1a;
  --purple:      #7c3aed;
  --purple-dim:  #4c1d95;
  --purple-glow: #a855f7;
  --lilac:       #c4b5fd;
  --white:       #f0eeff;
  --muted:       #6b6b8a;
  --accent:      #f59e0b;
  --red:         #ef4444;
  --green:       #22c55e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
  cursor: default;
  min-height: 100vh;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,16,0.95), transparent);
  backdrop-filter: blur(4px);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-logo span { color: var(--purple-glow); }
.nav-logo:hover { color: var(--lilac); }

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.4rem 0.7rem;
  position: relative;
}
.nav-links a:hover { color: var(--lilac); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.7rem; right: 0.7rem;
  height: 1px;
  background: var(--purple-glow);
}

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--purple-glow) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,16,0.97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--purple-glow); }

/* ---- PAGE TRANSITION ---- */
.page-enter { animation: pageIn 0.5s ease both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- SECTIONS ---- */
section { position: relative; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 1.2rem;
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--lilac); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--purple-glow); color: var(--black); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--muted);
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(107,107,138,0.3);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--lilac); color: var(--lilac); }

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(124,58,237,0.15);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  padding: 0.8rem 0;
  background: rgba(124,58,237,0.04);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track.rev { animation-direction: reverse; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.marquee-item span { color: var(--purple-glow); margin-right: 3rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes glitch {
  0%, 94%, 100% { opacity: 0; transform: none; }
  95% { opacity: 1; transform: translateX(-3px); }
  96% { opacity: 0; }
  97% { opacity: 1; transform: translateX(3px) skewX(-5deg); }
  98% { opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- CURSOR DOT ---- */
#cursor {
  width: 6px; height: 6px;
  background: var(--purple-glow);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s;
  mix-blend-mode: screen;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(168,85,247,0.1) 0%, transparent 60%),
    var(--black);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(124,58,237,0.02) 2px, rgba(124,58,237,0.02) 4px
  );
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-glow);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 0.35rem 1rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.8s ease both;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--white);
  animation: slideUp 0.8s ease 0.1s both;
  position: relative;
  display: inline-block;
}
.hero-title::after {
  content: '$LATE';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-glow), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: glitch 6s infinite 2s;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
  animation: slideUp 0.8s ease 0.25s both;
  font-family: 'DM Serif Display', serif;
}
.hero-sub em { color: var(--lilac); font-style: normal; }

.hero-hook {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--muted);
  max-width: 560px;
  margin: 2rem auto;
  line-height: 1.8;
  animation: fadeIn 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeIn 0.8s ease 0.55s both;
}

.hero-ticker {
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
  justify-content: center;
  animation: fadeIn 0.8s ease 0.7s both;
  flex-wrap: wrap;
}
.ticker-item { text-align: center; }
.ticker-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.ticker-val { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); margin-top: 0.2rem; }
.ticker-val.green { color: var(--green); }
.ticker-val.red   { color: var(--red); }

.character {
  width: 160px; height: 160px;
  margin: 0 auto 2rem;
  position: relative;
  animation: float 4s ease-in-out infinite;
}
.char-svg { width: 100%; height: 100%; }

.scroll-hint {
  margin-top: 4rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeIn 1s ease 1.2s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.scroll-hint:hover { color: var(--lilac); }
.scroll-hint-arrow { animation: bounce 2s ease-in-out infinite; }

/* ---- LORE ---- */
.lore-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}
.lore-body p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.75;
  color: rgba(240,238,255,0.75);
  margin-bottom: 1.5rem;
  text-align: left;
}
.lore-body p em     { color: var(--lilac); font-style: normal; }
.lore-body p strong { color: var(--white); }

.lore-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  border-left: 3px solid var(--purple);
  padding-left: 1.5rem;
  margin: 3rem 0;
  text-align: left;
}
.lore-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-glow), transparent);
  margin: 3rem auto;
}

/* ---- WHAT IS ---- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 4rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.15);
}
.what-card {
  background: var(--black);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.what-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(124,58,237,0.07) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.what-card:hover::before { opacity: 1; }
.what-card:hover { background: rgba(124,58,237,0.06); }
.what-card-icon  { font-size: 1.5rem; margin-bottom: 1rem; }
.what-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.7rem;
}
.what-card-body { font-size: 0.8rem; line-height: 1.8; color: var(--muted); }
.what-card-body em { color: var(--lilac); font-style: normal; }

.token-info {
  display: inline-flex;
  gap: 2rem; flex-wrap: wrap; justify-content: center;
  margin-top: 4rem;
  padding: 1.5rem 2.5rem;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.04);
}
.ti-item { text-align: center; }
.ti-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.ti-val   { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--white); margin-top: 0.2rem; }
.ti-val.ok { color: var(--green); }

.ca-box {
  margin-top: 2rem;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.05);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.ca-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.ca-addr  { font-size: 0.78rem; color: var(--lilac); word-break: break-all; }
.ca-copy {
  background: transparent;
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.ca-copy:hover { border-color: var(--purple-glow); color: var(--white); }

/* ---- PHILOSOPHY / MANIFESTO ---- */
#philosophy {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
#philosophy::before {
  content: 'LATE';
  position: absolute; right: -5%; top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(15rem, 35vw, 30rem);
  color: rgba(124,58,237,0.04);
  line-height: 1;
  pointer-events: none; user-select: none;
}

.manifesto-list { margin-top: 4rem; max-width: 800px; }

.m-line {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(124,58,237,0.08);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, padding-left 0.2s;
}
.m-line:first-child { border-top: 1px solid rgba(124,58,237,0.08); }
.m-line.visible { opacity: 1; transform: translateY(0); }
.m-line:hover { padding-left: 0.5rem; }
.m-line:hover .m-text { color: var(--white); }

.m-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.62rem; color: var(--purple-glow);
  letter-spacing: 0.1em; min-width: 2.5rem; padding-top: 0.5rem;
}
.m-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  line-height: 1.45;
  color: rgba(240,238,255,0.82);
  flex: 1;
}
.m-text em     { font-style: italic; color: var(--lilac); }
.m-text strong { color: var(--white); font-style: normal; }

.manifesto-close {
  max-width: 700px;
  margin-top: 5rem; padding: 3rem;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.04);
  text-align: center;
}
.manifesto-close p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.6; color: var(--white);
}
.manifesto-close em { color: var(--purple-glow); font-style: normal; }

/* ---- COMMUNITY ---- */
#community { background: var(--black); }

.community-grid,
.archetype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.community-card,
.arch-card {
  border: 1px solid rgba(124,58,237,0.2);
  padding: 2rem;
  background: rgba(13,13,26,0.5);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.community-card:hover,
.arch-card:hover { border-color: var(--purple-glow); transform: translateY(-4px); }
.community-card::before,
.arch-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-glow));
  transform: scaleX(0); transition: transform 0.3s;
}
.community-card:hover::before,
.arch-card:hover::before { transform: scaleX(1); }

.cc-emoji, .arch-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }
.cc-title, .arch-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.6rem;
}
.cc-body, .arch-body { font-size: 0.78rem; line-height: 1.7; color: var(--muted); }

/* ---- STAT ROW ---- */
.stat-row, .stats-row {
  display: flex; gap: 0;
  margin-top: 4rem;
  border: 1px solid rgba(124,58,237,0.15);
}
.stat-box, .stat-cell {
  flex: 1; padding: 2rem;
  border-right: 1px solid rgba(124,58,237,0.15);
  text-align: center;
}
.stat-box:last-child, .stat-cell:last-child { border-right: none; }
.stat-box-val, .stat-cell-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--white); line-height: 1;
}
.stat-box-val em, .stat-cell-val em { font-style: normal; color: var(--purple-glow); }
.stat-box-label, .stat-cell-label {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.5rem;
}

/* ---- MEME CULTURE ---- */
#memes { background: var(--deep); }

.meme-wall {
  margin-top: 4rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.meme-card {
  background: rgba(8,8,16,0.8);
  border: 1px solid rgba(124,58,237,0.15);
  padding: 1.5rem 2rem;
  position: relative; font-size: 0.78rem;
}
.meme-card.featured,
.meme-card.wide {
  grid-column: span 2;
  display: flex; align-items: center; gap: 2rem;
}
.meme-tag {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple-glow); background: rgba(124,58,237,0.1); padding: 0.2rem 0.5rem;
}
.meme-quote, .meme-card-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--white); margin-bottom: 0.8rem; line-height: 1.4;
}
.meme-attr, .meme-card-attr { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; }

.meme-screenshot, .fake-screenshot {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 4px; padding: 1rem 1.5rem;
  flex: 1; font-size: 0.75rem; color: var(--muted); line-height: 1.8;
}
.ms-user, .fs-user { color: var(--purple-glow); font-weight: bold; }
.ms-text, .fs-text { color: var(--white); margin-left: 0.5rem; }
.ms-sub, .fs-time  { color: var(--muted); font-size: 0.65rem; margin-top: 0.3rem; margin-left: 0.4rem; }
.ms-reply, .fs-reply {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(124,58,237,0.3); margin-top: 0.8rem;
}
.fs-row { margin-bottom: 0.2rem; }

.meme-caption, .meme-card-caption { flex: 1; }
.meme-caption-title, .mcc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.5rem;
}
.meme-caption-sub, .mcc-body { font-size: 0.75rem; color: var(--muted); line-height: 1.7; }

/* ---- ROADMAP ---- */
#roadmap { background: var(--black); }

.roadmap-disclaimer, .disclaimer-box {
  font-size: 0.7rem; color: var(--muted);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  padding: 1rem 1.5rem;
  margin-top: 1rem; margin-bottom: 4rem;
  line-height: 1.7; max-width: 720px;
}
.roadmap-disclaimer strong, .disclaimer-box strong { color: var(--lilac); }

.roadmap-track {
  position: relative; padding-left: 3rem; max-width: 800px;
}
.roadmap-track::before {
  content: '';
  position: absolute; left: 0.6rem; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

.roadmap-phase, .rp {
  position: relative; margin-bottom: 3.5rem;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.roadmap-phase.visible, .rp.visible { opacity: 1; transform: translateX(0); }

.roadmap-phase::before {
  content: '';
  position: absolute; left: -2.55rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple-glow);
  box-shadow: 0 0 12px var(--purple-glow);
}
.rp::before {
  content: '';
  position: absolute; left: -2.95rem; top: 0.5rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--purple);
  box-shadow: 0 0 14px rgba(124,58,237,0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.rp:hover::before { border-color: var(--purple-glow); box-shadow: 0 0 20px rgba(168,85,247,0.7); }
.rp.done::before   { background: var(--purple); }
.rp.active::before { background: var(--purple-glow); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 14px rgba(168,85,247,0.5); }
  50%        { box-shadow: 0 0 28px rgba(168,85,247,0.9); }
}

.rp-status {
  display: inline-block; font-size: 0.58rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; margin-bottom: 0.7rem;
  font-family: 'Syne', sans-serif; font-weight: 700;
}
.rp-status.done    { background: rgba(34,197,94,0.1);   color: var(--green); }
.rp-status.active  { background: rgba(168,85,247,0.15); color: var(--purple-glow); }
.rp-status.soon,
.rp-status.unknown { background: rgba(124,58,237,0.08); color: var(--muted); }

.phase-label, .rp-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple-glow); margin-bottom: 0.4rem;
  font-family: 'Syne', sans-serif; font-weight: 700;
}
.phase-title, .rp-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.1; margin-bottom: 0.6rem; letter-spacing: -0.02em;
}
.phase-title em, .rp-title em { font-style: italic; color: var(--lilac); }
.phase-body, .rp-body { font-size: 0.78rem; color: var(--muted); line-height: 1.8; max-width: 560px; }
.phase-body em, .rp-body em { color: var(--white); font-style: normal; }

.rp-items { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.rp-item  { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.7rem; }
.rp-item::before         { content: '—'; color: rgba(124,58,237,0.4); }
.rp-item.checked::before { content: '✓'; color: var(--green); }
.rp-item.current::before { content: '▶'; color: var(--purple-glow); }
.rp-item.checked { color: rgba(240,238,255,0.5); }

.honest-box, .faq-end {
  max-width: 700px;
  border: 1px solid rgba(124,58,237,0.2);
  padding: 3rem; text-align: center;
  margin-top: 5rem; background: rgba(124,58,237,0.04);
}
.honest-box-title, .faq-end-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.2; margin-bottom: 0.8rem;
}
.honest-box-title em, .faq-end-title em { font-style: italic; color: var(--lilac); }
.honest-box-body, .faq-end-body { font-size: 0.78rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }
.honest-box-body em { color: var(--lilac); font-style: normal; }

/* ---- FAQ ---- */
#faq { background: var(--deep); }

.faq-list { margin-top: 4rem; }
.faq-item { border-bottom: 1px solid rgba(124,58,237,0.1); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(124,58,237,0.1); }

.faq-q {
  padding: 1.6rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  color: var(--white); transition: color 0.2s; user-select: none; gap: 1rem;
}
.faq-q:hover { color: var(--lilac); }
.faq-q-text { flex: 1; }
.faq-q-icon {
  color: var(--purple-glow); font-size: 1.2rem;
  transition: transform 0.35s; flex-shrink: 0;
}
.faq-item.open .faq-q      { color: var(--lilac); }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 0 1.8rem; font-size: 0.8rem;
  color: var(--muted); line-height: 2; max-width: 680px;
}
.faq-a-inner em     { color: var(--lilac); font-style: normal; }
.faq-a-inner strong { color: var(--white); }

/* ---- JOIN / FINAL CTA ---- */
.join-bg {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124,58,237,0.2) 0%, transparent 70%),
    var(--black);
  z-index: 0;
}
.join-inner {
  max-width: 760px; margin: 0 auto;
  padding: 7rem 2.5rem 5rem;
  text-align: center; position: relative; z-index: 1;
}
.join-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 1.5rem;
}
.join-title em { font-style: italic; color: var(--lilac); }
.join-sub {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--muted); line-height: 1.7;
  max-width: 500px; margin: 0 auto 3.5rem;
}
.join-sub em { color: var(--white); font-style: normal; }

.join-links {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 560px; margin: 0 auto;
}
.join-link {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 2rem 1.5rem;
  text-decoration: none;
  border: 1px solid rgba(124,58,237,0.2);
  background: rgba(8,8,16,0.6);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.join-link::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(124,58,237,0.1) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.join-link:hover::before { opacity: 1; }
.join-link:hover { border-color: var(--purple-glow); transform: translateY(-3px); }
.join-link:hover .jl-label { color: var(--white); }

.jl-icon  { font-size: 1.8rem; }
.jl-name  {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
}
.jl-label { font-size: 0.68rem; color: var(--muted); transition: color 0.2s; }

.buy-btn {
  display: block; max-width: 560px; margin: 1rem auto 0;
  background: var(--purple); color: var(--white);
  padding: 1.2rem 2.5rem; border: none;
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.buy-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.buy-btn:hover::before { transform: translateX(100%); }
.buy-btn:hover { background: var(--purple-glow); color: var(--black); }

.rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0; }
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: expandRing 8s ease-in-out infinite;
}
.ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.ring:nth-child(2) { width: 500px; height: 500px; animation-delay: 1.5s; }
.ring:nth-child(3) { width: 700px; height: 700px; animation-delay: 3s; }
.ring:nth-child(4) { width: 900px; height: 900px; animation-delay: 4.5s; }
@keyframes expandRing {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.8); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.2); }
}

.join-note { margin-top: 3rem; font-size: 0.65rem; color: rgba(107,107,138,0.5); line-height: 1.9; letter-spacing: 0.02em; }
.final-quote  { margin: 5rem auto 0; max-width: 500px; }
.fq-text {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem); line-height: 1.6;
  color: rgba(240,238,255,0.4); margin-bottom: 0.8rem;
}
.fq-attr { font-size: 0.62rem; color: rgba(107,107,138,0.5); letter-spacing: 0.1em; }

/* ---- PAGE NAV ---- */
.page-nav {
  display: flex; justify-content: space-between;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(124,58,237,0.1);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.page-nav a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.page-nav a:hover, .page-nav .next { color: var(--white); }

/* ---- FOOTER ---- */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(124,58,237,0.1);
  padding: 2rem; text-align: center;
  font-size: 0.7rem; color: var(--muted); line-height: 2;
}
footer a { color: var(--purple-glow); text-decoration: none; }
footer a:hover { color: var(--lilac); }
.footer-logo {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.5rem; color: var(--white); display: block; margin-bottom: 1rem;
}
.footer-disclaimer {
  max-width: 600px; margin: 1rem auto 0;
  opacity: 0.5; font-size: 0.62rem; line-height: 1.8;
}

/* ---- GHOST WATERMARK ---- */
.ghost-text {
  position: fixed; right: -3%; top: 50%; transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(12rem, 30vw, 26rem);
  color: rgba(124,58,237,0.03);
  line-height: 1; pointer-events: none; user-select: none; z-index: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links             { display: none; }
  .nav-burger            { display: flex; }
  .section-inner         { padding: 6rem 1.5rem 4rem; }
  .what-grid             { grid-template-columns: 1fr; }
  .community-grid,
  .archetype-grid        { grid-template-columns: 1fr 1fr; }
  .meme-wall             { grid-template-columns: 1fr; }
  .meme-card.featured,
  .meme-card.wide        { flex-direction: column; grid-column: span 1; }
  .stat-row, .stats-row  { flex-direction: column; }
  .stat-box, .stat-cell  { border-right: none; border-bottom: 1px solid rgba(124,58,237,0.15); }
  .roadmap-track         { padding-left: 2rem; }
  .roadmap-phase::before { left: -1.55rem; }
  .roadmap-track::before { left: 0.4rem; }
  .join-links            { grid-template-columns: 1fr; }
  .token-info            { gap: 1rem; padding: 1rem; }
}

@media (max-width: 500px) {
  .community-grid,
  .archetype-grid { grid-template-columns: 1fr; }
}

.community-img-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  display: block;
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.4));
  animation: float 4s ease-in-out infinite;
}
.community-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}