
:root {
  --navy-950: #06152a;
  --navy-900: #071a33;
  --navy-800: #0c2a4a;
  --navy-700: #143d64;
  --blue-500: #53758f;
  --steel: #7a858d;
  --gold: #c6a15b;
  --gold-light: #e2c98f;
  --ink: #182431;
  --muted: #607080;
  --line: #dce3e9;
  --surface: #f4f7f9;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 18px 45px rgba(7, 26, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.15;
  margin-top: 0;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.035em; }
h3 { font-size: 1.2rem; }
p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 105px 0; }
.section-tint { background: var(--surface); }
.section-label, .eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-label.light { color: var(--gold-light); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.centered { text-align: center; margin-inline: auto; }
.body-copy { color: var(--muted); font-size: 1.04rem; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-900);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(220,227,233,.8);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(6,21,42,.08); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 210px; text-decoration: none; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav a {
  color: var(--navy-900);
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--gold); }
.primary-nav .nav-cta {
  padding: 13px 18px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 4px;
}
.primary-nav .nav-cta:hover { color: var(--white); background: var(--navy-700); }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 28px; height: 2px; margin: 6px 0; background: var(--navy-900); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.hero {
  min-height: 860px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5,19,38,.96) 0%, rgba(5,19,38,.87) 42%, rgba(5,19,38,.36) 100%),
    url("../images/hero-port.svg") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to top, rgba(6,21,42,.28), transparent);
}
.hero-content { position: relative; z-index: 2; padding-top: 95px; }
.hero h1 { max-width: 930px; margin-bottom: 25px; }
.hero-copy { max-width: 760px; color: rgba(255,255,255,.84); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.button-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button-light { color: var(--navy-950); background: var(--white); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 62px;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-proof span:not(:last-child)::after { content: "•"; margin-left: 34px; color: var(--gold); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: start; }
.intro h2 { max-width: 650px; }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 285px;
  padding: 37px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(7,26,51,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: #c5d0d9; box-shadow: var(--shadow); }
.card-number {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-family: "Montserrat";
  font-weight: 800;
}
.service-card h3 { color: var(--navy-900); font-size: 1.35rem; }
.service-card p { color: var(--muted); }
.service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 115px;
  height: 115px;
  border: 18px solid rgba(198,161,91,.11);
  border-radius: 50%;
}

.process-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; }
.process-step {
  min-height: 245px;
  padding: 30px 25px;
  border-top: 4px solid var(--gold);
  background: var(--surface);
}
.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-weight: 800;
}
.process-step p { color: var(--muted); font-size: .94rem; }
.flow-arrow { color: var(--gold); font-size: 1.8rem; }

.federal-focus { padding-top: 20px; }
.focus-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 65px;
  align-items: center;
  padding: 72px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}
.focus-panel h2 { margin-bottom: 0; }
.focus-panel p:last-child { margin: 0; color: rgba(255,255,255,.78); font-size: 1.06rem; }

.partner-layout { align-items: center; }
.partner-box {
  padding: 42px;
  border-left: 5px solid var(--gold);
  background: var(--surface);
}
.partner-box p, .partner-box small { color: var(--muted); }
.partner-box small { display: block; margin-top: 15px; font-size: .78rem; }

.cta { color: var(--white); background: linear-gradient(125deg, var(--navy-950), var(--navy-700)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { max-width: 830px; margin-bottom: 0; }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.72); background: #041020; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.footer-brand img { width: 260px; padding: 12px; background: var(--white); }
.footer-brand p { margin-top: 20px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer h2 { color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .75rem;
}

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .menu-button { display: block; }
  .primary-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 20px 25px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 4px; }
  .primary-nav .nav-cta { margin-top: 8px; text-align: center; }
  .split, .focus-panel { grid-template-columns: 1fr; gap: 32px; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .flow-arrow { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 170px; }
  .primary-nav { top: 76px; }
  .hero { min-height: 790px; background-position: 60% center; }
  .hero-content { padding-top: 78px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-proof { display: grid; gap: 8px; }
  .hero-proof span::after { display: none; }
  .card-grid, .process-flow { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .focus-panel { padding: 42px 28px; }
  .cta-inner { display: grid; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { display: grid; gap: 5px; }
}
