.about-page {
  background: var(--black);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}

.topographic-soft {
  position: absolute;
  right: 3%;
  bottom: -18%;
  width: 48vw;
  height: 48vw;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(ellipse at 70% 60%, var(--orange-glow) 0%, transparent 50%);
}

.about-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  max-width: 720px;
}

.about-story,
.about-drives {
  padding: 64px 0;
}

.story-copy {
  max-width: 640px;
  color: var(--text-secondary);
}

.story-copy p + p {
  margin-top: 20px;
}

.value-card {
  margin-top: 64px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.value-card span {
  display: block;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.about-metrics {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.about-metrics div {
  padding: 24px 28px 0 0;
  border-right: 1px solid var(--border);
}

.about-metrics div:last-child {
  border-right: none;
}

.about-metrics span {
  display: block;
  font-size: 0.68rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.about-metrics strong {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 600;
}

.about-metrics p {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 64px 0 48px;
  }

  .value-card,
  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-metrics div {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }

  .about-story,
  .about-drives {
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .about-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .value-card {
    margin-top: 40px;
    padding: 24px;
    gap: 20px;
  }

  .about-metrics strong {
    font-size: 1.6rem;
  }

  .topographic-soft {
    width: 72vw;
    height: 72vw;
    opacity: 0.22;
  }
}
