/* ===== Jimothy The Raccoon × ROBINHOOD ===== */
:root {
  --bg: #050806;
  --bg-elevated: #0b100d;
  --surface: rgba(18, 28, 22, 0.72);
  --border: rgba(0, 200, 5, 0.12);
  --border-strong: rgba(0, 200, 5, 0.28);
  --green: #00c805;
  --green-dim: #00a004;
  --green-glow: rgba(0, 200, 5, 0.35);
  --green-soft: rgba(0, 200, 5, 0.08);
  --text: #f2f7f3;
  --text-muted: #8a9a8e;
  --white: #ffffff;
  --gray: #2a3530;
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Space Grotesk", system-ui, sans-serif;
  --display: "Syne", "Space Grotesk", system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

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

/* Green feather cursor only */
html.has-fur-cursor,
html.has-fur-cursor * {
  cursor: none !important;
}

.fur-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: -2px 0 0 -24px;
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  will-change: transform;
  display: none;
  background: none;
  border: none;
  box-shadow: none;
}

html.has-fur-cursor .fur-cursor {
  display: block;
}

.fur-cursor.is-on {
  opacity: 1;
}

.fur-cursor.is-hover {
  width: 32px;
  height: 32px;
  margin: -2px 0 0 -28px;
}

.fur-cursor.is-click img {
  transform: scale(0.9);
}

.fur-cursor.is-hover img {
  transform: scale(1.12);
}

.fur-cursor img {
  width: 100%;
  height: 100%;
  display: block;
  background: none;
  border: none;
  box-shadow: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.1s ease;
}

@media (pointer: coarse), (max-width: 768px) {
  html.has-fur-cursor,
  html.has-fur-cursor * {
    cursor: auto !important;
  }

  .fur-cursor {
    display: none !important;
  }
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

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

/* Ambient */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

.glow {
  pointer-events: none;
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.45;
}

.glow-a {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
}

.glow-b {
  bottom: 10%;
  left: -160px;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.18), transparent 70%);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 8, 6, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  z-index: 2;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-strong);
  box-shadow: 0 0 16px var(--green-glow);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.25s var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 8, 6, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

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

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

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-green {
  background: var(--green);
  color: #041006;
  box-shadow: 0 0 0 0 var(--green-glow), 0 8px 28px rgba(0, 200, 5, 0.25);
}

.btn-green:hover {
  background: #12e018;
  box-shadow: 0 0 32px var(--green-glow), 0 12px 36px rgba(0, 200, 5, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) clamp(20px, 4vw, 48px) 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid var(--border-strong);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  color: var(--green);
  text-shadow: 0 0 60px var(--green-glow);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-sub strong {
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value,
.stat-suffix {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  display: inline;
  color: var(--green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* Hero mascot */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.mascot-ring {
  position: absolute;
  width: min(400px, 82vw);
  height: min(400px, 82vw);
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  animation: spin 24s linear infinite;
}

.mascot-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  transform: translateX(-50%);
}

.mascot-ring.delay {
  width: min(320px, 68vw);
  height: min(320px, 68vw);
  animation-direction: reverse;
  animation-duration: 18s;
  border-style: dashed;
  opacity: 0.5;
}

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

.mascot-stage {
  position: relative;
  z-index: 2;
  transition: transform 0.2s var(--ease);
  will-change: transform;
}

.mascot-card {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 1;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(0, 200, 5, 0.15);
  background: #0a100c;
  animation: float 4.5s ease-in-out infinite;
}

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

.mascot-card:hover {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 36px 90px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(0, 200, 5, 0.22);
}

.mascot-img,
.mascot-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mascot-video {
  background: #0a100c;
}

.ticker-pill {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 3;
  white-space: nowrap;
}

.ticker-symbol {
  letter-spacing: 0.04em;
}

.ticker-change.up {
  color: var(--green);
}

.float-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: chip-float 5s ease-in-out infinite;
}

.chip-1 { top: 10%; left: 0; animation-delay: 0s; }
.chip-2 { top: 26%; right: 0; animation-delay: 1.2s; }
.chip-3 { bottom: 16%; left: 2%; animation-delay: 2s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Banner strip */
.banner-strip {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 8px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.banner-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 200, 5, 0.08);
  aspect-ratio: 21 / 9;
  max-height: 320px;
}

.banner-frame img,
.banner-frame video,
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-video {
  animation: banner-drift 12s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes banner-drift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translateY(-1%); }
}

.banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(5, 8, 6, 0.55) 100%
  );
  pointer-events: none;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  background: var(--green-soft);
  overflow: hidden;
  padding: 16px 0;
  margin: 28px 0 12px;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

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

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px clamp(20px, 4vw, 48px);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.glass-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 200, 5, 0.08);
}

/* About cards with images */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a100c;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.about-img-wrap .img-motion {
  width: 112%;
  height: 112%;
  margin: -6%;
}

.img-motion.motion-a {
  animation: kenburns-a 10s ease-in-out infinite alternate;
}

.img-motion.motion-b {
  animation: kenburns-b 12s ease-in-out infinite alternate;
}

.img-motion.motion-c {
  animation: kenburns-c 9s ease-in-out infinite alternate;
}

@keyframes kenburns-a {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-3%, -2%); }
}

@keyframes kenburns-b {
  from { transform: scale(1.08) translate(-2%, 1%); }
  to { transform: scale(1) translate(2%, -2%); }
}

@keyframes kenburns-c {
  from { transform: scale(1) translate(1%, 0); }
  to { transform: scale(1.14) translate(-2%, 2%); }
}

.about-card:hover .about-img-wrap img {
  animation-play-state: paused;
  transform: scale(1.08);
}

.about-body {
  padding: 22px 22px 26px;
}

.about-body h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.about-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* Brand — Profile & Banner */
.brand-preview {
  overflow: hidden;
  padding: 0;
  margin-bottom: 28px;
}

.brand-banner-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: #0a100c;
}

.brand-banner-wrap.alt {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.brand-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-profile-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 0 24px 28px;
  margin-top: -48px;
  position: relative;
  z-index: 1;
}

.brand-profile {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--border-strong), 0 8px 28px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  background: #0a100c;
}

.brand-meta {
  flex: 1;
  padding-bottom: 4px;
  min-width: 0;
}

.brand-meta h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.brand-handle {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.brand-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  max-width: 420px;
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-alt {
  text-align: center;
}

.brand-alt-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Gallery — Before Launch */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  padding: 12px 14px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(90vw, 720px);
  max-height: 85vh;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(5, 8, 6, 0.9);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--green);
  color: #041006;
}

/* Tokenomics */
.tokenomics-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.token-ring-wrap {
  position: relative;
  width: min(280px, 70vw);
  margin: 0 auto;
  aspect-ratio: 1;
}

.token-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--gray);
  stroke-width: 16;
}

.ring-seg {
  fill: none;
  stroke-width: 16;
  stroke-linecap: butt;
}

.ring-seg.community {
  stroke: var(--green);
  stroke-dasharray: 351.85 150.8;
  stroke-dashoffset: 502.65;
  transition: stroke-dashoffset 1.4s var(--ease);
}

.ring-seg.liquidity {
  stroke: #3dffa0;
  stroke-dasharray: 100.53 402.12;
  stroke-dashoffset: 502.65;
  transition: stroke-dashoffset 1.4s var(--ease) 0.15s;
}

.ring-seg.team {
  stroke: #1a6b2a;
  stroke-dasharray: 50.27 452.38;
  stroke-dashoffset: 502.65;
  transition: stroke-dashoffset 1.4s var(--ease) 0.3s;
}

.token-ring-wrap.inview .ring-seg.community {
  stroke-dashoffset: 0;
}

.token-ring-wrap.inview .ring-seg.liquidity {
  stroke-dashoffset: -351.85;
}

.token-ring-wrap.inview .ring-seg.team {
  stroke-dashoffset: -452.38;
}

.token-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  gap: 2px;
}

.token-mascot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-strong);
  margin-bottom: 4px;
}

.token-total {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}

.token-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.token-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.token-bar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.token-bar-head span:last-child {
  margin-left: auto;
  color: var(--green);
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.community { background: var(--green); }
.dot.liquidity { background: #3dffa0; }
.dot.team { background: #1a6b2a; }

.token-bar {
  height: 10px;
  background: var(--gray);
  border-radius: 999px;
  overflow: hidden;
}

.token-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  transition: width 1.2s var(--ease);
}

.token-item:nth-child(2) .token-bar i {
  background: linear-gradient(90deg, #1a9e50, #3dffa0);
}

.token-item:nth-child(3) .token-bar i {
  background: linear-gradient(90deg, #0d3d18, #1a6b2a);
}

.token-list.inview .token-bar i {
  width: var(--w);
}

.token-notes {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.token-notes li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.token-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

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

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

.step p a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step p a:hover {
  color: #12e018;
}

.howto-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gray) 55%, var(--gray));
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray);
  border: 3px solid var(--bg);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 2px var(--gray);
}

.timeline-item.done .timeline-dot,
.timeline-item.active .timeline-dot {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green), 0 0 16px var(--green-glow);
}

.timeline-item.active .timeline-dot {
  animation: pulse 1.6s ease infinite;
}

.timeline-card {
  padding: 24px 20px;
  height: 100%;
}

.timeline-item.done .timeline-card,
.timeline-item.active .timeline-card {
  border-color: var(--border-strong);
}

.phase {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.timeline-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 8px 0 14px;
}

.timeline-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.timeline-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-grid-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.social-grid-2 .social-card {
  flex: 1 1 220px;
  max-width: 260px;
}

.social-card {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
}

.social-icon {
  font-size: 1.75rem;
  color: var(--green);
  margin-bottom: 6px;
}

.social-card strong {
  font-size: 1.05rem;
}

.social-card span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA */
.cta-banner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px) 100px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 36px;
  padding: 28px clamp(24px, 3vw, 40px);
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0, 200, 5, 0.18), transparent 55%),
    var(--surface);
  border-color: var(--border-strong);
  overflow: hidden;
}

.cta-visual {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  justify-self: center;
}

.cta-visual img,
.cta-visual video,
.cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-visual {
  animation: cta-bob 4s ease-in-out infinite;
}

@keyframes cta-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* Logo pulse */
.logo-img {
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { box-shadow: 0 0 12px var(--green-glow); transform: scale(1); }
  50% { box-shadow: 0 0 22px var(--green-glow); transform: scale(1.05); }
}

.token-mascot {
  animation: logo-glow 3.5s ease-in-out infinite;
}

.cta-text h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.cta-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 440px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px clamp(20px, 4vw, 48px) 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-tag {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  opacity: 0.7;
}

/* Back top */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(5, 8, 6, 0.9);
  color: var(--green);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--green);
  color: #041006;
  transform: translateY(-2px);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 24px);
    min-height: auto;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .nav-links,
  .nav > .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .about-grid,
  .gallery-grid,
  .steps,
  .timeline,
  .social-grid:not(.social-grid-2) {
    grid-template-columns: 1fr 1fr;
  }

  .brand-profile-row {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -40px;
  }

  .brand-profile {
    width: 96px;
    height: 96px;
  }

  .tokenomics-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text p {
    margin-inline: auto;
  }

  .banner-frame {
    aspect-ratio: 16 / 9;
    max-height: 260px;
  }
}

@media (max-width: 560px) {
  .about-grid,
  .gallery-grid,
  .steps,
  .timeline,
  .social-grid:not(.social-grid-2) {
    grid-template-columns: 1fr;
  }

  .social-grid-2 .social-card {
    flex: 1 1 100%;
    max-width: 320px;
  }

  .float-chip {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-visual {
    width: 160px;
    height: 160px;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .banner-video,
  .mascot-video,
  .cta-video {
    animation: none !important;
  }
}
