* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 8% -10%, rgba(0, 168, 116, 0.12), transparent 62%),
    radial-gradient(1000px 600px at 95% -8%, rgba(0, 133, 93, 0.08), transparent 60%),
    var(--bg);
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../media/grid.svg") repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--brand-200);
  color: var(--ink-900);
}

.wrap {
  width: min(100% - 2.2rem, var(--max-wrap));
  margin-inline: auto;
}

.section {
  padding: var(--space-8) 0;
}

.section + .section {
  padding-top: 0;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #f4fff9, #ecfaf3);
  color: var(--brand-700);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.45rem 0.8rem;
}

.section-eyebrow-hot {
  border-color: rgba(0, 126, 87, 0.35);
  background: linear-gradient(180deg, #e9fff5, #cffff0);
  color: var(--brand-800);
  box-shadow: 0 8px 16px rgba(0, 126, 87, 0.14);
}

.section-title {
  margin: var(--space-4) 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  line-height: 1.12;
}

.section-copy {
  margin: 0;
  max-width: 68ch;
  color: var(--ink-500);
  font-size: 1.05rem;
}
