@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --navy: #0A2647;
  --navy-hover: #0d3363;
  --navy-light: #7FA6D6;
  --brand-blue: #004AAD;
  --brand-charcoal: #2B2B2B;
  --charcoal: #2B2B2B;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --border: #E2E5EA;
  --white: #FFFFFF;
  --bg: #F4F6F9;
  --bg-tint: #F0F1F3;
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s6: 48px; --s8: 64px; --s12: 96px;
  --content-max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 2px; }
.mono { font-family: 'IBM Plex Mono', monospace; }

/* Every section is full-bleed (edge to edge). The .inner div inside it
   is what actually constrains and centers the content. This is what
   removes the "boxed / screenshot" feel of a fixed-width page. */
.inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--s4); width: 100%; }

/* header, full width */
.site-header {
  border-bottom: 1px solid var(--navy);
  background: var(--white);
  width: 100%;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s2); padding-bottom: var(--s2);
  gap: var(--s2);
}
.logo { display: flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; }
.logo img { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.25; min-width: 0; }
.logo-text .name { font-size: 15px; font-weight: 600; white-space: nowrap; }
.logo-text .name .vita { color: var(--brand-blue); }
.logo-text .name .nova { color: var(--brand-charcoal); }
.logo-text .tagline { font-style: italic; font-size: 10.5px; color: var(--grey); white-space: nowrap; margin-top: 1px; }

nav.primary { display: flex; gap: 4px; font-size: 14px; color: var(--grey); }
nav.primary a { text-decoration: none; padding: 8px 12px; }
nav.primary a:hover { color: var(--navy); background: var(--bg-tint); }
nav.primary a.active { color: var(--navy); font-weight: 500; border-bottom: 2px solid var(--brand-blue); }

.header-right { display: flex; align-items: center; gap: var(--s2); }
.cta-outline {
  font-size: 13px; color: var(--navy); font-weight: 500;
  border: 1px solid var(--navy); padding: 9px 18px;
  text-decoration: none; white-space: nowrap; display: inline-block; background: transparent;
  cursor: pointer;
}
.cta-outline:hover { background: var(--navy); color: var(--white); }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--navy); height: 40px;
  align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
  gap: 8px; padding: 0 14px; font-size: 13px; color: var(--navy);
}
.menu-toggle .bars { display: flex; flex-direction: column; gap: 3px; width: 18px; }
.menu-toggle .bars span { display: block; width: 100%; height: 1.5px; background: var(--navy); }

/* scroll reveal: every section fades and lifts in as it enters view */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* full-viewport sections: hero, banners, vision, mission, and the main
   content blocks each take up a full screen as you scroll, like pages
   of their own rather than cramped strips. */
.full-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* hero (home) */
.hero { border-bottom: 1px solid var(--navy); background: var(--navy); padding: var(--s8) 0; }
.eyebrow { font-size: 13px; font-weight: 600; color: var(--navy-light); letter-spacing: 0.22em; margin-bottom: var(--s4); text-align: center; }
h1 {
  font-size: clamp(30px, 5.2vw, 56px); font-weight: 600; color: var(--navy);
  line-height: 1.08; letter-spacing: -0.02em; max-width: 780px; margin-bottom: var(--s4);
}
.hero h1 { color: var(--white); }
.hero-row { display: grid; grid-template-columns: 1fr auto; align-items: flex-end; gap: var(--s4); max-width: 800px; }
.hero-sub { font-size: 17px; color: #D7E2F0; line-height: 1.7; }
.cta-solid {
  font-size: 14px; color: var(--navy); background: var(--white); border: 1px solid var(--white);
  padding: 12px 22px; font-weight: 500; text-decoration: none; white-space: nowrap; display: inline-block;
  cursor: pointer;
}
.cta-solid:hover { background: transparent; color: var(--white); }
.cta-solid.on-light { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-solid.on-light:hover { background: var(--navy-hover); }

/* page banner (inner pages) */
.page-banner { background: var(--navy); border-bottom: 1px solid var(--navy); padding: var(--s8) 0; }
.page-banner .eyebrow { text-align: left; }
.page-banner h1 { color: var(--white); font-size: clamp(28px, 4.5vw, 46px); max-width: 760px; }
.page-banner p { color: #D7E2F0; font-size: 17px; line-height: 1.7; max-width: 640px; margin-top: var(--s3); }

/* strips */
.strip { padding: var(--s3) 0; border-bottom: 1px solid var(--border); width: 100%; }
.strip-label { font-size: 10px; color: var(--grey-light); display: block; margin-bottom: 14px; letter-spacing: 0.05em; }
.strip-items { display: flex; gap: var(--s4) var(--s3); flex-wrap: wrap; font-size: 14px; color: var(--charcoal); align-items: center; }
.strip-items a.more { color: var(--brand-blue); font-weight: 500; text-decoration: none; }

.sectors-strip { padding: var(--s3) 0; border-bottom: 1px solid var(--navy); width: 100%; }
.sectors-strip .strip-items span, .sectors-strip .strip-items a:not(.more) { font-size: 14px; color: var(--charcoal); text-decoration: none; }

/* vision & mission: separated, each its own full section */
.vision-section, .mission-section {
  background: var(--navy); color: var(--white);
  border-bottom: 1px solid var(--navy);
  padding: var(--s8) 0;
}
.vision-section .label, .mission-section .label { font-size: 12px; color: var(--navy-light); letter-spacing: 0.1em; margin-bottom: var(--s3); }
.vision-section h2, .mission-section h2 { color: var(--white); margin-bottom: var(--s3); font-size: clamp(24px, 4vw, 38px); max-width: 780px; }
.vision-section p, .mission-section p { font-size: 17px; line-height: 1.75; color: #D7E2F0; max-width: 640px; }

.stats-row {
  display: flex; flex-wrap: wrap; gap: var(--s6);
  margin-top: var(--s6); padding-top: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; min-width: 140px; }
.stat-num { font-size: clamp(32px, 4.5vw, 48px); font-weight: 600; color: var(--white); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 13px; color: #9FBEE0; max-width: 180px; line-height: 1.5; }
.stat-brand { margin-top: 6px; font-size: 13px; font-weight: 600; }
.stat-brand .vita-l { color: #7FB0FF; }
.stat-brand .nova-l { color: var(--white); }

/* sections */
.section { padding: var(--s8) 0; width: 100%; }
.section-bordered { border-bottom: 1px solid var(--navy); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--s2); flex-wrap: wrap; gap: var(--s1); }
h2 { font-size: clamp(22px, 3.2vw, 30px); font-weight: 600; color: var(--navy); }
h3 { color: var(--navy); }
.section-sub { font-size: 15px; color: var(--grey); max-width: 640px; margin-bottom: var(--s4); line-height: 1.65; }

/* sector insights / cards grid, edge to edge inside the inner container */
.insights, .cap-grid, .sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.insight, .cap-card, .sector-card { background: var(--white); padding: var(--s4); }
.insight .sector-label, .cap-card .cap-label, .sector-card .sector-label {
  font-size: 11px; color: var(--brand-blue); font-weight: 600; letter-spacing: 0.03em; margin-bottom: var(--s2);
}
.insight p, .cap-card p, .sector-card p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.cap-card h3, .sector-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.sector-card .tagline { font-size: 15px; color: var(--brand-blue); font-weight: 500; margin-top: 4px; }

/* method */
.method-bg { background: var(--bg-tint); }
.method-grid { display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: var(--s4); }
.method-items { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6) var(--s6); }
.method-num { font-size: 11px; color: var(--grey-light); }
.method-num.accent { color: var(--brand-blue); }
.method-items h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin: 6px 0 var(--s1); }
.method-items p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* careers */
.careers-grid { display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: var(--s4); }
.careers-cta { margin-top: var(--s3); }

/* about page extras */
.about-block { padding: var(--s8) 0; display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: var(--s4); width: 100%; }
.about-block p { font-size: 16px; line-height: 1.8; color: var(--charcoal); max-width: 660px; }
.about-block p + p { margin-top: var(--s3); }
.origin-card { background: var(--bg-tint); padding: var(--s4); border: 1px solid var(--border); margin-top: var(--s4); max-width: 480px; }
.origin-card .role { font-size: 12px; color: var(--brand-blue); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 4px; }
.origin-card .fname { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.origin-card .fdesc { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* contact page */
.contact-grid { padding: var(--s8) 0; display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: var(--s6); width: 100%; }
.contact-info-item { margin-bottom: var(--s4); }
.contact-info-item .label { font-size: 11px; color: var(--grey-light); letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-item .value { font-size: 16px; color: var(--navy); font-weight: 500; }
.contact-info-item a.value { text-decoration: none; }
.contact-info-item a.value:hover { color: var(--brand-blue); }

form.contact-form { display: flex; flex-direction: column; gap: var(--s3); max-width: 560px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; color: var(--grey); font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  font-family: 'Inter', sans-serif; font-size: 14px; padding: 12px; border: 1px solid var(--border);
  background: var(--white); color: var(--charcoal); border-radius: 0;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--navy); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--grey-light); line-height: 1.6; }
.form-note.is-error { color: #B3261E; }
.submit-row { display: flex; align-items: center; gap: var(--s3); }
button.cta-solid.on-light { border: none; }
button.cta-solid.on-light:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { padding: var(--s4); background: var(--bg-tint); border: 1px solid var(--border); }
.form-success h3 { font-size: 18px; margin-bottom: var(--s1); }
.form-success p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* footer */
.site-footer { background: var(--navy); width: 100%; }
.footer-inner {
  padding-top: var(--s4); padding-bottom: var(--s4);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s3);
}
.footer-left { display: flex; flex-direction: column; gap: 10px; }
.footer-meta { font-size: 13px; color: #A9C0DD; }
.contact-link { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--white); font-size: 14px; }
.footer-brand-right { display: flex; align-items: center; gap: 10px; }
.footer-brand-right img { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.footer-brand-text .name { font-size: 15px; color: var(--white); font-weight: 500; }
.footer-brand-text .tagline { font-style: italic; font-size: 12px; color: #A9C0DD; }

/* mobile */
@media (max-width: 900px) {
  nav.primary { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .cta-outline.desktop-only { display: none; }
  .hero-row, .method-grid, .insights, .cap-grid, .sector-grid, .careers-grid, .about-block, .contact-grid { grid-template-columns: 1fr; }
  .method-items { grid-template-columns: 1fr; }
  .cta-solid { width: 100%; text-align: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-brand-text { text-align: left; }
  nav.primary.open {
    display: flex; flex-direction: column; width: 100%;
    order: 3; padding-top: var(--s2); gap: 0;
    border-top: 1px solid var(--border); margin-top: var(--s2);
  }
  .stats-row { gap: var(--s4); }
  .full-section { min-height: auto; padding-top: var(--s8); padding-bottom: var(--s8); }
}
@media (max-width: 480px) {
  .strip-items { gap: var(--s2); }
}
