/* ═══════════════════════════════════════════
   THE POMP BULL — $POMPLIANO
   Bullish dark theme with gold & neon green
   ═══════════════════════════════════════════ */

:root {
  --navy: #001428;
  --navy-mid: #0a1f3d;
  --navy-light: #122a4f;
  --gold: #d4af37;
  --gold-bright: #ffd700;
  --gold-dim: #a8892a;
  --green: #00ff41;
  --green-dim: #00cc33;
  --green-glow: rgba(0, 255, 65, 0.45);
  --gold-glow: rgba(212, 175, 55, 0.4);
  --text: #e8edf5;
  --text-muted: #8899aa;
  --glass: rgba(10, 31, 61, 0.72);
  --glass-border: rgba(212, 175, 55, 0.18);
  --radius: 16px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

/* ── Background layers ── */
#chart-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.gold-veins {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 255, 65, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, #000a14 100%);
}

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

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
}

.particle.gold {
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold-glow);
}

.particle.green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ── Typography effects ── */
.gold-shimmer {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-bright), var(--gold), var(--gold-bright));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease infinite;
}

.green-glow {
  color: var(--green);
  text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(0, 255, 65, 0.2);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  white-space: nowrap;
}

.btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.btn .icon-brand {
  filter: none;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }

.btn-green {
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  color: var(--navy);
  box-shadow: 0 0 25px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: pulse-green 3s ease infinite;
}

.btn-green:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px var(--green-glow), 0 8px 30px rgba(0,0,0,0.4);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 25px var(--green-glow); }
  50% { box-shadow: 0 0 45px var(--green-glow), 0 0 80px rgba(0,255,65,0.15); }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-bright));
  color: var(--navy);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--gold-glow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 20px rgba(212,175,55,0.08);
}

.btn-outline-gold:hover {
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--gold-glow);
}

.btn-outline-gold img {
  filter: brightness(0) invert(0.85) sepia(1) saturate(5) hue-rotate(5deg);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 20, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(0, 14, 28, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 12px 0;
  gap: 20px;
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  animation: logo-pulse 3s ease infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--gold);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

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

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

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

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

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: border-color 0.2s, transform 0.2s;
}

.nav-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.nav-icon:hover {
  border-color: var(--gold);
  transform: scale(1.08);
}

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: rgba(0,14,28,0.98);
  border-top: 1px solid var(--glass-border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 4vw 80px;
  overflow: hidden;
}

.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.5) contrast(1.1) brightness(0.85);
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 20, 40, 0.88) 0%, rgba(0, 20, 40, 0.55) 45%, rgba(0, 10, 20, 0.82) 100%),
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0, 255, 65, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,255,65,0.08) 0%, rgba(212,175,55,0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: hero-breathe 6s ease infinite;
  z-index: 1;
}

@keyframes hero-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

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

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  letter-spacing: 6px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--green-glow);
}

.hero-bio {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-social {
  display: flex;
  gap: 12px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-chip img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(0.7);
}

.social-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.hero-frame {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-spin linear infinite;
}

.ring-1 {
  inset: -20px;
  border-color: rgba(212,175,55,0.3);
  animation-duration: 20s;
}

.ring-2 {
  inset: -40px;
  border-color: rgba(0,255,65,0.15);
  animation-duration: 30s;
  animation-direction: reverse;
}

.ring-3 {
  inset: -60px;
  border-color: rgba(212,175,55,0.1);
  animation-duration: 45s;
  border-style: dashed;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo {
  position: absolute;
  width: 85%;
  height: 85%;
  object-fit: contain;
  border-radius: 50%;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.3));
  animation: bull-charge 4s ease-in-out infinite;
}

.hero-video {
  position: absolute;
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(212,175,55,0.3), 0 0 100px rgba(0,255,65,0.1);
}

.hero-video.playing {
  opacity: 1;
}

@keyframes bull-charge {
  0%, 100% { transform: scale(1) translateX(0); }
  50% { transform: scale(1.03) translateX(6px); }
}

.floating-stats {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  animation: float-pill 3s ease infinite;
}

.stat-pill.bullish {
  border-color: rgba(0,255,65,0.3);
  animation-delay: 1.5s;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.stat-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.stat-value img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

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

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fade-bounce 2s ease infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

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

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── About ── */
.about {
  background: linear-gradient(180deg, transparent, rgba(0,255,65,0.02), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.about-card {
  padding: 36px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

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

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.08);
}

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

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

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.about-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-story::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,65,0.06), transparent 70%);
  pointer-events: none;
}

.story-lead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
}

.candle-wall {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 180px;
  padding: 20px;
}

.candle {
  width: 18px;
  background: var(--green);
  border-radius: 2px;
  position: relative;
  animation: candle-grow 2s ease infinite alternate;
  box-shadow: 0 0 12px var(--green-glow);
}

.candle::before,
.candle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--green);
}

.candle::before { top: -12px; height: 12px; }
.candle::after { bottom: -8px; height: 8px; }

.c1 { height: 40%; animation-delay: 0s; }
.c2 { height: 65%; animation-delay: 0.2s; }
.c3 { height: 50%; animation-delay: 0.4s; }
.c4 { height: 85%; animation-delay: 0.1s; }
.c5 { height: 70%; animation-delay: 0.3s; }
.c6 { height: 95%; animation-delay: 0.5s; }
.c7 { height: 60%; animation-delay: 0.15s; }

@keyframes candle-grow {
  0% { transform: scaleY(0.85); opacity: 0.7; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* ── How to Buy ── */
.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03), transparent);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 50px;
}

.step {
  padding: 32px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  border-color: rgba(0,255,65,0.25);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(212,175,55,0.3);
  margin-bottom: 12px;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.step-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.step-icon.brand img,
.step-icon .icon-brand {
  filter: none;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--green));
  margin-top: 80px;
  opacity: 0.4;
  position: relative;
}

.step-connector::after {
  content: "→";
  position: absolute;
  right: -8px;
  top: -10px;
  color: var(--green);
  font-size: 14px;
}

.howtobuy-cta {
  text-align: center;
}

/* ── Chart ── */
.chart-section {
  background: linear-gradient(180deg, transparent, rgba(0,255,65,0.02), transparent);
}

.chart-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.chart-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  background: #0d1117;
  box-shadow: 0 0 60px rgba(0,255,65,0.08), 0 20px 60px rgba(0,0,0,0.5);
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-dim), var(--green-dim), var(--gold-dim));
  -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;
  pointer-events: none;
  z-index: 1;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
}

/* ── Join Us ── */
.joinus-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.banner-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.1);
}

.join-banner {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

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

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: banner-shine 4s ease infinite;
  pointer-events: none;
}

@keyframes banner-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.join-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.join-card:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.join-card.highlight {
  border-color: rgba(0,255,65,0.3);
  background: rgba(0,255,65,0.05);
}

.join-card.highlight:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px var(--green-glow);
}

.join-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.join-icon.icon-brand {
  filter: none;
}

.join-card strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

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

.join-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.2s;
}

.join-card:hover .join-arrow {
  transform: translateX(4px);
}

.contract-box {
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius);
  margin-top: 8px;
}

.contract-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contract-row code {
  flex: 1;
  font-size: 0.75rem;
  word-break: break-all;
  color: var(--green);
  font-family: "Courier New", monospace;
}

.copy-btn {
  padding: 8px 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--gold-bright);
  transform: scale(1.05);
}

.copy-btn.copied {
  background: var(--green);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,10,20,0.8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--gold);
}

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

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: border-color 0.2s, transform 0.2s;
}

.footer-links a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-links a .icon-brand {
  filter: none;
}

.footer-links a:hover {
  border-color: var(--gold);
  transform: scale(1.1);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

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

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

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

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

  .about-story {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

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

  .step-connector {
    display: none;
  }

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

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-heading {
    letter-spacing: 2px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg,
  .btn-xl {
    width: 100%;
    justify-content: center;
  }

  .floating-stats {
    flex-direction: column;
    width: 100%;
  }

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

  .section {
    padding: 70px 0;
  }
}
