.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.section {
  padding: 92px 0;
}
.section-soft {
  background: var(--surface);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 36px;
}
.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section h2,
.page-title h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0;
}
.section-head p {
  color: var(--body);
  margin: 10px 0 0;
}
.text-link {
  color: var(--teal-dark);
  font-weight: 700;
}
.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
  white-space: nowrap;
}
.inline-download-form {
  display: inline-flex;
  margin: 0;
}
.section h2,
.page-title h1,
.section h3 {
  text-wrap: balance;
}
.button-primary {
  background: var(--teal);
  color: #fff;
}
.button-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.button-danger {
  background: #fff1f0;
  color: var(--danger);
}
.button-small {
  min-height: 38px;
  padding: 7px 12px;
  font-size: 13px;
}
.button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
