:root {
  --ink: #111217;
  --muted: #5f6268;
  --paper: #f6f6f7;
  --white: #ffffff;
  --navy: #070764;
  --navy-2: #111173;
  --brand-blue: #070764;
  --brand-gray: #9b9b99;
  --brand-black: #050505;
  --teal: #070764;
  --teal-soft: #e8e8f2;
  --line: #d9dadd;
  --gold: #9b9b99;
  --shadow: 0 22px 60px rgba(7, 7, 100, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(7, 7, 100, 0.94);
  box-shadow: 0 12px 36px rgba(3, 3, 26, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 7px 12px 7px 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--brand-black);
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand-text small {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--white);
  color: var(--brand-blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 2, 22, 0.94) 0%, rgba(7, 7, 100, 0.78) 42%, rgba(7, 7, 100, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 2, 22, 0.78) 0%, rgba(2, 2, 22, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(36px, 8vh, 82px) clamp(20px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

h4 {
  margin: 26px 0 10px;
  font-size: 0.95rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--brand-blue);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: clamp(32px, 7vh, 64px) 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(3, 3, 32, 0.58);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-weight: 800;
  font-size: 1.18rem;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.87rem;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.intro-band {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.lead-stack {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.inverted {
  color: var(--white);
}

.section-heading.inverted p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(12, 27, 42, 0.05);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 0.82rem;
}

.feature-card p,
.service-card p,
.service-card li,
.process-grid p,
.contact-section p {
  color: var(--muted);
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(155, 155, 153, 0.18), transparent 36%),
    linear-gradient(180deg, var(--navy) 0%, #040438 100%);
  color: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.asset-list,
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.asset-list {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.asset-list ul,
.service-card ul,
.benefits-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.asset-list li,
.service-card li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.asset-list li::before,
.service-card li::before,
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gray);
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  padding: clamp(24px, 4vw, 36px);
}

.service-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.service-card p,
.service-card li {
  color: rgba(255, 255, 255, 0.72);
}

.inventory-section {
  padding-bottom: clamp(56px, 8vw, 88px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.benefits-band {
  background:
    linear-gradient(90deg, rgba(7, 7, 100, 0.08), rgba(155, 155, 153, 0.18)),
    var(--teal-soft);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.benefits-list {
  display: grid;
  gap: 12px;
}

.benefits-list li {
  position: relative;
  min-height: 58px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(7, 7, 100, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.benefits-list li::before {
  left: 20px;
  top: 1.75em;
  background: var(--brand-blue);
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd4d8;
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(7, 7, 100, 0.16);
  border-color: var(--brand-blue);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 8px 8px 0;
  background: var(--paper);
  color: var(--ink);
  font-style: normal;
}

.contact-details strong {
  font-size: 1.02rem;
}

.contact-details a {
  width: fit-content;
  color: var(--brand-blue);
  font-weight: 800;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer {
  background: var(--brand-black);
  color: var(--white);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-layout .brand {
  box-shadow: none;
}

.footer-layout > a:last-child {
  color: var(--brand-gray);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(13, 27, 42, 0.98);
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .two-column,
  .service-layout,
  .benefits-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .asset-list {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    padding: 6px 8px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 2, 22, 0.94) 0%, rgba(7, 7, 100, 0.74) 100%),
      linear-gradient(0deg, rgba(2, 2, 22, 0.84) 0%, rgba(2, 2, 22, 0.08) 55%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto 28px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 14px 16px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .feature-card,
  .process-grid article {
    min-height: auto;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}
