:root {
  --navy: #071733;
  --navy-2: #0d2554;
  --ultramarine: #2454ff;
  --ultramarine-2: #1537ad;
  --safety-orange: #ff6a00;
  --safety-orange-2: #c94d00;
  --cool-950: #0a1020;
  --cool-900: #111827;
  --cool-800: #1f2937;
  --cool-700: #374151;
  --cool-600: #4b5563;
  --cool-400: #9ca3af;
  --cool-250: #d7dde8;
  --cool-200: #e5e9f0;
  --cool-100: #f1f4f8;
  --cool-050: #f8fafc;
  --white: #ffffff;
  --focus: #ff8a2a;
  --max-width: 1180px;
  --border: 1px solid rgba(7, 23, 51, 0.14);
  --shadow: 0 28px 70px rgba(7, 23, 51, 0.14);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(36, 84, 255, 0.06) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, rgba(7, 23, 51, 0.05) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--cool-100);
  color: var(--cool-900);
  font-family: var(--font);
  line-height: 1.6;
}

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

a {
  color: var(--ultramarine-2);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--safety-orange-2);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.2rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.status-strip {
  background: var(--safety-orange);
  color: var(--cool-950);
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.72rem 1rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid rgba(7, 23, 51, 0.18);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  color: var(--navy);
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.brand em {
  color: var(--cool-600);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  background: var(--navy);
  color: var(--safety-orange);
  border: 2px solid var(--ultramarine);
  box-shadow: 6px 6px 0 var(--cool-250);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  overflow-x: auto;
  white-space: nowrap;
}

.primary-nav a {
  color: var(--navy);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4.5rem) 1.25rem 4rem;
}

.hero {
  margin-bottom: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(7, 23, 51, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 233, 240, 0.95));
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  min-height: 34rem;
}

.hero-copy {
  padding: clamp(2rem, 6vw, 5rem);
  border-right: 1px solid rgba(7, 23, 51, 0.14);
  background:
    linear-gradient(135deg, rgba(36, 84, 255, 0.12), transparent 44%),
    linear-gradient(90deg, rgba(7, 23, 51, 0.04) 1px, transparent 1px) 0 0 / 38px 38px;
}

.compact-hero {
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, rgba(7, 23, 51, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--white);
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--safety-orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6.6rem);
  max-width: 11ch;
}

.compact-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 7vw, 5rem);
}
.hero:not(.compact-hero) h1 {
  font-size: clamp(2.125rem, 5vw, 4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.hero-lede {
  color: var(--cool-800);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 42rem;
  margin: 1.25rem 0 0;
}

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

.button {
  align-items: center;
  border: 2px solid var(--navy);
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--cool-250);
}

.button-primary {
  background: var(--safety-orange);
  color: var(--cool-950);
}

.button-primary:hover {
  color: var(--cool-950);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.procurement-card {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100%;
}

.procurement-card h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 8ch;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.status-list li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-weight: 700;
}

.status-list li span {
  background: var(--safety-orange);
  border: 2px solid var(--white);
  display: inline-block;
  height: 1rem;
  margin-top: 0.23rem;
  width: 1rem;
}

.numbered-section {
  background: rgba(255, 255, 255, 0.88);
  border: var(--border);
  margin-bottom: 1.25rem;
  padding: clamp(1.35rem, 4vw, 3rem);
}

.gridlines {
  background:
    linear-gradient(90deg, rgba(36, 84, 255, 0.09) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, rgba(7, 23, 51, 0.07) 1px, transparent 1px) 0 0 / 48px 48px,
    rgba(255, 255, 255, 0.92);
}

.section-head {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-number {
  align-items: center;
  background: var(--ultramarine);
  border: 2px solid var(--navy);
  color: var(--white);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 950;
  height: 3.4rem;
  justify-content: center;
  letter-spacing: -0.03em;
  min-width: 3.4rem;
  box-shadow: 5px 5px 0 var(--safety-orange);
}

.two-column {
  columns: 2 19rem;
  column-gap: clamp(1.5rem, 5vw, 4rem);
  color: var(--cool-800);
  font-size: 1.05rem;
}

.two-column p {
  break-inside: avoid;
  margin: 0 0 1rem;
}

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

.capability-card {
  background: var(--cool-050);
  border: 1px solid rgba(7, 23, 51, 0.16);
  border-top: 0.4rem solid var(--ultramarine);
  min-height: 16rem;
  padding: 1.35rem;
}

.capability-card:nth-child(2) {
  border-top-color: var(--safety-orange);
}

.capability-card:nth-child(3) {
  border-top-color: var(--navy);
}

.card-index {
  color: var(--cool-400);
  display: block;
  font-size: 4rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
  margin-bottom: 1.25rem;
}

.capability-card p {
  color: var(--cool-700);
  margin: 1rem 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.process-schematic {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-schematic li {
  background: var(--white);
  border: 1px solid rgba(7, 23, 51, 0.18);
  min-height: 14rem;
  padding: 1.2rem;
  position: relative;
}

.process-schematic li:not(:last-child)::after {
  background: var(--safety-orange);
  content: "";
  height: 0.38rem;
  position: absolute;
  right: -0.5rem;
  top: 2.45rem;
  width: 1rem;
  z-index: 1;
}

.process-node {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 950;
  height: 2.6rem;
  justify-content: center;
  margin-bottom: 1rem;
  outline: 0.28rem solid rgba(36, 84, 255, 0.16);
  width: 2.6rem;
}

.process-schematic strong,
.process-schematic span:last-child {
  display: block;
}

.process-schematic strong {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.15;
}

.process-schematic span:last-child {
  color: var(--cool-700);
  margin-top: 0.65rem;
}

.check-panel {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.check-panel h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.checklist {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checklist li::before {
  background: var(--safety-orange);
  border: 2px solid var(--white);
  color: var(--navy);
  content: "✓";
  display: grid;
  font-size: 0.76rem;
  font-weight: 950;
  height: 1.35rem;
  line-height: 1;
  place-items: center;
  width: 1.35rem;
}

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

.wide-panel {
  grid-column: 1 / -1;
}

.form-section {
  border-top: 0.45rem solid var(--safety-orange);
}

.form-intro,
.assistive-note,
.field-note {
  color: var(--cool-700);
}

.assistive-note,
.field-note {
  font-size: 0.92rem;
}

.enterprise-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 1fr);
  gap: 0.7rem 1rem;
  align-items: center;
}

label,
legend {
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  appearance: none;
  background: var(--white);
  border: 2px solid rgba(7, 23, 51, 0.24);
  border-radius: 0;
  color: var(--cool-950);
  font: inherit;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ultramarine);
  outline: 3px solid rgba(36, 84, 255, 0.2);
}

.field-note {
  grid-column: 2;
  margin: -0.35rem 0 0.2rem;
}

.consent-block {
  background: var(--cool-050);
  border: 1px solid rgba(7, 23, 51, 0.18);
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1rem;
}

.checkbox-line {
  color: var(--cool-800);
  display: grid;
  font-weight: 600;
  grid-template-columns: 1.45rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.checkbox-line input {
  appearance: auto;
  accent-color: var(--ultramarine);
  height: 1.1rem;
  margin-top: 0.2rem;
  min-height: auto;
  padding: 0;
  width: 1.1rem;
}

.form-notice {
  background: rgba(255, 106, 0, 0.14);
  border-left: 0.35rem solid var(--safety-orange);
  color: var(--navy);
  font-weight: 800;
  margin: 0;
  min-height: 2.8rem;
  padding: 0.8rem 1rem;
}

.form-notice[data-state="error"] {
  background: rgba(201, 77, 0, 0.12);
  border-left-color: var(--safety-orange-2);
  color: #8d3200;
}

.form-notice[data-state="success"] {
  background: rgba(36, 84, 255, 0.10);
  border-left-color: var(--ultramarine);
  color: var(--navy);
}

button[disabled] {
  cursor: progress;
  opacity: 0.68;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot input {
  min-height: 0;
  padding: 0;
}

.contact-grid .capability-card {
  min-height: 12rem;
}

.policy-main {
  max-width: 980px;
}

.policy-document {
  display: grid;
  gap: 1rem;
}

.policy-section {
  background: rgba(255, 255, 255, 0.94);
  border: var(--border);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.policy-section h2,
.policy-section p {
  grid-column: 2;
}

.policy-section .section-number {
  grid-row: 1 / span 3;
}

.policy-section p {
  color: var(--cool-800);
  margin: 0;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(14rem, 0.36fr) minmax(0, 0.64fr);
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem) max(1.25rem, calc((100vw - var(--max-width)) / 2 + 1.25rem));
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0.4rem 0 0;
}

.site-footer strong {
  color: var(--white);
}

.footer-verify {
  border-left: 0.35rem solid var(--safety-orange);
  padding-left: 1rem;
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 23, 51, 0.14);
  }

  .capability-grid,
  .process-schematic,
  .two-up {
    grid-template-columns: 1fr;
  }

  .process-schematic li:not(:last-child)::after {
    bottom: -0.5rem;
    height: 1rem;
    left: 2.35rem;
    right: auto;
    top: auto;
    width: 0.38rem;
  }
}

@media (max-width: 520px) {
  body {
    background-size: 44px 44px;
  }

  .status-strip {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .nav-shell,
  main {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .brand {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand em {
    font-size: 0.66rem;
  }

  .brand-mark {
    height: 2.35rem;
    width: 2.35rem;
  }

  .primary-nav a {
    font-size: 0.76rem;
    padding: 0.55rem 0.72rem;
  }

  h1,
  .compact-hero h1 {
    font-size: clamp(2.1rem, 14vw, 3.45rem);
    max-width: 10.5ch;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-copy,
  .compact-hero,
  .numbered-section,
  .policy-section {
    padding: 1.1rem;
  }

  .section-head,
  .policy-section {
    grid-template-columns: 1fr;
  }

  .policy-section h2,
  .policy-section p {
    grid-column: 1;
  }

  .policy-section .section-number {
    grid-row: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-note {
    grid-column: 1;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
