.about {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle radial accent in bg */
.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 220, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Left: text ────────────────────────────────────────── */

.about__content {
  max-width: 600px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.0;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__body p {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--color-text-muted);
  font-weight: 300;
}

.about__body p strong {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ── Right: stat card ──────────────────────────────────── */

.about__stats {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-top: 2px solid var(--color-accent);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-item:first-child {
  padding-top: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .about__stats {
    flex-direction: row;
    gap: 0;
  }

  .stat-item {
    flex: 1;
    padding: 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--color-border-subtle);
    text-align: center;
    align-items: center;
  }

  .stat-item:last-child {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .about__stats {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border-subtle);
    text-align: left;
    align-items: flex-start;
    padding: 1.25rem 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}
