/* Smooth anchor offset if you use a sticky navbar */
:root { scroll-padding-top: 80px; }

#mission .lead { line-height: 1.6; }

/* Card base */
.cap-card {
  position: relative;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: rgba(13,110,253,.25);
}

/* Background images (replace URLs with your generated assets) */
.cap-bg-autonomous  { background-image: url('images/bg-integration.jpg'); }
.cap-bg-integration { background-image: url('images/bg-integration.jpg'); }
.cap-bg-security    { background-image: url('images/bg-security.jpg'); }
.cap-bg-overwatch   { background-image: url('images/bg-overwatch.jpg'); }

/* Make BGs subtle & readable */
.cap-bg-autonomous,
.cap-bg-integration,
.cap-bg-security,
.cap-bg-overwatch {
  background-size: cover;
  background-position: center;
}
.cap-bg-autonomous::before,
.cap-bg-integration::before,
.cap-bg-security::before,
.cap-bg-overwatch::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.92));
}
.cap-card > * { position: relative; z-index: 1; }
