:root {
  --rh-brand: #d0f10a;
  --rh-brand-light: #e8ff66;
  --rh-brand-dim: #b8d809;
  --rh-green: #d0f10a;
  --rh-neon: #d0f10a;
  --rh-bg: #d0f10a;
  --rh-dark: #d0f10a;
  --rh-surface: rgba(255, 255, 255, 0.42);
  --rh-surface-2: rgba(255, 255, 255, 0.55);
  --rh-border: rgba(0, 0, 0, 0.14);
  --rh-border-strong: rgba(0, 0, 0, 0.28);
  --rh-text: #000000;
  --rh-muted: rgba(0, 0, 0, 0.62);
  --font: "Space Grotesk", system-ui, sans-serif;
  --font-display: "Syne", var(--font);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-glow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--rh-bg);
  color: var(--rh-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

/* ─── Loader ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rh-bg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid transparent;
  border-top-color: #000;
  border-right-color: #000;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.8; }
}

/* ─── Background ─── */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(0, 0, 0, 0.04), transparent),
    radial-gradient(ellipse 40% 35% at 5% 70%, rgba(255, 255, 255, 0.15), transparent);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 18s ease-in-out infinite;
}

.bg-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  top: -10%;
  left: 20%;
}

.bg-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.04);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

.bg-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  top: 50%;
  left: -8%;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* ─── Marquee ─── */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--rh-border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}

.marquee-track span:nth-child(even) {
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Glass cards ─── */
.glass-card {
  background: var(--rh-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--rh-border);
  position: relative;
  overflow: hidden;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.glass-card:hover .card-shine {
  transform: translateX(100%);
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  background: rgba(208, 241, 10, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, padding 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(208, 241, 10, 0.95);
  border-bottom-color: var(--rh-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s var(--ease-spring), filter 0.3s;
}

.logo:hover .logo-img {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.logo-sm .logo-img {
  height: 40px;
}

.accent,
.gradient-text {
  color: #000;
}

.gradient-text {
  background: linear-gradient(135deg, #000, #333, #000);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer {
  animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.glow-text {
  color: #000;
  text-shadow: none;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rh-muted);
  position: relative;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav a:hover {
  color: #000;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rh-text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: #000;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  padding: 0.65rem;
  border: 1px solid var(--rh-border);
}

.btn-icon svg {
  display: block;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.55);
  color: #000;
  border: 1px solid var(--rh-border);
  white-space: nowrap;
}

.btn-copy.copied {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.btn-copy .copy-icon {
  opacity: 0.7;
}

/* ─── Main ─── */
main {
  position: relative;
  z-index: 1;
  padding-top: calc(32px + 80px);
}

.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--rh-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 1.25rem;
}

h1, h2, h3, h4, p, li, span, code, blockquote {
  color: inherit;
}

.section-header h2,
.hero-title,
.cta-banner h2,
.story-card h3,
.step h3,
.roadmap-item h3 {
  color: #000;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--rh-muted);
  margin-top: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-bg-banner {
  position: absolute;
  inset: 0;
  background: url("../banner.png") center / cover no-repeat;
  opacity: 0.12;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  width: 100%;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-logo-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), transparent 65%);
  animation: logoGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-logo {
  position: relative;
  width: clamp(120px, 24vw, 180px);
  height: auto;
  border-radius: 20px;
  animation: logoFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--rh-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rh-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 0, 0, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--rh-muted);
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-sub strong {
  color: #000;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats .stat {
  padding: 1.25rem 2rem;
  border-radius: var(--radius);
  min-width: 140px;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.hero-stats .stat:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--rh-border-strong);
  box-shadow: var(--shadow-glow);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rh-muted);
  margin-bottom: 0.35rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.15rem;
  color: #000;
}

.hero-visual {
  margin-top: 3.5rem;
}

.transform-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--rh-surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--rh-border);
  font-size: 1.05rem;
  animation: pillPulse 4s ease-in-out infinite;
}

@keyframes pillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
  50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
}

.pill-arrow {
  color: #000;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.pill-after {
  color: #000;
  font-weight: 700;
}

/* ─── Story ─── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.story-card {
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: var(--rh-border-strong);
  box-shadow: var(--shadow-glow);
}

.story-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.story-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: #000;
}

.story-card p {
  color: var(--rh-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.manifesto {
  text-align: center;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rh-muted);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-left: 3px solid #000;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #000;
  opacity: 0.35;
  line-height: 0;
  vertical-align: middle;
}

/* ─── Chart ─── */
.chart-wrapper {
  border-radius: var(--radius);
  min-height: 520px;
  position: relative;
}

.chart-frame-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent, rgba(0, 0, 0, 0.2));
  opacity: 0.3;
  z-index: -1;
  animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); opacity: 0.25; }
  50% { opacity: 0.45; }
  100% { filter: hue-rotate(0deg); opacity: 0.25; }
}

.dexscreener-embed {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 3rem;
  text-align: center;
  color: var(--rh-muted);
}

.pulse-icon {
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.chart-placeholder h3 {
  color: #000;
  margin-bottom: 0.5rem;
}

.chart-placeholder code {
  background: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #000;
  border: 1px solid var(--rh-border);
}

.placeholder-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.chart-external-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.chart-external-link:hover {
  transform: translateX(4px);
}

.hidden {
  display: none !important;
}

/* ─── Buy ─── */
.buy-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s;
}

.step:hover {
  transform: translateX(8px);
  border-color: var(--rh-border-strong);
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  border: 2px solid #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.step h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.step p {
  color: var(--rh-muted);
  font-size: 0.95rem;
}

.link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.link:hover {
  transform: translateX(4px);
}

.contract-box {
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contract-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rh-muted);
  margin-bottom: 0.85rem;
}

.contract-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.contract-row code {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  font-size: 0.85rem;
  color: #000;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rh-border);
}

.contract-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--rh-muted);
}

/* ─── Tokenomics ─── */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.token-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s;
}

.token-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-glow);
}

.token-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.token-label {
  font-size: 0.75rem;
  color: var(--rh-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
}

.token-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.token-facts li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--rh-muted);
  font-size: 0.95rem;
}

.token-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

/* ─── Roadmap ─── */
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.roadmap-item {
  padding: 1.75rem;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s;
}

.roadmap-item:hover {
  transform: translateY(-6px);
}

.roadmap-item.done {
  border-color: rgba(0, 0, 0, 0.2);
}

.roadmap-item.active {
  border-color: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.roadmap-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  position: relative;
}

.roadmap-dot.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #000;
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.roadmap-phase {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 700;
}

.roadmap-item h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.roadmap-item p {
  font-size: 0.9rem;
  color: var(--rh-muted);
}

/* ─── CTA ─── */
.cta-banner {
  text-align: center;
  position: relative;
  max-width: 100%;
  padding: 7rem 2rem;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.35), transparent 70%);
  animation: ctaGlow 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: var(--rh-muted);
  margin-bottom: 2.25rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--rh-border);
  padding: 3.5rem 2rem;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.75rem 0;
}

.footer-links a {
  color: var(--rh-muted);
  font-size: 0.9rem;
  transition: color 0.25s, transform 0.25s;
}

.footer-links a:hover {
  color: #000;
  transform: translateY(-2px);
  font-weight: 700;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--rh-muted);
  max-width: 600px;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--rh-muted);
  opacity: 0.5;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(208, 241, 10, 0.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--rh-border);
    gap: 1.25rem;
  }

  .header.nav-open .header-cta {
    display: flex;
    position: absolute;
    top: calc(100% + 200px);
    left: 2rem;
    right: 2rem;
  }

  .hero-stats .stat {
    min-width: 120px;
    padding: 1rem 1.25rem;
  }

  .dexscreener-embed {
    height: 480px;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .marquee {
    font-size: 0.65rem;
  }
}
