/* ==========================================================================
   HOODWOLF - Wolf In Hood
   Lime flag / forest hood theme
   ========================================================================== */

:root {
  --lime: #c6f52e;
  --lime-bright: #dcff4a;
  --lime-dim: #9dc722;
  --green: #1e8a4c;
  --green-deep: #0e5a30;
  --ink: #060a05;
  --ink-2: #0a1208;
  --ink-3: #101c0c;
  --panel: rgba(16, 28, 12, 0.72);
  --line: rgba(198, 245, 46, 0.16);
  --line-strong: rgba(198, 245, 46, 0.38);
  --text: #eef7dc;
  --text-dim: #a8bd8c;
  --font-display: "Pirata One", serif;
  --font-body: "Space Grotesk", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--lime); color: var(--ink); }

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

/* --------------------------------------------------------------------------
   Background layers
   -------------------------------------------------------------------------- */

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  animation: blobDrift 26s ease-in-out infinite alternate;
}

.aurora-1 {
  width: 55vw; height: 55vw;
  top: -20vw; left: -12vw;
  background: radial-gradient(circle, rgba(30, 138, 76, 0.5), transparent 65%);
}

.aurora-2 {
  width: 45vw; height: 45vw;
  top: 30vh; right: -15vw;
  background: radial-gradient(circle, rgba(198, 245, 46, 0.16), transparent 65%);
  animation-delay: -8s;
  animation-duration: 32s;
}

.aurora-3 {
  width: 60vw; height: 60vw;
  bottom: -25vw; left: 20vw;
  background: radial-gradient(circle, rgba(14, 90, 48, 0.55), transparent 65%);
  animation-delay: -16s;
  animation-duration: 38s;
}

@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(6vw, -4vh) scale(1.12); }
  100% { transform: translate(-5vw, 5vh) scale(0.94); }
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 3%); }
  50%  { transform: translate(3%, -2%); }
  75%  { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 245, 46, 0.07), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s;
}

/* --------------------------------------------------------------------------
   Icons (official SVG logos via mask, tinted with currentColor)
   -------------------------------------------------------------------------- */

.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}

.icon-uniswap {
  -webkit-mask-image: url("../assets/icons/uniswap.svg");
  mask-image: url("../assets/icons/uniswap.svg");
}

.icon-dexscreener {
  -webkit-mask-image: url("../assets/icons/dexscreener.svg");
  mask-image: url("../assets/icons/dexscreener.svg");
}

.icon-x {
  -webkit-mask-image: url("../assets/icons/x.svg");
  mask-image: url("../assets/icons/x.svg");
}

.icon-telegram {
  -webkit-mask-image: url("../assets/icons/telegram.svg");
  mask-image: url("../assets/icons/telegram.svg");
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.7em;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.2), box-shadow 0.25s, background 0.25s, color 0.25s;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn:hover::after { left: 160%; }

.btn-solid {
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-dim));
  color: var(--ink);
  box-shadow: 0 6px 28px rgba(198, 245, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-solid:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 42px rgba(198, 245, 46, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  background: rgba(198, 245, 46, 0.06);
  color: var(--lime);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(198, 245, 46, 0.14);
  box-shadow: 0 10px 32px rgba(198, 245, 46, 0.18);
}

.btn-sm { padding: 0.65em 1.2em; font-size: 0.82rem; }
.btn-lg { padding: 1.1em 2.4em; font-size: 1.05rem; }
.btn-square { padding: 0.9em 1.05em; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s, background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(6, 10, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-ring {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, var(--lime), var(--green), var(--lime));
  animation: spin 6s linear infinite;
}

.nav-logo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--lime);
  text-shadow: 0 0 24px rgba(198, 245, 46, 0.4);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--lime); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  width: 26px; height: 2px;
  background: var(--lime);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  z-index: 3;
}

.hero-flag {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 65% at 50% 0%, rgba(157, 199, 34, 0.16), transparent 70%),
    repeating-linear-gradient(115deg,
      rgba(198, 245, 46, 0.035) 0px,
      rgba(198, 245, 46, 0.035) 2px,
      transparent 2px,
      transparent 90px),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}

.hero-rays {
  position: absolute;
  top: -30%; left: 50%;
  width: 140vw; height: 140vw;
  transform: translateX(-50%);
  z-index: -1;
  background: conic-gradient(from 180deg at 50% 50%,
    transparent 0deg, rgba(198, 245, 46, 0.05) 8deg, transparent 16deg,
    transparent 40deg, rgba(198, 245, 46, 0.04) 48deg, transparent 56deg,
    transparent 90deg, rgba(198, 245, 46, 0.05) 98deg, transparent 106deg,
    transparent 150deg, rgba(198, 245, 46, 0.04) 158deg, transparent 166deg,
    transparent 210deg, rgba(198, 245, 46, 0.05) 218deg, transparent 226deg,
    transparent 270deg, rgba(198, 245, 46, 0.04) 278deg, transparent 286deg,
    transparent 320deg, rgba(198, 245, 46, 0.05) 328deg, transparent 336deg, transparent 360deg);
  animation: raysSpin 90s linear infinite;
  opacity: 0.8;
}

@keyframes raysSpin { to { transform: translateX(-50%) rotate(360deg); } }

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(198, 245, 46, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(198, 245, 46, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(198, 245, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 245, 46, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 10.5vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.hero-title-line { display: block; }

.hero-title-accent {
  color: var(--lime);
  text-shadow:
    0 0 18px rgba(198, 245, 46, 0.55),
    0 0 70px rgba(198, 245, 46, 0.3);
}

/* Glitch flicker on the title */
.glitch { position: relative; }

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--green);
  animation: glitchA 5.5s infinite steps(1);
}

.glitch::after {
  color: var(--lime-bright);
  animation: glitchB 5.5s infinite steps(1);
}

@keyframes glitchA {
  0%, 92%, 100% { opacity: 0; transform: none; }
  93% { opacity: 0.75; transform: translate(-4px, 2px); }
  94.5% { opacity: 0; }
  96% { opacity: 0.6; transform: translate(3px, -2px); }
  97% { opacity: 0; }
}

@keyframes glitchB {
  0%, 92%, 100% { opacity: 0; transform: none; }
  93.5% { opacity: 0.55; transform: translate(4px, -2px); }
  95% { opacity: 0; }
  96.5% { opacity: 0.5; transform: translate(-3px, 2px); }
  97.5% { opacity: 0; }
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 14px;
}

.hero-sub {
  max-width: 520px;
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 36px;
}

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

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

.hero-ticker-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

.meta-cell { display: flex; flex-direction: column; gap: 2px; }

.meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.meta-value {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--lime);
}

.meta-divider { width: 1px; height: 34px; background: var(--line-strong); }

.ca-copy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.ca-copy:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 24px rgba(198, 245, 46, 0.1);
  transform: translateY(-2px);
}

.ca-copy.copied {
  border-color: var(--lime);
  box-shadow: 0 0 28px rgba(198, 245, 46, 0.25);
}

.ca-label {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(198, 245, 46, 0.12);
  border: 1px solid var(--line-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--lime);
}

.ca-addr {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(340px, 52vw);
}

.ca-action {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.inline-ca {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.86em;
  color: var(--lime);
  background: rgba(198, 245, 46, 0.08);
  padding: 1px 6px;
  border-radius: 6px;
}

/* Hero portrait */

.hero-visual { display: flex; justify-content: center; }

.hero-portrait {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  animation: floaty 6s ease-in-out infinite;
  will-change: transform;
}

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

.portrait-img {
  position: absolute;
  inset: 7%;
  width: 86%; height: 86%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(198, 245, 46, 0.3),
    0 24px 90px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(198, 245, 46, 0.16);
}

.portrait-glow {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 245, 46, 0.22), transparent 62%);
  animation: glowBreath 4.5s ease-in-out infinite;
  z-index: 0;
}

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

.portrait-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  z-index: 1;
}

.ring-outer { inset: -4%; animation: spin 40s linear infinite; }
.ring-mid { inset: 1.5%; border-style: solid; border-color: var(--line); animation: spin 28s linear infinite reverse; }

.portrait-scan {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.portrait-scan::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 14%;
  background: linear-gradient(180deg, transparent, rgba(198, 245, 46, 0.16), transparent);
  animation: scanline 4.8s ease-in-out infinite;
}

@keyframes scanline {
  0%   { top: -20%; }
  55%, 100% { top: 110%; }
}

.orbit {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
}

.orbit-1 { animation: spin 11s linear infinite; }
.orbit-2 { animation: spin 17s linear infinite reverse; }

.orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime), 0 0 30px rgba(198, 245, 46, 0.6);
}

.orbit-2 .orbit-dot { width: 6px; height: 6px; top: auto; bottom: -3px; }

/* Scroll hint */

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}

.hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, var(--lime));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-text {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 20px 0;
  background: linear-gradient(90deg, var(--green-deep), var(--green), var(--green-deep));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  color: var(--lime-bright);
  text-shadow: 0 0 16px rgba(198, 245, 46, 0.35);
  white-space: nowrap;
}

.marquee-sep {
  width: 10px; height: 10px;
  border-radius: 2px;
  background: var(--lime);
  transform: rotate(45deg);
  flex-shrink: 0;
}

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

/* --------------------------------------------------------------------------
   Sections (shared)
   -------------------------------------------------------------------------- */

.section {
  position: relative;
  z-index: 3;
  padding: 130px 0;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(198, 245, 46, 0.45);
}

.section-sub {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about {
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(30, 138, 76, 0.12), transparent 70%),
    transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.about-frame img {
  width: 100%;
  transition: transform 0.6s ease;
}

.about-frame:hover img { transform: scale(1.05); }

.about-frame-border {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 245, 46, 0.4);
  border-radius: 16px;
  pointer-events: none;
}

.about-frame-tag {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: rgba(6, 10, 5, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--lime);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.about-lead {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 20px;
}

.about-copy > p { color: var(--text-dim); margin-bottom: 16px; }
.about-copy > p strong { color: var(--lime); }

.trait-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.trait-card {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.trait-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.trait-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 30px rgba(198, 245, 46, 0.08);
}

.trait-card:hover::before { opacity: 1; }

.trait-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lime-dim);
  margin-bottom: 8px;
}

.trait-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}

.trait-card p { font-size: 0.88rem; color: var(--text-dim); }

/* --------------------------------------------------------------------------
   How to Buy
   -------------------------------------------------------------------------- */

.howtobuy {
  background:
    radial-gradient(ellipse 70% 55% at 85% 40%, rgba(157, 199, 34, 0.08), transparent 70%),
    transparent;
}

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

.step-card {
  position: relative;
  padding: 34px 26px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1.1), border-color 0.35s, box-shadow 0.35s;
}

.step-card::after {
  content: "";
  position: absolute;
  bottom: -60%; right: -30%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 245, 46, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}

.step-card:hover {
  transform: translateY(-10px) rotate(-0.6deg);
  border-color: var(--line-strong);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 44px rgba(198, 245, 46, 0.1);
}

.step-card:hover::after { opacity: 1; }

.step-index {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(198, 245, 46, 0.1);
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}

.step-glyph {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  background-color: var(--lime);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 0 14px rgba(198, 245, 46, 0.5));
  transition: transform 0.35s ease;
}

.step-card:hover .step-glyph { transform: scale(1.12) rotate(-4deg); }

.glyph-wallet {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a3 3 0 0 1 3-3h11a1 1 0 1 1 0 2H6a1 1 0 0 0-1 1v.17A3 3 0 0 1 6 6h13a2 2 0 0 1 2 2v10a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6zm14.5 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a3 3 0 0 1 3-3h11a1 1 0 1 1 0 2H6a1 1 0 0 0-1 1v.17A3 3 0 0 1 6 6h13a2 2 0 0 1 2 2v10a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6zm14.5 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3C/svg%3E");
}

.glyph-fund {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 5 12.3l7 4.2 7-4.2L12 2zm0 16.2-7-4.2L12 22l7-8-7 4.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 5 12.3l7 4.2 7-4.2L12 2zm0 16.2-7-4.2L12 22l7-8-7 4.2z'/%3E%3C/svg%3E");
}

.glyph-swap {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4 3 8h3v8a2 2 0 0 0 2 2h6v-2H8V8h3L7 4zm10 16 4-4h-3V8a2 2 0 0 0-2-2h-6v2h6v8h-3l4 4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4 3 8h3v8a2 2 0 0 0 2 2h6v-2H8V8h3L7 4zm10 16 4-4h-3V8a2 2 0 0 0-2-2h-6v2h6v8h-3l4 4z'/%3E%3C/svg%3E");
}

.glyph-watch {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5C6.5 5 2.3 9.3 1 12c1.3 2.7 5.5 7 11 7s9.7-4.3 11-7c-1.3-2.7-5.5-7-11-7zm0 11.5A4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 0 1 0 9zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5C6.5 5 2.3 9.3 1 12c1.3 2.7 5.5 7 11 7s9.7-4.3 11-7c-1.3-2.7-5.5-7-11-7zm0 11.5A4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 0 1 0 9zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
}

.step-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

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

.howtobuy-cta {
  margin-top: 56px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Chart
   -------------------------------------------------------------------------- */

.chart {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(30, 138, 76, 0.1), transparent 70%),
    transparent;
}

.chart-shell {
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(198, 245, 46, 0.06);
}

.chart-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 5, 0.6);
}

.chart-lights { display: flex; gap: 7px; }

.chart-lights span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(198, 245, 46, 0.2);
  border: 1px solid var(--line-strong);
}

.chart-lights span:first-child { background: var(--lime); box-shadow: 0 0 10px rgba(198, 245, 46, 0.7); }

.chart-title {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  transition: color 0.25s, transform 0.25s;
}

.chart-open:hover { color: var(--lime-bright); transform: translateX(3px); }

.chart-embed {
  position: relative;
  width: 100%;
  height: min(72vh, 640px);
}

.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Join Us
   -------------------------------------------------------------------------- */

.joinus {
  background:
    radial-gradient(ellipse 75% 55% at 50% 20%, rgba(157, 199, 34, 0.09), transparent 70%),
    transparent;
}

.join-banner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65), 0 0 70px rgba(198, 245, 46, 0.1);
}

.join-banner-img {
  width: 100%;
  transition: transform 0.8s ease;
}

.join-banner:hover .join-banner-img { transform: scale(1.03); }

.join-banner-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 245, 46, 0.35);
  border-radius: 26px;
  pointer-events: none;
}

.join-banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.14) 48%, transparent 62%);
  background-size: 260% 100%;
  background-position: 120% 0;
  animation: bannerShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerShine {
  0%, 55%  { background-position: 120% 0; }
  85%, 100% { background-position: -120% 0; }
}

.join-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.join-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1.1), border-color 0.35s, box-shadow 0.35s;
}

.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 245, 46, 0.09), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.join-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 44px rgba(198, 245, 46, 0.12);
}

.join-card:hover::before { opacity: 1; }

.join-icon {
  width: 42px; height: 42px;
  color: var(--lime);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(198, 245, 46, 0.45));
  transition: transform 0.35s ease;
}

.join-card:hover .join-icon { transform: scale(1.15) rotate(-5deg); }

.join-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
}

.join-handle { font-size: 0.88rem; color: var(--text-dim); }

.join-arrow {
  position: absolute;
  top: 26px; right: 26px;
  width: 14px; height: 14px;
  border-top: 2px solid var(--lime);
  border-right: 2px solid var(--lime);
  transform: rotate(45deg);
  opacity: 0.35;
  transition: transform 0.3s, opacity 0.3s;
}

.join-card:hover .join-arrow {
  transform: rotate(45deg) translate(4px, -4px);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(14, 90, 48, 0.14));
  padding: 64px 0 40px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.footer-brand { display: flex; align-items: center; gap: 16px; text-align: left; }

.footer-logo {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 26px rgba(198, 245, 46, 0.25);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lime);
  letter-spacing: 0.06em;
}

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

.footer-social { display: flex; gap: 14px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-dim);
  background: rgba(198, 245, 46, 0.04);
  transition: transform 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.footer-social a .icon { width: 20px; height: 20px; }

.footer-social a:hover {
  transform: translateY(-4px);
  color: var(--lime);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 24px rgba(198, 245, 46, 0.15);
}

.footer-note {
  max-width: 560px;
  font-size: 0.8rem;
  color: var(--text-dim);
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: -1; }
  .hero-portrait { width: min(300px, 70vw); }
  .hero-cta { justify-content: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: rgba(6, 10, 5, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
    z-index: 99;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .nav-burger { display: flex; position: relative; z-index: 100; }
  .nav-actions .btn { display: none; }

  .section { padding: 90px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .join-links { grid-template-columns: 1fr; }
  .trait-grid { grid-template-columns: 1fr; }
  .hero-ticker-meta { flex-wrap: wrap; justify-content: center; }
  .chart-title { display: none; }
  .chart-embed { height: 60vh; }
  .marquee-track span { font-size: 1.2rem; }
  .footer-brand { flex-direction: column; text-align: center; }
}

@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; }
}
