/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-card: #111116;
  --bg-card-hover: #161620;
  --border: #1e1e2a;
  --border-light: #2a2a3a;
  --text: #e4e4ed;
  --text-muted: #7a7a8e;
  --text-dim: #555568;
  --accent: #ff4d00;
  --accent-light: #ff7733;
  --accent-glow: rgba(255, 77, 0, 0.25);
  --green: #22c55e;
  --red: #ef4444;
  --font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

img, svg {
  display: block;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== STAR CANVAS ===== */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--border-light);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 77, 0, 0.05);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-muted);
  padding: 10px 16px;
}
.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 30, 42, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-logo-img {
  width: 32px;
  height: 36px;
  object-fit: contain;
}

.nav-x-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-x-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-x-link svg {
  display: block;
}

.nav-ca-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  padding: 8px 16px;
}
.nav-ca-btn span {
  white-space: nowrap;
}
.nav-ca-btn.copied {
  background: rgba(34, 197, 94, 0.15);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.footer-logo-img {
  width: 40px;
  height: 45px;
  object-fit: contain;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
}

.mobile-nav.open {
  display: flex;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  z-index: 1;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.mascot-container {
  position: relative;
  width: 240px;
  height: 280px;
  margin: 0 auto 32px;
}

.mascot {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(255, 77, 0, 0.2));
}

/* Mascot animations */
.mascot-eyes {
  animation: eyeGlow 3s ease-in-out infinite;
}

@keyframes eyeGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
}

.eye-glow {
  animation: eyePulse 3s ease-in-out infinite;
}

@keyframes eyePulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.helmet-light {
  animation: helmetPulse 2s ease-in-out infinite;
}

@keyframes helmetPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; filter: brightness(1.5); }
}

.mouth-glow {
  animation: mouthPulse 4s ease-in-out infinite;
}

@keyframes mouthPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.mascot-arm-right {
  transform-origin: 230px 210px;
  animation: armSwing 4s ease-in-out infinite;
}

@keyframes armSwing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-3deg); }
}

/* Mascot breathing */
.mascot {
  animation: breathe 4s ease-in-out infinite;
}

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

/* Mascot glow */
.mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Scan ring */
.mascot-scan-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 77, 0, 0.15);
  border-radius: 50%;
  z-index: 1;
  animation: scanPulse 3s ease-out infinite;
}

@keyframes scanPulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}

/* Floating coins */
.floating-coin {
  position: absolute;
  z-index: 3;
  opacity: 0.7;
}

.coin-1 {
  top: 15%;
  right: -20px;
  animation: floatCoin1 6s ease-in-out infinite;
}
.coin-2 {
  bottom: 20%;
  left: -15px;
  animation: floatCoin2 7s ease-in-out infinite;
}
.coin-3 {
  top: 5%;
  left: 10px;
  animation: floatCoin3 5s ease-in-out infinite;
}

@keyframes floatCoin1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}
@keyframes floatCoin2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-8deg); }
}
@keyframes floatCoin3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* ===== TESTIMONIALS ===== */
.testimonial-track-wrapper {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

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

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 340px;
  background: rgba(17, 17, 22, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(255, 77, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.view-all-link {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.view-all-link:hover {
  opacity: 0.8;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  border-color: rgba(255, 77, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
  margin-bottom: 16px;
}

.step-icon svg {
  margin: 0 auto;
}

.step-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-connector {
  display: none;
}

/* ===== LIVE FEED ===== */
.feed-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.terminal-title {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  flex: 1;
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.terminal-body {
  padding: 16px 20px;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 2;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.trade-line {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInTrade 0.4s ease forwards;
  flex-wrap: wrap;
}

.trade-time {
  color: var(--text-dim);
  font-size: 0.75rem;
  min-width: 55px;
}

.trade-action {
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.trade-action.buy {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
}

.trade-action.sell {
  color: var(--red);
  background: rgba(239, 68, 68, 0.1);
}

.trade-token {
  color: var(--text);
  font-weight: 600;
}

.trade-amount {
  color: var(--text-muted);
}

.trade-result {
  font-weight: 700;
  margin-left: auto;
}

.trade-result.profit { color: var(--green); }
.trade-result.loss { color: var(--red); }

@keyframes slideInTrade {
  to { opacity: 1; transform: translateX(0); }
}

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(17, 17, 22, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: rgba(255, 77, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 77, 0, 0.05);
  background: rgba(17, 17, 22, 0.8);
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== TOKEN ===== */
.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.token-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.token-benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.token-benefit-card:hover {
  border-color: rgba(255, 77, 0, 0.2);
  transform: translateX(4px);
}

.token-benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 0, 0.08);
  border-radius: 10px;
}

.token-benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.token-benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.token-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.token-ca-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.token-ca-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}

.token-ca-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.token-ca {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  transition: all 0.2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.copy-btn.copied {
  background: rgba(34, 197, 94, 0.1);
}

/* ===== QUICK START ===== */
.terminal-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.terminal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.terminal-tab {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.terminal-tab:hover {
  color: var(--text);
}

.terminal-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.terminal-content {
  position: relative;
}

.terminal-pane {
  display: none;
  padding: 24px;
  position: relative;
}

.terminal-pane.active {
  display: block;
}

.code-block {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 2;
}

.code-line {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.code-comment {
  color: var(--text-dim);
}

.code-prompt {
  color: var(--accent);
  font-weight: 700;
}

.code-cmd {
  color: var(--text);
}

.code-keyword {
  color: #c792ea;
}

.code-func {
  color: #82aaff;
}

.code-string {
  color: #c3e88d;
}

.copy-code-btn {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* Typing effect cursor */
.typing-cursor::after {
  content: '|';
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

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

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(255, 77, 0, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-ca code {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  word-break: break-all;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .mascot-container {
    width: 200px;
    height: 230px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .token-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trade-line {
    font-size: 0.75rem;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

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

  .stat-item:last-child {
    grid-column: 1 / -1;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}
