/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Utility */
.t-green { color: #4ade80; }
.glow-green {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74,222,128,0.8), 0 0 30px rgba(74,222,128,0.5), 0 0 60px rgba(74,222,128,0.3), 0 0 100px rgba(74,222,128,0.15);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(74,222,128,0.8), 0 0 30px rgba(74,222,128,0.5), 0 0 60px rgba(74,222,128,0.3), 0 0 100px rgba(74,222,128,0.15); }
  50% { text-shadow: 0 0 15px rgba(74,222,128,1), 0 0 40px rgba(74,222,128,0.7), 0 0 80px rgba(74,222,128,0.4), 0 0 120px rgba(74,222,128,0.2); }
}
.t-red { color: #f87171; }
.t-dim { color: rgba(255,255,255,0.3); }
.pnl-warn { color: #fbbf24; }
.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(74,222,128,0.4);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 48px;
  color: #fff;
}

/* === ENTRY === */
.entry-overlay {
  position: fixed; inset: 0;
  z-index: 100000;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.entry-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  width: 90%; max-width: 600px;
}

/* Chat Box (replaces terminal) */
.chat-box {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.chat-header {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.chat-body {
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
}
.terminal-line {
  opacity: 0;
  transform: translateY(4px);
}
.terminal-line.typed {
  animation: typeIn 0.3s ease forwards;
  animation-delay: calc(var(--delay) * 0.6s + 0.3s);
}
@keyframes typeIn {
  to { opacity: 1; transform: translateY(0); }
}
.blink { animation: blinkAnim 1s step-end infinite 4.2s; }
@keyframes blinkAnim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.entry-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-btn:hover {
  background: rgba(74,222,128,0.2);
  border-color: #4ade80;
  transform: scale(1.05);
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.navbar.visible { transform: translateY(0); }
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: #4ade80; }
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 50px;
  color: #4ade80;
  transition: all 0.3s;
}
.nav-cta:hover { background: rgba(74,222,128,0.1); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 140px 60px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px;
  opacity: 0;
}
.hero-left { flex: 1; max-width: 600px; }
.hero-badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(74,222,128,0.5);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -3px;
  color: #fff;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  margin-top: 24px;
  line-height: 1.8;
  max-width: 480px;
}
.hero-buttons {
  display: flex; gap: 14px;
  margin-top: 32px; flex-wrap: wrap;
}
.hero-ca {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.ca-address {
  color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.06);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 6px;
  font-weight: 600;
}
.hero-right { flex-shrink: 0; }
.hero-img-frame {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}
.hero-wojak {
  width: 260px; height: 260px;
  object-fit: cover;
}
.hero-img-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

/* === BUTTONS === */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50px;
}
.btn-primary {
  background: #4ade80;
  color: #0a0a0a;
  font-weight: 700;
}
.btn-primary:hover { background: #86efac; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74,222,128,0.2); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-outline:hover { border-color: rgba(74,222,128,0.4); color: #4ade80; }
.btn-big { font-size: 15px; padding: 18px 48px; }

/* === TICKER === */
.ticker {
  width: 100%; overflow: hidden;
  border-top: 1px solid rgba(74,222,128,0.06);
  border-bottom: 1px solid rgba(74,222,128,0.06);
  padding: 14px 0;
  background: rgba(74,222,128,0.02);
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 20s linear infinite;
}
.ticker-track span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(74,222,128,0.15);
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTIONS === */
.section { padding: 120px 60px; }

/* === THE DEGEN === */
.section-genius { background: #0d0d0d; }
.genius-inner { max-width: 800px; margin: 0 auto; }
.genius-timeline {
  display: flex; flex-direction: column;
  gap: 0;
}
.genius-step {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 20px;
  border-left: 2px solid rgba(74,222,128,0.15);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}
.genius-step.liquidated {
  border-left-color: #f87171;
  background: rgba(248,113,113,0.03);
}
.genius-step::before {
  content: '';
  position: absolute; left: -5px; top: 32px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
}
.genius-step.liquidated::before { background: #f87171; }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(74,222,128,0.15);
  flex-shrink: 0;
  width: 50px;
}
.step-content { flex: 1; }
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.step-face {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.06);
  opacity: 0.7;
}

/* === PREDICTIONS === */
.section-predictions { background: #0a0a0a; }
.predictions-inner { max-width: 900px; margin: 0 auto; }
.pred-list {
  display: flex; flex-direction: column;
  gap: 16px;
}
.pred-item {
  display: flex; align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.pred-ai, .pred-reality {
  flex: 1;
  padding: 24px 20px;
}
.pred-ai {
  background: rgba(74,222,128,0.03);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.pred-reality {
  background: rgba(248,113,113,0.03);
}
.pred-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}
.pred-ai p, .pred-reality p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.pred-face {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.06);
  opacity: 0.8;
  align-self: center;
  margin: 0 12px;
}
.pred-face-right {
  border-color: rgba(248,113,113,0.15);
}
.pred-arrow {
  display: flex; align-items: center;
  padding: 0 12px;
  font-size: 18px;
  color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

/* === COPIUM === */
.section-copium { background: #0d0d0d; }
.copium-inner { max-width: 800px; margin: 0 auto; }
.copium-quotes {
  display: flex; flex-direction: column;
  gap: 0;
}
.copium-block {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateX(-20px);
}
.copium-face {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(74,222,128,0.1);
  opacity: 0.8;
}
.copium-block-text { flex: 1; }
.copium-text {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.5px;
}
.copium-translation {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(74,222,128,0.3);
  margin-top: 8px;
  display: block;
}
.copium-img-gallery {
  margin-top: 48px;
  display: flex; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.copium-img-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.copium-img {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74,222,128,0.15);
  filter: grayscale(0.2);
  transition: filter 0.3s;
}
.copium-img:hover { filter: grayscale(0); }
.copium-caption {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(74,222,128,0.2);
  text-align: center;
  max-width: 160px;
}

/* === TOKEN === */
.section-token {
  background: #0a0a0a;
  text-align: center;
}
.token-inner { max-width: 900px; margin: 0 auto; }
.token-stats {
  display: flex; align-items: center; justify-content: center;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 20px;
}
.token-stat { flex: 1; padding: 0 20px; }
.token-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
}
.token-desc {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
  text-transform: uppercase;
}
.token-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* === CTA === */
.section-cta {
  background: #0a0a0a;
  padding: 140px 60px;
  text-align: center;
  position: relative;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,222,128,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px; margin: 0 auto;
  position: relative; z-index: 2;
}
.cta-chat {
  font-size: 14px;
  text-align: left;
  padding: 20px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.cta-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}
.cta-wojak-row {
  display: flex; justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.cta-wojak {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74,222,128,0.12);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.cta-wojak:hover { opacity: 1; transform: scale(1.1); }
.cta-wojak-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.cta-wojak-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(74,222,128,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 40px;
}

/* === ASK YOUR BOY === */
.section-ask { background: #0a0a0a; }
.ask-inner { max-width: 700px; margin: 0 auto; }
.ask-body { padding: 16px; }
.ask-output {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  min-height: 80px;
  max-height: 240px;
  overflow-y: auto;
}
.ask-output p { margin-bottom: 4px; }
.ask-form {
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px; margin-top: 12px;
}
.ask-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #e0e0e0;
  caret-color: #4ade80;
}
.ask-input::placeholder { color: rgba(255,255,255,0.15); }
.ask-send {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  background: #4ade80;
  color: #0a0a0a;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}
.ask-send:hover { background: #86efac; transform: scale(1.05); }
.ask-wojak-row {
  display: flex; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.ask-wojak {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74,222,128,0.1);
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s;
}
.ask-wojak:hover { opacity: 1; transform: scale(1.1); }
.ask-wojak.shake {
  animation: wojakShake 0.5s ease;
}
@keyframes wojakShake {
  0%,100% { transform: rotate(0); }
  20% { transform: rotate(-12deg) scale(1.15); }
  40% { transform: rotate(10deg) scale(1.15); }
  60% { transform: rotate(-8deg) scale(1.1); }
  80% { transform: rotate(5deg) scale(1.05); }
}

/* === GROUP CHAT === */
.section-live { background: #0d0d0d; }
.live-inner { max-width: 700px; margin: 0 auto; }
.live-body {
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  height: 260px;
  overflow-y: auto;
}
.live-body p { margin-bottom: 2px; }
.live-pnl {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  border-top: 1px solid rgba(248,113,113,0.1);
  background: rgba(248,113,113,0.03);
}

/* === RUGGED POPUP === */
.liq-popup {
  position: fixed;
  top: 80px; right: -500px;
  z-index: 99999;
  background: rgba(248,113,113,0.95);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px 0 0 12px;
  display: flex; align-items: center; gap: 10px;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 30px rgba(248,113,113,0.3);
}
.liq-popup.show { right: 0; }
.liq-icon { font-size: 18px; }

/* Clickable Wojak bounce */
.step-face, .pred-face, .copium-face, .copium-img, .cta-wojak, .hero-wojak {
  cursor: pointer;
}
.wojak-clicked {
  animation: wojakBounce 0.4s ease;
}
@keyframes wojakBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-5deg); }
  60% { transform: scale(0.9) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Buy button hover glow */
.btn-primary.sound-hover {
  box-shadow: 0 0 20px rgba(74,222,128,0.4), 0 0 60px rgba(74,222,128,0.15);
}

/* === FOOTER === */
.footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #080808;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: #4ade80; }
.footer-disc {
  width: 100%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.08);
  margin-top: 16px;
}

/* === FALLING TEXT === */
.falling-text-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.falling-word {
  position: absolute;
  top: -60px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(74,222,128,0.06);
  white-space: nowrap;
  animation: fallAndSpin linear forwards;
}
@keyframes fallAndSpin {
  0% { transform: translateY(0) rotateY(0deg); opacity: 0; }
  5% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(calc(100vh + 80px)) rotateY(var(--spin)); opacity: 0; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-content {
    padding: 120px 24px 60px;
    flex-direction: column; text-align: center;
  }
  .hero-left { max-width: 100%; }
  .hero-sub { margin: 24px auto 0; }
  .hero-buttons { justify-content: center; }
  .hero-wojak { width: 200px; height: 200px; }
  .section { padding: 80px 24px; }
  .pred-item { flex-direction: column; }
  .pred-arrow {
    padding: 8px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .pred-ai { border-right: none; }
  .token-stats { flex-direction: column; gap: 24px; padding: 32px 20px; }
  .token-divider { width: 60px; height: 1px; }
  .genius-step { flex-wrap: wrap; }
  .step-face { width: 44px; height: 44px; }
  .pred-face { width: 48px; height: 48px; margin: 12px; }
  .pred-face:first-child { display: none; }
  .copium-face { width: 44px; height: 44px; }
  .copium-img { width: 110px; height: 110px; }
  .cta-wojak { width: 56px; height: 56px; }
  .ask-wojak { width: 60px; height: 60px; }
  .live-body { height: 200px; font-size: 12px; }
  .chat-body { font-size: 13px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section-cta { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 80%; }
  .entry-content { width: 95%; }
}
