/* ============================================================
   Home Office OS — About Page Styles
   Founder profile, values, contact
   ============================================================ */

.about-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(20, 184, 166, 0.04) 35%,
    transparent 65%
  );
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}
