* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--surface-soft);
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
}

.section-subtitle {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 72ch;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}
