:root {
  /* Typography */
  --font-heading: "Merriweather", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  font-family: var(--font-body);
  --color-bg: #f5f6f8;
  
  /* Darker Hero Gradient for Trust/Stability */
  --color-hero-start: #059669; /* emerald-600 */
  --color-hero-mid: #0d9488;   /* teal-600 */
  --color-hero-end: #0284c7;   /* sky-600 */
  
  --color-text: #0f172a;
  --color-muted: rgba(15, 23, 42, 0.72);
  --color-border: rgba(15, 23, 42, 0.08);
  --color-card-bg: #ffffff;
  --color-chip-bg: rgba(255, 255, 255, 0.22);
  --color-chip-border: rgba(255, 255, 255, 0.45);
  
  /* Updated Colors & Radius */
  --color-primary: #059669; /* Darker, more trustworthy Emerald-600 */
  --color-primary-dark: #047857; /* Emerald-700 */
  --color-outline: rgba(15, 23, 42, 0.15);
  
  /* Reduced Radius for professionalism */
  --radius-lg: 16px; /* Was 32px */
  --radius-md: 12px; /* Was 16px */
  --radius-sm: 8px;  /* Was 12px */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: var(--color-bg);
  color: var(--color-text);
}

body {
  line-height: 1.5;
  font-size: 16px;
}

/* Apply Serif font to headings */
h1, h2, h3, h4, h5, h6,
.auth-title,
.dashboard-title,
.cta-title,
.page-title {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
