/* =============================================================================
   Aegis Compliance — Atmospherics
   Patriotic energy is HOMEPAGE ONLY. Internal pages stay clean editorial.
   ========================================================================== */

/* Homepage cinematic dark band ("Why Aegis") */
.section--cinematic {
  position: relative;
  background: var(--navy-900);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.section--cinematic h2,
.section--cinematic h3,
.section--cinematic h4 { color: var(--paper); }
.section--cinematic .eyebrow { color: var(--ink-300); }
.section--cinematic p { color: var(--ink-200); }
.section--cinematic .diff-row { border-bottom-color: rgba(250,250,247,0.12); }
.section--cinematic .diff-row__num { color: var(--ink-400); }
.section--cinematic .diff-row__text { color: var(--paper); }
.section--cinematic .diff-row__text em { color: var(--navy-100); }
.section--cinematic .differentiators { border-top-color: rgba(250,250,247,0.18); }

.section--cinematic::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 50% 70% at 20% 30%, rgba(44, 91, 160, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 70%, rgba(107, 31, 43, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0A1A33 0%, #050D1F 100%);
}
.section--cinematic::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 80px,
    rgba(250, 250, 247, 0.02) 80px,
    rgba(250, 250, 247, 0.02) 81px
  );
  pointer-events: none;
}

/* Subtle navy diagonal texture for the homepage capabilities band */
.section--field {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--paper),
      var(--paper) 60px,
      rgba(10, 26, 51, 0.012) 60px,
      rgba(10, 26, 51, 0.012) 61px
    );
}
