/* ===== Elves for Retirement — TikTok Styled Theme ===== */

:root {
  --bg-deep: #050508;
  --bg-card: #0f0f14;
  --bg-elevated: #16161f;
  --green: #00c805;
  --green-bright: #25f04a;
  --green-dark: #0a8a2a;
  --red: #fe2c55;
  --red-soft: #ff4d6d;
  --elf-green: #1a7a3a;
  --elf-red: #c41e3a;
  --gold: #ffd166;
  --text: #f5f5f7;
  --text-muted: #8b8b9e;
  --border: rgba(255, 255, 255, 0.08);
  --glow-green: rgba(0, 200, 5, 0.35);
  --glow-red: rgba(254, 44, 85, 0.3);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --header-h: 72px;
  --marquee-h: 36px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--marquee-h));
}

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

/* Background layers */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  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");
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  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
  );
}

/* Animated mesh background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(26, 122, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(196, 30, 58, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 200, 5, 0.06) 0%, transparent 60%);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, 2%); }
}

/* Marquee */
.marquee-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--marquee-h);
  background: linear-gradient(90deg, var(--elf-green), var(--green), var(--elf-red));
  z-index: 200;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: fixed;
  top: var(--marquee-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(5, 5, 8, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 var(--glow-green); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  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;
}

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

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

.header-cta {
  padding: 0.5rem 1.25rem;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px var(--glow-green);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Side rail (TikTok-style dots) */
.side-rail {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
  position: relative;
}

.rail-dot::before {
  content: attr(data-label);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
  pointer-events: none;
}

.rail-dot:hover::before {
  opacity: 1;
}

.rail-dot.active,
.rail-dot:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 12px var(--glow-green);
  transform: scale(1.3);
}

/* TikTok action bar */
.tiktok-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
}

.action-btn:hover {
  transform: scale(1.1);
}

.action-btn img,
.action-btn svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.action-btn span {
  font-size: 0.65rem;
  font-weight: 600;
}

.like-btn svg {
  color: var(--red);
  fill: var(--red);
}

.like-btn.liked svg {
  animation: heartPop 0.4s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Sections */
.section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: calc(var(--header-h) + var(--marquee-h) + 4rem) 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, var(--green-bright), var(--gold), var(--red-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-bottom: 4rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow--green {
  width: 400px;
  height: 400px;
  background: var(--glow-green);
  top: 10%;
  left: 10%;
}

.hero-glow--red {
  width: 300px;
  height: 300px;
  background: var(--glow-red);
  bottom: 20%;
  right: 10%;
  animation-delay: -3s;
}

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

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

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.03);
}

.hero-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

.logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--green);
  border-right-color: var(--elf-red);
  animation: spin 4s linear infinite;
}

.logo-ring--2 {
  inset: -24px;
  animation-direction: reverse;
  animation-duration: 6s;
  border-top-color: var(--red);
  border-right-color: var(--gold);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.1);
  animation: float 4s 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(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-title-accent {
  display: block;
  color: var(--green-bright);
}

/* Glitch effect */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--red);
  animation: glitch1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--green);
  animation: glitch2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
}

@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, 2px); }
  93% { transform: translate(-2px, -1px); }
}

.hero-symbol {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-symbol strong {
  color: var(--gold);
  font-family: var(--font-display);
}

.hero-tagline {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

img[src*="dexscreener"] {
  filter: drop-shadow(0 0 6px rgba(91, 255, 222, 0.45));
}

.btn-primary img[src*="dexscreener"] {
  filter: brightness(0) drop-shadow(none);
}

.action-btn img[src*="dexscreener"] {
  background: rgba(91, 255, 222, 0.12);
  border: 1px solid rgba(91, 255, 222, 0.35);
}

.platform-link img[src*="dexscreener"],
.social-card img[src*="dexscreener"] {
  filter: drop-shadow(0 0 8px rgba(91, 255, 222, 0.5));
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #000;
  box-shadow: 0 4px 24px var(--glow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-green);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red-soft);
  box-shadow: 0 0 20px var(--glow-red);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-bright);
}

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

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

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

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

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

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

.about-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 5, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.about-card-icon--green svg { color: var(--green); }
.about-card-icon--red img { width: 32px; height: 32px; padding: 8px; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.about-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(26,122,58,0.08), rgba(196,30,58,0.06));
  border: 1px solid var(--border);
  border-radius: 24px;
}

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

.about-mascot {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--green);
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.about-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 200, 5, 0.3);
  animation: spin 8s linear infinite;
}

.about-orbit--1 {
  width: 280px;
  height: 280px;
}

.about-orbit--2 {
  width: 340px;
  height: 340px;
  animation-duration: 12s;
  animation-direction: reverse;
  border-color: rgba(254, 44, 85, 0.2);
}

.about-feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-feature-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* How to Buy */
.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(15,15,20,0.5), transparent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), var(--elf-red));
  transform: scaleY(0);
  transition: transform 0.3s;
}

.step:hover::before {
  transform: scaleY(1);
}

.step:hover {
  border-color: rgba(0, 200, 5, 0.2);
  transform: translateX(8px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 200, 5, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.contract-box code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--green-bright);
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.copy-btn svg {
  width: 18px;
  height: 18px;
}

.copy-btn:hover {
  color: var(--green);
}

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

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

.platform-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s;
}

.platform-link img {
  width: 32px;
  height: 32px;
}

.platform-link:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Chart */
.chart-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.chart-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.chart-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.chart-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-bright);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--glow-green); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.chart-pair {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
}

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

/* Join Us */
.joinus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.joinus-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.joinus-banner img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

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

.banner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,5,0.1), rgba(254,44,85,0.1));
  pointer-events: none;
}

.joinus-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}

.social-card img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.social-card div {
  flex: 1;
}

.social-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.social-handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.social-card .arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}

.social-card:hover {
  transform: translateX(8px);
  border-color: rgba(255,255,255,0.15);
}

.social-card:hover .arrow {
  transform: translate(4px, -4px);
  color: var(--green);
}

.social-card--x:hover { border-color: rgba(255,255,255,0.3); }
.social-card--tiktok:hover { border-color: rgba(254,44,85,0.4); }
.social-card--dex:hover { border-color: rgba(0,200,5,0.4); }

.joinus-mascot {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26,122,58,0.1), rgba(196,30,58,0.08));
  border-radius: 16px;
  border: 1px solid var(--border);
}

.joinus-mascot img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--green);
}

.joinus-mascot p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(5,5,8,0.9);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

/* Floating hearts */
.floating-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.heart-particle {
  position: absolute;
  color: var(--red);
  opacity: 0;
  animation: heartFloat 4s ease-out forwards;
  font-size: 1rem;
}

@keyframes heartFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  10% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-200px) scale(1.2); }
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .about-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .side-rail {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .tiktok-actions {
    right: 0.75rem;
    bottom: 4rem;
    gap: 0.75rem;
  }

  .action-btn img,
  .action-btn svg {
    width: 28px;
    height: 28px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-logo-wrap {
    width: 160px;
    height: 160px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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