  :root {
    --navy: #0a1440;
    --navy-deep: #050a24;
    --ink: #0c1024;
    --blue: #3457e6;
    --blue-light: #6c8bff;
    --indigo: #241653;
    --slate: #4b5169;
    --slate-light: #8388a0;
    --line: #e6e7f0;
    --bg-soft: #f6f7fb;
    --white: #ffffff;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: var(--slate); overflow-x: hidden; background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
  a { color: inherit; }
  img { display: block; max-width: 100%; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; color: var(--navy); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
  }
  .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue); }
  .eyebrow.on-dark { color: var(--blue-light); }
  .eyebrow.center { justify-content: center; }
  .eyebrow.center::before { display: none; }

  .section-title { font-size: 40px; text-transform: uppercase; margin-bottom: 20px; }
  .accent-bar { width: 64px; height: 4px; background: linear-gradient(90deg, var(--indigo), var(--blue)); margin: 0 0 24px; }
  .accent-bar.center { margin: 0 auto 24px; }
  .lede { font-size: 17px; color: var(--slate); max-width: 620px; line-height: 1.8; }
  .center-head { text-align: center; }
  .center-head .lede { margin: 0 auto; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--indigo), var(--navy));
    color: white; padding: 15px 34px; font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer; transition: all .25s;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,20,64,0.25); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white;
    padding: 14px 32px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none; transition: all .25s;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
  .link-arrow {
    display: inline-flex; align-items: center; gap: 8px; color: var(--navy);
    font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; border-bottom: 2px solid var(--blue); padding-bottom: 4px; transition: gap .2s;
  }
  .link-arrow:hover { gap: 14px; }

  /* NAV */
  nav {
    background: var(--navy); display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 76px; position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .logo img { height: 44px; width: auto; }
  nav ul { list-style: none; display: flex; align-items: center; gap: 30px; }
  nav ul a {
    color: rgba(255,255,255,0.85); text-decoration: none; font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; position: relative; padding-bottom: 4px; transition: color .2s;
  }
  nav ul a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--blue-light); transition: width .3s;
  }
  nav ul a:hover, nav ul a.active { color: white; }
  nav ul a:hover::after, nav ul a.active::after { width: 100%; }
  .nav-cta {
    background: var(--blue); color: white !important; padding: 10px 22px !important;
    font-weight: 700 !important;
  }
  .nav-cta::after { display: none; }
  .nav-cta:hover { background: var(--blue-light); }
  .nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: white; display: block; }

  /* HERO */
  #home {
    min-height: 660px; display: flex; align-items: center; position: relative; overflow: hidden;
  }
  .hero-video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(180deg, rgba(5,10,36,0.88) 0%, rgba(5,10,36,0.82) 45%, rgba(5,10,36,0.96) 100%),
      linear-gradient(100deg, rgba(5,10,36,0.55) 0%, transparent 55%);
  }
  .hero-content { position: relative; z-index: 3; padding: 110px 0 70px; max-width: 760px; }
  .hero-tag {
    display: flex; align-items: center; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light);
    margin-bottom: 32px;
  }
  .hero-tag::before { content: ''; width: 24px; height: 2px; background: var(--blue-light); margin-right: 12px; }

  /* PAGE HEADER (interior pages) */
  .page-header {
    position: relative; min-height: 280px; display: flex; align-items: center;
    overflow: hidden; background-size: cover; background-position: center;
  }
  .page-header-video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
  }
  .page-header::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(180deg, rgba(5,10,36,0.88) 0%, rgba(5,10,36,0.8) 45%, rgba(5,10,36,0.94) 100%),
      linear-gradient(100deg, rgba(5,10,36,0.5) 0%, transparent 55%);
  }
  .page-header .wrap { position: relative; z-index: 2; }
  .page-header .eyebrow.on-dark { margin-bottom: 12px; }
  .page-header h1 {
    font-size: 46px; color: white; text-transform: uppercase; letter-spacing: -0.5px;
  }
  .hero-content h1 {
    font-size: 72px; font-weight: 800; color: white; line-height: 0.98; margin-bottom: 26px;
    text-transform: uppercase; letter-spacing: -0.5px;
  }
  .hero-content h1 em {
    display: block; font-style: normal;
    background: linear-gradient(90deg, var(--blue-light), #9fb2ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .hero-sub { font-size: 18px; color: rgba(255,255,255,0.68); line-height: 1.8; max-width: 560px; margin-bottom: 40px; }
  .hero-buttons { display: flex; gap: 18px; align-items: center; margin-bottom: 64px; flex-wrap: wrap; }
  .hero-stats { display: flex; gap: 40px; padding-top: 32px; max-width: 680px; }
  .hero-stat { flex: 1; }
  .hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: white; display: block; line-height: 1; margin-bottom: 6px; }
  .hero-stat .label { font-size: 10.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.55); }


  /* FEATURE ROW (image + text alternating) */
  .feature-row { display: flex; align-items: center; gap: 72px; padding: 100px 0; }
  .feature-row.reverse { flex-direction: row-reverse; }
  .feature-media { flex: 0 0 44%; }
  .feature-media img { width: 100%; height: 420px; object-fit: cover; }
  .feature-text { flex: 1; }
  .feature-text p { margin-bottom: 16px; font-size: 16px; }
  .feature-text p:last-of-type { margin-bottom: 28px; }

  /* MISSION / VISION */
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 0 0 100px; }
  .mv-card { padding: 40px; background: var(--bg-soft); }
  .mv-card h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 700; }
  .mv-card p { font-size: 16px; color: var(--slate); }

  /* LEADERSHIP */
  .leadership-head { margin-bottom: 44px; }
  .leader-card {
    display: flex; gap: 34px; padding: 40px 0;
  }
  .avatar {
    flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: 1px;
  }
  .leader-info h4 { font-size: 24px; margin-bottom: 4px; }
  .leader-info .title { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
  .leader-meta { font-size: 13px; color: var(--slate-light); font-weight: 500; margin-bottom: 14px; }
  .leader-info p.bio { font-size: 15px; line-height: 1.8; color: var(--slate); }

  /* SERVICES */
  #services { padding: 110px 0; background: var(--bg-soft); }
  .services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 60px; }
  .service-detail-card { background: white; padding: 40px; box-shadow: 0 2px 14px rgba(10,20,64,0.05); transition: box-shadow .2s, transform .2s; position: relative; }
  .service-detail-card:hover { box-shadow: 0 16px 30px rgba(10,20,64,0.1); transform: translateY(-2px); }
  .service-detail-card.span-2 { grid-column: span 2; }
  .sdc-index { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; color: var(--slate-light); letter-spacing: 1px; margin-bottom: 10px; }
  .sdc-title { font-size: 24px; margin-bottom: 12px; }
  .service-detail-card p { font-size: 14.5px; line-height: 1.8; color: var(--slate); }

  .agency-strip { text-align: center; margin-bottom: 70px; }
  .agency-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light); margin-bottom: 26px; }
  .agency-pills { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
  .agency-pill {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--navy); background: white;
    padding: 12px 22px 12px 16px; border-radius: 3px;
    box-shadow: 0 2px 10px rgba(10,20,64,0.08);
    transition: transform .2s, box-shadow .2s;
  }
  .agency-pill:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(10,20,64,0.15); }
  .agency-pill .badge-icon {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo), var(--blue));
    display: flex; align-items: center; justify-content: center;
  }
  .agency-pill .badge-icon svg { width: 12px; height: 12px; fill: white; }
  .agency-pill.logo-pill { padding: 10px 22px 10px 14px; }
  .agency-pill.logo-pill img { height: 30px; width: 30px; object-fit: contain; flex-shrink: 0; }

  /* CAPABILITY SPLIT */
  .capability-split { display: grid; grid-template-columns: 1.2fr 1fr; background: var(--navy); }
  .capability-panel { padding: 60px; color: white; }
  .capability-panel h3 { color: white; font-size: 30px; text-transform: uppercase; margin-bottom: 30px; }
  .cap-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
  .cap-cols h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 700; }
  .cap-cols ul { list-style: none; }
  .cap-cols ul li { font-size: 13.5px; line-height: 1.7; padding: 7px 0; padding-left: 14px; position: relative; color: rgba(255,255,255,0.85); }
  .cap-cols ul li::before { content: ''; position: absolute; left: 0; top: 15px; width: 5px; height: 5px; background: var(--blue-light); }
  .capability-image { position: relative; }
  .capability-image img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
  .capability-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,64,0.15), rgba(5,10,36,0.65)); }
  .key-info-bar { grid-column: 1 / -1; background: var(--navy-deep); padding: 26px 60px; display: flex; flex-wrap: wrap; gap: 40px; }
  .key-info-bar span { font-size: 13px; color: rgba(255,255,255,0.75); }
  .key-info-bar span strong { display: block; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 4px; }
  .naics-line { grid-column: 1 / -1; background: var(--navy-deep); padding: 0 60px 26px; font-size: 13px; color: rgba(255,255,255,0.65); }
  .naics-line strong { color: white; }

  /* CARD GRID (life / culture / benefits) */
  #life { padding: 110px 0; }
  .life-grid, .culture-grid, .pride-grid, .benefits-grid { display: grid; gap: 24px; }
  .life-grid { grid-template-columns: 1fr 1fr; margin-bottom: 90px; }
  .culture-grid, .pride-grid { grid-template-columns: repeat(3, 1fr); }
  .card-flat { background: var(--bg-soft); padding: 32px; transition: box-shadow .2s, transform .2s; }
  .card-flat:hover { box-shadow: 0 16px 30px rgba(10,20,64,0.08); transform: translateY(-3px); }
  .card-flat h4, .card-flat h5 { font-size: 21px; margin-bottom: 12px; }
  .card-flat p { font-size: 15px; color: var(--slate); }
  .block-head { margin-bottom: 36px; }
  .block-head h3 { font-size: 30px; text-transform: uppercase; }

  .pride-card { background: var(--bg-soft); padding: 32px; }
  .pride-card .num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 800; color: var(--blue); opacity: 0.35; line-height: 1; margin-bottom: 10px; }
  .pride-card p { font-size: 14.5px; color: var(--slate); line-height: 1.8; }

  .giving-section { background: var(--navy); color: white; padding: 56px 60px; margin-bottom: 90px; }
  .giving-section h3 { color: white; font-size: 28px; text-transform: uppercase; margin-bottom: 14px; }
  .giving-section p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 720px; }

  /* BENEFITS */
  #benefits { padding: 110px 0; background: var(--bg-soft); }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-block h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--navy); font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); }
  .benefit-item { display: flex; gap: 10px; padding: 9px 0; font-size: 14px; color: var(--slate); line-height: 1.6; }
  .benefit-item::before { content: '-'; color: var(--blue); font-weight: 700; }

  /* CAREERS */
  #careers { padding: 110px 0; background: var(--navy); }
  .careers-flex { display: flex; align-items: center; gap: 70px; }
  .careers-flex img { width: 46%; height: 380px; object-fit: cover; flex-shrink: 0; }
  .careers-copy h2 { color: white; font-size: 44px; text-transform: uppercase; margin-bottom: 22px; }
  .careers-copy p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 30px; max-width: 460px; }

  /* CONTACT */
  #contact { padding: 110px 0; }
  .contact-info { display: flex; gap: 50px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
  .contact-info-item { font-size: 15px; }
  .ci-label { display: block; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 6px; }
  .contact-form { max-width: 680px; margin: 0 auto; }
  .contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-form input, .contact-form textarea {
    width: 100%; padding: 15px 0; border: none; border-bottom: 1px solid var(--line);
    font-family: 'Inter', sans-serif; font-size: 15px; margin-bottom: 24px; outline: none; transition: border-color .2s; background: transparent;
  }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
  .contact-form textarea { height: 120px; resize: vertical; grid-column: 1 / -1; }
  .contact-form button { margin-top: 8px; }

  /* NEWSLETTER */
  .newsletter { background: var(--bg-soft); padding: 56px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
  .newsletter h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 6px; }
  .newsletter p { font-size: 15px; color: var(--slate); }
  .newsletter-form { display: flex; flex-shrink: 0; }
  .newsletter-form input { padding: 14px 20px; border: 1px solid var(--line); font-size: 14px; width: 280px; outline: none; font-family: 'Inter', sans-serif; }
  .newsletter-form button { background: var(--navy); color: white; padding: 14px 26px; border: none; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }

  /* FOOTER */
  footer { background: var(--navy-deep); color: white; padding: 70px 0 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1.3fr; gap: 50px; margin-bottom: 56px; }
  .footer-logo img { height: 40px; width: auto; margin-bottom: 18px; }
  .footer-about p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
  .footer-links h4, .footer-contact h4, .footer-badges h4 {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--blue-light); text-transform: uppercase; margin-bottom: 22px;
  }
  .footer-links ul { list-style: none; }
  .footer-links li { margin-bottom: 13px; }
  .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-links a:hover { color: white; }
  .footer-contact-item { margin-bottom: 18px; font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
  .footer-contact-item .ci-label { color: var(--blue-light); }
  .badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .badge-chip { background: white; padding: 6px; height: 64px; display: flex; align-items: center; }
  .badge-chip img { height: 100%; width: auto; object-fit: contain; }
  .linkedin-icon {
    width: 34px; height: 34px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; color: white; text-decoration: none; transition: background .2s;
  }
  .linkedin-icon:hover { background: var(--blue); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.45); }
  .footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
  .footer-bottom a:hover { color: white; }

  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .page-header { min-height: 200px; }
    .page-header h1 { font-size: 34px; }
    nav ul {
      display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--navy);
      flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 20px 20px;
      border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    nav ul.open { display: flex; }
    nav ul li { width: 100%; }
    nav ul a { display: block; padding: 14px 0; width: 100%; }
    .nav-cta { display: inline-block; margin-top: 10px; }
    .hero-content h1 { font-size: 44px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat { flex: 1 1 40%; }
    .feature-row, .feature-row.reverse { flex-direction: column; padding: 60px 0; gap: 36px; }
    .feature-media { flex: 1; width: 100%; }
    .feature-media img { height: 280px; }
    .mv-grid, .life-grid, .culture-grid, .pride-grid, .services-detail-grid { grid-template-columns: 1fr; }
    .service-detail-card.span-2 { grid-column: span 1; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .capability-split { grid-template-columns: 1fr; }
    .capability-panel { padding: 40px 24px; }
    .cap-cols { grid-template-columns: 1fr; }
    .key-info-bar, .naics-line { padding-left: 24px; padding-right: 24px; }
    .careers-flex { flex-direction: column; }
    .careers-flex img { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
    .contact-form-row { grid-template-columns: 1fr; }
    #services, #life, #benefits, #careers, #contact { padding: 70px 0; }
    .service-detail-card, .capability-panel { padding: 28px; }
  }
