:root {
  --ink: #101722;
  --muted: #667085;
  --quiet: #eef3f7;
  --line: rgba(20, 32, 45, 0.11);
  --paper: #ffffff;
  --wash: #f7fafc;
  --navy: #071b31;
  --navy-2: #0c2c4f;
  --teal: #08766d;
  --gold: #d6a84d;
  --red: #a63b38;
  --shadow-sm: 0 14px 34px rgba(15, 30, 45, 0.09);
  --shadow-lg: 0 34px 90px rgba(5, 17, 31, 0.22);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(8, 118, 109, 0.08), transparent 30vw),
    linear-gradient(180deg, #fbfdff 0%, #f6f9fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--container));
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 27, 49, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: linear-gradient(135deg, #f2cb72, var(--gold));
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 3px;
}

.nav a {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(18px, calc((100vw - var(--container)) / 2)) 36px;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 252, 0.98));
  pointer-events: none;
}

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

.hero-image {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 950ms ease, transform 6200ms ease;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 15, 29, 0.96) 0%, rgba(5, 20, 36, 0.82) 44%, rgba(5, 20, 36, 0.25) 100%),
    linear-gradient(0deg, rgba(3, 15, 29, 0.72) 0%, rgba(3, 15, 29, 0) 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding-bottom: clamp(28px, 5vh, 62px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #f1cd7a, var(--gold));
  color: #111827;
  box-shadow: 0 18px 46px rgba(214, 168, 77, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-metrics span {
  padding: 17px 18px;
  background: rgba(7, 27, 49, 0.58);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.carousel-controls {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 17, 31, 0.52);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.carousel-arrow,
.carousel-dots button {
  cursor: pointer;
  border: 0;
}

.carousel-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--gold);
  color: #15202f;
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.carousel-dots button.is-active {
  background: var(--gold);
}

.contact-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.contact-panel div {
  padding: 20px;
  background: rgba(7, 27, 49, 0.72);
}

.contact-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel a {
  display: inline-block;
  margin-top: 5px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.intro-band,
.content-section,
.requirements-section,
.leadership-section,
.contact-section,
.split-section {
  padding: clamp(72px, 9vw, 118px) max(18px, calc((100vw - var(--container)) / 2));
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(32px, 5vw, 80px);
  background: var(--wash);
}

.section-heading {
  width: min(900px, 100%);
}

.section-heading.narrow {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.22;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p,
.statement p,
.policy-grid p,
.contact-section p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  background: #fff;
}

.image-block {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.image-block::after {
  content: "Procurement Review";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(5, 17, 31, 0.58);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.statement {
  position: relative;
  padding: clamp(25px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfdfe);
  box-shadow: var(--shadow-sm);
}

.statement::before,
.policy-grid article::before,
.people-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.statement p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

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

.policy-grid article,
.agents-card,
.people-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.policy-grid article {
  padding: 28px;
}

.policy-grid p {
  color: var(--muted);
}

.requirements-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 118, 109, 0.22), transparent 42%),
    linear-gradient(180deg, var(--navy), #061424);
  color: #fff;
}

.requirements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
}

.requirements-section > * {
  position: relative;
}

.requirements-section .section-heading {
  margin-bottom: 32px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: docs;
}

.checklist li {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  counter-increment: docs;
  backdrop-filter: blur(8px);
}

.checklist li::before {
  content: counter(docs, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.functions {
  background: linear-gradient(180deg, #fff, var(--wash));
}

.function-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
}

.function-columns ul,
.agents-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.function-columns ul {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.function-columns li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.function-columns li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(8, 118, 109, 0.1);
}

.leadership-section {
  background:
    linear-gradient(180deg, #f7fafc, #eef4f7);
}

.leadership-section .section-heading {
  margin-bottom: 32px;
}

.people-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.people-layout h3 {
  margin-bottom: 14px;
}

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

.people-grid article {
  padding: 22px;
}

.people-grid strong,
.people-grid span,
.agents-card li {
  display: block;
}

.people-grid strong {
  font-size: 16px;
}

.people-grid span {
  margin-top: 5px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.agents-card {
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.agents-card h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.agents-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.agents-card li:last-child {
  border-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(214, 168, 77, 0.24), transparent 36%),
    linear-gradient(180deg, var(--red), #762321);
  color: #fff;
}

.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

address {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  font-style: normal;
  backdrop-filter: blur(12px);
}

address strong {
  font-size: 18px;
}

address span {
  color: rgba(255, 255, 255, 0.78);
}

address a {
  width: fit-content;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px max(18px, calc((100vw - var(--container)) / 2));
  background: #06111f;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

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

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

  .hero {
    padding-top: 188px;
  }

  .intro-band,
  .split-section,
  .people-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .image-block {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    top: 12px;
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav a {
    min-height: 38px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 230px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .hero-actions,
  .hero-metrics {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .carousel-controls {
    width: 100%;
    justify-content: space-between;
  }

  .carousel-dots button {
    width: 28px;
  }

  .contact-panel,
  .policy-grid,
  .checklist,
  .function-columns,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .checklist li {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
