@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@500;700&display=swap');

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

body {
  font-family: var(--font-inter);
  background-color: var(--color-surface-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-inter);
  color: var(--color-text-dark);
}

.display-lg {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.headline-md {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.headline-sm {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.label-caps {
  font-family: var(--font-roboto);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-md {
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--color-primary-container);
}

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

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

@media (max-width: 767px) {
  .display-lg {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
}
