:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --color-bg: #f5f6f8;
  --color-hero-start: #10b981; /* emerald-500 */
  --color-hero-mid: #14b8a6; /* teal-500 */
  --color-hero-end: #0ea5e9; /* sky-500 */
  --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);
  --color-primary: #0fba81;
  --color-primary-dark: #0b996a;
  --color-outline: rgba(15, 23, 42, 0.15);
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 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;
}

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;
}
