:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: #f3f8f5;
  color: #143127;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

section {
  width: min(44rem, 100%);
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid #d7e5dc;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 4rem rgb(16 70 50 / 10%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #0b6041;
  font-size: 0.875rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.05;
}

.lead {
  max-width: 42rem;
  margin: 1.5rem 0 2rem;
  color: #4b655b;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid #a9c3b5;
  border-radius: 0.7rem;
  color: #0b6041;
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  border-color: #0b6041;
  outline: 3px solid rgb(11 96 65 / 20%);
  outline-offset: 2px;
}

a.primary {
  border-color: #0b6041;
  background: #0b6041;
  color: #ffffff;
}
