:root {
  --color-primary: #2f5f66;
  --color-primary-dark: #264f55;
  --color-primary-light: #e6eff0;
  --color-bg: #f5f7f8;
  --color-card: #ffffff;
  --color-border: #d9e1e3;
  --color-text: #1f2a2d;
  --color-muted: #6b7b80;
  --shadow-soft: 0 8px 24px rgba(19, 35, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
