:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: #ffffff;
  color: #30343b;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body {
  margin: 0;
}

a {
  color: inherit;
}

.page {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  min-height: 106px;
}

.wordmark {
  font-size: 1.65rem;
  font-weight: 750;
  letter-spacing: -0.065em;
  text-decoration: none;
}

.wordmark-dot {
  color: #747b83;
}

.header-label,
.site-footer {
  color: #737a82;
  font-size: 0.875rem;
}

.intro {
  max-width: 920px;
  padding: clamp(88px, 12vw, 160px) 0 clamp(90px, 11vw, 140px);
}

.eyebrow {
  font-weight: 650;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 30px;
  color: #737a82;
  font-size: 0.875rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 35px;
  font-size: clamp(3.3rem, 8.5vw, 7.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.intro-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: #626a73;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 54px 0 100px;
}

.about p {
  margin: 0;
  color: #626a73;
  font-size: 1.125rem;
  line-height: 1.65;
}

.site-footer {
  min-height: 100px;
}

@media (max-width: 700px) {
  .page {
    width: min(100% - 36px, 1120px);
  }

  .site-header {
    min-height: 82px;
  }

  .header-label {
    display: none;
  }

  .intro {
    padding-block: 93px 110px;
  }

  h1 {
    font-size: clamp(3.3rem, 12.5vw, 5.5rem);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 42px 76px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-block: 22px;
  }
}
