/* ===== BRODIE — Robinhood Dog Theme ===== */
:root {
  --neon: #39ff14;
  --neon-bright: #7fff00;
  --neon-dim: #2ecc10;
  --neon-glow: rgba(57, 255, 20, 0.45);
  --neon-soft: rgba(57, 255, 20, 0.12);
  --teal: #7fe8d4;
  --teal-soft: rgba(127, 232, 212, 0.15);
  --black: #030303;
  --black-card: #0a0a0a;
  --black-elevated: #111111;
  --white: #f0f0f0;
  --gray: #888;
  --gray-dim: #555;
  --font-display: 'Permanent Marker', cursive;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
}

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

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

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}

.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: smokeDrift 12s ease-in-out infinite;
}

.smoke-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-glow), transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.smoke-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(127, 232, 212, 0.3), transparent 70%);
  bottom: 10%;
  right: -8%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.smoke-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--neon-soft), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
  animation-duration: 18s;
}

@keyframes smokeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  33% { transform: translate(30px, -20px) scale(1.1); opacity: 0.45; }
  66% { transform: translate(-20px, 15px) scale(0.95); opacity: 0.25; }
}

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

.glow-orb-1 {
  width: 200px;
  height: 200px;
  background: var(--neon-glow);
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 150px;
  height: 150px;
  background: rgba(127, 232, 212, 0.25);
  bottom: 30%;
  left: 10%;
  animation-delay: -3s;
}

.glow-orb-3 {
  width: 120px;
  height: 120px;
  background: var(--neon-soft);
  top: 60%;
  right: 30%;
  animation-delay: -5s;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(57, 255, 20, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neon);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: var(--neon-soft) !important;
  color: var(--neon) !important;
  border: 1px solid rgba(57, 255, 20, 0.3) !important;
}

.nav-cta:hover {
  background: rgba(57, 255, 20, 0.2) !important;
  box-shadow: 0 0 20px var(--neon-glow);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tweet-main-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  animation: heroFloat 5s ease-in-out infinite;
}

.tweet-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.tweet-label-icon {
  width: 16px;
  height: 16px;
}

.tweet-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid rgba(57, 255, 20, 0.25);
  box-shadow:
    0 0 40px var(--neon-glow),
    0 0 80px rgba(57, 255, 20, 0.1);
  transition: box-shadow 0.4s, border-color 0.4s;
}

.tweet-embed:hover {
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow:
    0 0 60px var(--neon-glow),
    0 0 100px rgba(57, 255, 20, 0.15);
}

.tweet-embed .twitter-tweet {
  margin: 0 !important;
}

.tweet-embed iframe {
  border-radius: var(--radius-lg) !important;
}

.inline-link {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.inline-link:hover {
  color: var(--neon-bright);
}

.hero-glow-ring {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 24px;
  border: 2px solid rgba(57, 255, 20, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

.hero-glow-ring.ring-2 {
  width: 480px;
  height: 480px;
  border-color: rgba(127, 232, 212, 0.15);
  animation-delay: -1.5s;
  animation-duration: 4s;
}

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

.hero-media-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 0 60px var(--neon-glow),
    0 0 120px rgba(57, 255, 20, 0.15),
    inset 0 0 40px rgba(57, 255, 20, 0.1);
  animation: heroFloat 5s ease-in-out infinite;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-video.active {
  display: block;
}

.hero-logo.fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo.fallback-img.hidden {
  display: none;
}

.floating-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-paws .paw {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: pawFloat 4s ease-in-out infinite;
}

.floating-paws .paw:nth-child(1) { top: 5%; right: 10%; animation-delay: 0s; }
.floating-paws .paw:nth-child(2) { bottom: 15%; left: 5%; animation-delay: -1.3s; }
.floating-paws .paw:nth-child(3) { top: 40%; right: 0; animation-delay: -2.6s; }

@keyframes pawFloat {
  0%, 100% { opacity: 0; transform: translateY(10px) rotate(-10deg); }
  30%, 70% { opacity: 0.6; transform: translateY(-10px) rotate(10deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--neon-soft);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--neon);
}

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

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--neon);
  line-height: 1;
  text-shadow:
    0 0 20px var(--neon-glow),
    0 0 60px rgba(57, 255, 20, 0.3);
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 20px var(--neon-glow), 0 0 60px rgba(57, 255, 20, 0.3); }
  50% { text-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(57, 255, 20, 0.5); }
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 8px 0 20px;
  position: relative;
  padding-bottom: 16px;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
}

.hero-bio {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-bio strong {
  color: var(--neon);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

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

.btn-primary {
  background: var(--neon);
  color: var(--black);
  box-shadow: 0 0 30px var(--neon-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 50px var(--neon-glow);
  background: var(--neon-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 20px var(--neon-soft);
}

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

.btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-icon-on-primary {
  filter: brightness(0);
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--black-elevated);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 12px;
  max-width: 100%;
}

.contract-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.contract-addr {
  font-size: 0.78rem;
  color: var(--teal);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.copy-btn {
  background: var(--neon-soft);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--neon);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.copy-btn:hover {
  background: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 15px var(--neon-glow);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-title .accent {
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.about-card {
  background: var(--black-card);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 20, 0.3);
  box-shadow: 0 10px 40px rgba(57, 255, 20, 0.08);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--black-card), var(--black-elevated));
  border: 1px solid rgba(127, 232, 212, 0.1);
  border-radius: var(--radius-lg);
}

.about-story p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-story em {
  color: var(--teal);
  font-style: normal;
}

.about-story strong {
  color: var(--neon);
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.02), transparent);
}

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

.step-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.step-card:hover {
  border-color: rgba(57, 255, 20, 0.2);
  transform: translateY(-4px);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(57, 255, 20, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.buy-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--black-elevated);
  border: 1px solid rgba(57, 255, 20, 0.12);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.buy-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--neon);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.1);
}

.buy-link-primary {
  border-color: rgba(57, 255, 20, 0.35);
  background: rgba(57, 255, 20, 0.06);
}

.buy-link-primary:hover {
  background: rgba(57, 255, 20, 0.1);
}

.buy-link-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(72%) sepia(48%) saturate(800%) hue-rotate(65deg);
}

.buy-link-card .buy-link-icon[src$="blockscout.svg"] {
  filter: brightness(0) invert(72%) sepia(48%) saturate(800%) hue-rotate(140deg);
}

.buy-link-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.buy-link-card span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== CHART ===== */
.chart-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.15);
}

.chart-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--neon-glow), transparent, var(--teal-soft));
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
}

.chart-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  background: var(--black-card);
}

.chart-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== JOIN US ===== */
.joinus-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.joinus-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.banner-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, var(--neon-glow), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: bannerGlow 4s ease-in-out infinite;
}

@keyframes bannerGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.banner-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(57, 255, 20, 0.2);
  transition: transform 0.5s;
}

.joinus-banner:hover .banner-img {
  transform: scale(1.02);
}

.joinus-content .section-tag,
.joinus-content .section-title {
  text-align: left;
}

.joinus-desc {
  color: var(--gray);
  font-size: 1.05rem;
  margin: 16px 0 32px;
  line-height: 1.7;
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.social-card:hover {
  border-color: rgba(57, 255, 20, 0.3);
  background: var(--black-elevated);
  transform: translateX(6px);
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.social-card .social-icon[src$="x.svg"],
.social-card .social-icon[src$="telegram.svg"] {
  color: var(--neon);
}

.social-card strong {
  display: block;
  font-size: 0.9rem;
}

.social-card span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  border-top: 1px solid rgba(57, 255, 20, 0.08);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--neon);
}

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

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-dim);
  max-width: 500px;
  margin: 0 auto 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-dim);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--neon);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  box-shadow: 0 0 30px var(--neon-glow);
}

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

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    order: -1;
  }

  .hero-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-bio {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .buy-links {
    grid-template-columns: 1fr;
  }

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

  .joinus-content .section-tag,
  .joinus-content .section-title {
    text-align: center;
  }

  .joinus-desc {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .hero-glow-ring {
    width: 100%;
    max-width: 360px;
    height: 380px;
  }

  .hero-glow-ring.ring-2 {
    width: 100%;
    max-width: 400px;
    height: 420px;
  }

  .tweet-main-wrap {
    max-width: 100%;
  }

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

  .chart-wrap iframe {
    height: 400px;
  }

  .contract-addr {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 3rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .about-story {
    padding: 24px;
  }
}
