/* =============================================
   RESET
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(224, 50, 43, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(21, 94, 239, 0.12), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero h1,
.cta-card h2 {
  margin: 0;
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  line-height: 1.08;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}
