/* Reset, document defaults and accessibility. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body.is-locked {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button {
  border: 0;
  background: none;
}
input,
select,
textarea {
  color: var(--ink);
}
img,
svg {
  max-width: 100%;
  vertical-align: middle;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button,
summary,
input,
select,
textarea {
  touch-action: manipulation;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  font-weight: 700;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::selection {
  color: #fff;
  background: #2459ed;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
  border-radius: 4px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: var(--space-section);
}
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.section-number {
  color: var(--muted);
  margin-bottom: 23px;
}
.accent-text {
  color: var(--accent);
}
.muted-text {
  color: var(--muted);
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
}
.icon-small {
  width: 16px;
  height: 16px;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 20px;
  background: var(--button);
  color: var(--button-text);
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  z-index: 110;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading h2,
.about-intro h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
}
.section-heading > p {
  max-width: 325px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 3px;
}
.section-heading > .button {
  flex: none;
  margin-bottom: 6px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
