.about-page {
  padding-bottom: 120px;
}

.about-hero {
  padding: 90px 0 100px;
}

.about-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 70px;

  font-size: 11px;
  letter-spacing: 0.16em;
}

.about-label {
  color: #777;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.about-hero h1 {
  max-width: 900px;

  margin: 0;

  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.about-intro {
  max-width: 650px;

  margin: 50px 0 0;

  color: #888;

  font-size: 20px;
  line-height: 1.65;
}

.about-divider {
  width: 100%;
  height: 1px;

  background: #222;
}

.about-section {
  display: grid;

  grid-template-columns: 120px minmax(0, 720px);

  gap: 60px;

  padding: 100px 0;

  border-bottom: 1px solid #222;
}

.about-section-number {
  color: #555;

  font-family: monospace;

  font-size: 13px;
  letter-spacing: 0.08em;
}

.about-section-content h2 {
  margin: 20px 0 30px;

  font-size: clamp(32px, 4vw, 56px);

  line-height: 1;

  letter-spacing: -0.04em;
}

.about-section-content > p {
  max-width: 680px;

  margin: 0 0 22px;

  color: #858585;

  font-size: 16px;
  line-height: 1.8;
}

.about-topics {
  margin-top: 50px;

  border-top: 1px solid #222;
}

.about-topics a {
  display: grid;

  grid-template-columns: 60px 1fr auto;

  align-items: center;

  min-height: 70px;

  border-bottom: 1px solid #222;

  color: #eee;

  text-decoration: none;

  font-size: 17px;

  transition:
    padding-left 180ms ease,
    color 180ms ease;
}

.about-topics a span {
  color: #555;

  font-family: monospace;

  font-size: 11px;
}

.about-topics a strong {
  color: #666;

  font-weight: 400;
}

.about-topics a:hover {
  padding-left: 10px;

  color: #fff;
}

.about-topics a:hover strong {
  color: #fff;
}
.process-list {
  margin-top: 50px;

  border-top: 1px solid #222;
}

.process-row {
  display: grid;

  grid-template-columns: 60px 1fr;

  gap: 20px;

  padding: 30px 0;

  border-bottom: 1px solid #222;
}

.process-row > span {
  color: #555;

  font-family: monospace;

  font-size: 11px;
}

.process-row h3 {
  margin: 0 0 10px;

  font-size: 19px;

  font-weight: 600;
}

.process-row p {
  max-width: 600px;

  margin: 0;

  color: #777;

  font-size: 14px;

  line-height: 1.7;
}

.about-statement {
  padding: 130px 0;

  border-bottom: 1px solid #222;
}

.about-statement blockquote {
  max-width: 950px;

  margin: 35px 0 0;

  padding: 0;

  border: 0;

  color: #eee;

  font-size: clamp(34px, 5vw, 68px);

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.about-footer {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;

  padding: 100px 0 0;
}

.about-footer h2 {
  margin: 18px 0 0;

  font-size: clamp(32px, 4vw, 52px);

  letter-spacing: -0.04em;
}

.about-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 24px;

  border: 1px solid #333;

  color: #eee;

  text-decoration: none;

  font-size: 11px;

  letter-spacing: 0.12em;

  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.about-button:hover {
  background: #eee;

  border-color: #eee;

  color: #080808;
}

@media (max-width: 700px) {
  .about-hero {
    padding: 60px 0 70px;
  }

  .about-hero-top {
    margin-bottom: 45px;
  }

  .about-intro {
    margin-top: 35px;

    font-size: 17px;
  }

  .about-section {
    grid-template-columns: 1fr;

    gap: 25px;

    padding: 70px 0;
  }

  .about-section-number {
    order: -1;
  }

  .about-section-content h2 {
    font-size: 38px;
  }

  .about-statement {
    padding: 90px 0;
  }

  .about-statement blockquote {
    font-size: 38px;
  }

  .about-footer {
    flex-direction: column;

    align-items: flex-start;

    padding-top: 70px;
  }

  .about-topics a {
    grid-template-columns: 45px 1fr auto;

    font-size: 15px;
  }
}
