/* Anti-White Racism — justice / protest theme */
:root {
  --bg-deep: #030810;
  --bg: #061018;
  --bg-card: rgba(8, 22, 38, 0.85);
  --blue: #3eb8f0;
  --blue-bright: #5ecfff;
  --blue-dim: #1a6a9a;
  --white: #f4f8fc;
  --muted: #8aa4bc;
  --border: rgba(62, 184, 240, 0.25);
  --glow: rgba(62, 184, 240, 0.45);
  --justice-gold: #c9a227;
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Rajdhani", "Oswald", system-ui, sans-serif;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 120, 180, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(20, 80, 140, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(15, 60, 100, 0.25), transparent 45%),
    linear-gradient(180deg, #02060c 0%, var(--bg-deep) 40%, #040c14 100%);
  pointer-events: none;
}

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

a {
  color: var(--blue-bright);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--white);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Overlays */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noise-shift 0.5s steps(2) infinite;
}

@keyframes noise-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -1%); }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  animation: scanline-drift 8s linear infinite;
}

@keyframes scanline-drift {
  from { background-position: 0 0; }
  to { background-position: 0 100px; }
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(3, 8, 16, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(3, 8, 16, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1120px, 92vw);
  margin-inline: auto;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
}

.nav-brand img {
  border-radius: 8px;
  box-shadow: 0 0 20px var(--glow);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.brand-line {
  font-size: 0.95rem;
  color: var(--white);
}

.brand-line.accent {
  color: var(--blue);
  font-size: 1.05rem;
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s var(--ease-out);
}

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

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

.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(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue-dim), var(--blue));
  color: var(--bg-deep);
  box-shadow: 0 0 24px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--glow); }
  50% { box-shadow: 0 0 36px var(--glow), 0 0 60px rgba(62, 184, 240, 0.2); }
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  color: var(--bg-deep);
}

.btn-outline {
  background: transparent;
  color: var(--blue-bright);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: rgba(62, 184, 240, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  margin-bottom: 4rem;
  opacity: 0.5;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--justice-gold);
  margin-bottom: 0.5rem;
  animation: kicker-flicker 4s ease-in-out infinite;
}

@keyframes kicker-flicker {
  0%, 90%, 100% { opacity: 1; }
  92% { opacity: 0.6; }
  94% { opacity: 1; }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

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

.section-sub {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
  text-align: center;
  overflow: hidden;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 184, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 184, 240, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  from { transform: perspective(400px) rotateX(8deg) translateY(0); }
  to { transform: perspective(400px) rotateX(8deg) translateY(48px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(62, 184, 240, 0.25);
  top: 10%;
  left: 20%;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(30, 100, 160, 0.2);
  bottom: 20%;
  right: 15%;
  animation-delay: -6s;
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  background: rgba(8, 20, 35, 0.6);
}

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

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

.hero-logo-wrap {
  position: relative;
  width: min(280px, 70vw);
  margin: 0 auto 1.5rem;
}

.logo-ring {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--border);
  border-radius: 12px;
  animation: ring-spin 12s linear infinite;
}

.logo-ring::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--blue);
  transform: translateX(-50%);
}

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

.hero-logo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--glow);
}

.float {
  animation: float 5s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.title-white {
  display: block;
  color: var(--white);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}

.title-blue {
  display: block;
  color: var(--blue);
  text-shadow: 0 0 50px var(--glow);
}

.glitch {
  position: relative;
}

.glitch:hover {
  animation: glitch 0.4s steps(2) 2;
}

@keyframes glitch {
  0% { transform: translate(0); text-shadow: 2px 0 var(--blue), -2px 0 red; }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(2px, -1px); text-shadow: -2px 0 var(--blue), 2px 0 cyan; }
  75% { transform: translate(-1px, -1px); }
  100% { transform: translate(0); text-shadow: 0 0 50px var(--glow); }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--justice-gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  animation: symbol-shine 3s ease-in-out infinite;
}

@keyframes symbol-shine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.hero-bio {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1rem;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-tagline strong {
  color: var(--blue-bright);
}

.tagline-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

.tagline-line:last-child {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-contract {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.contract-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contract-value {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--blue-bright);
  word-break: break-all;
  max-width: 280px;
}

.btn-copy {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(62, 184, 240, 0.15);
  border: 1px solid var(--blue);
  color: var(--blue-bright);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-copy:hover {
  background: rgba(62, 184, 240, 0.3);
  transform: scale(1.05);
}

.btn-copy.copied {
  background: rgba(80, 200, 120, 0.25);
  border-color: #50c878;
  color: #50c878;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fade-bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--blue), transparent);
}

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

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(6, 16, 28, 0.8) 20%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(62, 184, 240, 0.1);
}

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

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.justice-quote {
  text-align: center;
  padding: 2rem;
  border-left: 4px solid var(--justice-gold);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
  border-radius: 0 8px 8px 0;
}

.justice-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.justice-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Elon voices — stack / masonry grid */
.elon-voices {
  background: linear-gradient(180deg, rgba(4, 12, 22, 0.5), rgba(6, 16, 28, 0.9) 30%, rgba(4, 12, 22, 0.5));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.elon-stack-grid {
  column-count: 3;
  column-gap: 1.25rem;
  margin-top: 2rem;
}

.elon-tweet-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1.25rem;
  padding: 0.85rem 0.85rem 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}

.elon-tweet-card:hover {
  border-color: rgba(62, 184, 240, 0.55);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 24px rgba(62, 184, 240, 0.08);
}

.elon-tweet-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 0.25rem 0.65rem;
  border-bottom: 1px solid rgba(62, 184, 240, 0.12);
  margin-bottom: 0.5rem;
}

.elon-tweet-meta time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--justice-gold);
}

.elon-tweet-meta a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.elon-tweet-meta a:hover {
  color: var(--blue-bright);
}

.elon-tweet-card .twitter-tweet {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.elon-tweet-card iframe {
  border-radius: 8px !important;
  max-width: 100% !important;
}

@media (max-width: 1100px) {
  .elon-stack-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .elon-stack-grid {
    column-count: 1;
  }
}

/* How to buy */
.howtobuy {
  background: rgba(4, 12, 22, 0.6);
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.steps li:hover {
  transform: translateX(8px);
  border-color: rgba(62, 184, 240, 0.5);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  opacity: 0.8;
  line-height: 1;
}

.steps h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.steps p {
  color: var(--muted);
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.buy-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(12, 30, 50, 0.9), rgba(6, 16, 28, 0.95));
  border: 1px solid var(--border);
  border-radius: 8px;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.buy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(62, 184, 240, 0.08), transparent);
  transition: left 0.5s;
}

.buy-card:hover::before {
  left: 100%;
}

.buy-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(62, 184, 240, 0.15);
  color: inherit;
}

.buy-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--justice-gold);
}

.buy-card strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.buy-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Chart */
.chart-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #0d1117;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(62, 184, 240, 0.1);
  min-height: 480px;
}

.chart-wrap iframe {
  width: 100%;
  height: min(70vh, 560px);
  border: none;
  display: block;
}

.chart-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: rgba(6, 14, 24, 0.95);
}

.chart-fallback code {
  color: var(--blue);
}

/* Join us */
.joinus {
  padding-top: 0;
  padding-bottom: 5rem;
  overflow: hidden;
}

.joinus-banner-wrap {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.joinus-banner {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  animation: banner-reveal 1.2s var(--ease-out) forwards;
  transform: scale(1.05);
  opacity: 0;
}

@keyframes banner-reveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.joinus-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(3, 8, 16, 0.4) 50%,
    var(--bg-deep) 100%
  );
  pointer-events: none;
}

.joinus-banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(62, 184, 240, 0.15);
  pointer-events: none;
  animation: banner-glow 4s ease-in-out infinite alternate;
}

@keyframes banner-glow {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: inherit;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.social-card:hover {
  transform: scale(1.04);
  border-color: var(--blue);
  box-shadow: 0 0 40px var(--glow);
  color: inherit;
}

.social-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.social-handle {
  font-size: 0.9rem;
  color: var(--blue-bright);
}

.joinus-footer {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.joinus-footer strong {
  color: var(--blue);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(3, 8, 16, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.footer-inner img {
  border-radius: 6px;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

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

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

/* Mobile */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav.open .nav-cta {
    display: inline-flex;
    position: fixed;
    top: calc(var(--nav-h) + 220px);
    left: 1.5rem;
    right: 1.5rem;
    justify-content: center;
  }

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

  .hero-cta .btn {
    width: 100%;
  }
}

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

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