.hero-title {
      letter-spacing: .02em;
      line-height: 1.05;
      text-shadow: 0 6px 30px rgba(124,92,255,.18), 0 1px 0 rgba(255,255,255,.06);
      transform: translateZ(0);
    }
    .hero-sub { color: var(--muted); max-width: 72ch; margin-inline: auto; }
    .cta-band { position: relative; isolation: isolate; }
    .cta-band::after{
      content:"";
      position:absolute; inset:-40px -10%;
      background: radial-gradient(65% 60% at 50% 45%, rgba(124,92,255,.08), transparent 60%);
      filter: blur(20px);
      z-index:-1;
    }
    @media (prefers-reduced-motion:no-preference){
      .hero-wrap { perspective: 800px }
      .hero-title { transition: transform .2s ease; will-change: transform }
    }
    
    .card-glass{
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      box-shadow: 0 8px 18px rgba(0,0,0,.25);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
      backdrop-filter: blur(8px);
    }
    .card-glass:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(0,0,0,.35);
      border-color: rgba(124,92,255,.35);
    }
    .card-glass .card-title{ font-weight: 700; letter-spacing: .02em; }
    
    .btn-accent{
      background: linear-gradient(135deg,#6aa8ff,#7c5cff);
      border: 1px solid rgba(255,255,255,.16);
      color: #eaf0ff;
      box-shadow: 0 6px 24px rgba(124,92,255,.25);
    }
    .btn-accent:hover{ filter: brightness(1.06) }
    .btn-accent:focus-visible{
      outline: 0;
      box-shadow: 0 0 0 3px rgba(124,92,255,.35);
    }
    
    .capabilities-grid{
      display: grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 18px;
      content-visibility: auto;
    }
    .capabilities-grid > article{ grid-column: span 4; }
    @media (max-width: 992px){
      .capabilities-grid > article{ grid-column: span 6 }
    }
    @media (max-width: 600px){
      .capabilities-grid > article{ grid-column: span 12 }
    }
    .cap-card{ padding: 18px }
    .cap-card .thumb{
      aspect-ratio: 16/9;
      border-radius:12px;
      background: #121826;
      display:block;
    }


.about-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
  animation: shimmer 20s linear infinite;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0.4;
}

@keyframes shimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  max-width: 950px;
  width: 100%;
  box-shadow: 0 0 25px rgba(100, 130, 255, 0.05);
  backdrop-filter: blur(6px);
  color: #fff;
  position: relative;
  z-index: 2;
}


.glow-title {
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.glow-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(150,180,255,0), rgba(150,180,255,0.5), rgba(150,180,255,0));
  transform: translateX(-50%);
  animation: glowline 2.5s ease-in-out 0.5s forwards;
}

@keyframes glowline {
  0% { width: 0%; opacity: 0; }
  50% { width: 60%; opacity: 1; }
  100% { width: 40%; opacity: 0.7; }
}


.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.2s; }
.delay-4 { animation-delay: 1.6s; }
.delay-5 { animation-delay: 2.0s; }
.delay-6 { animation-delay: 2.4s; }

.about-content h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  color: #d0d4ff;
  transition: color 0.3s ease;
}

.about-content h4:hover {
  color: #a3b8ff;
}

.about-content p {
  line-height: 1.7;
  max-width: 850px;
  margin-bottom: 1.5rem;
}


.about-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px rgba(120,150,255,0.05);
}

.about-btn:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(140,170,255,0.25);
}


@media (max-width: 768px) {
  .about-inner {
    padding: 2rem 1.4rem;
  }
}
