html, body {
  font-family: Geist, ui-sans-serif, system-ui, sans-serif;
}
.font-mono, header, footer, .font-mono * {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.text-theme-light { color: var(--theme-light, #ffffff); }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.animate-fadeIn { animation: fadeIn 0.35s ease both; }
.grid-bg canvas { display: none; }
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 80;
  padding: 10px 14px;
  border: 2px solid #fff;
  background: #121519;
  color: #fff;
  font-family: ui-monospace, Geist Mono, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #fff;
}
.menu-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  min-width: 180px;
  background: #101317;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 #000;
  padding: 6px;
}
.menu-pop button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  color: #e4e4e7;
  font-family: ui-monospace, Geist Mono, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-pop button:hover { background: #fff; color: #000; }
.swatch {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  box-shadow: 1px 1px 0 #fff;
  flex-shrink: 0;
}
