/* ============================================
   $HAPPY — Hand-crafted, high-energy meme site
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --gold: #f5c518;
  --gold-bright: #ffe566;
  --gold-dim: #c9a227;
  --text: #fafafa;
  --text-muted: #a0a0a0;
  --text-dim: #666;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 197, 24, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

/* Noise texture */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-emoji {
  font-size: 1.35rem;
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.5));
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

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

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

.nav-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.nav-social:hover {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  transform: translateY(-2px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-burger.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mobile-socials a {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}

.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 6px 28px rgba(245, 197, 24, 0.45);
}

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

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 600;
}

.btn-sm:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.25), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 180, 50, 0.15), transparent 70%);
  bottom: 10%;
  left: -10%;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12), transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(245, 197, 24, 0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(245, 197, 24, 0.4);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-val {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

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

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

.hero-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0.35;
  animation: floatY 6s ease-in-out infinite;
  filter: blur(0.5px);
}

.float-emoji:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.float-emoji:nth-child(2) { top: 25%; right: 12%; animation-delay: -1.5s; font-size: 1.5rem; }
.float-emoji:nth-child(3) { bottom: 30%; left: 15%; animation-delay: -3s; font-size: 1.8rem; }
.float-emoji:nth-child(4) { bottom: 22%; right: 10%; animation-delay: -2s; }
.float-emoji:nth-child(5) { top: 55%; right: 20%; animation-delay: -4s; font-size: 1.4rem; }

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

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

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

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

/* ========== MARQUEE ========== */
.marquee {
  overflow: hidden;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-track .dot {
  opacity: 0.4;
}

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

/* ========== SECTIONS ========== */
.section {
  padding: 6rem 2rem;
  position: relative;
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* ========== LORE ========== */
.lore-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.lore-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.lore-text strong {
  color: var(--text);
  font-weight: 600;
}

.lore-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.lore-punch {
  font-family: var(--display);
  font-size: 1.4rem !important;
  font-weight: 600;
  color: var(--text) !important;
  margin: 1.75rem 0 !important;
}

.lore-mission {
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.lore-mission span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lore-visual {
  position: relative;
}

.lore-card-stack {
  position: relative;
  height: 320px;
}

.lore-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 200px;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.lore-card span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.lore-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.lore-card.c1 {
  top: 0;
  left: 10%;
  z-index: 3;
  transform: rotate(-6deg);
}

.lore-card.c2 {
  top: 80px;
  right: 5%;
  z-index: 2;
  transform: rotate(4deg);
}

.lore-card.c3 {
  bottom: 0;
  left: 25%;
  z-index: 1;
  transform: rotate(-2deg);
}

.lore-card:hover {
  border-color: var(--border-gold);
  z-index: 5;
}

.lore-card.c1:hover { transform: rotate(-6deg) translateY(-8px) scale(1.03); }
.lore-card.c2:hover { transform: rotate(4deg) translateY(-8px) scale(1.03); }
.lore-card.c3:hover { transform: rotate(-2deg) translateY(-8px) scale(1.03); }

/* ========== WHY ========== */
.why {
  background: var(--bg-elevated);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.why-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 12px rgba(245, 197, 24, 0.3));
}

.why-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== VALUES ========== */
.values {
  padding: 4rem 2rem;
}

.values-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value {
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.06), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.value h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.value p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== TOKENOMICS ========== */
.tokenomics {
  background: var(--bg-elevated);
}

.token-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.token-supply {
  margin-bottom: 1rem;
}

.token-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.token-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.token-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 360px;
  line-height: 1.7;
}

.token-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tf {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: rgba(245, 197, 24, 0.06);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.tf:hover {
  border-color: var(--border-gold);
}

.tf-check {
  color: var(--gold);
  font-weight: 700;
}

/* ========== ROADMAP ========== */
.road-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.road-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--border));
}

.road-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}

.road-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  z-index: 1;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.road-item.active .road-num {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.2);
}

.road-body h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.road-body ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.road-body li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1rem;
}

.road-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ========== CA ========== */
.ca {
  background: var(--bg-elevated);
}

.ca-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.ca-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ca-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.ca-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ca-placeholder {
  background: rgba(0,0,0,0.4);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.ca-dots {
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  user-select: none;
}

.ca-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========== COMMUNITY ========== */
.community-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: -1.5rem auto 2.5rem;
  text-align: center;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.comm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.comm-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.comm-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.comm-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.comm-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.comm-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.quotes blockquote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(245, 197, 24, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-emoji {
  font-size: 1.4rem;
}

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

.footer-copy {
  font-size: 0.8rem !important;
  color: var(--text-dim) !important;
  margin-top: 0.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .lore-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lore-card-stack {
    height: 280px;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .token-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .values-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav {
    padding: 0.85rem 1.25rem;
  }

  .hero {
    padding: 7rem 1.25rem 5rem;
  }

  .section {
    padding: 4.5rem 1.25rem;
  }

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

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

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

  .road-list::before {
    left: 22px;
  }

  .road-num {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .road-item {
    gap: 1.25rem;
  }

  .ca-box {
    padding: 2rem 1.25rem;
  }

  .float-emoji {
    display: none;
  }
}

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

  .marquee-track {
    animation: none;
  }
}
