@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import 'design-system.css';
@import 'components.css';
@import 'animations.css';

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  line-height: 1.6;
}

h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #1e293b;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

p {
  color: #64748b;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}
