body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: #f5f4f0;
  color: #0d0d0d;
  margin: 0;
}
.heading-display {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.heading-serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b6b6b;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-primary { background: #0d0d0d; color: #fff; }
.btn-primary:hover { background: #2b2b29; }
.btn-accent { background: #b8f55a; color: #0d0d0d; box-shadow: 0 8px 20px -10px rgba(184,245,90,0.5); }
.btn-accent:hover { background: #c4f66e; }
.btn-ghost { background: #fff; color: #2b2b29; border: 1px solid #e4e4df; }
.btn-ghost:hover { background: #fafaf7; }
.btn-danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4e4df;
  box-shadow: 0 1px 0 rgba(13,13,13,.03), 0 4px 12px -8px rgba(13,13,13,.06);
}
.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e4e4df;
  background: #fff;
  padding: 0.625rem 0.875rem;
  font-size: 14px;
  outline: none;
  transition: border .15s, box-shadow .15s;
  font-family: inherit;
}
.input:focus { border-color: #b8f55a; box-shadow: 0 0 0 3px rgba(184,245,90,.25); }
.row-hover:hover { background: #fafaf7; }

.spinner { border: 3px solid rgba(255,255,255,.2); border-top: 3px solid #b8f55a; border-radius: 50%; width: 28px; height: 28px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.modal { position: fixed; inset: 0; background: rgba(13,13,13,.5); display: flex; align-items: center; justify-content: center; z-index: 50; padding: 1rem; }
.modal-card { background: #fff; border-radius: 18px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; }

.tab-active { background: #0d0d0d; color: #b8f55a; border-color: #0d0d0d; }
