*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2 * var(--pad-x), 90rem);
  margin-inline: auto;
  padding-inline: 0;
}

.section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section__eyebrow {
  display: block;
  font-size: var(--text-md);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 300;
  max-width: none;
  line-height: 1.15;
}

.section__lead {
  margin-top: 0.75rem;
  color: var(--ink);
  max-width: none;
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  opacity: 1;
}

.btn--primary {
  background: var(--signal);
  color: #fff;
  border-color: var(--signal);
}

.btn--primary:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--white {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn--white:hover {
  background: #f0f0f0;
}

.btn--dark {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn--dark:hover {
  background: #222;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.shape-square {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--expo);
  display: inline-block;
  vertical-align: middle;
}

.shape-circle {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--signal);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .section {
    padding-block: 2.5rem;
  }
}
