/* About lab — terminal / geek-minimalist. No gradients. */
.about-page .site-slogan {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  max-width: 36rem;
  line-height: 1.45;
  white-space: normal;
}

.about-hero {
  padding: 36px 0 28px;
  border-bottom: 1px solid #000;
}

.about-kicker {
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #000;
  margin: 0 0 12px;
}

.about-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #000;
  max-width: 22em;
  margin: 0 0 16px;
}

.about-hero-title {
  display: inline;
}

.about-cursor {
  display: inline-block;
  margin-left: 2px;
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 400;
  color: #000;
  animation: aboutCursorBlink 1.05s steps(1, end) infinite;
}

@keyframes aboutCursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.about-lead {
  font-size: 16px;
  line-height: 1.65;
  color: #000;
  max-width: 46rem;
  margin: 0;
}

/* Trust-by-numbers strip */
.about-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #000;
  border-top: 0;
  background: #fff;
}

.about-trust-cell {
  padding: 16px 14px;
  border-right: 1px solid #000;
  min-width: 0;
}

.about-trust-cell:last-child {
  border-right: 0;
}

.about-trust-val {
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.about-trust-lab {
  margin-top: 8px;
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.45;
  color: #475569;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid #e2e8f0;
}

.about-pillar {
  border: 1px solid #000;
  background: #fff;
  padding: 18px 16px;
}

.about-pillar h2 {
  font-size: 15px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.about-pillar p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #334155;
}

.about-lab {
  padding: 28px 0 8px;
  border-bottom: 1px solid #e2e8f0;
}

.about-lab h2,
.about-tech h2 {
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  color: #000;
}

.about-lab p,
.about-tech p {
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 16px;
  max-width: 52rem;
}

.about-tech {
  padding: 24px 0 8px;
}

.about-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 24px 0 40px;
  border-top: 1px solid #000;
  margin-top: 8px;
}

.about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 14px;
  box-sizing: border-box;
  line-height: 1.4;
  text-align: center;
}

.about-cta-primary {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.about-cta-primary:hover {
  background: #111;
}

.about-cta-secondary {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.about-cta-secondary:hover,
.about-cta-link:hover {
  background: #f8fafc;
}

.about-cta-link {
  background: transparent;
  color: #000;
  border: 1px dashed #000;
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-trust {
    grid-template-columns: 1fr 1fr;
  }
  .about-trust-cell:nth-child(2) {
    border-right: 0;
  }
  .about-trust-cell:nth-child(1),
  .about-trust-cell:nth-child(2) {
    border-bottom: 1px solid #000;
  }
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding: 24px 0 20px;
  }
  .about-trust {
    grid-template-columns: 1fr;
  }
  .about-trust-cell {
    border-right: 0;
    border-bottom: 1px solid #000;
  }
  .about-trust-cell:last-child {
    border-bottom: 0;
  }
  .about-cta a {
    font-size: 12px;
  }
}
