* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  background: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
 
body,
button,
input,
textarea {
  font: inherit;
}
 
button,
a {
  -webkit-tap-highlight-color: transparent;
}
 
button {
  border: 0;
  cursor: pointer;
}
 
a {
  color: inherit;
  text-decoration: none;
}
 
img {
  display: block;
  max-width: 100%;
}
 
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
 
.section {
  padding: 6rem 0;
}
 
.section-muted {
  background: #f1f5f9;
}
 
.section-dark {
  background: var(--dark);
  color: var(--white);
}
 
.section-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}
 
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
 
.section-heading h2 {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}
 
.section-dark .section-heading h2 {
  color: var(--white);
}
 
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}
 
.section-label {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
 
.light-label {
  color: #93c5fd;
}
 
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
 
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
 
:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 4px;
}