/* Welcome the Memes — WTM
   Palette pulled from logo: neon lime, ink black, crisp white */

:root {
  --lime: #c8ff00;
  --lime-hot: #d8ff3a;
  --lime-deep: #9ecc00;
  --hood: #00c805;
  --ink: #070b06;
  --ink-2: #0d160b;
  --panel: rgba(12, 22, 10, 0.72);
  --panel-border: rgba(200, 255, 0, 0.22);
  --text: #f4ffe8;
  --muted: #a7b89a;
  --stroke: #050705;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Archivo Black", "Syne", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --font-accent: "Syne", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ===== Background stage ===== */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%, rgba(200, 255, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(0, 200, 5, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(200, 255, 0, 0.1), transparent 55%),
    linear-gradient(180deg, #050805 0%, #0b1409 42%, #071008 100%);
}

.bg-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(58deg) translateY(-12%);
  transform-origin: center top;
  animation: gridDrift 28s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 0 72px; }
}

#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

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

.bg-orb-a {
  width: 420px;
  height: 420px;
  background: rgba(200, 255, 0, 0.28);
  top: 8%;
  left: -8%;
}

.bg-orb-b {
  width: 360px;
  height: 360px;
  background: rgba(0, 200, 5, 0.22);
  top: 42%;
  right: -6%;
  animation-delay: -4s;
}

.bg-orb-c {
  width: 280px;
  height: 280px;
  background: rgba(216, 255, 58, 0.18);
  bottom: 8%;
  left: 35%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -30px, 0) scale(1.08); }
}

.bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 4px
  );
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

/* ===== Ticker ===== */
.ticker-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 28px;
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 2px solid var(--stroke);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 28px;
  padding-left: 1rem;
}

.ticker-track span {
  position: relative;
}

.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2.5rem;
  border-radius: 50%;
  background: var(--ink);
  vertical-align: middle;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Nav ===== */
.navbar {
  position: sticky;
  top: 28px;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 6, 0.55);
  border-bottom: 1px solid rgba(200, 255, 0, 0.12);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.navbar.scrolled {
  background: rgba(7, 11, 6, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.15), 0 8px 24px rgba(200, 255, 0, 0.2);
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.15), 0 8px 24px rgba(200, 255, 0, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(200, 255, 0, 0.08), 0 10px 32px rgba(200, 255, 0, 0.35); }
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-name {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-ticker {
  font-family: var(--font-display);
  color: var(--lime);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

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

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

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink) !important;
  font-weight: 700 !important;
  box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4);
  animation: ctaGlow 2.8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(200, 255, 0, 0); }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

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

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-lime {
  background: linear-gradient(135deg, var(--lime-hot), var(--lime) 45%, var(--hood));
  color: var(--ink);
  border: 2px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(200, 255, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-lime:hover {
  box-shadow: 0 16px 40px rgba(200, 255, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  background: rgba(8, 14, 7, 0.65);
  border: 1.5px solid rgba(200, 255, 0, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--lime);
  background: rgba(200, 255, 0, 0.08);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: var(--lime);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* ===== Sections ===== */
.section {
  padding: 6.5rem 1.25rem;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink);
  background: var(--lime);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 2px solid var(--stroke);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow:
    2px 2px 0 var(--stroke),
    -1px -1px 0 var(--stroke),
    1px -1px 0 var(--stroke),
    -1px 1px 0 var(--stroke),
    0 0 28px rgba(200, 255, 0, 0.15);
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ===== Hero ===== */
.hero {
  min-height: calc(100vh - var(--nav-h) - 28px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 3rem 1.25rem 5rem;
  overflow: hidden;
}

.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ring {
  position: absolute;
  left: 22%;
  top: 48%;
  translate: -50% -50%;
  border: 1px solid rgba(200, 255, 0, 0.18);
  border-radius: 50%;
  animation: ringPulse 6s ease-out infinite;
}

.ring-1 { width: 280px; height: 280px; }
.ring-2 { width: 420px; height: 420px; animation-delay: 1.2s; }
.ring-3 { width: 580px; height: 580px; animation-delay: 2.4s; }

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

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.45), transparent 68%);
  filter: blur(18px);
  animation: glowBreathe 4s ease-in-out infinite;
}

@keyframes glowBreathe {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  border-radius: 28px;
  border: 3px solid var(--lime);
  box-shadow:
    0 0 0 8px rgba(200, 255, 0, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(200, 255, 0, 0.25);
  animation: logoFloat 5.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}

.logo-shadow {
  width: 55%;
  height: 28px;
  margin-top: 1.4rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(4px);
  animation: shadowPulse 5.5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(0.82); opacity: 0.4; }
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 0, 0.35);
  background: rgba(200, 255, 0, 0.08);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}

.hero-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: liveBlink 1.4s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.title-line {
  display: block;
  text-shadow:
    3px 3px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    4px 6px 0 var(--stroke);
  -webkit-text-stroke: 1.5px var(--stroke);
  paint-order: stroke fill;
}

.title-line.accent {
  color: var(--lime);
  text-shadow:
    3px 3px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    5px 8px 0 rgba(0, 0, 0, 0.35);
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--lime);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 1.6rem;
}

.hero-lead em {
  color: var(--lime-hot);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(200, 255, 0, 0.18);
  max-width: 100%;
}

.contract-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contract-addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(52vw, 320px);
}

.copy-btn {
  margin-left: auto;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  transition: transform 0.2s var(--ease);
}

.copy-btn:hover {
  transform: scale(1.05);
}

.copy-btn.copied {
  background: var(--hood);
  color: white;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(200, 255, 0, 0.4);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: cueDrop 1.6s ease-in-out infinite;
}

@keyframes cueDrop {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.quote-panel {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(200, 255, 0, 0.12), rgba(8, 14, 7, 0.8)),
    var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: -0.4rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(200, 255, 0, 0.18);
  pointer-events: none;
}

.quote-panel blockquote {
  position: relative;
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.1rem;
}

.quote-panel strong {
  color: var(--lime);
}

.quote-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-tile {
  padding: 1.25rem;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.info-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 0, 0.45);
  box-shadow: 0 16px 40px rgba(200, 255, 0, 0.1);
}

.info-tile h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.4rem;
}

.info-tile p {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.05rem;
}

.about-band {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(200, 255, 0, 0.35);
  background: rgba(200, 255, 0, 0.04);
}

.about-logo-float {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  object-fit: cover;
  border: 2px solid var(--lime);
  animation: logoSpinSoft 10s linear infinite;
}

@keyframes logoSpinSoft {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.04); }
}

.about-band h3 {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

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

/* ===== How to buy ===== */
.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--lime), var(--hood));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}

.step:hover,
.step.in-view {
  transform: translateX(6px);
  border-color: rgba(200, 255, 0, 0.4);
}

.step:hover::before,
.step.in-view::before {
  transform: scaleY(1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--lime);
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
}

.step-body h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

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

/* ===== Chart ===== */
.chart-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 0, 0.28);
  background: #0b0f0a;
  box-shadow: var(--shadow), 0 0 50px rgba(200, 255, 0, 0.08);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.12), rgba(0, 0, 0, 0.4));
  border-bottom: 1px solid rgba(200, 255, 0, 0.15);
}

.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.55;
}

.chrome-dot:nth-child(2) { opacity: 0.75; }
.chrome-dot:nth-child(3) { opacity: 1; animation: liveBlink 1.8s ease-in-out infinite; }

.chrome-label {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.chart-frame iframe {
  width: 100%;
  height: min(70vh, 640px);
  border: 0;
  display: block;
  background: #0b0f0a;
}

.chart-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* ===== Join Us ===== */
.join-banner-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid var(--lime);
  box-shadow:
    0 0 0 10px rgba(200, 255, 0, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(200, 255, 0, 0.18);
  margin-bottom: 2rem;
}

.join-banner-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 40%, rgba(200, 255, 0, 0.35), transparent 55%);
  animation: glowBreathe 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.join-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(72vh, 720px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  background: #c8ff00;
  animation: bannerKen 18s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes bannerKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.join-banner-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200, 255, 0, 0.12) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: scanMove 4.5s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes scanMove {
  from { background-position: 0 -40%; }
  to { background-position: 0 140%; }
}

.join-copy {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.join-copy h3 {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
}

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

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.social-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}

.social-card span {
  font-weight: 700;
  font-family: var(--font-accent);
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  background: rgba(200, 255, 0, 0.08);
  box-shadow: 0 18px 40px rgba(200, 255, 0, 0.12);
}

.social-card:hover img {
  transform: scale(1.15) rotate(-6deg);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(200, 255, 0, 0.15);
  padding: 2rem 1.25rem 2.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--lime);
}

.footer-note {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.footer-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(200, 255, 0, 0.25);
  display: grid;
  place-items: center;
  transition: border-color 0.25s, transform 0.25s;
}

.footer-links a:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}

.footer-links img {
  width: 18px;
  height: 18px;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger helpers via nth */
.hero-copy .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-copy .reveal:nth-child(2) { transition-delay: 0.12s; }
.hero-copy .reveal:nth-child(3) { transition-delay: 0.2s; }
.hero-copy .reveal:nth-child(4) { transition-delay: 0.28s; }
.hero-copy .reveal:nth-child(5) { transition-delay: 0.36s; }
.hero-copy .reveal:nth-child(6) { transition-delay: 0.44s; }

.about-stack .reveal:nth-child(1) { transition-delay: 0.05s; }
.about-stack .reveal:nth-child(2) { transition-delay: 0.12s; }
.about-stack .reveal:nth-child(3) { transition-delay: 0.2s; }
.about-stack .reveal:nth-child(4) { transition-delay: 0.28s; }

.steps .reveal:nth-child(1) { transition-delay: 0.05s; }
.steps .reveal:nth-child(2) { transition-delay: 0.12s; }
.steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps .reveal:nth-child(4) { transition-delay: 0.28s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

  .copy-btn {
    margin-left: 0;
  }

  .ring {
    left: 50%;
    top: 28%;
  }

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

  .about-band {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

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

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + 28px);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(8, 14, 7, 0.96);
    border: 1px solid rgba(200, 255, 0, 0.2);
    box-shadow: var(--shadow);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

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

  .nav-links a {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(200, 255, 0, 0.08);
  }

  .nav-cta {
    justify-content: center;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .about-stack {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: min(100%, 320px);
  }

  .section {
    padding: 4.5rem 1rem;
  }

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

  .join-banner {
    max-height: none;
  }
}

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

  .reveal,
  .reveal-left {
    opacity: 1;
    transform: none;
  }
}
