/* ==========================================================================
   About / Welcome Section
   ========================================================================== */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.2;
  padding: 14px;
  background: var(--color-paper-50);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Reticle corner brackets — viewfinder motif echoing the surveillance
   subject matter, framing the illustration like a monitored feed. */
.about__media::before,
.about__media::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--color-green-600);
  z-index: 2;
}
.about__media::before {
  top: 10px; left: 10px;
  border-style: solid;
  border-width: 2px 0 0 2px;
}
.about__media::after {
  bottom: 10px; right: 10px;
  border-style: solid;
  border-width: 0 2px 2px 0;
}

.about__heading {
  margin-top: 10px;
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 600;
  max-width: 480px;
}

.about__text {
  margin-top: 18px;
  color: var(--color-ink-500);
  max-width: 520px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line-200);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat__icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--color-green-100);
  color: var(--color-green-700);
  flex-shrink: 0;
}

.stat div {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-ink-900);
}

.stat span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--color-ink-500);
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__heading, .about__text { margin-left: auto; margin-right: auto; }
  .about__stats { justify-content: center; }
  .stat { text-align: left; }
}
