#omne {
  background:
    radial-gradient(circle at 12% 18%, rgba(141, 138, 216, 0.08), transparent 26%),
    #0c0c0f;
}

#omne .about-grid {
  gap: 32px;
}

#omne .about-visual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#omne .about-avatar {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#omne .about-avatar img {
  width: 100%;
  height: auto;
}

#omne .about-title {
  margin-bottom: 18px;
  max-width: 760px;
}

#omne .about-text {
  margin-bottom: 28px;
  max-width: 700px;
  color: var(--text-soft);
}

#omne .about-stats {
  gap: 12px;
}

#omne .about-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 104px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

#omne .about-stat span {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-muted);
}

#omne .about-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

@media (min-width: 768px) {

  #omne .about-visual {
    justify-content: flex-start;
  }

  #omne .about-avatar {
    max-width: 320px;
    border-radius: var(--radius-xl);
  }

  #omne .about-title {
    margin-bottom: 20px;
  }

  #omne .about-text {
    margin-bottom: 32px;
  }

  #omne .about-stats {
    gap: 16px;
  }

  #omne .about-stat {
    min-height: 116px;
    padding: 18px 20px;
  }

  #omne .about-stat strong {
    font-size: 3.2rem;
  }
}