:root {
  --navy-950: #061421;
  --navy-900: #081d30;
  --navy-800: #0d2a43;
  --navy-700: #174564;
  --blue: #146b8c;
  --teal: #188a90;
  --teal-pale: #dceff0;
  --gold: #e0ab42;
  --gold-light: #f0ca72;
  --ink: #13202a;
  --slate: #566875;
  --muted: #7f8f99;
  --line: #d7dfe1;
  --paper: #f4f5f1;
  --paper-warm: #f3efe5;
  --white: #fff;
  --font:
    "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 16px 45px rgba(7, 29, 48, 0.1);
  --shadow-lg: 0 35px 100px rgba(7, 29, 48, 0.2);
  --shell: 1280px;
  --section-space: clamp(88px, 9vw, 142px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

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

h1,
h2,
h3 {
  margin-bottom: 20px;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1;
}

h2 {
  font-size: clamp(39px, 4.5vw, 66px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.15;
}

p {
  color: var(--slate);
}

::selection {
  color: var(--navy-950);
  background: var(--gold-light);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--gold-light);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 20, 33, 0.86);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(6, 20, 33, 0.96);
  box-shadow: 0 12px 36px rgba(3, 16, 27, 0.2);
}

.brand {
  display: block;
  width: min(270px, 31vw);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.site-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: clamp(22px, 3vw, 46px);
}

.nav-links {
  gap: clamp(17px, 2vw, 30px);
}

.nav-links button,
.footer-nav button {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 150ms ease;
}

.nav-links button:hover,
.nav-links button.is-active,
.footer-nav button:hover {
  color: var(--white);
}

.header-cta {
  padding: 13px 20px;
  color: var(--navy-950);
  background: var(--gold);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.site-header.nav-active .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-active .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.page-panel {
  min-height: 100vh;
}

.page-panel[hidden] {
  display: none;
}

.section {
  position: relative;
  padding: var(--section-space) clamp(22px, 4.8vw, 74px);
}

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

.section-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-light);
}

.section-lede {
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.55;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading > p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  font-size: 18px;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 15px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold);
}

.button--gold:hover {
  background: var(--gold-light);
}

.button--glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.14);
}

.button--navy {
  width: 100%;
  color: var(--white);
  background: var(--navy-900);
}

.button--navy:hover {
  background: var(--navy-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--navy-800);
  background: transparent;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}

.text-link--light {
  color: var(--white);
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.56;
}

.home-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media--truck {
  top: 0;
  right: 26%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.home-hero__media--truck img {
  object-position: 68% center;
}

.home-hero__media--work {
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 56%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 36%,
    rgba(0, 0, 0, 0.14) 43%,
    rgba(0, 0, 0, 0.7) 55%,
    #000 65%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 36%,
    rgba(0, 0, 0, 0.14) 43%,
    rgba(0, 0, 0, 0.7) 55%,
    #000 65%
  );
}

.home-hero__media--work img {
  object-position: 58% center;
}

.home-hero__media--work::before {
  content: none;
}

.home-hero__wash {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 30, 0.96) 0%, rgba(5, 18, 30, 0.78) 38%, rgba(5, 18, 30, 0.34) 70%, rgba(5, 18, 30, 0.6) 100%),
    linear-gradient(0deg, rgba(5, 18, 30, 0.72) 0%, transparent 42%);
}

.home-hero__content {
  position: relative;
  z-index: 4;
  width: min(950px, calc(100% - 44px));
  padding: clamp(190px, 20vh, 240px) 0 190px clamp(28px, 6.8vw, 108px);
}

.home-hero__content h1 {
  max-width: 930px;
  margin-bottom: 27px;
  color: var(--white);
}

.home-hero__statement {
  position: absolute;
  z-index: 5;
  right: clamp(26px, 5vw, 78px);
  bottom: 42px;
  width: min(390px, calc(100% - 52px));
  padding: 24px 26px;
  border-top: 2px solid var(--gold);
  background: rgba(6, 20, 33, 0.76);
  backdrop-filter: blur(15px);
}

.home-hero__statement span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__statement strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.home-hero__statement p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--navy-950);
  background: var(--gold);
}

.fact-bar > div {
  min-height: 122px;
  padding: 28px clamp(20px, 3vw, 46px);
  border-right: 1px solid rgba(7, 29, 48, 0.2);
}

.fact-bar > div:last-child {
  border-right: 0;
}

.fact-bar span,
.fact-bar strong {
  display: block;
}

.fact-bar span {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-bar strong {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.32;
}

.fact-bar--dark {
  color: var(--white);
  background: var(--navy-800);
}

.fact-bar--dark > div {
  border-color: rgba(255, 255, 255, 0.12);
}

.fact-bar--dark span {
  color: var(--gold-light);
}

.producer-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(24, 138, 144, 0.12), transparent 34%),
    var(--paper);
}

.producer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
}

.producer-copy p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.producer-copy p:last-child strong {
  color: var(--ink);
}

.relationship-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
  box-shadow: var(--shadow-lg);
}

.relationship-map::before,
.relationship-map::after {
  position: absolute;
  z-index: 2;
  background: var(--gold);
  content: "";
}

.relationship-map::before {
  top: 50%;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
}

.relationship-map::after {
  top: -20px;
  left: 50%;
  width: 1px;
  height: calc(100% + 40px);
}

.relationship-map article {
  position: relative;
  z-index: 3;
  min-height: 250px;
  padding: 35px;
  background: var(--white);
}

.relationship-map article:nth-of-type(odd) {
  padding-right: 78px;
}

.relationship-map article:nth-of-type(even) {
  padding-left: 78px;
}

.relationship-map article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.relationship-map article h3 {
  font-size: 23px;
}

.relationship-map article p {
  margin-bottom: 0;
  font-size: 14px;
}

.relationship-map__center {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 142px;
  padding: 17px 13px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 15px 40px rgba(6, 20, 33, 0.27);
  text-align: center;
  transform: translate(-50%, -50%);
}

.relationship-map__center span,
.relationship-map__center strong {
  display: block;
}

.relationship-map__center span {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.relationship-map__center strong {
  font-size: 13px;
  line-height: 1.25;
}

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

.specialty-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.specialty-card > img,
.specialty-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.specialty-card > img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.specialty-card:hover > img {
  transform: scale(1.025);
}

.specialty-card__overlay {
  background: linear-gradient(0deg, rgba(5, 18, 30, 0.96) 0%, rgba(5, 18, 30, 0.18) 72%);
}

.specialty-card--wc > img {
  object-position: center;
}

.specialty-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(30px, 4vw, 56px);
}

.specialty-card h3 {
  max-width: 590px;
  color: var(--white);
  font-size: clamp(31px, 3.2vw, 47px);
}

.specialty-card p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
}

.service-manifesto {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-950);
  background-size: 58px 58px;
}

.service-manifesto::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(224, 171, 66, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(224, 171, 66, 0.04),
    0 0 0 150px rgba(224, 171, 66, 0.025);
  content: "";
}

.service-manifesto__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(44px, 7vw, 110px);
}

.service-manifesto__headline h2 {
  max-width: 760px;
  color: var(--white);
}

.service-manifesto__copy {
  padding-top: 37px;
}

.service-manifesto__copy p {
  color: rgba(255, 255, 255, 0.64);
}

.service-manifesto__copy .service-lead {
  color: var(--white);
  font-size: 21px;
}

.service-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.service-principles article {
  min-height: 245px;
  padding: 34px 30px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.service-principles article:last-child {
  border-right: 0;
}

.service-principles span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.service-principles h3 {
  color: var(--white);
  font-size: 23px;
}

.service-principles p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.about-layout {
  display: block;
  width: min(100%, 1080px);
}

.about-copy > p:not(.eyebrow) {
  max-width: 920px;
}

.about-copy h2 {
  max-width: 1040px;
}

.license-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}

.license-card > div {
  padding: 24px;
  background: var(--paper);
}

.license-card span,
.license-card strong {
  display: block;
}

.license-card span {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.license-card strong {
  font-size: 15px;
  line-height: 1.45;
}

.path-section {
  color: var(--white);
  background: var(--navy-800);
}

.path-heading {
  max-width: 770px;
  margin-bottom: 52px;
}

.path-heading h2,
.path-heading p {
  color: var(--white);
}

.path-heading p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

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

.path-card {
  min-height: 290px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  cursor: pointer;
  transition:
    background 170ms ease,
    transform 170ms ease,
    border-color 170ms ease;
}

.path-card:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.path-card span,
.path-card strong,
.path-card em {
  display: block;
}

.path-card span {
  margin-bottom: 45px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card strong {
  max-width: 500px;
  margin-bottom: 34px;
  font-size: clamp(25px, 2.6vw, 37px);
  line-height: 1.2;
}

.path-card em {
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
}

.lob-hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.lob-hero > img,
.lob-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lob-hero > img {
  object-fit: cover;
}

.lob-hero--trucking > img {
  object-position: center;
}

.lob-hero--wc > img {
  object-position: center;
}

.lob-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 30, 0.94) 0%, rgba(5, 18, 30, 0.68) 48%, rgba(5, 18, 30, 0.1) 85%),
    linear-gradient(0deg, rgba(5, 18, 30, 0.65) 0%, transparent 38%);
}

.lob-hero__content {
  position: relative;
  z-index: 2;
  width: min(930px, calc(100% - 44px));
  padding: clamp(185px, 19vh, 225px) 0 155px clamp(28px, 6.8vw, 108px);
}

.lob-hero__content h1 {
  max-width: 880px;
  color: var(--white);
}

.lob-hero__note {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4.8vw, 74px);
  bottom: 34px;
  width: min(400px, calc(100% - 48px));
  padding: 22px 25px;
  border-left: 3px solid var(--gold);
  background: rgba(6, 20, 33, 0.78);
  backdrop-filter: blur(12px);
}

.lob-hero__note span,
.lob-hero__note strong {
  display: block;
}

.lob-hero__note span {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lob-hero__note strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.trucking-specialist {
  background:
    linear-gradient(120deg, rgba(24, 138, 144, 0.07), transparent 40%),
    var(--paper);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  column-gap: clamp(50px, 8vw, 120px);
  margin-bottom: clamp(58px, 7vw, 94px);
}

.editorial-intro .eyebrow {
  grid-column: 1 / -1;
}

.editorial-intro h2 {
  margin-bottom: 0;
}

.editorial-intro .section-lede {
  align-self: end;
  margin-bottom: 4px;
}

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

.knowledge-card {
  min-height: 300px;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.knowledge-card__number {
  display: block;
  margin-bottom: 58px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.knowledge-card h3 {
  font-size: 24px;
}

.knowledge-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(54px, 8vw, 122px);
  align-items: start;
}

.operator-copy {
  position: sticky;
  top: 120px;
}

.operator-copy p:last-child {
  margin-bottom: 0;
}

.operator-profiles {
  border-top: 1px solid var(--line);
}

.operator-profiles article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.operator-profiles article > span {
  padding-top: 6px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.operator-profiles h3 {
  grid-column: 2;
  margin-bottom: 10px;
}

.operator-profiles p {
  grid-column: 2;
  margin-bottom: 0;
}

.trucking-service {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(24, 138, 144, 0.27), transparent 32%),
    var(--navy-950);
}

.service-scenarios {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.service-scenarios article {
  min-height: 330px;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(6, 20, 33, 0.9);
}

.service-scenarios span {
  display: block;
  margin-bottom: 80px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-scenarios h3 {
  color: var(--white);
  font-size: 24px;
}

.service-scenarios p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

.coverage-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  min-height: 225px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.coverage-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.coverage-card h3 {
  font-size: 22px;
}

.coverage-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.relationship-start {
  color: var(--white);
  background: var(--navy-800);
}

.relationship-start__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(54px, 8vw, 120px);
}

.relationship-start__copy h2 {
  color: var(--white);
}

.relationship-start__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.relationship-start__steps li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.relationship-start__steps li > span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.relationship-start__steps h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 23px;
}

.relationship-start__steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(55px, 8vw, 122px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-points {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.contact-points li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(24, 138, 144, 0.12);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note.is-prepared {
  color: var(--teal);
  font-weight: 700;
}

.faq-section {
  color: var(--white);
  background: var(--navy-900);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(560px, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  color: var(--white);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 29px 55px 29px 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 28px;
  right: 2px;
  color: var(--gold-light);
  content: "+";
  font-size: 25px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 730px;
  padding: 0 55px 28px 0;
  color: rgba(255, 255, 255, 0.62);
}

.wc-story {
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 171, 66, 0.11), transparent 35%),
    var(--paper);
}

.wc-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(570px, 1.25fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: center;
}

.wc-story__copy p:last-child {
  margin-bottom: 0;
}

.workforce-picture {
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.workforce-picture__header {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.workforce-picture__header span,
.workforce-picture__header strong {
  display: block;
}

.workforce-picture__header span {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workforce-picture__header strong {
  font-size: 22px;
}

.workforce-picture__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workforce-picture__grid article {
  min-height: 135px;
  padding: 25px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.workforce-picture__grid article:nth-child(even) {
  border-right: 0;
}

.workforce-picture__grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.workforce-picture__grid span,
.workforce-picture__grid strong {
  display: block;
}

.workforce-picture__grid span {
  margin-bottom: 24px;
  color: var(--teal-pale);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.workforce-picture__grid strong {
  font-size: 16px;
  line-height: 1.4;
}

.workforce-picture__foot {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

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

.wc-life-grid article {
  min-height: 340px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wc-life-grid__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 68px;
}

.wc-life-grid__top span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wc-life-grid__top strong {
  color: var(--gold);
  font-size: 13px;
}

.wc-life-grid h3 {
  max-width: 490px;
}

.wc-life-grid p {
  max-width: 530px;
  margin-bottom: 0;
}

.industry-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(24, 138, 144, 0.3), transparent 44%),
    var(--navy-950);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.industry-copy h2 {
  color: var(--white);
}

.industry-copy p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-list span {
  min-height: 110px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 18px;
  font-weight: 650;
}

.connected-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.connected-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
  min-height: 420px;
  align-items: center;
}

.connected-visual > article {
  position: relative;
  z-index: 2;
  min-height: 245px;
  padding: 36px 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.connected-visual > article img {
  width: 70px;
  height: 70px;
  margin-bottom: 34px;
  object-fit: contain;
}

.connected-visual > article span,
.connected-visual > article strong {
  display: block;
}

.connected-visual > article span {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connected-visual > article strong {
  font-size: 18px;
  line-height: 1.4;
}

.connected-visual__center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 20px;
  border: 6px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transform: translate(-50%, -50%);
}

.connected-visual__center img {
  width: 40px;
  margin-bottom: 5px;
}

.connected-visual__center strong {
  font-size: 12px;
  line-height: 1.25;
}

.connected-visual__line {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 14%;
  left: 14%;
  height: 2px;
  background: var(--gold);
}

.connected-copy .text-link {
  margin-top: 12px;
}

.wc-review {
  color: var(--white);
  background: var(--teal);
}

.wc-review__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(54px, 8vw, 120px);
}

.wc-review__copy h2 {
  color: var(--white);
}

.wc-review__copy p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.wc-review__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.wc-review__steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.wc-review__steps li > span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.wc-review__steps h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 23px;
}

.wc-review__steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  color: var(--white);
  background: #040e18;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(160px, 0.45fr) minmax(330px, 0.75fr);
  gap: clamp(42px, 7vw, 100px);
  padding: 78px clamp(24px, 5vw, 78px) 58px;
}

.footer-brand img {
  width: min(330px, 100%);
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-nav,
.footer-license {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav > span,
.footer-license > span {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav button {
  justify-self: start;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-align: left;
}

.footer-license p {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.footer-license strong {
  color: rgba(255, 255, 255, 0.86);
}

.footer-disclosure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 28px clamp(24px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-disclosure p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px clamp(24px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --section-space: 96px;
  }

  .site-header {
    padding-inline: 24px;
  }

  .site-nav {
    gap: 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links button {
    font-size: 13px;
  }

  .producer-layout,
  .wc-story__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: 55px;
  }

  .relationship-map article {
    min-height: 230px;
    padding: 28px;
  }

  .relationship-map article:nth-of-type(odd) {
    padding-right: 67px;
  }

  .relationship-map article:nth-of-type(even) {
    padding-left: 67px;
  }

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

  .service-principles article:nth-child(2) {
    border-right: 0;
  }

  .service-principles article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .operator-layout,
  .contact-layout,
  .faq-layout,
  .relationship-start__layout,
  .wc-review__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: 54px;
  }

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

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

  .connected-layout {
    grid-template-columns: minmax(500px, 1fr) minmax(0, 0.9fr);
    gap: 58px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    width: 245px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 35px;
    padding: 48px 28px;
    background: var(--navy-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 2px;
  }

  .nav-links button {
    padding: 13px 0;
    color: var(--white);
    font-size: 25px;
    font-weight: 650;
    text-align: left;
  }

  .header-cta {
    justify-self: start;
    padding: 16px 22px;
  }

  .home-hero,
  .lob-hero {
    min-height: 780px;
  }

  .home-hero__content,
  .lob-hero__content {
    padding-left: 38px;
  }

  .home-hero__statement,
  .lob-hero__note {
    right: 28px;
  }

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

  .fact-bar > div:nth-child(2) {
    border-right: 0;
  }

  .fact-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 29, 48, 0.2);
  }

  .fact-bar--dark > div:nth-child(-n + 2) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .producer-layout,
  .service-manifesto__layout,
  .about-layout,
  .operator-layout,
  .contact-layout,
  .faq-layout,
  .wc-story__layout,
  .industry-layout,
  .connected-layout,
  .relationship-start__layout,
  .wc-review__layout {
    grid-template-columns: 1fr;
  }

  .producer-layout,
  .service-manifesto__layout,
  .about-layout,
  .operator-layout,
  .contact-layout,
  .faq-layout,
  .wc-story__layout,
  .industry-layout,
  .connected-layout,
  .relationship-start__layout,
  .wc-review__layout {
    gap: 55px;
  }

  .operator-copy,
  .contact-copy,
  .faq-heading {
    position: static;
  }

  .specialty-card {
    min-height: 540px;
  }

  .editorial-intro {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

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

  .connected-visual {
    width: min(650px, 100%);
  }

  .footer-main {
    grid-template-columns: 1fr 0.45fr;
  }

  .footer-license {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 76px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 64px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  h3 {
    font-size: 23px;
  }

  .section {
    padding-inline: 21px;
  }

  .brand {
    width: 222px;
  }

  .home-hero {
    min-height: 850px;
  }

  .home-hero__media--truck {
    right: 0;
  }

  .home-hero__media--work {
    display: none;
  }

  .home-hero__wash {
    background:
      linear-gradient(90deg, rgba(5, 18, 30, 0.94), rgba(5, 18, 30, 0.48)),
      linear-gradient(0deg, rgba(5, 18, 30, 0.82), transparent 48%);
  }

  .home-hero__content,
  .lob-hero__content {
    width: 100%;
    padding: 154px 21px 225px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

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

  .home-hero__statement,
  .lob-hero__note {
    right: 21px;
    bottom: 24px;
    left: 21px;
    width: auto;
  }

  .lob-hero {
    min-height: 860px;
  }

  .lob-hero__overlay {
    background:
      linear-gradient(90deg, rgba(5, 18, 30, 0.92), rgba(5, 18, 30, 0.35)),
      linear-gradient(0deg, rgba(5, 18, 30, 0.82), transparent 45%);
  }

  .fact-bar {
    grid-template-columns: 1fr;
  }

  .fact-bar > div,
  .fact-bar > div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 29, 48, 0.2);
  }

  .fact-bar > div:last-child {
    border-bottom: 0;
  }

  .fact-bar--dark > div,
  .fact-bar--dark > div:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .relationship-map,
  .specialty-grid,
  .path-grid,
  .knowledge-grid,
  .service-scenarios,
  .coverage-grid,
  .wc-life-grid,
  .industry-list,
  .footer-disclosure {
    grid-template-columns: 1fr;
  }

  .relationship-map::before,
  .relationship-map::after,
  .relationship-map__center {
    display: none;
  }

  .relationship-map article {
    min-height: auto;
  }

  .relationship-map article:nth-of-type(odd),
  .relationship-map article:nth-of-type(even) {
    padding: 28px;
  }

  .relationship-map article > span {
    margin-bottom: 25px;
  }

  .specialty-card {
    min-height: 540px;
  }

  .service-manifesto__copy {
    padding-top: 0;
  }

  .service-principles {
    grid-template-columns: 1fr;
  }

  .service-principles article,
  .service-principles article:nth-child(2) {
    min-height: auto;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .service-principles article:last-child {
    border-bottom: 0;
  }

  .service-principles span {
    margin-bottom: 25px;
  }

  .license-card,
  .form-row,
  .workforce-picture__grid {
    grid-template-columns: 1fr;
  }

  .license-card > div {
    padding: 20px;
  }

  .editorial-intro {
    margin-bottom: 52px;
  }

  .knowledge-card {
    min-height: auto;
  }

  .knowledge-card__number {
    margin-bottom: 36px;
  }

  .operator-profiles article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .operator-profiles h3,
  .operator-profiles p {
    grid-column: 1;
  }

  .service-scenarios article {
    min-height: auto;
  }

  .service-scenarios span {
    margin-bottom: 45px;
  }

  .coverage-card {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .coverage-card img {
    width: 62px;
    height: 62px;
  }

  .relationship-start__steps li,
  .wc-review__steps li {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .contact-form {
    padding: 24px 20px;
  }

  .workforce-picture {
    padding: 26px 20px;
  }

  .workforce-picture__grid article,
  .workforce-picture__grid article:nth-child(even),
  .workforce-picture__grid article:nth-last-child(-n + 2) {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .workforce-picture__grid article:last-child {
    border-bottom: 0;
  }

  .wc-life-grid article {
    min-height: auto;
  }

  .wc-life-grid__top {
    margin-bottom: 48px;
  }

  .industry-list span {
    min-height: 86px;
  }

  .connected-visual {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .connected-visual__center,
  .connected-visual__line {
    display: none;
  }

  .connected-visual > article {
    min-height: auto;
  }

  .faq-list summary {
    padding-right: 38px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .footer-license {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    width: 195px;
  }

  .home-hero__content,
  .lob-hero__content {
    padding-inline: 18px;
  }

  .home-hero__statement,
  .lob-hero__note {
    right: 18px;
    left: 18px;
  }

  .section {
    padding-inline: 18px;
  }

  .coverage-card {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 260px;
  }
}

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

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

@media (max-width: 0px) {
/* Disabled refinement: this was not faithful to the original draft.
   transparent, image-integrated character of the original direction. */

:root {
  --glass-dark: rgba(8, 29, 48, 0.56);
  --glass-dark-strong: rgba(8, 29, 48, 0.76);
  --glass-light: rgba(255, 255, 255, 0.68);
  --glass-line-dark: rgba(255, 255, 255, 0.24);
  --glass-line-light: rgba(255, 255, 255, 0.82);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
}

.site-header {
  min-height: 102px;
  border: 1px solid transparent;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 14, 24, 0.62) 0%,
    rgba(4, 14, 24, 0.24) 54%,
    rgba(4, 14, 24, 0) 100%
  );
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    top 180ms ease,
    right 180ms ease,
    left 180ms ease,
    min-height 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    border-radius 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  right: 18px;
  left: 18px;
  min-height: 68px;
  border-color: var(--glass-line-dark);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 42%),
    rgba(6, 20, 33, 0.67);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 52px rgba(3, 16, 27, 0.25);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.header-cta,
.button {
  border-radius: var(--radius-sm);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 28px rgba(3, 16, 27, 0.18);
}

.button--gold {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 30px rgba(3, 16, 27, 0.2);
}

.button--glass {
  border-color: var(--glass-line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 48%),
    rgba(8, 29, 48, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 35px rgba(3, 16, 27, 0.16);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.button--navy {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 12px 28px rgba(7, 29, 48, 0.16);
}

.home-hero__statement,
.lob-hero__note {
  overflow: hidden;
  border: 1px solid var(--glass-line-dark);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 48%),
    var(--glass-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 60px rgba(3, 16, 27, 0.28);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

.home-hero__statement {
  border-top: 1px solid var(--glass-line-dark);
}

.lob-hero__note {
  border-left: 1px solid var(--glass-line-dark);
}

.home-hero__statement::before,
.lob-hero__note::before {
  position: absolute;
  top: -1px;
  right: 26px;
  left: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.fact-bar {
  position: relative;
  z-index: 8;
  width: min(var(--shell), calc(100% - 44px));
  margin: -58px auto 0;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--glass-line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%),
    var(--glass-dark-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 28px 75px rgba(3, 16, 27, 0.24);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  backdrop-filter: blur(26px) saturate(145%);
}

.fact-bar > div {
  border-right-color: rgba(255, 255, 255, 0.14);
}

.fact-bar span,
.fact-bar--dark span {
  color: var(--gold-light);
}

.fact-bar--dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%),
    var(--glass-dark-strong);
}

.relationship-map {
  gap: 16px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.relationship-map::before,
.relationship-map::after {
  display: none;
}

.relationship-map article,
.knowledge-card,
.coverage-card,
.wc-life-grid article,
.connected-visual > article,
.license-card > div {
  border: 1px solid var(--glass-line-light);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
    var(--glass-light);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 18px 44px rgba(7, 29, 48, 0.09);
  -webkit-backdrop-filter: blur(19px) saturate(125%);
  backdrop-filter: blur(19px) saturate(125%);
}

.relationship-map__center {
  border: 1px solid var(--glass-line-dark);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%),
    var(--glass-dark-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 15px 40px rgba(6, 20, 33, 0.27);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.specialty-card {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 26px 70px rgba(7, 29, 48, 0.15);
}

.service-principles {
  gap: 14px;
  border-top: 0;
}

.service-principles article,
.service-scenarios article,
.industry-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 45px rgba(3, 16, 27, 0.16);
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
}

.service-principles article,
.service-principles article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-scenarios {
  gap: 16px;
  background: transparent;
}

.license-card {
  gap: 14px;
  background: transparent;
}

.path-card {
  border: 1px solid var(--glass-line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    0 22px 55px rgba(3, 16, 27, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.knowledge-grid,
.wc-life-grid,
.industry-list {
  gap: 16px;
  border: 0;
}

.knowledge-card,
.wc-life-grid article {
  border-right: 1px solid var(--glass-line-light);
  border-bottom: 1px solid var(--glass-line-light);
}

.contact-form {
  border: 1px solid var(--glass-line-light);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 245, 241, 0.72)),
    var(--glass-light);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 24px 64px rgba(7, 29, 48, 0.12);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.contact-form input,
.contact-form textarea {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
}

.faq-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.faq-list summary {
  padding: 25px 62px 25px 25px;
}

.faq-list summary::after {
  right: 24px;
}

.faq-list details p {
  padding: 0 55px 26px 25px;
}

.workforce-picture {
  overflow: hidden;
  border: 1px solid var(--glass-line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%),
    rgba(8, 29, 48, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    var(--shadow-lg);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.industry-list {
  gap: 14px;
}

.connected-visual__center {
  border: 1px solid var(--glass-line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%),
    var(--glass-dark-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    var(--shadow-sm);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
  }

  .site-header.is-scrolled {
    top: 8px;
    right: 10px;
    left: 10px;
    min-height: 64px;
    border-radius: 18px;
  }

  .site-header.nav-active {
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    background: rgba(6, 20, 33, 0.86);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  .site-nav {
    top: 0;
    padding-top: 112px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
      rgba(6, 20, 33, 0.88);
    -webkit-backdrop-filter: blur(28px) saturate(130%);
    backdrop-filter: blur(28px) saturate(130%);
  }

  .fact-bar {
    margin-top: -42px;
  }
}

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

  .fact-bar {
    width: calc(100% - 30px);
    margin-top: -28px;
    border-radius: 24px;
  }

  .fact-bar > div,
  .fact-bar > div:nth-child(2) {
    border-right: 0;
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .relationship-map article:nth-of-type(odd),
  .relationship-map article:nth-of-type(even) {
    padding: 28px;
  }

  .service-principles article,
  .service-principles article:nth-child(2),
  .service-principles article:last-child {
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .specialty-card,
  .path-card,
  .contact-form,
  .workforce-picture {
    border-radius: 24px;
  }

  .faq-list summary {
    padding: 23px 52px 23px 21px;
  }

  .faq-list summary::after {
    right: 20px;
  }

  .faq-list details p {
    padding: 0 21px 23px;
  }
}


/* Original first-draft visual shell, adapted only to the current content. */

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 68px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 17, 32, 0.9);
  box-shadow: 0 12px 34px rgba(3, 17, 32, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

[data-section] {
  scroll-margin-top: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 58px;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.48));
}

.site-nav {
  gap: 8px;
}

.nav-links {
  gap: 0;
}

.nav-links button,
.header-cta {
  min-height: auto;
  border-radius: 6px;
  padding: 10px 13px;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.52);
}

.nav-links button:hover,
.nav-links button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.header-cta {
  color: var(--navy-950);
  background: var(--gold);
  text-shadow: none;
}

.header-cta:hover {
  background: var(--gold-light);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: currentColor;
}

.home-hero,
.lob-hero {
  display: grid;
  min-height: 92vh;
  align-items: center;
}

.home-hero__wash,
.lob-hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(3, 17, 32, 0.9) 0%,
      rgba(3, 17, 32, 0.72) 38%,
      rgba(3, 17, 32, 0.2) 72%
    ),
    linear-gradient(
      0deg,
      rgba(3, 17, 32, 0.65),
      rgba(3, 17, 32, 0.04) 44%
    );
}

.home-hero__content,
.lob-hero__content {
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding: 76px 0 0;
}

.home-hero__content h1,
.lob-hero__content h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  gap: 12px;
  margin: 0 0 34px;
}

.button {
  min-height: 48px;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1;
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold);
}

.button--glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.home-hero__statement,
.lob-hero__note {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(3, 17, 32, 0.28);
  box-shadow: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.home-hero__statement {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.lob-hero__note {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.fact-bar {
  width: min(1320px, calc(100% - 40px));
  margin: clamp(28px, 4vw, 44px) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--line);
  box-shadow: 0 18px 52px rgba(23, 32, 38, 0.08);
}

.fact-bar > div {
  min-height: 122px;
  border-right-color: var(--line);
  background: #fbfcfc;
}

.fact-bar span {
  color: var(--teal);
}

.fact-bar--dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 52px rgba(3, 17, 32, 0.18);
}

.fact-bar--dark > div {
  border-right-color: rgba(255, 255, 255, 0.14);
  background: var(--navy-800);
}

.fact-bar--dark span {
  color: var(--gold-light);
}

.relationship-map,
.knowledge-grid,
.service-principles,
.service-scenarios,
.license-card,
.wc-life-grid,
.industry-list {
  overflow: hidden;
  border-radius: 8px;
}

.specialty-card,
.path-card,
.coverage-card,
.contact-form,
.faq-list details,
.workforce-picture,
.connected-visual > article {
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  padding: 25px 62px 25px 25px;
}

.faq-list summary::after {
  right: 24px;
}

.faq-list details p {
  padding: 0 55px 26px 25px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .site-header.is-scrolled,
  .site-header.nav-active {
    min-height: 64px;
  }

  .site-nav {
    top: 72px;
    background: rgba(3, 17, 32, 0.98);
  }

  .home-hero__content,
  .lob-hero__content {
    margin-left: 38px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .site-header.is-scrolled,
  .site-header.nav-active {
    min-height: 64px;
    padding: 8px 18px;
  }

  .brand-logo {
    height: 48px;
  }

  .site-nav {
    top: 68px;
    right: 0;
    bottom: auto;
    left: 0;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(3, 17, 32, 0.98);
    box-shadow: 0 24px 40px rgba(3, 17, 32, 0.24);
  }

  .site-header.is-scrolled .site-nav,
  .site-header.nav-active .site-nav {
    top: 64px;
  }

  .nav-links button,
  .header-cta {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    padding: 13px 4px;
    font-size: 18px;
    text-align: left;
  }

  .header-cta {
    width: 100%;
    border-bottom: 0;
    color: var(--navy-950);
    background: var(--gold);
    text-align: center;
  }

  .home-hero,
  .lob-hero {
    min-height: 840px;
  }

  .home-hero__wash,
  .lob-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 17, 32, 0.93),
        rgba(3, 17, 32, 0.52)
      ),
      linear-gradient(
        0deg,
        rgba(3, 17, 32, 0.74),
        rgba(3, 17, 32, 0.12)
      );
  }

  .home-hero__content,
  .lob-hero__content {
    width: calc(100% - 36px);
    margin: 0 18px;
    padding: 118px 0 190px;
  }

  .home-hero__content h1,
  .lob-hero__content h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .fact-bar {
    width: calc(100% - 36px);
  }

  .faq-list summary {
    padding: 23px 52px 23px 21px;
  }

  .faq-list summary::after {
    right: 20px;
  }

  .faq-list details p {
    padding: 0 21px 23px;
  }
}
