:root {
  --color-primary: #0F172A;
  --color-background: #FFFFFF;
  --color-background-alt: #F8FAFC;
  --color-accent: #06B6D4;
  --color-accent-hover: #0891B2;
  --color-text: #334155;
  --color-text-heading: #0F172A;
  --color-text-muted: #94A3B8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
}

/* Smooth transitions for interactive elements */
a, button {
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

/* Mobile nav overlay */
#mobile-menu {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

#mobile-menu.hidden {
  opacity: 0;
  visibility: hidden;
}

#mobile-menu:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

/* Legal page prose styling */
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-heading);
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.25rem;
  line-height: 1.75;
}
