.about-page {
  min-height: 100vh;
  background: #050708;
}

.about-header {
  width: min(1320px, calc(100% - 64px));
}

.about-frame {
  width: min(1180px, calc(100% - 112px));
  margin-inline: auto;
}

.about-hero {
  position: relative;
  padding: clamp(110px, 15vw, 210px) 0 clamp(92px, 11vw, 150px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 26%, rgba(73, 103, 116, 0.22), transparent 29%),
    radial-gradient(circle at 17% 70%, rgba(28, 58, 67, 0.22), transparent 32%),
    #071116;
}

.about-eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.about-lede {
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 300;
  line-height: 1.45;
}

.about-section {
  padding: clamp(92px, 11vw, 160px) 0;
  border-bottom: 1px solid var(--line);
  background: #081218;
}

.about-section--quiet {
  background: #f3f1eb;
  color: #15303b;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: start;
}

.about-grid h2,
.about-contact h2 {
  max-width: 650px;
  margin: 0;
  color: inherit;
  font-size: clamp(38px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.about-copy {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-copy p,
.about-evidence p {
  margin: 0;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 13px;
  transition: color 180ms ease, transform 180ms ease;
}

.about-link:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.about-section--quiet .about-eyebrow {
  color: #527681;
}

.about-section--quiet .about-evidence {
  border-top: 1px solid rgba(21, 48, 59, 0.28);
  color: #15303b;
}

.about-evidence {
  padding-top: 18px;
}

.about-evidence__date {
  margin: 0 0 20px !important;
  color: #527681;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-evidence h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.about-evidence p:not(.about-evidence__date) {
  max-width: 490px;
  margin-top: 26px;
  color: rgba(21, 48, 59, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.about-section--quiet .about-link {
  color: #15303b;
}

.about-section--quiet .about-link:hover {
  color: #527681;
}

.about-contact {
  padding: clamp(92px, 11vw, 150px) 0;
  color: var(--ink);
  background: #050708;
}

.about-contact__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 46px;
}

.about-contact .about-eyebrow {
  margin-bottom: 18px;
}

.about-contact .primary-button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .about-frame,
  .about-header {
    width: calc(100% - 72px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 680px) {
  .about-frame,
  .about-header {
    width: calc(100% - 40px);
  }

  .about-hero {
    padding-block: 88px 92px;
  }

  .about-hero h1 {
    font-size: clamp(48px, 14vw, 74px);
  }

  .about-lede {
    margin-top: 26px;
    font-size: 18px;
  }

  .about-section,
  .about-contact {
    padding-block: 82px;
  }

  .about-contact__inner {
    display: grid;
    align-items: start;
    gap: 34px;
  }

  .about-contact .primary-button {
    width: 100%;
  }
}
