:root {
  --bg: #000000;
  --bg-elevated: #060606;
  --bg-card: #0c0c0c;
  --bg-card-hover: #141414;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(255, 180, 50, 0.3);
  --text: #ffffff;
  --text-muted: #7a7a7a;
  --peach: #f4a896;
  --accent-start: #ffe135;
  --accent-mid: #ffb020;
  --accent-end: #ff6b00;
  --gradient-accent: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-mid) 50%, var(--accent-end) 100%);
  --gradient-accent-soft: linear-gradient(135deg, rgba(255, 225, 53, 0.12) 0%, rgba(255, 107, 0, 0.06) 100%);
  --glow: rgba(255, 176, 32, 0.4);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1140px, 92vw); margin: 0 auto; }

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  background: rgba(255,255,255,0.04);
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  box-shadow: 0 0 12px var(--glow);
  transition: width 0.1s linear;
}

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,32,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ── Background layers ── */
.mesh-orbs {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-drift 20s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(255, 176, 32, 0.07);
  top: -10%; left: -10%;
  animation-duration: 22s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(244, 168, 150, 0.06);
  bottom: 10%; right: -5%;
  animation-duration: 18s;
  animation-delay: -5s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(255, 225, 53, 0.05);
  top: 50%; left: 40%;
  animation-duration: 25s;
  animation-delay: -10s;
}
@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.1); }
}

.aurora {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255,176,32,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(244,168,150,0.05) 0%, transparent 50%);
  animation: aurora-shift 12s ease-in-out infinite alternate;
}
@keyframes aurora-shift {
  0% { opacity: 0.8; }
  100% { opacity: 1; filter: hue-rotate(10deg); }
}

.grid-lines {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

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

#emoji-rain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.35;
}

/* ── Marquee ── */
.marquee-wrap {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 48px;
  padding: 8px 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.marquee-track span:nth-child(odd) { color: var(--accent-mid); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img {
  border-radius: 12px;
  filter: drop-shadow(0 0 12px rgba(255,176,32,0.3));
  transition: transform 0.4s var(--ease-spring);
}
.nav-brand:hover img { transform: rotate(-8deg) scale(1.08); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-name { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; }
.nav-ticker { font-size: 0.75rem; font-weight: 600; color: var(--accent-mid); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gradient-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 20px !important;
  background: var(--gradient-accent) !important;
  color: #000 !important; font-weight: 700 !important;
  border-radius: 999px;
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 0 80px; z-index: 2;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-banner {
  width: 100%; height: 110%;
  object-fit: cover; object-position: center;
  opacity: 0.3;
  animation: ken-burns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ken-burns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.88) 55%, #000 100%),
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(255,176,32,0.14) 0%, transparent 60%);
}
.hero-tears { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tear {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.5;
  animation: tear-fall linear infinite;
}
.tear-1 { left: 15%; animation-duration: 4s; animation-delay: 0s; }
.tear-2 { left: 35%; animation-duration: 5.5s; animation-delay: 1.2s; font-size: 0.9rem; }
.tear-3 { right: 20%; animation-duration: 4.8s; animation-delay: 0.6s; }
.tear-4 { right: 40%; animation-duration: 6s; animation-delay: 2s; font-size: 1rem; }
@keyframes tear-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(100vh) rotate(20deg); opacity: 0; }
}
.hero-content {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo-wrap { position: relative; margin-bottom: 24px; }
.hero-logo-orbit {
  position: absolute; inset: -30px;
  border: 1px dashed rgba(255,176,32,0.15);
  border-radius: 50%;
  animation: orbit-spin 12s linear infinite;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-logo {
  width: clamp(100px, 18vw, 140px);
  border-radius: 28px; position: relative; z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(255,176,32,0.35));
  animation: float 4s ease-in-out infinite, logo-wiggle 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes logo-wiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-3deg); }
  75% { transform: translateY(-6px) rotate(3deg); }
}
.hero-logo-ring {
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(255,176,32,0.25);
  animation: pulse-ring 3s ease-in-out infinite;
}
.hero-logo-ring-2 {
  inset: -28px;
  border-color: rgba(255,176,32,0.1);
  animation-delay: 1.5s;
  animation-duration: 4s;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0.15; }
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800; line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.title-line { display: block; text-shadow: 0 4px 0 rgba(0,0,0,0.8); }
.title-gradient {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer-text {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-ticker {
  display: inline-block;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700; color: var(--accent-mid);
  margin-bottom: 20px; letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 999px;
  background: rgba(255,176,32,0.08);
}
.shimmer-border {
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.hero-tagline {
  max-width: 520px; font-size: 1.1rem;
  color: var(--text-muted); margin-bottom: 28px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 32px;
}
.badge {
  padding: 8px 16px; font-size: 0.8rem; font-weight: 600;
  border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
}
.badge-accent { border-color: var(--border-accent); color: var(--accent-mid); background: rgba(255,176,32,0.08); }
.badge-emoji { border-color: rgba(244,168,150,0.3); color: var(--peach); background: rgba(244,168,150,0.08); }
.badge-float { animation: badge-float 3s ease-in-out infinite; animation-delay: var(--float-delay, 0s); }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 40px; }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding: 20px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-suffix { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--accent-mid); }
.hero-stat-text { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent-mid); }
.hero-stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  border-radius: 999px; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-accent); color: #000;
  box-shadow: 0 4px 20px rgba(255,176,32,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--glow); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--text);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-subscribe { background: #fff; color: #000; box-shadow: 0 4px 24px rgba(255,255,255,0.15); }
.btn-subscribe:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,255,255,0.2); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }

.btn-shine::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}
@keyframes btn-shine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.pulse-btn { animation: pulse-btn 2.5s ease-in-out infinite; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,176,32,0.3); }
  50% { box-shadow: 0 4px 40px rgba(255,176,32,0.6), 0 0 60px rgba(255,176,32,0.2); }
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: fade-bounce 2s ease-in-out infinite;
}
@keyframes fade-bounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--accent-mid), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Sections ── */
.section { position: relative; z-index: 2; padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-mid); margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em;
}

/* ── Bento ── */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-card {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
  transform-style: preserve-3d;
}
.bento-card:hover { border-color: var(--border-accent); }
.card-shine {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,176,32,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.bento-card:hover .card-shine { opacity: 1; }
.bento-main { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.bento-visual { position: relative; }
.bento-visual img { width: 140px; border-radius: 24px; position: relative; z-index: 1; transition: transform 0.5s var(--ease-spring); }
.bento-card:hover .bento-visual img { transform: scale(1.05) rotate(-3deg); }
.bento-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  filter: blur(20px);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.bento-copy h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }
.bento-copy p { color: var(--text-muted); }
.bento-stat { text-align: center; }
.stat-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.stat-bounce { animation: stat-bounce 2s ease-in-out infinite; animation-delay: var(--bounce-delay, 0s); }
@keyframes stat-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.bento-stat h3 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 6px; }
.stat-value {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-wide { grid-column: span 3; }
.trait-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trait-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.trait-item:hover { background: rgba(255,176,32,0.05); transform: translateX(6px); }
.trait-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-accent); margin-top: 8px; flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,176,32,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,176,32,0); }
}
.trait-item strong { display: block; margin-bottom: 4px; }
.trait-item span { font-size: 0.9rem; color: var(--text-muted); }

/* ── Emoji panel ── */
.emoji-panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; padding: 48px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}
.emoji-panel-glow {
  position: absolute; inset: 0;
  background: var(--gradient-accent-soft);
  pointer-events: none;
}
.emoji-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; margin-bottom: 16px;
}
.emoji-panel p { color: var(--text-muted); margin-bottom: 28px; max-width: 420px; }
.emoji-panel-content { position: relative; z-index: 1; }
.emoji-float-frame {
  border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden;
  animation: emoji-frame-float 5s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@keyframes emoji-frame-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* ── Token ── */
.token-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.token-card {
  position: relative; overflow: hidden;
  padding: 28px 20px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
  transform-style: preserve-3d;
}
.token-card:hover { border-color: var(--border-accent); }
.token-card-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 40px;
  background: radial-gradient(ellipse, rgba(255,176,32,0.2) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--transition);
}
.token-card:hover .token-card-glow { opacity: 1; }
.token-card h3 {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.token-card p { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }

.ca-box {
  position: relative; overflow: hidden;
  padding: 36px;
  background: var(--bg-card); border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg); text-align: center;
}
.ca-border-glow {
  position: absolute; inset: -2px;
  border-radius: var(--radius-lg);
  background: conic-gradient(from var(--ca-angle, 0deg), transparent, var(--accent-mid), transparent, var(--accent-end), transparent);
  z-index: -1;
  animation: ca-rotate 4s linear infinite;
  opacity: 0.5;
}
@keyframes ca-rotate {
  to { --ca-angle: 360deg; }
}
@property --ca-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.ca-pulse { animation: ca-box-pulse 3s ease-in-out infinite; }
@keyframes ca-box-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,176,32,0.08); }
  50% { box-shadow: 0 0 80px rgba(255,176,32,0.18); }
}
.ca-box label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-mid); margin-bottom: 16px;
}
.ca-row { display: flex; gap: 12px; max-width: 680px; margin: 0 auto 16px; }
.ca-row input {
  flex: 1; padding: 16px 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'Courier New', monospace; font-size: 0.85rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.ca-row input:focus { border-color: var(--border-accent); box-shadow: 0 0 20px rgba(255,176,32,0.1); }
.btn-copy {
  padding: 16px 24px;
  background: rgba(255,255,255,0.08); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  white-space: nowrap;
}
.btn-copy:hover { background: rgba(255,176,32,0.15); border-color: var(--border-accent); }
.btn-copy.copied { background: rgba(255,176,32,0.2); border-color: var(--accent-mid); color: var(--accent-mid); }
.ca-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.ca-buy { margin: 0 auto; }

/* ── Subscribe ── */
.subscribe-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 56px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}
.subscribe-glow {
  position: absolute; top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 60%);
  animation: subscribe-glow-move 8s ease-in-out infinite alternate;
}
@keyframes subscribe-glow-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(40px); }
}
.subscribe-content { position: relative; z-index: 1; }
.subscribe-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border-radius: 16px; margin-bottom: 20px;
}
.pulse-icon { animation: icon-pulse 2s ease-in-out infinite; }
@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.subscribe-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800; margin-bottom: 16px;
}
.subscribe-content p { color: var(--text-muted); margin-bottom: 28px; max-width: 440px; }
.subscribe-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.subscribe-preview { position: relative; z-index: 1; }
.tweet-mock {
  padding: 24px; background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.tweet-float { animation: tweet-float 4s ease-in-out infinite; }
@keyframes tweet-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.tweet-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tweet-header img { border-radius: 50%; }
.tweet-header strong { display: block; font-size: 0.95rem; }
.tweet-header span { font-size: 0.85rem; color: var(--text-muted); }
.tweet-body { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.tweet-ca { color: var(--accent-mid); font-family: monospace; }
.tweet-cta-hint {
  font-size: 0.8rem; color: var(--text-muted);
  padding: 10px 14px; background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255,255,255,0.1);
}
.blink-hint { animation: blink 2s ease-in-out infinite; }
@keyframes blink {
  0%, 100% { opacity: 1; border-color: rgba(255,255,255,0.1); }
  50% { opacity: 0.7; border-color: rgba(255,176,32,0.3); color: var(--accent-mid); }
}

/* ── Social ── */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 48px; }
.social-card {
  display: flex; align-items: center; gap: 16px;
  padding: 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
  transform-style: preserve-3d;
}
.social-card:hover { border-color: var(--border-accent); }
.social-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
}
.social-card:hover .social-icon { transform: scale(1.1) rotate(-5deg); }
.x-icon { background: rgba(255,255,255,0.1); }
.tg-icon { background: rgba(42,171,238,0.15); color: #2aabee; }
.pump-icon { background: rgba(110,231,183,0.12); }
.pump-icon img, .stat-icon-pump img, .pump-svg { display: block; object-fit: contain; }
.social-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.social-card p { font-size: 0.85rem; color: var(--text-muted); }
.social-arrow {
  margin-left: auto; font-size: 1.2rem; color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.social-card:hover .social-arrow { transform: translateX(6px); color: var(--accent-mid); }

/* ── Final CTA ── */
.final-cta {
  text-align: center; padding: 56px 32px;
  background: var(--gradient-accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,176,32,0.1) 0%, transparent 60%);
  animation: cta-glow 4s ease-in-out infinite alternate;
}
@keyframes cta-glow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.final-cta-orbit { position: relative; display: inline-block; margin-bottom: 20px; }
.final-cta-orbit::before {
  content: '';
  position: absolute; inset: -12px;
  border: 2px solid rgba(255,176,32,0.2);
  border-radius: 24px;
  animation: orbit-spin 8s linear infinite reverse;
}
.final-cta-logo {
  border-radius: 20px;
  filter: drop-shadow(0 8px 24px var(--glow));
  animation: float 4s ease-in-out infinite;
}
.final-cta h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 800; margin-bottom: 8px; position: relative;
}
.final-cta p { color: var(--text-muted); margin-bottom: 28px; position: relative; }
.final-cta .btn { position: relative; }

/* ── Footer ── */
.footer {
  position: relative; z-index: 2;
  padding: 48px 0; border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 24px;
}
.footer-brand img { border-radius: 10px; }
.footer-brand strong { display: block; font-family: var(--font-display); }
.footer-brand span { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 20px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-mid); }
.footer-disclaimer { font-size: 0.8rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 12px; opacity: 0.7; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); opacity: 0.5; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--delay, 0) * 0.1s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Tilt cards ── */
.tilt-card { will-change: transform; }

/* ── Reduced motion ── */
@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; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr; }
  .bento-main, .bento-wide { grid-column: span 1; }
  .bento-main { grid-template-columns: 1fr; text-align: center; }
  .bento-visual img { margin: 0 auto; }
  .trait-list { grid-template-columns: 1fr; }
  .emoji-panel, .subscribe-card { grid-template-columns: 1fr; padding: 32px; }
  .token-grid, .social-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
}

@media (max-width: 768px) {
  .marquee-wrap { top: 68px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 104px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(0,0,0,0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transform: translateY(-120%); opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 24px; }
  .ca-row { flex-direction: column; }
  .hero-actions, .subscribe-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions .btn, .subscribe-actions .btn { width: 100%; }
  .cursor-glow { display: none; }
}
