body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0908;
  color: #eae0d5;
}

.text-balance {
  text-wrap: balance;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

/* WhatsApp float button */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}

.wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wpp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wpp-tooltip {
  position: fixed;
  bottom: 36px;
  right: 96px;
  z-index: 998;
  background: #22333b;
  color: #eae0d5;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(198, 172, 143, 0.2);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.wpp-float:hover + .wpp-tooltip {
  opacity: 1;
}

/* Template cards hover */
.template-card {
  transition: border-color .2s, transform .2s;
}

.template-card:hover {
  border-color: rgba(198, 172, 143, 0.5);
  transform: translateY(-2px);
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stats bar */
.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

/* Founder card */
.founder-card {
  background: #22333b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0a0908;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
  z-index: 40;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
