:root {
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --color-indigo: #4f46e5;
  --color-amber: #f59e0b;
  --color-slate-900: #0f172a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.nav-link.active {
  color: var(--color-indigo);
  font-weight: 600;
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgb(15 23 42 / 0.15);
}

.prose-legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.prose-legal p,
.prose-legal li {
  color: #475569;
  line-height: 1.7;
}

.prose-legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.prose-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.875rem;
}

.prose-legal th,
.prose-legal td {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.prose-legal th {
  background: #f8fafc;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-live {
  background: #dcfce7;
  color: #166534;
}

.badge-beta {
  background: #fef3c7;
  color: #92400e;
}
