/* ========== Robinhood Man ($VLAD) ========== */
:root {
  --bg: #030805;
  --bg-2: #06140c;
  --panel: rgba(8, 28, 16, 0.72);
  --green: #00ff6a;
  --green-2: #00c853;
  --green-dim: #0a3d22;
  --green-glow: rgba(0, 255, 106, 0.45);
  --gold: #ffd54a;
  --text: #e8fff0;
  --muted: #8fb89a;
  --border: rgba(0, 255, 106, 0.22);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Rajdhani", system-ui, sans-serif;
  --radius: 18px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.touch-device {
  cursor: auto;
}

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

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

/* ===== Magical background layers ===== */
#magic-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 255, 106, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(0, 200, 83, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 120, 60, 0.15), transparent 50%),
    linear-gradient(180deg, #020604 0%, #05140b 40%, #030805 100%);
}

#magic-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 106, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 106, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 40s linear infinite;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

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

#scanlines {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  opacity: 0.35;
}

/* ===== Custom cursor ===== */
#cursor-dot,
#cursor-ring,
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height, opacity;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green), 0 0 24px var(--green-glow);
  mix-blend-mode: screen;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 255, 106, 0.65);
  box-shadow: 0 0 18px rgba(0, 255, 106, 0.25);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
}

#cursor-glow {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 255, 106, 0.18), transparent 65%);
  filter: blur(4px);
  opacity: 0.85;
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--green);
  background: rgba(0, 255, 106, 0.08);
}

body.touch-device #cursor-dot,
body.touch-device #cursor-ring,
body.touch-device #cursor-glow {
  display: none !important;
}

.cursor-spark {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: sparkFade 0.7s ease-out forwards;
}

@keyframes sparkFade {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(3, 8, 5, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

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

.nav-ticker {
  color: var(--green);
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 255, 106, 0.08);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.nav-links a {
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--green);
  text-shadow: 0 0 12px var(--green-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #021408;
  box-shadow: 0 0 24px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(0, 255, 106, 0.65), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 255, 106, 0.06);
}

.btn-outline:hover {
  background: rgba(0, 255, 106, 0.14);
  box-shadow: 0 0 20px var(--green-glow);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  min-width: 42px;
  padding-inline: 0.75rem;
}

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

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1.1rem;
}

.mag-btn {
  position: relative;
  overflow: hidden;
}

.mag-btn::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%) rotate(15deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 60% { transform: translateX(-120%) rotate(15deg); }
  100% { transform: translateX(120%) rotate(15deg); }
}

/* ===== Typography helpers ===== */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.mag-pulse {
  animation: pulseText 2.4s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% { text-shadow: 0 0 8px var(--green-glow); opacity: 0.9; }
  50% { text-shadow: 0 0 22px var(--green), 0 0 40px var(--green-glow); opacity: 1; }
}

.text-glow {
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow), 0 0 40px rgba(0, 255, 106, 0.25);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
}

.section {
  position: relative;
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
}

.section-sub {
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 1.15rem;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ===== Magical cards / borders ===== */
.mag-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.mag-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 255, 106, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.mag-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 106, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 255, 106, 0.12);
}

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

.mag-border {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mag-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--green), transparent, var(--green-2), transparent);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 5s linear infinite;
  pointer-events: none;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.orb.o1 {
  width: 280px;
  height: 280px;
  background: var(--green);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.orb.o2 {
  width: 200px;
  height: 200px;
  background: #00a844;
  bottom: 20%;
  left: 0;
  animation-delay: -3s;
}

.orb.o3 {
  width: 160px;
  height: 160px;
  background: #7cffb0;
  top: 50%;
  left: 40%;
  animation-delay: -6s;
  opacity: 0.2;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.title-line {
  display: block;
}

.title-glow {
  color: var(--green);
  text-shadow:
    0 0 20px var(--green-glow),
    0 0 60px rgba(0, 255, 106, 0.35),
    0 0 100px rgba(0, 255, 106, 0.15);
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin: 0.75rem 0 1rem;
  text-shadow: 0 0 16px rgba(255, 213, 74, 0.4);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contract-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 20, 10, 0.7);
  border-radius: 12px;
  font-size: 0.95rem;
}

.contract-box.large {
  padding: 0.9rem 1.1rem;
  font-size: 1.05rem;
  margin: 1.25rem auto;
}

.contract-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--green);
  opacity: 0.9;
}

.contract-box code {
  font-family: ui-monospace, monospace;
  color: var(--text);
  word-break: break-all;
}

.copy-btn {
  background: rgba(0, 255, 106, 0.15);
  border: 1px solid var(--border);
  color: var(--green);
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.copy-btn:hover {
  background: rgba(0, 255, 106, 0.28);
  box-shadow: 0 0 14px var(--green-glow);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 1px var(--border),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(0, 255, 106, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroBreathe 6s ease-in-out infinite;
}

@keyframes heroBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 40%, rgba(0, 255, 106, 0.15) 50%, transparent 60%);
  animation: shineSweep 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-ring {
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  border: 1px solid rgba(0, 255, 106, 0.25);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); box-shadow: 0 0 30px var(--green-glow); }
}

.float-badge {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.85rem;
  background: rgba(3, 20, 10, 0.85);
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 3;
}

.float-1 {
  top: 8%;
  left: -4%;
}

.float-2 {
  bottom: 12%;
  right: -2%;
  animation-delay: -2s;
  color: var(--gold);
  border-color: rgba(255, 213, 74, 0.5);
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.3);
}

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

.hero-banner {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(0, 255, 106, 0.1);
}

.hero-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 18px;
  height: 28px;
  border: 1.5px solid var(--green);
  border-radius: 12px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--green);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green);
}

@keyframes scrollDot {
  0% { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 16px; }
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(0, 255, 106, 0.04);
  padding: 0.85rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "◆";
  margin-left: 2.5rem;
  opacity: 0.4;
}

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

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--green);
}

.about-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-card strong {
  color: var(--text);
}

.about-feature {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  box-shadow: 0 0 30px var(--green-glow);
  flex-shrink: 0;
}

.about-feature blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.about-feature cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--green);
}

/* ===== Tokenomics ===== */
.tok-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.tok-card {
  text-align: center;
}

.tok-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 18px var(--green-glow);
  margin-bottom: 0.35rem;
}

.tok-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.4rem;
}

.tok-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.tok-meter {
  margin-top: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meter-row {
  display: grid;
  grid-template-columns: 100px 1fr 48px;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.meter {
  height: 10px;
  background: rgba(0, 255, 106, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.meter i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  box-shadow: 0 0 12px var(--green-glow);
  border-radius: inherit;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.meter i.filled {
  width: var(--w);
}

.meter-row b {
  color: var(--green);
  text-align: right;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: none;
  background: var(--bg-2);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s, opacity 0.6s;
}

.gallery-item.visible {
  opacity: 1;
  transform: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(0, 255, 106, 0.25), 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

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

.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 10, 5, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .g-overlay {
  opacity: 1;
}

.g-overlay span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--green);
}

/* ===== Buy ===== */
.buy-panel {
  position: relative;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(160deg, rgba(0, 40, 18, 0.85), rgba(3, 10, 6, 0.9));
  overflow: hidden;
}

.buy-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 106, 0.2), transparent 65%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.buy-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--green);
  box-shadow: 0 0 30px var(--green-glow);
  position: relative;
  z-index: 1;
}

.buy-panel h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.buy-panel > p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 34rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.buy-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

/* ===== Community ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.social-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 255, 106, 0.1);
  border: 1px solid var(--border);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 20px rgba(0, 255, 106, 0.15);
}

.social-card h3 {
  margin-bottom: 0.35rem;
}

.social-card p {
  color: var(--green);
  font-weight: 700;
  font-size: 1.15rem;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.35);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.footer-brand span {
  color: var(--green);
  font-weight: 700;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 640px;
  margin: 0 auto 0.75rem;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 4, 2, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(0, 255, 106, 0.2);
}

.lb-caption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--green);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(0, 255, 106, 0.1);
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(0, 255, 106, 0.25);
  box-shadow: 0 0 18px var(--green-glow);
}

.lb-close { top: 1.25rem; right: 1.25rem; font-size: 2rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: rgba(0, 40, 18, 0.95);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 6000;
  box-shadow: 0 0 24px var(--green-glow);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .contract-box {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .tok-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(3, 8, 5, 0.96);
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .nav-actions .btn-primary {
    display: none;
  }

  .tok-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .meter-row {
    grid-template-columns: 80px 1fr 40px;
    font-size: 0.9rem;
  }

  .hero-banner img {
    aspect-ratio: 2 / 1;
  }
}

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