/* About hero — uses global design tokens only (no :root). */

.about-hero.hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 0;
}

.about-hero.hero.shell {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.about-hero.hero > .hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
}

.about-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) {
  .about-hero .hero-grid { grid-template-columns: 1fr; }
}

.about-hero .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero h1 .gradient {
  background: linear-gradient(120deg, var(--brand-navy) 0%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-hero .about-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}
.about-hero .about-ambient::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  left: -240px;
  top: -180px;
  background: radial-gradient(closest-side, rgba(30, 31, 140, 0.16), transparent 70%);
  filter: blur(20px);
}
.about-hero .about-ambient::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  right: -300px;
  top: 80px;
  background: radial-gradient(closest-side, rgba(31, 174, 94, 0.16), transparent 70%);
  filter: blur(20px);
}

.about-hero > .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 16, 38, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 16, 38, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 30%, transparent 95%);
  pointer-events: none;
}

.about-hero .hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 460px;
}
.about-hero .hv-orb {
  position: absolute;
  inset: 6% 6% 6% 6%;
  border-radius: 36%;
  background:
    radial-gradient(closest-side, rgba(31, 174, 94, 0.35), transparent 70%) 20% 30% / 65% 65% no-repeat,
    radial-gradient(closest-side, rgba(30, 31, 140, 0.4), transparent 70%) 80% 70% / 65% 65% no-repeat;
  filter: blur(40px);
  opacity: 0.9;
  z-index: 0;
}
.about-hero .hv-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(15, 16, 38, 0.1);
  z-index: 1;
  animation: spin-slow 60s linear infinite;
}
.about-hero .hv-ring.r2 {
  inset: 18%;
  border-color: rgba(15, 16, 38, 0.07);
  animation-duration: 90s;
  animation-direction: reverse;
}

.about-hero .av-card {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 2;
  transition: transform 0.4s ease;
}
.about-hero .av-c1 {
  top: 4%;
  left: -2%;
  width: 230px;
  animation: float1 9s ease-in-out infinite;
}
.about-hero .av-c3 {
  top: 22%;
  right: -4%;
  width: 240px;
  animation: float3 10s ease-in-out infinite;
}
.about-hero .av-c4 {
  bottom: 2%;
  right: 6%;
  width: 200px;
  animation: float4 12s ease-in-out infinite;
}
.about-hero .av-c4.is-quote {
  left: 8%;
  right: auto;
  bottom: 14%;
  width: 260px;
}

.about-hero .av-card .av-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.about-hero .av-card .av-t {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}
.about-hero .av-card .av-s {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.about-hero .av-people {
  display: flex;
  align-items: center;
}
.about-hero .av-people .p {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  font-family: var(--font-display);
  margin-left: -8px;
}
.about-hero .av-people .p:first-child {
  margin-left: 0;
}
.about-hero .av-people .p:nth-child(1) {
  background: linear-gradient(135deg, var(--brand-navy), #4849c4);
}
.about-hero .av-people .p:nth-child(2) {
  background: linear-gradient(135deg, var(--brand-green), #6dd29c);
}
.about-hero .av-people .p:nth-child(3) {
  background: linear-gradient(135deg, #2a2ba8, var(--brand-green));
}
.about-hero .av-people .p:nth-child(4) {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
}
.about-hero .av-people .more {
  font-size: 11px;
  color: var(--muted);
  margin-left: 12px;
  font-family: var(--font-mono);
}

.about-hero .av-graph {
  position: relative;
  height: 80px;
  margin-top: 4px;
}
.about-hero .av-graph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-hero .av-c4 .qm {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-2);
  text-wrap: pretty;
}
.about-hero .av-c4 .who {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.about-hero .av-c4 .who .av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .about-hero .hero-visual {
    min-height: 360px;
    aspect-ratio: auto;
    height: 380px;
  }
}
