*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.site-header,
.button {
  font-family: var(--font-display);
}

ol,
ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-orange);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  overflow: clip;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.section--light {
  background: var(--color-paper);
}

.section--gray {
  background: var(--color-smoke);
}

.section--dark {
  color: #fff;
  background: var(--color-ink);
}

.section-heading {
  max-width: 610px;
}

.section-heading h2,
.service__copy h2,
.technology__copy h2,
.people__copy h2,
.cta h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading p:not(.eyebrow),
.service__copy p,
.technology__copy p,
.people__copy p,
.cta p {
  margin-top: 18px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 560px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--color-orange);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.button--light {
  color: var(--color-orange);
  background: #fff;
}

.button--dark {
  color: #fff;
  background: var(--color-ink);
}

.section-number {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal--left {
  transform: translate3d(-44px, 0, 0);
}

.reveal--right {
  transform: translate3d(44px, 0, 0);
}

.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
