.statement-stack {
  padding: 70px 0 10px;
}

.statement-eyebrow {
  font-size: 11px;
  color: var(--muted);
  padding: 0 64px 28px;
}

.statement-bar {
  display: flex;
  align-items: center;
  padding: 26px 64px;
  border-bottom: 3px solid var(--ink);
}

.statement-bar .display {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
}

.about-body {
  padding: 80px 64px 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  position: relative;
}

.about-body p {
  font-size: 19px;
  line-height: 1.7;
  color: #e4dfea;
  margin: 0 0 22px;
}

.about-body p:last-of-type {
  margin-bottom: 0;
}

.tools-block {
  margin-top: 36px;
}

.tools-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 14px;
}

.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  color: #d9d4e0;
  margin: 0 8px 8px 0;
}

.facts-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  align-self: start;
}

.facts-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 18px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  gap: 16px;
}

.fact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-row + .fact-row {
  margin-top: 16px;
}

.fact-label {
  font-size: 14px;
  color: #c9c3d4;
}

.fact-value {
  font-size: 14px;
  text-align: right;
}

.fact-value-big {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--yellow);
}

.fact-sub {
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-body {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
  .statement-eyebrow,
  .statement-bar {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .about-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .statement-eyebrow,
  .statement-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .fact-row {
    flex-direction: column;
    gap: 4px;
  }
  .fact-value {
    text-align: left;
  }
}
