/* ============================================
   $TRAMP — styles.css
   Theme: Dark cyberpunk purple / underdog rebellion
   ============================================ */

:root {
  --bg-deep: #060310;
  --bg-dark: #0d0820;
  --bg-mid: #130d2e;
  --purple-rich: #3b1278;
  --purple-vivid: #7c3aed;
  --purple-bright: #a855f7;
  --purple-neon: #c084fc;
  --gold: #e040fb;
  --gold-dim: #ab47bc;
  --white: #f5f0ff;
  --white-dim: #b8a8d8;
  --text-muted: #6b5a8a;
  --glow: rgba(124, 58, 237, 0.4);
  --glow-strong: rgba(168, 85, 247, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--purple-vivid);
  border-radius: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--purple-bright);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.section-title {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--white);
}
.section-sub {
  color: var(--white-dim);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}
.highlight {
  color: var(--purple-bright);
  text-shadow: 0 0 30px rgba(224, 64, 251, 0.4);
}

/* ============================================
   NAV
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(6, 3, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}
.nav-logo {
  font-family: "Bebas Neue", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: default;
}
.nav-logo .logo-dollar {
  color: var(--purple-bright);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links .nav-cta {
  background: var(--purple-vivid);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 20px var(--glow-strong);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.75rem;
  background: rgba(6, 3, 16, 0.97);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
}
.mobile-menu a {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.mobile-menu .nav-cta {
  background: var(--purple-vivid);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  text-align: center;
}
.mobile-menu.open {
  display: flex;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.42) saturate(1.3);
}
.hero-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(6, 3, 16, 0.94) 0%,
      rgba(6, 3, 16, 0.55) 50%,
      rgba(6, 3, 16, 0.1) 100%
    ),
    linear-gradient(to top, rgba(6, 3, 16, 0.95) 0%, transparent 35%);
}
#hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(76, 29, 149, 0.4) 0%,
    transparent 70%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 8rem;
  max-width: 640px;
  margin-left: 8vw;
}
.hero-eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-neon);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--purple-bright);
}
.hero-title {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(5rem, 15vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow:
    0 0 60px rgba(124, 58, 237, 0.6),
    0 0 120px rgba(124, 58, 237, 0.3);
  margin-bottom: 1.5rem;
}
.hero-title .dollar-sign {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(224, 64, 251, 0.5);
}
.hero-tagline {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.hero-tagline strong {
  color: var(--purple-bright);
  font-weight: 600;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  transition: all 0.25s;
  cursor: pointer;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--purple-neon);
  color: var(--bg-deep);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 30px rgba(224, 64, 251, 0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: var(--white-dim);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--purple-bright);
  color: var(--white);
  background: rgba(124, 58, 237, 0.1);
}
.hero-badge {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.badge-item {
  display: flex;
  flex-direction: column;
}
.badge-num {
  font-family: "Bebas Neue", cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--purple-bright);
}
.badge-num + span {
  font-family: "Bebas Neue", cursive;
  font-size: 2.2rem;
  color: var(--purple-bright);
}
.badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(124, 58, 237, 0.3);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
}
.scroll-indicator span {
  font-family: "Oswald", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-bright), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  position: relative;
  z-index: 5;
  background: var(--purple-rich);
  border-top: 1px solid rgba(168, 85, 247, 0.3);
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  overflow: hidden;
  padding: 0.6rem 0;
}
.ticker {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold);
}
.ticker .sep {
  color: var(--purple-neon);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}
.section-dark {
  background: var(--bg-mid);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p {
  color: var(--white-dim);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-text strong {
  color: var(--white);
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.info-card {
  background: rgba(59, 18, 120, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.info-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(59, 18, 120, 0.35);
  transform: translateY(-4px);
}
.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.info-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.info-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ============================================
   MASCOT SECTION
   ============================================ */
.mascot-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}
.mascot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mascot-img-wrap {
  position: relative;
}
.mascot-img-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: mascotGlow 4s ease-in-out infinite;
}
@keyframes mascotGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.mascot-img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(124, 58, 237, 0.3);
  box-shadow:
    0 0 60px rgba(124, 58, 237, 0.2),
    0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.mascot-img:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 80px rgba(124, 58, 237, 0.4),
    0 40px 80px rgba(0, 0, 0, 0.5);
}
.mascot-text {
  position: relative;
}
.mascot-quote {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}
.mascot-quote .q-gold {
  color: var(--gold);
}
.mascot-body {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.mascot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: var(--purple-neon);
  background: rgba(124, 58, 237, 0.1);
}

/* ============================================
   MISSION / CAUSE SECTION
   ============================================ */
.mission-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 3rem;
}
.mission-card {
  background: rgba(59, 18, 120, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-top: 3px solid var(--purple-vivid);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.mission-card:hover {
  border-color: var(--purple-bright);
  border-top-color: var(--purple-neon);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}
.mission-card-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.mission-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mission-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
  flex: 1;
}
.mission-card p strong {
  color: var(--gold);
}
.mission-statement {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(59, 18, 120, 0.3) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}
.mission-statement blockquote {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.02em;
  border: none;
  margin: 0;
}
.mission-statement blockquote strong {
  color: var(--gold);
  font-weight: 600;
}
.mission-statement cite {
  display: block;
  margin-top: 1.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
  font-style: normal;
}
.transparent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-neon);
}
.transparent-badge::before {
  content: "🔗";
  font-size: 1rem;
}

/* ============================================
   HOW TO BUY
   ============================================ */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.buy-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(59, 18, 120, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 8px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.buy-step:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
}
.buy-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-vivid);
  font-size: 1.2rem;
  z-index: 1;
}
.step-num {
  font-family: "Bebas Neue", cursive;
  font-size: 3rem;
  line-height: 1;
  color: rgba(124, 58, 237, 0.3);
  margin-bottom: 0.75rem;
}
.buy-step h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.buy-step p {
  font-size: 0.875rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--purple-bright);
  text-decoration: none;
  transition: color 0.2s;
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  background: rgba(124, 58, 237, 0.08);
}
.step-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(224, 64, 251, 0.05);
}
.buy-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.btn-buy-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 3rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 0 0 rgba(224, 64, 251, 0);
}
.btn-buy-large:hover {
  background: #ea80fc;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(224, 64, 251, 0.5);
}
.btn-buy-large svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.btn-buy-large:hover svg {
  transform: translateX(4px);
}

/* ============================================
   COMMUNITY
   ============================================ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(59, 18, 120, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.social-card:hover {
  border-color: var(--purple-bright);
  background: rgba(124, 58, 237, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}
.social-card--disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.social-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--purple-bright);
}
.social-icon svg {
  width: 2rem;
  height: 2rem;
  fill: var(--purple-bright);
}
.social-name {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
.social-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  position: relative;
  z-index: 2;
  background: var(--bg-deep);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: "Bebas Neue", cursive;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.footer-logo .logo-dollar {
  color: var(--gold);
}
.footer-logo p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-disclaimer {
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
}
.footer-tagline {
  color: var(--purple-bright) !important;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .buy-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .buy-step::after {
    display: none;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem 6rem;
    max-width: 100%;
  }
  .mascot-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mascot-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .mission-statement {
    grid-column: 1;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: clamp(4rem, 20vw, 7rem);
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
  .buy-steps {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badge {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .badge-divider {
    display: none;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    justify-content: center;
  }
  .mission-statement {
    padding: 2rem;
  }
}
