:root {
  /* Edit the brand color system here. Keep contrast high for government and commercial buyers. */
  --bg: #07111f;
  --bg-2: #0b1726;
  --panel: #101c2b;
  --panel-2: #152338;
  --text: #f7fbff;
  --muted: #b9c5d3;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #2f80c8;
  --blue-2: #76c7ff;
  --steel: #9cacbd;
  --gold: #d5a84b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -5rem;
  z-index: 20;
  background: var(--text);
  color: #07111f;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 230px;
}

.brand-logo-wrap {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(213, 168, 75, 0.85);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0e1b2d, #172943);
  flex: 0 0 auto;
}

.brand-logo {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-weight: 800;
  line-height: 1.1;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #0f1c2e;
  color: var(--text);
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: auto;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button,
button.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  background: var(--text);
  color: #07111f;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.button.gold {
  background: var(--gold);
  color: #07111f;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.58) 42%, rgba(7, 17, 31, 0.2)), url("assets/triune-hero.svg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0 8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 1rem;
  max-width: 780px;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 1.25rem;
  color: #d7e0eb;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.credential-strip span {
  background: #0a1524;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
  background: var(--bg);
}

.section.alt {
  background: var(--bg-2);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head p,
.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stat,
.form-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.card {
  padding: 1.35rem;
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p,
.card li {
  color: var(--muted);
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(47, 128, 200, 0.16);
  border: 1px solid rgba(118, 199, 255, 0.28);
  color: var(--blue-2);
  font-weight: 900;
}

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.feature-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  background: #0c1727;
}

.founder-section {
  background:
    linear-gradient(135deg, rgba(47, 128, 200, 0.16), transparent 44%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-container {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.founder-image-wrap {
  display: flex;
  justify-content: center;
}

.founder-image {
  width: min(360px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.founder-tagline {
  margin: 0.75rem 0 1.5rem;
  color: var(--blue-2);
  font-weight: 800;
}

.founder-role {
  margin-top: 0.45rem;
  color: #d7e0eb;
  font-size: 1.08rem;
  font-weight: 800;
}

.founder-body {
  max-width: 760px;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.founder-quote {
  margin: 2rem 0 0;
  padding: 1.55rem 1.7rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.055);
  color: #d7e0eb;
  box-shadow: var(--shadow);
}

.founder-quote p + p {
  margin-top: 0.85rem;
}

.founder-quote strong {
  color: var(--text);
}

.founder-quote footer {
  margin-top: 0.95rem;
  color: #f3d796;
  font-weight: 900;
}

.founder-badges {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.founder-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(118, 199, 255, 0.28);
  background: rgba(47, 128, 200, 0.16);
  color: #d7e0eb;
  font-size: 0.9rem;
  font-weight: 800;
}

.status {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.35rem 0.55rem;
  background: rgba(213, 168, 75, 0.12);
  border: 1px solid rgba(213, 168, 75, 0.4);
  color: #f3d796;
  font-weight: 800;
  font-size: 0.86rem;
}

.list {
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
}

.list li + li {
  margin-top: 0.45rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  padding: 1.25rem;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
}

.page-hero {
  padding: 5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(47, 128, 200, 0.22), transparent 40%),
    linear-gradient(180deg, #081424, #0b1726);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.page-hero .lead {
  max-width: 820px;
}

.naics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.naics div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.9rem;
}

.naics strong {
  color: var(--gold);
  display: block;
}

.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #10233a, #07111f);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.form-panel {
  padding: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #091525;
  color: var(--text);
  padding: 0.85rem;
  border-radius: 0;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--blue-2);
  outline-offset: 2px;
}

.notice {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #050c16;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.35rem;
}

.footer-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #07111f;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.95rem;
  }

  .section-head,
  .feature,
  .founder-container,
  .cta-content,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .founder-container {
    gap: 2.5rem;
    text-align: center;
  }

  .founder-body {
    margin-left: auto;
    margin-right: auto;
  }

  .founder-quote {
    text-align: left;
  }

  .founder-badges {
    justify-content: center;
  }

  .grid.three,
  .grid.four,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-content {
    padding: 4rem 0 5.5rem;
  }

  .credential-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .stats,
  .naics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding: 3.5rem 0;
  }

  .founder-image {
    width: min(260px, 82vw);
  }

  .button {
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand-tagline {
    display: none;
  }
}
