/* ===== The Green Bull ($VLAD) ===== */
:root {
  --bg: #020805;
  --bg-2: #04120a;
  --surface: rgba(8, 40, 22, 0.55);
  --green: #00ff7a;
  --green-2: #39ff14;
  --green-dim: #00c853;
  --green-dark: #0a3d28;
  --mint: #a8ffce;
  --text: #e8fff2;
  --muted: #7fad94;
  --border: rgba(0, 255, 122, 0.28);
  --glow: 0 0 30px rgba(0, 255, 122, 0.35);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Space Grotesk", 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.6;
  overflow-x: hidden;
  cursor: none;
}

body.touch-mode {
  cursor: auto;
}

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

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

button {
  font-family: inherit;
  cursor: none;
}

body.touch-mode button,
body.touch-mode a {
  cursor: pointer;
}

/* ===== Magical layers ===== */
#particleCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.85;
}

.cursor-glow {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 122, 0.9) 0%, rgba(0, 255, 122, 0.25) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.15s, height 0.15s, opacity 0.2s;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

.cursor-glow.hover {
  width: 56px;
  height: 56px;
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--green), 0 0 24px rgba(0, 255, 122, 0.5);
  opacity: 0.8;
  transition: opacity 0.4s;
}

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

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

.o1 {
  width: 340px;
  height: 340px;
  background: #00ff7a;
  top: 10%;
  left: 5%;
}

.o2 {
  width: 280px;
  height: 280px;
  background: #00c853;
  top: 50%;
  right: 8%;
  animation-delay: -5s;
}

.o3 {
  width: 220px;
  height: 220px;
  background: #39ff14;
  bottom: 15%;
  left: 30%;
  animation-delay: -10s;
}

.o4 {
  width: 180px;
  height: 180px;
  background: #00e676;
  top: 25%;
  left: 55%;
  animation-delay: -14s;
}

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

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 48;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.4;
}

/* ===== Magic border ===== */
.magic-border {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  overflow: hidden;
}

.magic-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(0, 255, 122, 0.7) 45%,
    rgba(168, 255, 206, 0.9) 50%,
    rgba(0, 255, 122, 0.7) 55%,
    transparent 80%
  );
  background-size: 200% 200%;
  -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: borderShine 4s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes borderShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 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 2rem;
  background: rgba(2, 8, 5, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 255, 122, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  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;
  box-shadow: 0 0 16px rgba(0, 255, 122, 0.5);
  border: 2px solid rgba(0, 255, 122, 0.4);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
  text-shadow: 0 0 12px rgba(0, 255, 122, 0.5);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  color: #021408;
  box-shadow: 0 0 24px rgba(0, 255, 122, 0.4);
}

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

.btn-secondary {
  background: rgba(0, 255, 122, 0.1);
  color: var(--green);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(0, 255, 122, 0.18);
  box-shadow: var(--glow);
}

.btn-ghost {
  background: transparent;
  color: var(--mint);
  border: 1px solid rgba(0, 255, 122, 0.25);
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(2, 8, 5, 0.85) 70%),
    linear-gradient(to bottom, rgba(2, 8, 5, 0.4), var(--bg) 95%);
}

.hero-content {
  max-width: 820px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  color: var(--mint);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

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

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

.hero-logo-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 255, 122, 0.5);
  box-shadow: 0 0 40px rgba(0, 255, 122, 0.45), 0 0 80px rgba(0, 255, 122, 0.2);
  position: relative;
  z-index: 2;
}

.logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 122, 0.35);
  animation: ringPulse 3s ease-out infinite;
}

.logo-ring.ring-2 {
  inset: -24px;
  animation-delay: 1.5s;
  border-color: rgba(0, 255, 122, 0.2);
}

@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.float-anim {
  animation: floatY 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.title-line {
  display: block;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #a8ffce, #00ff7a, #39ff14, #a8ffce);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0, 255, 122, 0.4));
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.title-ticker {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--green);
  letter-spacing: 0.2em;
  text-shadow: 0 0 24px rgba(0, 255, 122, 0.7);
}

.hero-tagline {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

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

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  max-width: 100%;
}

.ca-label {
  background: rgba(0, 255, 122, 0.15);
  color: var(--green);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ca-pill code {
  font-family: ui-monospace, monospace;
  color: var(--mint);
  word-break: break-all;
}

.copy-icon {
  background: none;
  border: none;
  color: var(--green);
  padding: 0.25rem;
  display: flex;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

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

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

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

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-dim);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

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

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-frame {
  position: relative;
  padding: 0.5rem;
}

.about-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.frame-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, rgba(0, 255, 122, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.floating-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.stat-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 255, 122, 0.08);
  font-size: 0.8rem;
  color: var(--mint);
  animation: chipPulse 3s ease-in-out infinite;
}

.stat-chip:nth-child(2) { animation-delay: 0.5s; }
.stat-chip:nth-child(3) { animation-delay: 1s; }

@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 transparent; }
  50% { box-shadow: 0 0 16px rgba(0, 255, 122, 0.3); }
}

.about-copy .lead {
  font-size: 1.2rem;
  color: var(--mint);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(0, 255, 122, 0.05);
  border: 1px solid rgba(0, 255, 122, 0.12);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-list li:hover {
  border-color: var(--border);
  transform: translateX(6px);
}

.fi {
  font-size: 1.2rem;
}

/* ===== Signal / Tweet ===== */
.signal {
  background: linear-gradient(180deg, transparent, rgba(0, 255, 122, 0.03), transparent);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.signal-img-wrap {
  height: 100%;
  min-height: 360px;
}

.signal-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 10, 5, 0.92));
  font-size: 0.9rem;
  color: var(--mint);
  letter-spacing: 0.04em;
}

.signal-tweet {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tweet-card {
  display: block;
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.tweet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 122, 0.15);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 122, 0.35);
  object-fit: cover;
}

.tweet-meta {
  flex: 1;
  text-align: left;
}

.tweet-name {
  font-weight: 700;
  font-size: 1rem;
}

.verified {
  color: #1d9bf0;
  font-size: 0.85rem;
}

.tweet-handle {
  color: var(--muted);
  font-size: 0.85rem;
}

.tweet-x {
  color: var(--muted);
  flex-shrink: 0;
}

.tweet-body {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  text-align: left;
  margin-bottom: 1.25rem;
}

.tweet-footer {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tweet-cta {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

.signal-note {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  font-style: italic;
}

/* ===== Tokenomics ===== */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.token-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s;
}

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

.token-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.token-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green);
  word-break: break-all;
}

.token-value.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
}

.token-bars {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 70px;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.bar {
  height: 10px;
  background: rgba(0, 255, 122, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(0, 255, 122, 0.5);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 255, 122, 0.3);
  z-index: 2;
}

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

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

.social-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.social-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--green);
  text-shadow: 0 0 16px rgba(0, 255, 122, 0.5);
}

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.social-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.social-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

.banner-card {
  padding: 0;
  overflow: hidden;
}

.banner-preview {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.banner-card h3,
.banner-card p {
  padding: 0 1.25rem;
}

.banner-card h3 {
  margin-top: 1rem;
}

.banner-card p {
  padding-bottom: 1.25rem;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(0, 255, 122, 0.12);
  padding: 2.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

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

.footer-brand span {
  color: var(--green);
  font-size: 0.8rem;
}

.disclaimer {
  flex: 1;
  min-width: 220px;
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 420px;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--green);
  font-size: 0.9rem;
}

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

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1000px, 95vw);
  max-height: 85vh;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0, 255, 122, 0.25);
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--green);
  font-size: 2.5rem;
  line-height: 1;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 40, 20, 0.95);
  border: 1px solid var(--border);
  color: var(--green);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--glow);
  font-weight: 600;
}

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

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .about-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .token-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav { padding: 0 1rem; }
  .nav-cta { display: none; }
  .token-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .bar-row {
    grid-template-columns: 80px 1fr 50px;
    font-size: 0.75rem;
  }
  .hero-logo-wrap {
    width: 120px;
    height: 120px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body { cursor: auto; }
  .cursor-glow { display: none; }
}
