:root {
  --blue: #0d4fb3;
  --blue2: #1866dc;
  --ink: #101318;
  --navy: #071727;
  --muted: #5f6875;
  --line: #dde3ea;
  --white: #fff;
  --max: 1380px;
  --header-offset: 120px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
main[id],
section[id],
[id].band,
[id].contact,
[id].services {
  scroll-margin-top: var(--header-offset);
}
.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #edf0f4;
}
.nav-wrap {
  height: 104px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  display: flex;
  align-items: center;
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -9px;
}
.brand-mark .b {
  color: #0b0d10;
}
.brand-mark .c {
  color: var(--blue);
  margin-left: 7px;
}
.brand-name {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-left: 5px;
  margin-top: 2px;
}
.brand-name strong {
  color: var(--blue);
}
.nav {
  display: flex;
  gap: 44px;
  margin-left: auto;
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 43px 0 35px;
  border-bottom: 3px solid transparent;
}
.nav a:hover,
.nav a.active {
  color: var(--blue);
  border-color: var(--blue);
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  background: linear-gradient(135deg, #0c3e8f, #0d58ca);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: 0.2s ease;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 79, 179, 0.22);
}
.top-cta {
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
}
.hero {
  background: #061220;
  overflow: hidden;
}
.hero img {
  display: block;
  width: 100%;
  height: auto;
}
.section {
  padding: 58px 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading.compact {
  margin-bottom: 30px;
}
.eyebrow {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.eyebrow.light {
  color: #6aa6ff;
}
.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.heading-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin: 14px auto 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.service-card {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.service-card:last-child {
  border-right: 0;
}
.icon {
  color: var(--blue);
  font-size: 50px;
  line-height: 1;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h2 {
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 15px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
.band {
  padding: 58px 0;
  background:
    radial-gradient(
      circle at 75% 0%,
      rgba(30, 102, 220, 0.23),
      transparent 35%
    ),
    linear-gradient(135deg, #06111e, #0a2138);
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.split h2 {
  font-size: 34px;
  line-height: 1.08;
  margin: 0;
  max-width: 500px;
}
.split p {
  margin: 0;
  color: #d7e0eb;
  line-height: 1.8;
  font-size: 16px;
}
.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pill-grid div {
  border: 1px solid var(--line);
  padding: 24px 28px;
  font-weight: 800;
  text-align: center;
  background: #fafbfd;
}
.contact {
  background: #f4f7fb;
}
.contact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact h2 {
  font-size: 44px;
  margin: 0 0 6px;
}
.contact p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.site-footer {
  background: #07111d;
  color: #fff;
  padding: 32px 0;
}
.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}
.footer-brand .brand-mark {
  font-size: 44px;
}
.light-mark .b {
  color: #fff;
}
.footer-brand .brand-name {
  color: #fff;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 800;
}
.footer-links a:hover {
  color: #6aa6ff;
}
.copyright {
  font-size: 11px;
  color: #a9b5c2;
}
@media (max-width: 1100px) {
  .nav {
    gap: 24px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }
  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
  .service-card:last-child {
    grid-column: 1/-1;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 820px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .nav-wrap {
    height: 82px;
  }
  .brand-mark {
    font-size: 43px;
  }
  .top-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 8px 24px 18px;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:last-child {
    grid-column: auto;
  }
  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    margin: auto;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .section {
    padding: 44px 0;
  }
  .section-heading h1,
  .section-heading h2 {
    font-size: 27px;
  }
  .pill-grid {
    grid-template-columns: 1fr;
  }
  .contact h2 {
    font-size: 38px;
  }
}
