:root {
  --ink: #14213d;
  --ink-2: #24324f;
  --blue: #1261a6;
  --blue-dark: #0b3d6f;
  --gold: #f5a623;
  --green: #1f7a5a;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --line: #dbe3ec;
  --text: #4d5b6f;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 3vw, 48px);
  min-height: 124px;
  padding: 12px clamp(28px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 236, 0.8);
  backdrop-filter: blur(14px);
}

.site-header.has-shadow {
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.08);
}

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

.site-header > .brand {
  max-width: min(24vw, 250px);
}

.brand-logo {
  display: block;
  width: clamp(200px, 17vw, 250px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(10px, 1.35vw, 18px);
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a,
.nav-drop-toggle {
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: none;
  min-width: 280px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-weight: 700;
  white-space: normal;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--soft);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.is-open .nav-menu {
  display: block;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 5vw, 76px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 21, 40, 0.91) 0%, rgba(9, 21, 40, 0.72) 47%, rgba(9, 21, 40, 0.3) 100%),
    url("images/backgrounds/services-warehouse.svg")
      center/cover;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

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

.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.about-card h2,
.quote-copy h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
}

.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  line-height: 1.05;
}

.quote-section.page-hero h1,
.contact-section.page-hero h1 {
  color: #fff;
}

.page-hero .section-heading {
  max-width: 980px;
}

.page-hero .button {
  margin-top: 12px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.24);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.45);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.button.full {
  width: 100%;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 76px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.vision-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 58px clamp(18px, 5vw, 76px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.vision-intro div {
  max-width: 850px;
}

.vision-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.vision-intro p:last-child {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.trust-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.trust-card strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.trust-card span,
p,
li {
  color: var(--text);
}

.section,
.split-section,
.quote-section,
.contact-section {
  padding: 88px clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-copy h2,
.about-card h2,
.quote-copy h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-heading p,
.split-copy p,
.about-card p,
.quote-copy p,
.contact-section p {
  font-size: 1.04rem;
}

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

.services-grid {
  gap: 13px;
}

.service-card,
.partner-card,
.roadmap-grid article,
.form-card,
.shipper-panel,
.about-card,
.values-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  padding: 21px;
  min-height: 200px;
}

.services-grid .icon {
  margin-bottom: 16px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.partner-card h3,
.roadmap-grid h3,
.shipper-panel h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.service-card p,
.partner-card p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
}

.shipper-panel {
  padding: 30px;
  box-shadow: var(--shadow);
}

.metric-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.metric-row span {
  color: var(--blue);
  font-weight: 800;
}

.metric-row p {
  margin: 0;
  font-weight: 700;
}

.muted {
  background: var(--soft);
}

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

.partner-card {
  padding: 28px;
}

.cta-card {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--blue-dark));
  border-color: transparent;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.roadmap-grid article {
  padding: 28px;
  border-top: 5px solid var(--green);
}

.roadmap-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.about-section {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.about-card {
  padding: 34px;
}

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

.values-grid div {
  padding: 24px;
}

.values-grid strong,
.values-grid span {
  display: block;
}

.values-grid span {
  margin-top: 8px;
  color: var(--text);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: start;
  background: var(--ink);
}

.quote-section h2,
.quote-section .quote-copy p {
  color: #fff;
}

.quote-section .quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 97, 166, 0.18);
  border-color: var(--blue);
}

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

.form-note.success {
  color: var(--green);
  font-weight: 800;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--green));
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 76px);
  background: #081423;
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
}

.site-footer .footer-brand {
  display: flex;
  justify-content: center;
  width: 324px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.site-footer .brand-logo {
  width: min(100%, 300px);
  filter: none;
}

.white-glove-page .site-footer .brand-logo {
  mix-blend-mode: screen;
}

.services-hero-page {
  min-height: calc(100vh - 124px);
  padding: 58px clamp(28px, 5vw, 76px) 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 13, 24, 0.94) 0%, rgba(2, 13, 24, 0.8) 46%, rgba(2, 13, 24, 0.58) 100%),
    url("images/backgrounds/services-warehouse.svg")
      center/cover;
}

.services-hero-copy {
  max-width: 870px;
  margin-bottom: 34px;
}

.services-hero-copy h1 {
  margin: 0;
  max-width: 860px;
  color: #fff;
  font-size: clamp(2.45rem, 4.7vw, 4.8rem);
  line-height: 1.08;
}

.services-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.visual-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 188px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.visual-service-card .icon {
  position: absolute;
  top: 20px;
  left: 24px;
  margin: 0;
  background: var(--blue-dark);
}

.service-visual {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-top: 34px;
}

.service-visual svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #ff4d00;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-service-card h3 {
  margin: 0 0 10px;
}

.visual-service-card p {
  margin: 0;
}

.service-card__link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vision-hero {
  padding: 110px clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 35, 0.96), rgba(11, 61, 111, 0.88)),
    url("images/backgrounds/services-warehouse.svg")
      center/cover;
}

.vision-hero-content {
  max-width: 980px;
}

.vision-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.05;
}

.vision-hero p {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.vision-subheadline {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
}

.vision-section .section-heading {
  max-width: 980px;
}

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

.vision-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.vision-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.vision-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.vision-grid p {
  margin: 0;
}

@media (max-width: 1050px) {
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .nav-drop-toggle:hover {
    background: var(--soft);
  }

  .nav-dropdown {
    position: static;
  }

  .nav-drop-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 13px 12px;
    border-radius: 8px;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin: 0 0 8px 12px;
    padding: 4px;
    border: 0;
    box-shadow: none;
    background: var(--soft);
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-menu {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .trust-band,
  .card-grid,
  .partner-layout,
  .roadmap-grid,
  .vision-grid,
  .services-hero-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-header > .brand {
    max-width: min(58vw, 250px);
  }

  .brand-logo {
    width: clamp(190px, 58vw, 250px);
  }

  .hero {
    min-height: 620px;
    padding: 74px 18px;
    background:
      linear-gradient(90deg, rgba(9, 21, 40, 0.91) 0%, rgba(9, 21, 40, 0.72) 100%),
      url("images/backgrounds/services-warehouse.svg")
        center/cover;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .trust-band,
  .card-grid,
  .partner-layout,
  .roadmap-grid,
  .values-grid,
  .vision-grid,
  .services-hero-grid,
  .site-footer,
  .form-row,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .quote-section,
  .contact-section,
  .vision-intro,
  .vision-hero,
  .services-hero-page {
    padding: 64px 18px;
  }

  .vision-intro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .visual-service-card {
    grid-template-columns: 56px 1fr;
    min-height: auto;
    padding: 22px;
  }

  .visual-service-card .icon {
    left: 22px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 430px) {
  .site-header {
    gap: 12px;
  }

  .site-header > .brand {
    max-width: min(62vw, 224px);
  }

  .brand-logo {
    width: clamp(176px, 64vw, 224px);
  }

  .trust-card,
  .service-card,
  .partner-card,
  .roadmap-grid article,
  .form-card,
  .shipper-panel,
  .about-card,
  .values-grid div {
    padding: 22px;
  }
}

/* Production homepage: white-glove delivery journey */
:root {
  --brand-navy: #071d3d;
  --brand-blue: #075fc7;
}

.home-page :focus-visible {
  outline: 3px solid #f5a623;
  outline-offset: 3px;
}

.home-hero {
  min-height: min(720px, calc(100vh - 124px));
  background:
    linear-gradient(90deg, rgba(4, 18, 39, 0.94) 0%, rgba(7, 38, 76, 0.82) 48%, rgba(4, 18, 39, 0.35) 100%),
    url("images/backgrounds/services-warehouse.svg") center / cover;
}

.home-hero .hero-content { max-width: 760px; }
.home-hero h1 { font-size: clamp(2.5rem, 5.4vw, 5.25rem); text-transform: uppercase; }
.hero-lead { margin: 24px 0 0; color: #fff; font-size: clamp(1.08rem, 2vw, 1.35rem); font-weight: 700; }
.hero-promise { margin: 18px 0 0; color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.hero-promise strong { color: #fff; }

.journey-container { width: min(100% - 36px, 1320px); margin-inline: auto; }

.industries-section { padding: clamp(3.25rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.industries-section h2 { margin: 0 0 2rem; text-align: center; font-size: clamp(1.9rem, 4vw, 3rem); }
.industries-list { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.industries-list li { display: grid; place-items: center; min-height: 76px; padding: 12px 8px; color: var(--brand-navy); border: 1px solid rgba(7,95,199,.14); border-radius: 10px; background: #f8fbff; text-align: center; font-size: .82rem; font-weight: 700; }

.delivery-journey { padding-block: clamp(4.5rem, 8vw, 8rem); }
.journey-heading { max-width: 820px; margin: 0 auto; text-align: center; }
.journey-heading h2 { color: var(--brand-navy); }
.journey-heading p { margin-bottom: 0; font-size: clamp(1rem, 2vw, 1.18rem); }
.delivery-stage { margin-top: clamp(4rem, 7vw, 7rem); }
.delivery-stage + .delivery-stage { padding-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid rgba(10,48,101,.12); }
.delivery-stage__header { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.75rem; text-align: center; }
.delivery-stage__number { display: inline-grid; place-items: center; min-width: 2.75rem; height: 2.75rem; padding-inline: .65rem; border: 1px solid currentColor; border-radius: 999px; color: var(--brand-blue); font-weight: 800; }
.delivery-stage__header h3, .delivery-stage__header h4 { margin: 0; color: var(--brand-navy); font-size: clamp(1.55rem, 3vw, 2.35rem); }
.delivery-stage__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.75rem, 1.5vw, 1.25rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.delivery-stage__image { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border: 1px solid rgba(7,29,61,.1); border-radius: 12px; background: #eef3f8; }
.delivery-stage__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.delivery-stage__content { width: min(100%, 850px); margin-inline: auto; text-align: center; }
.delivery-stage__content > p { max-width: 760px; margin: 0 auto; line-height: 1.75; font-size: 1.04rem; }
.delivery-stage__capabilities { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.delivery-stage__capabilities li { padding: .65rem 1rem; border: 1px solid rgba(18,83,181,.18); border-radius: 999px; background: rgba(18,83,181,.05); color: var(--brand-navy); font-weight: 600; }

.delivery-statement { display: grid; place-items: center; min-height: 230px; padding: 3.5rem 18px; background: var(--brand-navy); text-align: center; }
.delivery-statement p { margin: 0; color: #fff; font-size: clamp(1.45rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.35; }
.delivery-statement strong { display: block; color: #20a4ff; font-weight: 800; }

.business-actions { padding: clamp(4rem, 7vw, 7rem) clamp(18px, 5vw, 76px); background: #f5f8fc; }
.business-actions__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; width: min(100%, 1320px); margin-inline: auto; }
.business-actions__panel { display: flex; flex-direction: column; padding: clamp(1.75rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.business-actions__panel h2 { margin: 0 0 1.5rem; color: var(--brand-navy); font-size: clamp(1.6rem, 3vw, 2.3rem); }
.business-actions__panel > p { margin-top: 0; }
.capability-grid, .team-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; margin: 0 0 2rem; padding: 0; list-style: none; }
.capability-grid li, .team-list li { position: relative; padding-left: 20px; font-size: .92rem; }
.capability-grid li::before, .team-list li::before { content: ""; position: absolute; left: 0; top: .56em; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-blue); }
.business-actions__panel .button { align-self: flex-start; margin-top: auto; }

.consultation-cta { padding: 2rem clamp(18px, 5vw, 76px); color: #fff; background: linear-gradient(110deg, #0870db, #0047a5); }
.consultation-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; width: min(100%, 1320px); margin-inline: auto; }
.consultation-cta__message { display: flex; align-items: center; gap: 22px; }
.consultation-cta__icon { flex: 0 0 76px; display: grid; place-items: center; width: 76px; height: 76px; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; }
.consultation-cta__icon svg { width: 50px; height: 50px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.consultation-cta h2 { margin: 0; color: #fff; font-size: clamp(1.45rem, 3vw, 2.25rem); }
.consultation-cta p { margin: .35rem 0 0; color: rgba(255,255,255,.88); }
.button--light { flex: 0 0 auto; color: var(--brand-navy); background: #fff; }

.home-footer { grid-template-columns: 1.3fr .8fr .8fr .7fr; padding-top: 54px; }
.home-footer strong { display: block; margin-bottom: 12px; }
.home-footer .footer-brand-column p { max-width: 330px; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom > span { display: flex; gap: 22px; color: rgba(255,255,255,.72); font-size: .82rem; }

@media (max-width: 1050px) {
  .industries-list { grid-template-columns: repeat(3, 1fr); }
  .delivery-stage__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .delivery-stage__image:last-child { grid-column: 1 / -1; width: min(100%, 620px); justify-self: center; }
  .home-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .home-hero { min-height: 650px; padding: 72px 18px; background-position: 63% center; }
  .home-hero::before { content: ""; position: absolute; inset: 0; background: rgba(4,18,39,.18); }
  .business-actions__grid { grid-template-columns: 1fr; }
  .consultation-cta__inner, .consultation-cta__message { align-items: flex-start; flex-direction: column; }
  .button--light { width: 100%; }
}

@media (max-width: 640px) {
  .industries-list { grid-template-columns: repeat(2, 1fr); }
  .delivery-stage__gallery { grid-template-columns: 1fr; }
  .delivery-stage__image:last-child { grid-column: auto; width: 100%; }
  .delivery-stage__header { align-items: flex-start; justify-content: flex-start; text-align: left; }
  .delivery-stage__content { text-align: left; }
  .delivery-stage__capabilities { justify-content: flex-start; }
  .capability-grid, .team-list { grid-template-columns: 1fr; }
  .business-actions__panel .button { width: 100%; }
  .home-footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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

/* Homepage capability layer */
.capability-section { padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 4vw, 3rem); }
.capability-shell { width: min(1180px, 100%); margin-inline: auto; }
.capability-section .section-heading { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.capability-section .section-heading h2 { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--ink); }
.capability-section .section-heading > p:last-child { color: var(--text); }
.preview-label { margin: 1rem 0 0; color: var(--text); font-size: .88rem; font-weight: 700; }
.journey-tabs { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0 1.25rem; }
.journey-tabs::before { content:""; position:absolute; top:1.5rem; left:10%; right:10%; height:2px; background:var(--line); z-index:0; }
.journey-tabs button { position:relative; z-index:1; min-height:96px; padding:1rem; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--ink); font:inherit; font-weight:750; cursor:pointer; box-shadow:0 8px 24px rgba(20,33,61,.06); }
.journey-tabs button span { display:grid; place-items:center; width:3rem; height:3rem; margin:0 auto .55rem; border-radius:50%; background:var(--soft); color:var(--blue); }
.journey-tabs button small { display:block; margin-top:.35rem; color:var(--text); font-size:.72rem; font-weight:650; line-height:1.3; }
.journey-tabs button[aria-selected="true"] { border-color:var(--blue); background:var(--ink); color:#fff; transform:translateY(-3px); }
.journey-tabs button[aria-selected="true"] span { background:var(--gold); color:var(--ink); }
.journey-tabs button[aria-selected="true"] small { color:rgba(255,255,255,.78); }
.journey-panels { display:grid; gap:1.25rem; }
.journey-enhanced .journey-panels { display:block; }
.journey-detail { display:grid; grid-template-columns:minmax(260px,.85fr) 1.15fr; gap:clamp(1.5rem,4vw,3.5rem); align-items:center; padding:clamp(1.25rem,3vw,2.5rem); border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow); }
.journey-detail img { width:100%; height:auto !important; aspect-ratio:4/3; object-fit:cover; border-radius:12px; }
.journey-detail h3,.engine-detail h3,.dashboard-card h3 { margin:.2rem 0 .7rem; font-size:clamp(1.35rem,2.5vw,2rem); }
.journey-detail ul,.completion-list { padding:0; list-style:none; }
.journey-detail li { position:relative; margin:.5rem 0; padding-left:1.5rem; }
.journey-detail li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:800; }
.journey-status { display:flex; flex-wrap:wrap; gap:.4rem; align-items:center; margin:1rem 0; color:var(--text); font-size:.9rem; }
.journey-status span { display:inline-flex; padding:.28rem .62rem; border-radius:999px; background:#d9f5e8; color:#126145; font-weight:800; }
.powered-by { color:var(--text); }
.journey-actions { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.4rem; }
.journey-deep-dive-link { flex-basis:100%; width:fit-content; margin-top:.35rem; color:var(--blue); font-weight:800; text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:4px; }
.white-glove-deep-dive { position:relative; margin-top:clamp(3rem,6vw,5rem); padding-top:clamp(2.5rem,5vw,4rem); border-top:2px solid rgba(7,95,199,.18); }
.white-glove-deep-dive::before { content:"Stage 04 continues"; position:absolute; top:0; left:50%; translate:-50% -50%; padding:.45rem .8rem; border-radius:999px; color:#fff; background:var(--brand-blue); font-size:.78rem; font-weight:800; letter-spacing:.03em; text-transform:uppercase; }
.white-glove-deep-dive__heading { width:min(100%,820px); margin:0 auto; padding:clamp(1.5rem,4vw,2.5rem); border:1px solid rgba(7,95,199,.2); border-radius:18px; background:linear-gradient(135deg,#f4f8ff,#fff); text-align:center; box-shadow:0 14px 34px rgba(7,29,61,.08); scroll-margin-top:170px; }
.white-glove-deep-dive__heading h3 { margin:.2rem 0 .75rem; color:var(--brand-navy); font-size:clamp(1.8rem,4vw,3rem); }
.white-glove-deep-dive__heading p:last-child { max-width:680px; margin:0 auto; color:var(--text); }
.quote-estimator { background:var(--soft); }
.quote-layout { display:grid; grid-template-columns:1.45fr .75fr; gap:1.5rem; align-items:start; }
.estimator-form,.quote-result,.engine-demo,.dashboard { border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow); }
.estimator-form { padding:clamp(1.25rem,3vw,2rem); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.estimator-form label { display:grid; gap:.35rem; color:var(--ink); font-weight:700; }
.estimator-form input,.estimator-form select,.schedule-card textarea { width:100%; min-height:46px; padding:.7rem .8rem; border:1px solid #b9c7d6; border-radius:8px; background:#fff; color:var(--ink); font:inherit; }
.estimator-form fieldset { margin:1.5rem 0 0; padding:1rem; border:1px solid var(--line); border-radius:10px; }
.estimator-form legend { padding:0 .4rem; font-weight:800; }
.check-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.7rem; }
.check-grid label { display:flex; align-items:center; gap:.55rem; font-weight:600; }
.check-grid input { width:1.1rem; min-height:1.1rem; }
.quote-result { position:sticky; top:145px; padding:2rem; color:#fff; background:var(--ink); }
.status-pill { display:inline-flex; padding:.35rem .7rem; border-radius:999px; background:#d9f5e8; color:#126145; font-size:.78rem; font-weight:800; text-transform:capitalize; }
.quote-price { margin:1rem 0 .2rem; color:var(--gold); font-size:clamp(2rem,4vw,3rem); font-weight:800; line-height:1; }
.quote-result dl,.dashboard-card dl { margin:1.4rem 0; }
.quote-result dl div,.dashboard-card dl div { display:flex; justify-content:space-between; gap:1rem; padding:.55rem 0; border-bottom:1px solid rgba(255,255,255,.14); }
.quote-result dt,.dashboard-card dt { color:inherit; opacity:.7; }
.quote-result dd,.dashboard-card dd { margin:0; font-weight:700; text-align:right; }
.quote-result small { display:block; margin-top:1rem; opacity:.7; }
.engine-section { color:#fff; background:var(--ink); }
.engine-section .section-heading h2,.engine-section .section-heading p { color:#fff; }
.engine-demo { display:grid; grid-template-columns:1.2fr .8fr; gap:2rem; padding:clamp(1.25rem,3vw,2.5rem); color:var(--ink); }
.engine-core { display:grid; place-items:center; min-height:160px; border:2px solid var(--blue); border-radius:18px; background:linear-gradient(135deg,var(--ink),var(--blue-dark)); color:#fff; text-align:center; }
.engine-core strong { font-size:1.6rem; }
.engine-buttons { display:grid; grid-template-columns:repeat(2,1fr); gap:.65rem; margin-top:1rem; }
.engine-buttons button,.schedule-options button { padding:.8rem; border:1px solid var(--line); border-radius:8px; background:#fff; color:var(--ink); font:inherit; font-weight:750; cursor:pointer; }
.engine-buttons button[aria-pressed="true"],.schedule-options button[aria-pressed="true"] { border-color:var(--blue); background:var(--blue); color:#fff; }
.engine-detail { align-self:center; padding:1.5rem; border-left:4px solid var(--gold); background:var(--soft); border-radius:0 12px 12px 0; }
.plan-output { margin-top:1.2rem; padding:1rem; border-radius:8px; background:#e6f0fa; color:var(--blue-dark); font-weight:800; }
.dashboard-section { background:#eaf0f6; }
.dashboard { padding:clamp(1rem,2.5vw,2rem); }
.dashboard-metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:1rem; }
.dashboard-metrics article,.dashboard-card { padding:1.25rem; border:1px solid var(--line); border-radius:12px; background:#fff; }
.dashboard-metrics strong { display:block; font-size:2rem; line-height:1.1; }
.dashboard-metrics span { color:var(--text); font-size:.85rem; }
.dashboard-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.dashboard-card dl div { border-color:var(--line); }
.shipment-timeline,.notification-feed { margin:0; padding:0; list-style:none; }
.shipment-timeline li { display:flex; gap:.75rem; padding:.45rem 0; color:var(--text); }
.shipment-timeline .done { color:var(--green); }.shipment-timeline .active { color:var(--blue); font-weight:800; }
.route-line { display:grid; grid-template-columns:auto 1fr auto; gap:.75rem; align-items:center; margin:2rem 0 1rem; }
.route-progress { width:100%; height:10px; border:0; border-radius:99px; overflow:hidden; background:var(--line); accent-color:var(--blue); }
.route-progress::-webkit-progress-bar { background:var(--line); border-radius:99px; }
.route-progress::-webkit-progress-value { background:var(--blue); border-radius:99px; }
.route-progress::-moz-progress-bar { background:var(--blue); border-radius:99px; }
.completion-list li { display:flex; gap:.65rem; margin:.5rem 0; }.completion-list span { color:var(--green); font-weight:900; }
.notification-feed li { display:grid; grid-template-columns:75px 1fr; gap:.7rem; padding:.55rem 0; border-bottom:1px solid var(--line); }.notification-feed time { color:var(--blue); font-weight:800; }
.schedule-card { grid-column:1/-1; }.schedule-options { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:1rem; }.schedule-card label { display:grid; gap:.35rem; font-weight:700; }.schedule-confirmation { color:var(--green); font-weight:800; }
.text-button { padding:0; border:0; background:none; color:var(--blue); font:inherit; font-weight:800; }

@media (max-width: 780px) {
  .journey-tabs { grid-template-columns:1fr 1fr; }.journey-tabs::before { display:none; }
  .journey-detail,.quote-layout,.engine-demo { grid-template-columns:1fr; }.quote-result { position:static; }
  .dashboard-metrics { grid-template-columns:1fr 1fr; }.dashboard-grid { grid-template-columns:1fr; }.schedule-card { grid-column:auto; }
}
@media (max-width: 520px) {
  .journey-tabs,.form-grid,.check-grid,.engine-buttons,.dashboard-metrics { grid-template-columns:1fr; }
  .journey-tabs button { display:grid; grid-template-columns:3rem 1fr; align-items:center; gap:.15rem .8rem; min-height:72px; text-align:left; }.journey-tabs button span { grid-row:1 / 3; margin:0; }.journey-tabs button small { grid-column:2; margin:0; }
  .journey-actions .button { width:100%; }.notification-feed li { grid-template-columns:1fr; gap:0; }
}

/* White-Glove Delivery page */
.white-glove-container { width: min(100% - 36px, 1240px); margin-inline: auto; }
.white-glove-hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; min-height: 590px; padding: clamp(5rem, 10vw, 8rem) clamp(18px, 5vw, 76px); color: #fff; background: radial-gradient(circle at 82% 38%, rgba(20,126,228,.34), transparent 30%), linear-gradient(120deg, #041227, #082d61 68%, #075fc7); }
.white-glove-hero__inner { max-width: 720px; }
.white-glove-hero h1 { max-width: 830px; margin: 0; color: #fff; font-size: clamp(2.7rem, 6vw, 5.4rem); line-height: 1.03; }
.white-glove-hero__inner > p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.white-glove-hero__media { width: 100%; max-width: 760px; justify-self: end; overflow: hidden; border-radius: 16px; }
.white-glove-hero__media img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; }
.white-glove-intro, .white-glove-experience, .white-glove-scope { padding-block: clamp(4.5rem, 8vw, 7rem); }
.white-glove-intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; }
.white-glove-intro h2, .white-glove-heading h2, .white-glove-scope h2 { margin: 0; color: var(--brand-navy); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; }
.white-glove-intro__grid > p { margin: 0; font-size: 1.08rem; line-height: 1.8; }
.white-glove-experience { background: #f4f8fc; }
.white-glove-heading { max-width: 800px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.white-glove-heading p:last-child { font-size: 1.05rem; }
.white-glove-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.white-glove-feature { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.white-glove-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.white-glove-feature div { padding: clamp(1.4rem, 3vw, 2rem); }
.white-glove-feature span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px; color: #fff; border-radius: 50%; background: var(--brand-blue); font-weight: 800; }
.white-glove-feature h3 { margin: 0 0 10px; color: var(--brand-navy); font-size: 1.35rem; }
.white-glove-feature p { margin: 0; }
.white-glove-scope__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.white-glove-scope__grid > div > p:not(.eyebrow) { margin-bottom: 2rem; }
.white-glove-scope__list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.white-glove-scope__list li { padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.white-glove-scope__list strong, .white-glove-scope__list span { display: block; }
.white-glove-scope__list strong { color: var(--brand-navy); }
.white-glove-scope__list span { margin-top: 6px; color: var(--text); font-size: .9rem; }
.white-glove-promise { display: grid; place-items: center; min-height: 250px; padding: 3.5rem 18px; background: var(--brand-navy); text-align: center; }
.white-glove-promise p { margin: 0; color: #fff; font-size: clamp(1.45rem, 3vw, 2.45rem); font-weight: 600; }
.white-glove-promise strong { display: block; color: #20a4ff; }

@media (max-width: 780px) {
  .white-glove-hero { grid-template-columns: 1fr; min-height: 540px; }
  .white-glove-hero__inner { max-width: 720px; }
  .white-glove-hero__media { max-width: 720px; justify-self: start; }
  .white-glove-intro__grid, .white-glove-scope__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .white-glove-feature-grid, .white-glove-scope__list { grid-template-columns: 1fr; }
  .white-glove-hero .hero-actions .button { width: 100%; }
}

/* =========================================
   SPRINTERXPRESS DIGITAL HEADQUARTERS HERO
   ========================================= */

.headquarters-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 92%);
    padding: 70px 0 65px;
}

.headquarters-eyebrow {
    margin: 0 0 14px;
    color: #14aeea;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.headquarters-title {
    margin: 0;
    max-width: 720px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 5.3rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.headquarters-title span {
    display: block;
    color: #14aeea;
}

.headquarters-lead {
    max-width: 680px;
    margin: 24px 0 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.7vw, 1.3rem);
    font-weight: 500;
    line-height: 1.6;
}

.headquarters-values {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.headquarters-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hq-button-primary {
    border: 1px solid #ff9f1a;
    background: #ff9f1a;
    color: #111111;
}

.hq-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(10, 22, 34, 0.55);
    color: #ffffff;
}

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

.hq-button-primary:hover,
.hq-button-primary:focus {
    background: #ffad38;
    box-shadow: 0 8px 24px rgba(255, 159, 26, 0.24);
}

.hq-button-secondary:hover,
.hq-button-secondary:focus {
    border-color: #14aeea;
    background: rgba(20, 174, 234, 0.16);
    box-shadow: 0 8px 24px rgba(20, 174, 234, 0.16);
}

@media (max-width: 760px) {
    .headquarters-hero-content {
        width: 100%;
        padding: 54px 0 48px;
    }

    .headquarters-title {
        line-height: 1.04;
    }

    .headquarters-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hq-button {
        width: 100%;
    }
}

/* =========================================
   DIGITAL HEADQUARTERS ENTRY POINTS
   ========================================= */

.headquarters-entry {
    position: relative;
    padding: 100px 24px;
    background:
        radial-gradient(
            circle at top center,
            rgba(20, 174, 234, 0.1),
            transparent 42%
        ),
        #07111b;
    color: #ffffff;
}

.headquarters-entry .journey-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.entry-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.entry-eyebrow {
    margin: 0 0 12px;
    color: #14aeea;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.entry-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
}

.entry-introduction {
    max-width: 650px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.entry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 34px 30px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(13, 28, 42, 0.88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.entry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #14aeea;
}

.entry-card:hover {
    transform: translateY(-7px);
    border-color: rgba(20, 174, 234, 0.55);
    background: rgba(15, 34, 50, 0.96);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}

.entry-card-number {
    margin-bottom: 28px;
    color: rgba(20, 174, 234, 0.32);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}

.entry-card-label {
    margin: 0 0 10px;
    color: #14aeea;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.entry-card h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.05;
}

.entry-card > p:not(.entry-card-label) {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.65;
}

.entry-card-list {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.entry-card-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 21px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.45;
}

.entry-card-list li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14aeea;
}

.entry-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin-top: auto;
    padding: 15px 17px;
    border: 1px solid rgba(20, 174, 234, 0.7);
    border-radius: 7px;
    color: #ffffff;
    background: rgba(20, 174, 234, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.entry-card-link span {
    color: #14aeea;
    font-size: 1.2rem;
}

.entry-card-link:hover,
.entry-card-link:focus {
    transform: translateY(-2px);
    border-color: #14aeea;
    background: rgba(20, 174, 234, 0.18);
}

@media (max-width: 980px) {
    .entry-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .entry-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .headquarters-entry {
        padding: 72px 18px;
    }

    .entry-heading {
        margin-bottom: 38px;
    }

    .entry-card {
        padding: 28px 23px 24px;
    }

    .entry-card-number {
        margin-bottom: 20px;
        font-size: 2.6rem;
    }
}

/* =========================================================
   SMARTENGINE™ SECTION
========================================================= */

.sx-smartengine {
    --sx-se-bg: #07111f;
    --sx-se-panel: rgba(255, 255, 255, 0.045);
    --sx-se-panel-strong: rgba(255, 255, 255, 0.075);
    --sx-se-border: rgba(255, 255, 255, 0.13);
    --sx-se-text: #f4f7fb;
    --sx-se-muted: #aeb9c8;
    --sx-se-accent: #f4b942;
    --sx-se-accent-soft: rgba(244, 185, 66, 0.14);

    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) 1.5rem;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(244, 185, 66, 0.12),
            transparent 30rem
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(44, 108, 178, 0.16),
            transparent 32rem
        ),
        var(--sx-se-bg);
    color: var(--sx-se-text);
}


/* Subtle background grid */

.sx-smartengine::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 18%,
        black 82%,
        transparent
    );
}


/* Main content container */

.sx-smartengine__container {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* Section header */

.sx-smartengine__header {
    max-width: 820px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.sx-smartengine__eyebrow {
    margin: 0 0 1rem;
    color: var(--sx-se-accent);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.sx-smartengine__title {
    margin: 0;
    color: var(--sx-se-text);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.sx-smartengine__lead {
    max-width: 720px;
    margin: 1.75rem 0 0;
    color: var(--sx-se-muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
}


/* Main layout */

.sx-smartengine__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.5fr);
    gap: 1.25rem;
    align-items: stretch;
}


/* Central core panel */

.sx-smartengine__core {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid var(--sx-se-border);
    border-radius: 1.25rem;
    background:
        linear-gradient(
            145deg,
            var(--sx-se-accent-soft),
            transparent 55%
        ),
        var(--sx-se-panel-strong);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.sx-smartengine__core-label {
    margin-bottom: 1.4rem;
    color: var(--sx-se-accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.sx-smartengine__core-title {
    margin: 0;
    color: var(--sx-se-text);
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.sx-smartengine__core-text {
    margin: 1.5rem 0 0;
    color: var(--sx-se-muted);
    font-size: 1rem;
    line-height: 1.75;
}


/* Development status */

.sx-smartengine__status {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(244, 185, 66, 0.25);
    border-radius: 999px;
    background: rgba(244, 185, 66, 0.08);
    color: #d9e1eb;
    font-size: 0.78rem;
    line-height: 1.35;
}

.sx-smartengine__status-dot {
    width: 0.55rem;
    height: 0.55rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--sx-se-accent);
    box-shadow: 0 0 0 0.3rem rgba(244, 185, 66, 0.12);
}


/* Capability grid */

.sx-smartengine__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.sx-smartengine__card {
    position: relative;
    min-height: 240px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid var(--sx-se-border);
    border-radius: 1.25rem;
    background: var(--sx-se-panel);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease;
    backdrop-filter: blur(12px);
}

.sx-smartengine__card::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(244, 185, 66, 0.15);
    border-radius: 50%;
}

.sx-smartengine__card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 185, 66, 0.5);
    background: var(--sx-se-panel-strong);
}

.sx-smartengine__number {
    display: block;
    margin-bottom: 2.5rem;
    color: var(--sx-se-accent);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.sx-smartengine__card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--sx-se-text);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.25;
}

.sx-smartengine__card p {
    position: relative;
    z-index: 1;
    margin: 1rem 0 0;
    color: var(--sx-se-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* Section footer */

.sx-smartengine__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--sx-se-border);
}

.sx-smartengine__footer p {
    max-width: 700px;
    margin: 0;
    color: var(--sx-se-muted);
    font-size: 1rem;
    line-height: 1.75;
}


/* Call-to-action button */

.sx-smartengine__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.25rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--sx-se-accent);
    border-radius: 999px;
    background: var(--sx-se-accent);
    color: #08101b;
    font-size: 0.85rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 200ms ease,
        background-color 200ms ease,
        box-shadow 200ms ease;
}

.sx-smartengine__button:hover {
    transform: translateY(-3px);
    background: #ffd16a;
    box-shadow: 0 14px 34px rgba(244, 185, 66, 0.22);
}

.sx-smartengine__button:focus-visible {
    outline: 3px solid rgba(244, 185, 66, 0.4);
    outline-offset: 4px;
}


/* Tablet layout */

@media (max-width: 960px) {

    .sx-smartengine__layout {
        grid-template-columns: 1fr;
    }

    .sx-smartengine__core {
        min-height: 380px;
    }

}


/* Mobile layout */

@media (max-width: 700px) {

    .sx-smartengine {
        padding-inline: 1rem;
    }

    .sx-smartengine__grid {
        grid-template-columns: 1fr;
    }

    .sx-smartengine__card {
        min-height: auto;
    }

    .sx-smartengine__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .sx-smartengine__button {
        width: 100%;
    }

}


/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {

    .sx-smartengine__card,
    .sx-smartengine__button {
        transition: none;
    }

    .sx-smartengine__card:hover,
    .sx-smartengine__button:hover {
        transform: none;
    }

}

/* =========================================================
   END SMARTENGINE™ SECTION
========================================================= */

/* =========================================================
   MODULE 01
   DIGITAL HEADQUARTERS EXPERIENCE POLISH
   ========================================================= */


/* ---------------------------------------------------------
   SMARTENGINE™ TO ECOSYSTEM TRANSITION
   --------------------------------------------------------- */

.sx-section-transition {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-height: 32px;
    padding: 0 24px;
    overflow: hidden;
    background: #07111b;
}

.sx-section-transition::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 80px;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(20, 174, 234, 0.14),
        transparent 68%
    );
    transform: translate(-50%, -50%);
}

.sx-section-transition__line {
    position: relative;
    z-index: 1;
    width: min(220px, 26vw);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20, 174, 234, 0.58)
    );
}

.sx-section-transition__line:last-child {
    background: linear-gradient(
        90deg,
        rgba(20, 174, 234, 0.58),
        transparent
    );
}

.sx-section-transition__mark {
    position: relative;
    z-index: 1;
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border: 2px solid #14aeea;
    border-radius: 50%;
    background: #07111b;
    box-shadow:
        0 0 0 6px rgba(20, 174, 234, 0.08),
        0 0 22px rgba(20, 174, 234, 0.42);
}


/* ---------------------------------------------------------
   HEADQUARTERS ENTRY REFINEMENT
   --------------------------------------------------------- */

.headquarters-entry {
    position: relative;
    padding: 82px 24px 100px;
    scroll-margin-top: 110px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top center,
            rgba(20, 174, 234, 0.1),
            transparent 42%
        ),
        #07111b;
    color: #ffffff;
}

.headquarters-entry::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 720px;
    height: 420px;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(20, 174, 234, 0.08),
        transparent 70%
    );
    transform: translateX(-50%);
}

.headquarters-entry .journey-container {
    position: relative;
    z-index: 1;
}


/* ---------------------------------------------------------
   SCROLL REVEAL
   --------------------------------------------------------- */

.sx-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.72s ease,
        transform 0.72s ease;
    will-change: opacity, transform;
}

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

.entry-grid .entry-card.sx-reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.entry-grid .entry-card.sx-reveal:nth-child(2) {
    transition-delay: 0.16s;
}

.entry-grid .entry-card.sx-reveal:nth-child(3) {
    transition-delay: 0.27s;
}


/* ---------------------------------------------------------
   CARD INTERACTION POLISH
   --------------------------------------------------------- */

.entry-card {
    isolation: isolate;
}

.entry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(
        circle at top left,
        rgba(20, 174, 234, 0.08),
        transparent 48%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.entry-card:hover::after,
.entry-card:focus-within::after {
    opacity: 1;
}

.entry-card-link:focus-visible {
    outline: 3px solid rgba(20, 174, 234, 0.45);
    outline-offset: 4px;
}


/* ---------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   --------------------------------------------------------- */

@media (max-width: 980px) {
    .headquarters-entry {
        padding-top: 74px;
    }

    .sx-section-transition__line {
        width: min(170px, 23vw);
    }
}

@media (max-width: 640px) {
    .sx-section-transition {
        gap: 12px;
        min-height: 26px;
        padding: 0 18px;
    }

    .sx-section-transition__line {
        width: min(110px, 25vw);
    }

    .headquarters-entry {
        padding: 68px 18px 78px;
        scroll-margin-top: 90px;
    }

    .sx-reveal {
        transform: translateY(20px);
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY: REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .sx-reveal,
    .sx-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .entry-card,
    .entry-card::after,
    .entry-card-link {
        transition: none;
    }
}

/* =========================================================
   MODULE 02
   SMARTENGINE™ COMMAND STATUS
   ========================================================= */


/* ---------------------------------------------------------
   COMMAND STATUS PANEL
   --------------------------------------------------------- */

.sx-command-status {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 42px;
    align-items: center;
    width: min(1120px, 100%);
    margin: 46px auto 22px;
    padding: 30px 32px;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(13, 30, 45, 0.96),
            rgba(7, 17, 27, 0.96)
        );
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.sx-command-status::before {
    content: "";
    position: absolute;
    top: -110px;
    left: -80px;
    width: 340px;
    height: 260px;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(20, 174, 234, 0.14),
        transparent 70%
    );
}

.sx-command-status::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20, 174, 234, 0.48)
    );
}


/* ---------------------------------------------------------
   IDENTITY AREA
   --------------------------------------------------------- */

.sx-command-status__identity {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sx-command-status__signal {
    position: relative;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-top: 3px;
    border: 1px solid rgba(20, 174, 234, 0.24);
    border-radius: 50%;
    background: rgba(20, 174, 234, 0.055);
}

.sx-command-status__signal::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #38c7ff;
    box-shadow:
        0 0 10px rgba(56, 199, 255, 0.85),
        0 0 24px rgba(56, 199, 255, 0.48);
}

.sx-command-status__pulse {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(56, 199, 255, 0.38);
    border-radius: 50%;
    animation: sx-command-pulse 2.8s ease-out infinite;
}

@keyframes sx-command-pulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    28% {
        opacity: 0.65;
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.sx-command-status__eyebrow {
    margin: 0 0 7px;
    color: #38c7ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.sx-command-status__heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
}

.sx-command-status__heading > p:last-child {
    max-width: 570px;
    margin: 10px 0 0;
    color: rgba(224, 238, 247, 0.72);
    font-size: 0.94rem;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   READINESS INDICATORS
   --------------------------------------------------------- */

.sx-command-status__readiness {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.sx-status-item {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sx-status-item:last-child {
    border-bottom: 0;
}

.sx-status-item__label {
    color: rgba(230, 241, 248, 0.76);
    font-size: 0.84rem;
}

.sx-status-item__state {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.sx-status-item__state > span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.sx-status-item__state--active {
    color: #66e0a3;
}

.sx-status-item__state--active > span {
    background: #66e0a3;
    box-shadow: 0 0 12px rgba(102, 224, 163, 0.58);
}

.sx-status-item__state--defined {
    color: #72cfff;
}

.sx-status-item__state--defined > span {
    background: #72cfff;
    box-shadow: 0 0 12px rgba(114, 207, 255, 0.5);
}

.sx-status-item__state--development {
    color: #f5c96f;
}

.sx-status-item__state--development > span {
    background: #f5c96f;
    box-shadow: 0 0 12px rgba(245, 201, 111, 0.48);
}


/* ---------------------------------------------------------
   CAPABILITY RAIL
   --------------------------------------------------------- */

.sx-capability-rail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    width: min(1120px, 100%);
    margin: 0 auto 48px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.sx-capability-rail__label {
    margin: 0;
    color: rgba(126, 206, 244, 0.72);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.sx-capability-rail__items {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.sx-capability-rail__items span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(108, 207, 255, 0.13);
    border-radius: 999px;
    background: rgba(108, 207, 255, 0.035);
    color: rgba(231, 242, 249, 0.72);
    font-size: 0.73rem;
}

.sx-capability-rail__items span::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(56, 199, 255, 0.76);
    box-shadow: 0 0 8px rgba(56, 199, 255, 0.4);
}


/* ---------------------------------------------------------
   REVEAL TIMING
   --------------------------------------------------------- */

.sx-command-status.sx-reveal {
    transition-delay: 0.08s;
}

.sx-capability-rail.sx-reveal {
    transition-delay: 0.16s;
}


/* ---------------------------------------------------------
   RESPONSIVE DESIGN
   --------------------------------------------------------- */

@media (max-width: 900px) {
    .sx-command-status {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .sx-command-status__readiness {
        padding-left: 68px;
    }

    .sx-capability-rail {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .sx-command-status {
        gap: 24px;
        margin-top: 34px;
        padding: 24px 20px;
        border-radius: 15px;
    }

    .sx-command-status__identity {
        gap: 14px;
    }

    .sx-command-status__signal {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .sx-command-status__readiness {
        padding-left: 0;
    }

    .sx-status-item {
        align-items: flex-start;
    }

    .sx-status-item__label {
        max-width: 52%;
    }

    .sx-status-item__state {
        font-size: 0.65rem;
    }

    .sx-capability-rail {
        margin-bottom: 36px;
        padding-right: 4px;
        padding-left: 4px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .sx-command-status__pulse {
        animation: none;
        opacity: 0.45;
        transform: none;
    }
}

/* =========================================================
   MODULE 03
   ROLE GATEWAY ACTIVATION
   ========================================================= */


/* ---------------------------------------------------------
   GATEWAY CARD FOUNDATION
   --------------------------------------------------------- */

.headquarters-entry .entry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.14);
    background:
        linear-gradient(
            145deg,
            rgba(15, 34, 50, 0.96),
            rgba(8, 20, 31, 0.98)
        );
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}


/* ---------------------------------------------------------
   TOP ACCESS SIGNAL
   --------------------------------------------------------- */

.headquarters-entry .entry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 199, 255, 0.92),
        transparent
    );
    opacity: 0.34;
    transform: scaleX(0.42);
    transform-origin: center;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* ---------------------------------------------------------
   INTERNAL LIGHT SWEEP
   --------------------------------------------------------- */

.headquarters-entry .entry-card::after {
    content: "";
    position: absolute;
    top: -35%;
    left: -65%;
    width: 42%;
    height: 180%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(108, 207, 255, 0.06),
        transparent
    );
    transform: rotate(10deg);
    transition: left 0.72s ease;
}


/* ---------------------------------------------------------
   KEEP CARD CONTENT ABOVE EFFECTS
   --------------------------------------------------------- */

.headquarters-entry .entry-card > * {
    position: relative;
    z-index: 1;
}


/* ---------------------------------------------------------
   CARD NUMBER AS ACCESS IDENTIFIER
   --------------------------------------------------------- */

.headquarters-entry .entry-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border: 1px solid rgba(56, 199, 255, 0.2);
    border-radius: 50%;
    background: rgba(56, 199, 255, 0.045);
    color: #58ceff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow:
        inset 0 0 18px rgba(56, 199, 255, 0.03),
        0 0 0 6px rgba(56, 199, 255, 0.025);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* ---------------------------------------------------------
   ROLE LABEL
   --------------------------------------------------------- */

.headquarters-entry .entry-card-label {
    margin-bottom: 10px;
    color: rgba(112, 207, 249, 0.76);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.13em;
}


/* ---------------------------------------------------------
   CARD TITLE
   --------------------------------------------------------- */

.headquarters-entry .entry-card h3 {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin-bottom: 16px;
}

.headquarters-entry .entry-card h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    width: 34px;
    height: 1px;
    background: rgba(56, 199, 255, 0.62);
    transition: width 0.32s ease;
}


/* ---------------------------------------------------------
   SERVICE LIST
   --------------------------------------------------------- */

.headquarters-entry .entry-card-list {
    margin-bottom: 30px;
}

.headquarters-entry .entry-card-list li {
    position: relative;
    padding-left: 19px;
}

.headquarters-entry .entry-card-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid rgba(56, 199, 255, 0.72);
    border-radius: 50%;
    transform: translateY(-50%);
}


/* ---------------------------------------------------------
   GATEWAY LINK
   --------------------------------------------------------- */

.headquarters-entry .entry-card-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    color: #68d2ff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-decoration: none;
}

.headquarters-entry .entry-card-link span {
    display: inline-block;
    transition: transform 0.28s ease;
}


/* ---------------------------------------------------------
   DESKTOP INTERACTION
   --------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {

    .headquarters-entry .entry-card:hover {
        transform: translateY(-8px);
        border-color: rgba(56, 199, 255, 0.34);
        box-shadow:
            0 26px 70px rgba(0, 0, 0, 0.34),
            0 0 38px rgba(56, 199, 255, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .headquarters-entry .entry-card:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .headquarters-entry .entry-card:hover::after {
        left: 125%;
    }

    .headquarters-entry .entry-card:hover .entry-card-number {
        border-color: rgba(56, 199, 255, 0.5);
        background: rgba(56, 199, 255, 0.09);
        box-shadow:
            inset 0 0 20px rgba(56, 199, 255, 0.06),
            0 0 0 7px rgba(56, 199, 255, 0.035),
            0 0 24px rgba(56, 199, 255, 0.12);
        transform: translateY(-2px);
    }

    .headquarters-entry .entry-card:hover h3::after {
        width: 100%;
    }

    .headquarters-entry .entry-card:hover .entry-card-link span {
        transform: translateX(5px);
    }
}


/* ---------------------------------------------------------
   KEYBOARD ACCESS
   --------------------------------------------------------- */

.headquarters-entry .entry-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(56, 199, 255, 0.42);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.3),
        0 0 34px rgba(56, 199, 255, 0.08);
}

.headquarters-entry .entry-card:focus-within::before {
    opacity: 1;
    transform: scaleX(1);
}

.headquarters-entry .entry-card-link:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(56, 199, 255, 0.42);
    outline-offset: 6px;
}


/* ---------------------------------------------------------
   INDIVIDUAL GATEWAY IDENTITIES
   --------------------------------------------------------- */

.headquarters-entry #shippers {
    --sx-gateway-accent: rgba(56, 199, 255, 0.9);
}

.headquarters-entry #carriers {
    --sx-gateway-accent: rgba(102, 224, 163, 0.9);
}

.headquarters-entry #strategic-partners {
    --sx-gateway-accent: rgba(245, 201, 111, 0.9);
}

.headquarters-entry #shippers .entry-card-number {
    color: #58ceff;
}

.headquarters-entry #carriers .entry-card-number {
    color: #66e0a3;
    border-color: rgba(102, 224, 163, 0.2);
}

.headquarters-entry #strategic-partners .entry-card-number {
    color: #f5c96f;
    border-color: rgba(245, 201, 111, 0.2);
}

.headquarters-entry #carriers h3::after {
    background: rgba(102, 224, 163, 0.62);
}

.headquarters-entry #strategic-partners h3::after {
    background: rgba(245, 201, 111, 0.62);
}


/* ---------------------------------------------------------
   MOBILE REFINEMENT
   --------------------------------------------------------- */

@media (max-width: 640px) {

    .headquarters-entry .entry-card {
        min-height: auto;
    }

    .headquarters-entry .entry-card-number {
        width: 38px;
        height: 38px;
        margin-bottom: 20px;
    }

    .headquarters-entry .entry-card-link {
        width: 100%;
        justify-content: space-between;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .headquarters-entry .entry-card,
    .headquarters-entry .entry-card::before,
    .headquarters-entry .entry-card::after,
    .headquarters-entry .entry-card-number,
    .headquarters-entry .entry-card h3::after,
    .headquarters-entry .entry-card-link span {
        transition: none;
    }

    .headquarters-entry .entry-card:hover,
    .headquarters-entry .entry-card:focus-within {
        transform: none;
    }

    .headquarters-entry .entry-card:hover::after {
        left: -65%;
    }
}

/* =========================================================
   MODULE 04
   SMARTENGINE™ ARCHITECTURE MAP
   ========================================================= */


/* ---------------------------------------------------------
   ARCHITECTURE SECTION
   --------------------------------------------------------- */

.sx-architecture {
    position: relative;
    width: min(1120px, 100%);
    margin: 92px auto 0;
    padding: 62px 42px 42px;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.12);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at center,
            rgba(20, 174, 234, 0.07),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(11, 28, 42, 0.96),
            rgba(6, 16, 25, 0.98)
        );
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sx-architecture::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 42%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 199, 255, 0.75),
        transparent
    );
    transform: translateX(-50%);
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.sx-architecture__heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.sx-architecture__eyebrow {
    margin: 0 0 10px;
    color: #38c7ff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.sx-architecture__heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.sx-architecture__heading > p:last-child {
    max-width: 640px;
    margin: 16px auto 0;
    color: rgba(224, 238, 247, 0.7);
    font-size: 0.96rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   ARCHITECTURE MAP
   --------------------------------------------------------- */

.sx-architecture__map {
    position: relative;
    width: min(760px, 100%);
    min-height: 590px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SMARTENGINE™ CORE
   --------------------------------------------------------- */

.sx-architecture__core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(56, 199, 255, 0.25);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(33, 157, 213, 0.18),
            rgba(8, 24, 36, 0.96) 68%
        );
    box-shadow:
        0 0 60px rgba(20, 174, 234, 0.12),
        inset 0 0 36px rgba(56, 199, 255, 0.06);
    transform: translate(-50%, -50%);
}

.sx-architecture__core-ring {
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(56, 199, 255, 0.16);
    border-radius: 50%;
    animation: sx-core-ring 4.5s ease-in-out infinite;
}

.sx-architecture__core-ring--outer {
    inset: -34px;
    opacity: 0.42;
    animation-delay: 0.9s;
}

@keyframes sx-core-ring {
    0%,
    100% {
        opacity: 0.18;
        transform: scale(0.96);
    }

    50% {
        opacity: 0.65;
        transform: scale(1.03);
    }
}

.sx-architecture__core-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    text-align: center;
}

.sx-architecture__core-content p {
    margin: 0 0 10px;
    color: #38c7ff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.sx-architecture__core-content h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.15;
}

.sx-architecture__core-content span {
    display: block;
    max-width: 150px;
    margin: 10px auto 0;
    color: rgba(221, 237, 246, 0.62);
    font-size: 0.72rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   CONNECTION LINES
   --------------------------------------------------------- */

.sx-architecture__connector {
    position: absolute;
    z-index: 1;
    display: block;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 199, 255, 0.4),
        transparent
    );
}

.sx-architecture__connector::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38c7ff;
    box-shadow: 0 0 14px rgba(56, 199, 255, 0.72);
}

.sx-architecture__connector--top {
    top: 122px;
    left: 50%;
    width: 1px;
    height: 90px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(56, 199, 255, 0.48)
    );
}

.sx-architecture__connector--top::after {
    right: -3px;
    bottom: 0;
}

.sx-architecture__connector--right {
    top: 50%;
    right: 135px;
    width: 110px;
    height: 1px;
}

.sx-architecture__connector--right::after {
    top: -3px;
    left: 0;
}

.sx-architecture__connector--bottom {
    bottom: 120px;
    left: 50%;
    width: 1px;
    height: 90px;
    background: linear-gradient(
        180deg,
        rgba(56, 199, 255, 0.48),
        transparent
    );
}

.sx-architecture__connector--bottom::after {
    top: 0;
    right: -3px;
}

.sx-architecture__connector--left {
    top: 50%;
    left: 135px;
    width: 110px;
    height: 1px;
}

.sx-architecture__connector--left::after {
    top: -3px;
    right: 0;
}


/* ---------------------------------------------------------
   ARCHITECTURE NODES
   --------------------------------------------------------- */

.sx-architecture__node {
    position: absolute;
    z-index: 3;
    width: 210px;
    min-height: 132px;
    padding: 20px;
    border: 1px solid rgba(108, 207, 255, 0.13);
    border-radius: 14px;
    background: rgba(11, 29, 43, 0.88);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.sx-architecture__node--top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sx-architecture__node--right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.sx-architecture__node--bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sx-architecture__node--left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sx-architecture__node-number {
    display: block;
    margin-bottom: 10px;
    color: #38c7ff;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.sx-architecture__node h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.sx-architecture__node p {
    margin: 9px 0 0;
    color: rgba(221, 236, 245, 0.64);
    font-size: 0.78rem;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   DESKTOP NODE INTERACTION
   --------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {

    .sx-architecture__node:hover {
        border-color: rgba(56, 199, 255, 0.34);
        background: rgba(13, 35, 51, 0.96);
    }

    .sx-architecture__node--top:hover {
        transform: translateX(-50%) translateY(-5px);
    }

    .sx-architecture__node--right:hover {
        transform: translateY(-50%) translateX(5px);
    }

    .sx-architecture__node--bottom:hover {
        transform: translateX(-50%) translateY(5px);
    }

    .sx-architecture__node--left:hover {
        transform: translateY(-50%) translateX(-5px);
    }
}


/* ---------------------------------------------------------
   PARTICIPANT STRIP
   --------------------------------------------------------- */

.sx-architecture__participants {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 52px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sx-architecture__participant {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid rgba(108, 207, 255, 0.08);
    border-radius: 10px;
    background: rgba(108, 207, 255, 0.025);
}

.sx-architecture__participant span {
    color: #38c7ff;
    font-size: 0.63rem;
    font-weight: 800;
}

.sx-architecture__participant p {
    margin: 0;
    color: rgba(229, 241, 248, 0.74);
    font-size: 0.76rem;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .sx-architecture {
        padding: 54px 26px 34px;
    }

    .sx-architecture__map {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sx-architecture__core {
        position: relative;
        top: auto;
        left: auto;
        grid-column: 1 / -1;
        width: 200px;
        height: 200px;
        margin: 10px auto 24px;
        transform: none;
    }

    .sx-architecture__node {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
        min-height: 130px;
        transform: none;
    }

    .sx-architecture__node--top,
    .sx-architecture__node--right,
    .sx-architecture__node--bottom,
    .sx-architecture__node--left {
        transform: none;
    }

    .sx-architecture__connector {
        display: none;
    }

    .sx-architecture__participants {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .sx-architecture {
        margin-top: 68px;
        padding: 44px 18px 24px;
        border-radius: 17px;
    }

    .sx-architecture__heading {
        margin-bottom: 42px;
    }

    .sx-architecture__map {
        grid-template-columns: 1fr;
    }

    .sx-architecture__core {
        width: 174px;
        height: 174px;
    }

    .sx-architecture__core-ring {
        inset: -11px;
    }

    .sx-architecture__core-ring--outer {
        inset: -23px;
    }

    .sx-architecture__core-content h4 {
        font-size: 1.28rem;
    }

    .sx-architecture__participants {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .sx-architecture__core-ring {
        animation: none;
        opacity: 0.35;
    }

    .sx-architecture__node {
        transition: none;
    }

    .sx-architecture__node:hover {
        transform: none;
    }
}

/* =========================================================
   MODULE 05
   INDUSTRY OPERATIONS MATRIX
   ========================================================= */


/* ---------------------------------------------------------
   SECTION FOUNDATION
   --------------------------------------------------------- */

.sx-industries {
    position: relative;
    padding: 108px 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(20, 174, 234, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #08141f 0%,
            #0a1824 52%,
            #08141f 100%
        );
    color: #ffffff;
}

.sx-industries::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1120px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 199, 255, 0.32),
        transparent
    );
    transform: translateX(-50%);
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.sx-industries__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
    width: min(1120px, 100%);
    margin: 0 auto 52px;
}

.sx-industries__heading-copy {
    max-width: 720px;
}

.sx-industries__eyebrow {
    margin: 0 0 12px;
    color: #38c7ff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.sx-industries__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
}

.sx-industries__heading-copy > p:last-child {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(224, 238, 247, 0.7);
    font-size: 0.98rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   HEADING STATUS
   --------------------------------------------------------- */

.sx-industries__heading-status {
    display: flex;
    gap: 13px;
    align-items: center;
    min-width: 230px;
    padding: 16px 18px;
    border: 1px solid rgba(108, 207, 255, 0.13);
    border-radius: 12px;
    background: rgba(108, 207, 255, 0.025);
}

.sx-industries__status-light {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #66e0a3;
    box-shadow:
        0 0 10px rgba(102, 224, 163, 0.75),
        0 0 22px rgba(102, 224, 163, 0.3);
}

.sx-industries__heading-status small {
    display: block;
    margin-bottom: 4px;
    color: rgba(128, 206, 243, 0.62);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.sx-industries__heading-status strong {
    color: rgba(238, 247, 251, 0.88);
    font-size: 0.78rem;
}


/* ---------------------------------------------------------
   INDUSTRY GRID
   --------------------------------------------------------- */

.sx-industries__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, 100%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   INDUSTRY CARD
   --------------------------------------------------------- */

.sx-industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.11);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 33, 48, 0.94),
            rgba(8, 21, 32, 0.98)
        );
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.sx-industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(56, 199, 255, 0.72),
        transparent
    );
}

.sx-industry-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(56, 199, 255, 0.075),
        transparent 70%
    );
}


/* ---------------------------------------------------------
   CARD HEADER
   --------------------------------------------------------- */

.sx-industry-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.sx-industry-card__number {
    color: #38c7ff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.sx-industry-card__classification {
    padding: 5px 9px;
    border: 1px solid rgba(108, 207, 255, 0.13);
    border-radius: 999px;
    color: rgba(138, 213, 248, 0.68);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.sx-industry-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
}

.sx-industry-card > p {
    position: relative;
    z-index: 1;
    margin: 15px 0 22px;
    color: rgba(224, 238, 247, 0.68);
    font-size: 0.88rem;
    line-height: 1.7;
}

.sx-industry-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.sx-industry-card li {
    position: relative;
    padding-left: 16px;
    color: rgba(230, 241, 248, 0.72);
    font-size: 0.77rem;
    line-height: 1.5;
}

.sx-industry-card li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(56, 199, 255, 0.82);
    box-shadow: 0 0 8px rgba(56, 199, 255, 0.32);
}


/* ---------------------------------------------------------
   CARD FOOTER
   --------------------------------------------------------- */

.sx-industry-card__footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sx-industry-card__footer span {
    color: rgba(220, 235, 244, 0.5);
    font-size: 0.65rem;
}

.sx-industry-card__footer strong {
    color: #6ed5ff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   CARD INTERACTION
   --------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
    .sx-industry-card:hover {
        transform: translateY(-6px);
        border-color: rgba(56, 199, 255, 0.28);
        box-shadow:
            0 25px 66px rgba(0, 0, 0, 0.3),
            0 0 34px rgba(56, 199, 255, 0.045);
    }
}


/* ---------------------------------------------------------
   OPERATING FOUNDATION
   --------------------------------------------------------- */

.sx-industries__foundation {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    width: min(1120px, 100%);
    margin: 24px auto 0;
    padding: 20px 24px;
    border: 1px solid rgba(108, 207, 255, 0.1);
    border-radius: 13px;
    background: rgba(108, 207, 255, 0.025);
}

.sx-industries__foundation-label {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sx-industries__foundation-label span {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #38c7ff;
    box-shadow: 0 0 12px rgba(56, 199, 255, 0.55);
}

.sx-industries__foundation-label p {
    margin: 0;
    color: rgba(126, 206, 244, 0.7);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.sx-industries__foundation-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sx-industries__foundation-items span {
    padding: 6px 11px;
    border: 1px solid rgba(108, 207, 255, 0.09);
    border-radius: 999px;
    color: rgba(228, 240, 247, 0.64);
    font-size: 0.7rem;
}


/* ---------------------------------------------------------
   REVEAL SEQUENCE
   --------------------------------------------------------- */

.sx-industries__grid .sx-industry-card.sx-reveal:nth-child(1) {
    transition-delay: 0.04s;
}

.sx-industries__grid .sx-industry-card.sx-reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.sx-industries__grid .sx-industry-card.sx-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.sx-industries__grid .sx-industry-card.sx-reveal:nth-child(4) {
    transition-delay: 0.28s;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {
    .sx-industries {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .sx-industries__heading {
        grid-template-columns: 1fr;
        gap: 26px;
        align-items: start;
    }

    .sx-industries__heading-status {
        width: fit-content;
    }

    .sx-industries__foundation {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 680px) {
    .sx-industries {
        padding: 72px 18px;
    }

    .sx-industries__grid {
        grid-template-columns: 1fr;
    }

    .sx-industry-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .sx-industry-card ul {
        grid-template-columns: 1fr;
    }

    .sx-industry-card__footer {
        align-items: flex-start;
    }

    .sx-industries__foundation {
        padding: 18px;
    }

    .sx-industries__foundation-label {
        align-items: flex-start;
    }

    .sx-industries__foundation-label p {
        white-space: normal;
        line-height: 1.5;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .sx-industry-card {
        transition: none;
    }

    .sx-industry-card:hover {
        transform: none;
    }
}

/* =========================================================
   END MODULE 05
   INDUSTRY OPERATIONS MATRIX
   ========================================================= */

/* =========================================================
   MODULE 06A
   DELIVERY OPERATIONS INTERFACE UPGRADE

   Preserves:
   - Existing journey tabs
   - Existing journey panels
   - White-glove deep dive
   - Existing images
   - Existing JavaScript behavior
   ========================================================= */


/* ---------------------------------------------------------
   SECTION FOUNDATION
   --------------------------------------------------------- */

.delivery-journey {
    position: relative;
    padding: 108px 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 14% 12%,
            rgba(56, 199, 255, 0.08),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 44%,
            rgba(26, 112, 168, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #07121c 0%,
            #091722 50%,
            #07121c 100%
        );
    color: #ffffff;
}

.delivery-journey::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1120px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 199, 255, 0.3),
        transparent
    );
    transform: translateX(-50%);
}

.delivery-journey::after {
    content: "";
    position: absolute;
    top: 128px;
    right: -180px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(56, 199, 255, 0.065),
        transparent 68%
    );
}

.delivery-journey .journey-container {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.delivery-journey .journey-heading {
    position: relative;
    max-width: 780px;
    margin: 0 0 48px;
    padding-left: 22px;
    text-align: left;
}

.delivery-journey .journey-heading::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        #38c7ff,
        rgba(56, 199, 255, 0.08)
    );
    box-shadow: 0 0 14px rgba(56, 199, 255, 0.2);
}

.delivery-journey .journey-heading::after {
    content: "DELIVERY OPERATIONS EXPERIENCE";
    display: block;
    margin-top: 18px;
    color: rgba(104, 205, 250, 0.72);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.delivery-journey .journey-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.delivery-journey .journey-heading > p {
    max-width: 700px;
    margin: 17px 0 0;
    color: rgba(224, 238, 247, 0.7);
    font-size: 0.98rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   JOURNEY TAB COMMAND RAIL
   --------------------------------------------------------- */

.delivery-journey .journey-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 22px;
    padding: 10px;
    border: 1px solid rgba(108, 207, 255, 0.11);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(14, 33, 48, 0.91),
            rgba(8, 21, 32, 0.96)
        );
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.delivery-journey .journey-tabs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 199, 255, 0.28),
        transparent
    );
}

.delivery-journey .journey-tabs button {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-height: 91px;
    padding: 16px 15px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: rgba(222, 236, 245, 0.64);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.delivery-journey .journey-tabs button::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 2px;
    background: linear-gradient(
        90deg,
        #38c7ff,
        transparent
    );
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: left;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.delivery-journey .journey-tabs button > span {
    color: rgba(56, 199, 255, 0.72);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.delivery-journey .journey-tabs button small {
    display: block;
    color: rgba(193, 219, 231, 0.46);
    font-size: 0.59rem;
    font-weight: 600;
    line-height: 1.4;
}

.delivery-journey .journey-tabs button[aria-selected="true"] {
    border-color: rgba(56, 199, 255, 0.24);
    background:
        linear-gradient(
            145deg,
            rgba(56, 199, 255, 0.105),
            rgba(56, 199, 255, 0.025)
        );
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 26px rgba(0, 0, 0, 0.16);
}

.delivery-journey .journey-tabs button[aria-selected="true"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.delivery-journey .journey-tabs button[aria-selected="true"] > span {
    color: #38c7ff;
}

.delivery-journey .journey-tabs button:focus-visible {
    outline: 2px solid #38c7ff;
    outline-offset: 3px;
}


/* ---------------------------------------------------------
   JOURNEY PANEL FRAME
   --------------------------------------------------------- */

.delivery-journey .journey-panels {
    position: relative;
    margin-bottom: 34px;
}

.delivery-journey .journey-detail {
    position: relative;
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    gap: 38px;
    align-items: stretch;
    min-height: 430px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 35, 50, 0.96),
            rgba(7, 19, 29, 0.985)
        );
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

/*
   This does not force inactive panels to display.
   It only styles the active panel when your existing
   JavaScript or CSS makes it visible.
*/

.delivery-journey .journey-detail:not([hidden]) {
    display: grid;
}

.delivery-journey .journey-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 38%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(56, 199, 255, 0.8),
        transparent
    );
}

.delivery-journey .journey-detail::after {
    content: "";
    position: absolute;
    top: -140px;
    right: -110px;
    width: 330px;
    height: 330px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(56, 199, 255, 0.07),
        transparent 70%
    );
}


/* ---------------------------------------------------------
   PANEL IMAGE
   --------------------------------------------------------- */

.delivery-journey .journey-detail > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 375px;
    object-fit: cover;
    border: 1px solid rgba(108, 207, 255, 0.1);
    border-radius: 13px;
    background: #0c1d2a;
    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}


/* ---------------------------------------------------------
   PANEL CONTENT
   --------------------------------------------------------- */

.delivery-journey .journey-detail > div {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: 16px 12px 16px 0;
}

.delivery-journey .journey-detail .eyebrow {
    margin: 0 0 11px;
    color: #38c7ff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.delivery-journey .journey-detail h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.12;
}

.delivery-journey .journey-detail h3 + p {
    max-width: 650px;
    margin: 15px 0 18px;
    color: rgba(225, 238, 246, 0.7);
    font-size: 0.91rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   OPERATIONAL STATUS
   --------------------------------------------------------- */

.delivery-journey .journey-status {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    width: fit-content;
    margin: 0 0 20px;
    padding: 9px 12px;
    border: 1px solid rgba(102, 224, 163, 0.14);
    border-radius: 999px;
    background: rgba(102, 224, 163, 0.035);
    color: rgba(213, 233, 225, 0.72);
    font-size: 0.68rem;
}

.delivery-journey .journey-status::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #66e0a3;
    box-shadow: 0 0 11px rgba(102, 224, 163, 0.62);
}

.delivery-journey .journey-status strong {
    color: rgba(231, 244, 237, 0.78);
}

.delivery-journey .journey-status span {
    color: #8ceab9;
    font-weight: 800;
}


/* ---------------------------------------------------------
   CAPABILITY LIST
   --------------------------------------------------------- */

.delivery-journey .journey-detail ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 16px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.delivery-journey .journey-detail li {
    position: relative;
    padding-left: 17px;
    color: rgba(226, 239, 247, 0.67);
    font-size: 0.77rem;
    line-height: 1.5;
}

.delivery-journey .journey-detail li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38c7ff;
    box-shadow: 0 0 8px rgba(56, 199, 255, 0.36);
}


/* ---------------------------------------------------------
   POWERED-BY LAYER
   --------------------------------------------------------- */

.delivery-journey .powered-by {
    margin: 0 0 23px;
    padding: 12px 14px;
    border-left: 2px solid rgba(56, 199, 255, 0.5);
    background: rgba(56, 199, 255, 0.025);
    color: rgba(195, 220, 233, 0.58);
    font-size: 0.7rem;
    line-height: 1.5;
}

.delivery-journey .powered-by strong {
    color: rgba(103, 207, 255, 0.84);
}


/* ---------------------------------------------------------
   JOURNEY ACTIONS
   --------------------------------------------------------- */

.delivery-journey .journey-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.delivery-journey .journey-actions .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

.delivery-journey .journey-actions .button.primary {
    border: 1px solid rgba(56, 199, 255, 0.68);
    background: #38c7ff;
    color: #06111a;
    box-shadow: 0 9px 23px rgba(56, 199, 255, 0.15);
}

.delivery-journey .journey-actions .button.secondary {
    border: 1px solid rgba(108, 207, 255, 0.17);
    background: rgba(108, 207, 255, 0.025);
    color: rgba(225, 239, 247, 0.75);
}

.delivery-journey .journey-deep-dive-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    color: #63d2ff;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.delivery-journey .journey-deep-dive-link span {
    transition: transform 0.22s ease;
}


/* ---------------------------------------------------------
   WHITE-GLOVE DEEP DIVE FOUNDATION
   --------------------------------------------------------- */

.delivery-journey .white-glove-deep-dive {
    position: relative;
    display: grid;
    gap: 17px;
    margin-top: 78px;
    padding-top: 64px;
    border-top: 1px solid rgba(108, 207, 255, 0.11);
}

.delivery-journey .white-glove-deep-dive::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 180px;
    height: 2px;
    background: linear-gradient(
        90deg,
        #38c7ff,
        transparent
    );
}

.delivery-journey .white-glove-deep-dive__heading {
    max-width: 760px;
    margin-bottom: 23px;
}

.delivery-journey .white-glove-deep-dive__heading .eyebrow {
    margin: 0 0 11px;
    color: #38c7ff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.delivery-journey .white-glove-deep-dive__heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.12;
}

.delivery-journey .white-glove-deep-dive__heading > p:last-child {
    margin: 16px 0 0;
    color: rgba(224, 238, 247, 0.68);
    font-size: 0.92rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   WHITE-GLOVE DELIVERY STAGE
   --------------------------------------------------------- */

.delivery-journey .delivery-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.65fr);
    gap: 26px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.105);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 33, 48, 0.93),
            rgba(8, 20, 31, 0.98)
        );
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.delivery-journey .delivery-stage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 26%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(56, 199, 255, 0.56),
        transparent
    );
}

.delivery-journey .delivery-stage__header {
    grid-column: 1 / -1;
    display: flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.delivery-journey .delivery-stage__number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(56, 199, 255, 0.28);
    border-radius: 50%;
    background: rgba(56, 199, 255, 0.055);
    color: #38c7ff;
    font-size: 0.65rem;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(56, 199, 255, 0.06);
}

.delivery-journey .delivery-stage__header h4 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.08rem, 2vw, 1.4rem);
}


/* ---------------------------------------------------------
   WHITE-GLOVE IMAGE GALLERY
   --------------------------------------------------------- */

.delivery-journey .delivery-stage__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-self: stretch;
}

.delivery-journey .delivery-stage__image {
    min-height: 175px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(108, 207, 255, 0.09);
    border-radius: 10px;
    background: #0c1d2a;
}

.delivery-journey .delivery-stage__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 175px;
    object-fit: cover;
    transition: transform 0.4s ease;
}


/* ---------------------------------------------------------
   WHITE-GLOVE CONTENT
   --------------------------------------------------------- */

.delivery-journey .delivery-stage__content {
    align-self: center;
}

.delivery-journey .delivery-stage__content > p {
    margin: 0 0 20px;
    color: rgba(224, 238, 247, 0.69);
    font-size: 0.87rem;
    line-height: 1.72;
}

.delivery-journey .delivery-stage__capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.delivery-journey .delivery-stage__capabilities li {
    padding: 7px 11px;
    border: 1px solid rgba(108, 207, 255, 0.1);
    border-radius: 999px;
    background: rgba(108, 207, 255, 0.025);
    color: rgba(221, 237, 246, 0.68);
    font-size: 0.68rem;
}


/* ---------------------------------------------------------
   DESKTOP INTERACTIONS
   --------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
    .delivery-journey .journey-tabs button:hover {
        border-color: rgba(56, 199, 255, 0.13);
        background: rgba(56, 199, 255, 0.035);
        color: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }

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

    .delivery-journey .journey-actions .button.primary:hover {
        box-shadow: 0 13px 29px rgba(56, 199, 255, 0.24);
    }

    .delivery-journey .journey-actions .button.secondary:hover {
        border-color: rgba(56, 199, 255, 0.3);
        background: rgba(56, 199, 255, 0.055);
    }

    .delivery-journey .journey-deep-dive-link:hover span {
        transform: translateY(3px);
    }

    .delivery-journey .delivery-stage:hover {
        transform: translateY(-5px);
        border-color: rgba(56, 199, 255, 0.25);
        box-shadow:
            0 25px 65px rgba(0, 0, 0, 0.29),
            0 0 34px rgba(56, 199, 255, 0.04);
    }

    .delivery-journey .delivery-stage:hover img {
        transform: scale(1.035);
    }
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 940px) {
    .delivery-journey {
        padding-top: 88px;
        padding-bottom: 88px;
    }

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

    .delivery-journey .journey-detail {
        grid-template-columns: minmax(190px, 36%) minmax(0, 1fr);
        gap: 28px;
    }

    .delivery-journey .delivery-stage {
        grid-template-columns: 1fr;
    }

    .delivery-journey .delivery-stage__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 680px) {
    .delivery-journey {
        padding: 72px 18px;
    }

    .delivery-journey .journey-heading {
        margin-bottom: 36px;
    }

    .delivery-journey .journey-tabs {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .delivery-journey .journey-tabs button {
        min-height: auto;
    }

    .delivery-journey .journey-detail:not([hidden]) {
        display: grid;
        grid-template-columns: 1fr;
    }

    .delivery-journey .journey-detail {
        gap: 20px;
        min-height: auto;
        padding: 18px;
    }

    .delivery-journey .journey-detail > img {
        height: 230px;
        min-height: 230px;
    }

    .delivery-journey .journey-detail > div {
        padding: 5px 3px 8px;
    }

    .delivery-journey .journey-detail ul {
        grid-template-columns: 1fr;
    }

    .delivery-journey .journey-actions {
        align-items: stretch;
    }

    .delivery-journey .journey-actions .button {
        width: 100%;
    }

    .delivery-journey .white-glove-deep-dive {
        margin-top: 60px;
        padding-top: 50px;
    }

    .delivery-journey .delivery-stage {
        gap: 19px;
        padding: 19px;
    }

    .delivery-journey .delivery-stage__gallery {
        grid-template-columns: 1fr;
    }

    .delivery-journey .delivery-stage__image,
    .delivery-journey .delivery-stage__image img {
        min-height: 220px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .delivery-journey .journey-tabs button,
    .delivery-journey .journey-actions .button,
    .delivery-journey .journey-deep-dive-link span,
    .delivery-journey .delivery-stage,
    .delivery-journey .delivery-stage__image img {
        transition: none;
    }

    .delivery-journey .journey-tabs button:hover,
    .delivery-journey .journey-actions .button:hover,
    .delivery-journey .delivery-stage:hover {
        transform: none;
    }

    .delivery-journey .delivery-stage:hover img {
        transform: none;
    }
}

/* =========================================================
   END MODULE 06A
   DELIVERY OPERATIONS INTERFACE UPGRADE
   ========================================================= */

 /* =========================================================
   MODULE 06A PATCH
   WHITE-GLOVE HEADING VISIBILITY
   ========================================================= */

.delivery-journey .white-glove-deep-dive__heading {
    position: relative;
    max-width: 760px;
    margin: 0 0 23px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
}

.delivery-journey .white-glove-deep-dive__heading::before,
.delivery-journey .white-glove-deep-dive__heading::after {
    content: none;
    display: none;
}

.delivery-journey .white-glove-deep-dive__heading .eyebrow {
    color: #38c7ff;
}

.delivery-journey .white-glove-deep-dive__heading h3 {
    color: #ffffff;
    opacity: 1;
    visibility: visible;
}

.delivery-journey .white-glove-deep-dive__heading > p:last-child {
    color: rgba(224, 238, 247, 0.72);
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   MODULE 06A PATCH
   CENTER WHITE-GLOVE HEADING
   ========================================================= */

.delivery-journey .white-glove-deep-dive__heading {
    width: min(760px, 100%);
    margin: 0 auto 23px;
    text-align: center;
}

.delivery-journey .white-glove-deep-dive__heading > p:last-child {
    max-width: 680px;
    margin: 16px auto 0;
}

/* =========================================================
   MODULE 06B
   WHITE-GLOVE OPERATIONAL TIMELINE

   Preserves every existing image and all current HTML.
   ========================================================= */


/* ---------------------------------------------------------
   TIMELINE FOUNDATION
   --------------------------------------------------------- */

.delivery-journey .white-glove-deep-dive {
    counter-reset: sx-white-glove-stage;
    position: relative;
    display: grid;
    gap: 34px;
    padding-left: 96px;
}


/*
   Continuous illuminated operating path
*/

.delivery-journey .white-glove-deep-dive::after {
    content: "";
    position: absolute;
    top: 215px;
    bottom: 88px;
    left: 35px;
    width: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            180deg,
            rgba(56, 199, 255, 0.12) 0%,
            rgba(56, 199, 255, 0.78) 18%,
            rgba(56, 199, 255, 0.52) 82%,
            rgba(102, 224, 163, 0.2) 100%
        );
    box-shadow:
        0 0 12px rgba(56, 199, 255, 0.2),
        0 0 28px rgba(56, 199, 255, 0.08);
}


/* ---------------------------------------------------------
   HEADING POSITION
   --------------------------------------------------------- */

.delivery-journey .white-glove-deep-dive__heading {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    margin: 0 auto 30px;
    text-align: center;
}


/*
   Timeline starting signal
*/

.delivery-journey .white-glove-deep-dive__heading::before {
    content: "";
    position: absolute;
    top: calc(100% + 42px);
    left: calc(-61px - ((1120px - min(1120px, 100%)) / 2));
    display: none;
}


/* ---------------------------------------------------------
   CONNECTED DELIVERY STAGES
   --------------------------------------------------------- */

.delivery-journey .delivery-stage {
    counter-increment: sx-white-glove-stage;
    position: relative;
    z-index: 2;
    overflow: visible;
    margin: 0;
}


/*
   Timeline checkpoint
*/

.delivery-journey .delivery-stage::before {
    content: counter(sx-white-glove-stage, decimal-leading-zero);
    position: absolute;
    top: 30px;
    left: -96px;
    z-index: 4;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 70px;
    height: 70px;

    border: 1px solid rgba(56, 199, 255, 0.5);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56, 199, 255, 0.2),
            rgba(8, 23, 35, 0.98) 68%
        );

    color: #78dcff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;

    box-shadow:
        0 0 0 8px rgba(7, 20, 30, 0.95),
        0 0 0 9px rgba(56, 199, 255, 0.09),
        0 0 24px rgba(56, 199, 255, 0.24);
}


/*
   Horizontal connection between rail and stage
*/

.delivery-journey .delivery-stage::after {
    content: "";
    position: absolute;
    top: 64px;
    left: -61px;
    z-index: -1;

    width: 61px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(56, 199, 255, 0.72),
            rgba(56, 199, 255, 0.12)
        );

    box-shadow: 0 0 10px rgba(56, 199, 255, 0.15);
}


/* ---------------------------------------------------------
   STAGE CARD DEPTH
   --------------------------------------------------------- */

.delivery-journey .delivery-stage {
    border-color: rgba(108, 207, 255, 0.13);

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(56, 199, 255, 0.045),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            rgba(14, 33, 48, 0.96),
            rgba(7, 19, 29, 0.99)
        );

    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/*
   Stage identification strip
*/

.delivery-journey .delivery-stage__header {
    position: relative;
    padding-left: 3px;
}

.delivery-journey .delivery-stage__header::after {
    content: "SERVICE CHECKPOINT";
    margin-left: auto;
    color: rgba(107, 207, 251, 0.48);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}


/*
   The original number inside each card remains as a
   secondary operational indicator.
*/

.delivery-journey .delivery-stage__number {
    width: 37px;
    height: 37px;

    border-color: rgba(56, 199, 255, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(56, 199, 255, 0.13),
            rgba(56, 199, 255, 0.035)
        );
}


/* ---------------------------------------------------------
   IMAGE STORYBOARD
   --------------------------------------------------------- */

.delivery-journey .delivery-stage__gallery {
    position: relative;
    gap: 10px;
    padding: 4px;
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.13);
}


/*
   Each image remains visible and becomes one frame
   in the operational sequence.
*/

.delivery-journey .delivery-stage__image {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-color: rgba(108, 207, 255, 0.13);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.delivery-journey .delivery-stage__image img {
    min-height: 190px;
}


/*
   Sequential frame indicators
*/

.delivery-journey .delivery-stage__image::after {
    position: absolute;
    right: 8px;
    bottom: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 27px;
    height: 20px;
    padding: 0 6px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;

    background: rgba(5, 15, 23, 0.74);
    backdrop-filter: blur(6px);

    color: rgba(226, 243, 250, 0.84);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.delivery-journey .delivery-stage__image:nth-child(1)::after {
    content: "A";
}

.delivery-journey .delivery-stage__image:nth-child(2)::after {
    content: "B";
}

.delivery-journey .delivery-stage__image:nth-child(3)::after {
    content: "C";
}


/* ---------------------------------------------------------
   OPERATIONAL DESCRIPTION
   --------------------------------------------------------- */

.delivery-journey .delivery-stage__content {
    position: relative;
    padding: 18px 19px;

    border: 1px solid rgba(108, 207, 255, 0.075);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(56, 199, 255, 0.024),
            rgba(56, 199, 255, 0.008)
        );
}

.delivery-journey .delivery-stage__content::before {
    content: "CUSTOMER EXPERIENCE STANDARD";
    display: block;
    margin-bottom: 12px;

    color: rgba(98, 205, 250, 0.65);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}


/* ---------------------------------------------------------
   CAPABILITY CHECKPOINTS
   --------------------------------------------------------- */

.delivery-journey .delivery-stage__capabilities li {
    position: relative;
    padding: 7px 12px 7px 26px;
}

.delivery-journey .delivery-stage__capabilities li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 10px;
    color: #66e0a3;
    font-size: 0.66rem;
    font-weight: 900;
    transform: translateY(-50%);
}


/* ---------------------------------------------------------
   COMPLETION SIGNAL
   --------------------------------------------------------- */

.delivery-journey .delivery-stage:last-child {
    border-color: rgba(102, 224, 163, 0.17);
}

.delivery-journey .delivery-stage:last-child::before {
    content: "✓";

    border-color: rgba(102, 224, 163, 0.54);

    background:
        radial-gradient(
            circle,
            rgba(102, 224, 163, 0.2),
            rgba(8, 23, 35, 0.98) 68%
        );

    color: #8ceab9;

    box-shadow:
        0 0 0 8px rgba(7, 20, 30, 0.95),
        0 0 0 9px rgba(102, 224, 163, 0.1),
        0 0 28px rgba(102, 224, 163, 0.25);
}

.delivery-journey .delivery-stage:last-child::after {
    background:
        linear-gradient(
            90deg,
            rgba(102, 224, 163, 0.75),
            rgba(102, 224, 163, 0.12)
        );
}

.delivery-journey .delivery-stage:last-child
.delivery-stage__header::after {
    content: "DELIVERY COMPLETE";
    color: rgba(102, 224, 163, 0.7);
}


/* ---------------------------------------------------------
   SCROLL-REVEAL CONTINUITY
   --------------------------------------------------------- */

.delivery-journey .delivery-stage.sx-reveal {
    transform: translateY(28px);
}

.delivery-journey .delivery-stage.sx-reveal.is-visible {
    transform: translateY(0);
}

.delivery-journey .delivery-stage.sx-reveal:nth-of-type(1) {
    transition-delay: 0.04s;
}

.delivery-journey .delivery-stage.sx-reveal:nth-of-type(2) {
    transition-delay: 0.08s;
}

.delivery-journey .delivery-stage.sx-reveal:nth-of-type(3) {
    transition-delay: 0.12s;
}

.delivery-journey .delivery-stage.sx-reveal:nth-of-type(4) {
    transition-delay: 0.16s;
}


/* ---------------------------------------------------------
   DESKTOP INTERACTION
   --------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {

    .delivery-journey .delivery-stage:hover {
        transform: translateX(7px);
    }

    .delivery-journey .delivery-stage:hover::before {
        border-color: rgba(56, 199, 255, 0.82);

        background:
            radial-gradient(
                circle,
                rgba(56, 199, 255, 0.35),
                rgba(8, 23, 35, 0.98) 68%
            );

        box-shadow:
            0 0 0 8px rgba(7, 20, 30, 0.95),
            0 0 0 9px rgba(56, 199, 255, 0.14),
            0 0 36px rgba(56, 199, 255, 0.42);
    }

    .delivery-journey .delivery-stage:last-child:hover::before {
        border-color: rgba(102, 224, 163, 0.82);

        background:
            radial-gradient(
                circle,
                rgba(102, 224, 163, 0.34),
                rgba(8, 23, 35, 0.98) 68%
            );

        box-shadow:
            0 0 0 8px rgba(7, 20, 30, 0.95),
            0 0 0 9px rgba(102, 224, 163, 0.14),
            0 0 36px rgba(102, 224, 163, 0.38);
    }
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 940px) {

    .delivery-journey .white-glove-deep-dive {
        padding-left: 78px;
    }

    .delivery-journey .white-glove-deep-dive::after {
        left: 27px;
    }

    .delivery-journey .delivery-stage::before {
        left: -78px;
        width: 56px;
        height: 56px;
    }

    .delivery-journey .delivery-stage::after {
        top: 57px;
        left: -50px;
        width: 50px;
    }

    .delivery-journey .delivery-stage__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 680px) {

    .delivery-journey .white-glove-deep-dive {
        gap: 28px;
        padding-left: 43px;
    }

    .delivery-journey .white-glove-deep-dive::after {
        top: 205px;
        bottom: 64px;
        left: 15px;
    }

    .delivery-journey .white-glove-deep-dive__heading {
        width: calc(100% + 43px);
        margin-left: -43px;
    }

    .delivery-journey .delivery-stage::before {
        top: 26px;
        left: -43px;

        width: 31px;
        height: 31px;

        font-size: 0.54rem;

        box-shadow:
            0 0 0 5px rgba(7, 20, 30, 0.96),
            0 0 0 6px rgba(56, 199, 255, 0.1),
            0 0 18px rgba(56, 199, 255, 0.22);
    }

    .delivery-journey .delivery-stage::after {
        top: 41px;
        left: -27px;
        width: 27px;
    }

    .delivery-journey .delivery-stage__header::after {
        display: none;
    }

    .delivery-journey .delivery-stage__gallery {
        grid-template-columns: 1fr;
    }

    .delivery-journey .delivery-stage__image,
    .delivery-journey .delivery-stage__image img {
        min-height: 225px;
    }

    .delivery-journey .delivery-stage__content {
        padding: 16px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .delivery-journey .delivery-stage:hover {
        transform: none;
    }
}

/* =========================================================
   END MODULE 06B
   WHITE-GLOVE OPERATIONAL TIMELINE
   ========================================================= */

@media (max-width: 430px) {
  .home-hero .headquarters-title {
    font-size: clamp(2rem, 9vw, 2.15rem);
    letter-spacing: -0.045em;
  }
}

/* =========================================================
   SPRINTERXPRESS PLANNING PREVIEW
   ========================================================= */

.planning-preview-page {
  background: #f4f7fb;
}

.preview-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.preview-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) 0 clamp(54px, 7vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 164, 255, 0.23), transparent 31%),
    linear-gradient(135deg, #071522 0%, #0b2940 58%, #0a3f68 100%);
}

.preview-hero::after {
  position: absolute;
  inset: auto -10% -180px 36%;
  height: 310px;
  content: "";
  border: 1px solid rgba(56, 199, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.preview-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.preview-hero h1 {
  max-width: 820px;
  margin: 12px 0 22px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.preview-hero__lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
}

.preview-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.preview-principles {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(94, 202, 255, 0.24);
  border-radius: 18px;
  background: rgba(4, 19, 31, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.preview-principles h2 {
  margin: 20px 0 12px;
  color: #fff;
  font-size: 1.55rem;
}

.preview-principles ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.preview-principles li {
  position: relative;
  padding-left: 28px;
}

.preview-principles li::before {
  position: absolute;
  left: 0;
  color: #66e0a3;
  content: "✓";
  font-weight: 900;
}

.preview-principles > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

.preview-role-nav {
  position: sticky;
  top: 124px;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.preview-role-nav .preview-shell {
  display: flex;
  overflow-x: auto;
}

.preview-role-nav a {
  flex: 1 0 auto;
  padding: 17px 22px;
  border-right: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.preview-role-nav a:first-child {
  border-left: 1px solid var(--line);
}

.preview-role-nav span,
.preview-signal-grid span {
  margin-right: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.preview-section,
.preview-method {
  padding: clamp(66px, 8vw, 112px) 0;
  scroll-margin-top: 190px;
}

.preview-section--operator {
  color: #fff;
  background: #081b2a;
}

.preview-section__heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.preview-section__heading h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.preview-section--operator .preview-section__heading h2,
.preview-section--operator .preview-section__heading p {
  color: inherit;
}

.preview-section__heading > p:last-child {
  color: var(--text);
  font-size: 1.06rem;
}

.preview-section--operator .preview-section__heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.preview-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.preview-assessment,
.preview-output {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(10, 38, 60, 0.1);
}

.preview-section--operator .preview-assessment,
.preview-section--operator .preview-output {
  color: var(--ink);
  border-color: rgba(91, 191, 241, 0.2);
}

.preview-form-intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.preview-form-intro span {
  font-weight: 800;
}

.preview-form-intro small {
  color: var(--text);
}

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

.preview-field {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 750;
}

.preview-field > span {
  color: var(--text);
  font-weight: 500;
}

.preview-field--wide {
  grid-column: 1 / -1;
}

.preview-field input,
.preview-field select,
.preview-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd7e3;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.preview-field textarea {
  resize: vertical;
}

.preview-field input:focus,
.preview-field select:focus,
.preview-field textarea:focus {
  border-color: #168bd0;
  outline: 3px solid rgba(22, 139, 208, 0.15);
}

.preview-options {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.preview-options legend {
  padding: 0 8px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.preview-check-grid label,
.preview-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 650;
}

.preview-check-grid input,
.preview-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.preview-calculate {
  min-width: min(100%, 310px);
  margin-top: 22px;
}

.preview-form-error {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: #a32222;
  font-size: 0.88rem;
  font-weight: 700;
}

.preview-data-note {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 0.78rem;
}

.preview-output[hidden] {
  display: none;
}

.preview-output {
  scroll-margin-top: 190px;
  border-top: 5px solid #168bd0;
}

.preview-output__header {
  max-width: 850px;
}

.preview-reference {
  margin: 18px 0 4px;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-investment,
.preview-readiness {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.preview-readiness {
  max-width: 900px;
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
}

.preview-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.preview-result-grid div {
  min-height: 130px;
  padding: 20px;
  background: #f8fafc;
}

.preview-result-grid dt {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-result-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.45;
}

.preview-disclaimer {
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: #fff8e8;
}

.preview-disclaimer h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.preview-disclaimer p {
  margin: 7px 0;
  color: #5d5138;
  font-size: 0.86rem;
}

.preview-interest-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.preview-interest-form__heading {
  max-width: 760px;
}

.preview-interest-form__heading h3 {
  margin: 4px 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.preview-interest-form > small {
  color: var(--text);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.preview-method {
  background: #fff;
}

.preview-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.preview-signal-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.preview-signal-grid article:last-child {
  border-right: 0;
}

.preview-signal-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.preview-signal-grid p {
  color: var(--text);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .preview-hero__grid {
    grid-template-columns: 1fr;
  }

  .preview-principles {
    max-width: 720px;
  }

  .preview-check-grid,
  .preview-result-grid,
  .preview-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-signal-grid article:nth-child(2) {
    border-right: 0;
  }

  .preview-signal-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .preview-shell {
    width: min(100% - 28px, 1180px);
  }

  .preview-role-nav {
    top: 86px;
  }

  .preview-form-grid,
  .preview-check-grid,
  .preview-result-grid,
  .preview-signal-grid {
    grid-template-columns: 1fr;
  }

  .preview-field--wide {
    grid-column: auto;
  }

  .preview-form-intro {
    display: grid;
  }

  .preview-result-grid div {
    min-height: 0;
  }

  .preview-signal-grid article,
  .preview-signal-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-signal-grid article:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   INTRODUCTORY / BUYER EXPERIENCE — v1
   Purpose: educate -> elevate -> hand off to Gateway
========================================================= */
.intro-page{background:#fff;color:var(--ink);}
.intro-shell{width:min(1180px,calc(100% - 40px));margin:0 auto;}
.intro-header{position:sticky;top:0;z-index:80;display:flex;align-items:center;justify-content:space-between;min-height:88px;padding:8px clamp(20px,5vw,72px);background:rgba(255,255,255,.94);border-bottom:1px solid rgba(219,227,236,.82);backdrop-filter:blur(14px);}
.intro-brand{display:flex;align-items:center;width:min(220px,46vw);}
.intro-brand img{display:block;width:100%;height:auto;}
.intro-header-link{font-size:.9rem;font-weight:800;color:var(--blue-dark);}
.intro-hero{position:relative;overflow:hidden;padding:clamp(84px,10vw,148px) 0;background:radial-gradient(circle at 85% 20%,rgba(18,97,166,.18),transparent 34%),linear-gradient(135deg,#071426 0%,#102442 56%,#0a3156 100%);color:#fff;}
.intro-hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:clamp(44px,7vw,96px);align-items:center;}
.intro-kicker{margin:0 0 14px;color:var(--gold);font-size:.78rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;}
.intro-hero h1,.intro-section h2,.intro-customer h2,.intro-threshold h2{margin:0;line-height:1.04;letter-spacing:-.035em;}
.intro-hero h1{max-width:850px;font-size:clamp(3rem,6vw,6.2rem);}
.intro-lead{max-width:760px;margin:28px 0 0;color:rgba(255,255,255,.82);font-size:clamp(1.08rem,1.7vw,1.35rem);line-height:1.75;}
.intro-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px;}
.intro-button{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:13px 21px;border-radius:8px;font-weight:800;}
.intro-button-primary{background:var(--gold);color:#162033;}
.intro-button-quiet{border:1px solid rgba(255,255,255,.28);color:#fff;}
.intro-hero-thought{padding:34px;border:1px solid rgba(255,255,255,.16);border-radius:18px;background:rgba(255,255,255,.07);box-shadow:0 26px 70px rgba(0,0,0,.2);}
.intro-hero-thought span{display:block;color:rgba(255,255,255,.68);font-size:.95rem;}
.intro-hero-thought strong{display:block;margin-top:10px;font-size:clamp(1.8rem,3.5vw,3.25rem);line-height:1.08;}
.intro-section{padding:clamp(78px,9vw,132px) 0;}
.intro-section-light{background:#fff;}
.intro-section-soft{background:var(--soft);}
.intro-heading{max-width:840px;margin-bottom:50px;}
.intro-heading-centered{margin-left:auto;margin-right:auto;text-align:center;}
.intro-heading h2,.intro-section h2{font-size:clamp(2.3rem,4.6vw,4.8rem);}
.intro-heading>p:last-child,.intro-alternative-copy>p,.intro-dark-lead{font-size:1.08rem;color:var(--text);}
.intro-burden-track{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin:44px auto 54px;max-width:1050px;}
.intro-burden-track span{padding:11px 15px;border:1px solid var(--line);border-radius:999px;background:#fff;font-weight:750;box-shadow:0 8px 24px rgba(20,33,61,.06);}
.intro-reveal-card{max-width:790px;margin:0 auto;padding:44px;text-align:center;border-radius:20px;background:linear-gradient(145deg,#102442,#071426);color:#fff;box-shadow:var(--shadow);}
.intro-reveal-card p{margin:0;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:.1em;font-size:.78rem;font-weight:800;}
.intro-reveal-card strong{display:block;margin:8px 0 10px;font-size:clamp(1.4rem,2.7vw,2.35rem);}
.intro-reveal-card span{display:block;margin:8px 0;color:var(--gold);font-size:1.5rem;}
.intro-reveal-card h3{margin:0;font-size:clamp(2rem,4vw,4rem);line-height:1.05;}
.intro-section-dark{background:#071426;color:#fff;}
.intro-consumption-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:clamp(42px,7vw,88px);align-items:start;}
.intro-section-dark h2{font-size:clamp(2.5rem,5vw,5rem);}
.intro-section-dark .intro-dark-lead{color:rgba(255,255,255,.72);}
.intro-consumption-list{display:grid;gap:1px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.13);border-radius:16px;overflow:hidden;}
.intro-consumption-list>div{display:grid;grid-template-columns:48px 1fr;column-gap:14px;padding:24px;background:#0d1d34;}
.intro-consumption-list span{grid-row:1/3;color:var(--gold);font-size:.78rem;font-weight:800;letter-spacing:.1em;}
.intro-consumption-list strong{font-size:1.06rem;}
.intro-consumption-list p{margin:5px 0 0;color:rgba(255,255,255,.66);font-size:.93rem;}
.intro-question{margin-top:70px;padding-top:50px;border-top:1px solid rgba(255,255,255,.14);text-align:center;}
.intro-question p{margin:0;color:rgba(255,255,255,.62);font-size:1.1rem;}
.intro-question h2{margin:8px auto 26px;max-width:850px;color:#fff;}
.intro-question strong{display:block;color:var(--gold);font-size:clamp(1.1rem,2.2vw,1.7rem);}
.intro-alternative-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);gap:clamp(42px,7vw,90px);align-items:center;}
.intro-definition-card{padding:38px;border-radius:18px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);}
.intro-definition-card span{display:block;color:var(--blue);font-size:.8rem;font-weight:800;letter-spacing:.11em;}
.intro-definition-card p{margin:18px 0 0;font-size:1.2rem;line-height:1.7;}
.intro-pillar-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.intro-pillar-grid article{padding:30px 26px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:0 14px 34px rgba(20,33,61,.07);}
.intro-pillar-grid span,.intro-flow span{color:var(--gold);font-size:.76rem;font-weight:800;letter-spacing:.12em;}
.intro-pillar-grid h3{margin:18px 0 10px;font-size:1.25rem;}
.intro-pillar-grid p{margin:0;color:var(--text);font-size:.94rem;}
.intro-section-flow{background:#eef4fa;}
.intro-flow{display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:16px;align-items:stretch;margin-top:44px;}
.intro-flow>div{padding:26px 22px;border-radius:16px;background:#fff;border:1px solid var(--line);}
.intro-flow>div strong{display:block;margin:12px 0 8px;font-size:1.05rem;}
.intro-flow>div p{margin:0;color:var(--text);font-size:.9rem;}
.intro-flow>b{align-self:center;color:var(--blue);font-size:1.7rem;}
.intro-precept{max-width:860px;margin:54px auto 0;text-align:center;}
.intro-precept h3{margin:0;font-size:clamp(1.8rem,3.8vw,3.4rem);line-height:1.08;}
.intro-precept p{margin:14px auto 0;color:var(--text);}
.intro-customer{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);min-height:720px;background:#071426;color:#fff;}
.intro-customer-image{min-height:520px;background:linear-gradient(rgba(7,20,38,.08),rgba(7,20,38,.08)),url('images/white-glove/white-glove-customer-handoff.webp'),url('images/delivery-journey/assembly-customer-handoff.png') center/cover no-repeat;}
.intro-customer-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(52px,7vw,100px);}
.intro-customer-copy h2{font-size:clamp(2.5rem,5vw,5rem);}
.intro-customer-copy>p:not(.intro-kicker){color:rgba(255,255,255,.72);font-size:1.05rem;}
.intro-customer-copy>strong{margin:8px 0 22px;color:var(--gold);font-size:1.35rem;}
.intro-customer-copy blockquote{margin:10px 0 22px;padding-left:22px;border-left:3px solid var(--gold);font-size:clamp(1.35rem,2.5vw,2.2rem);line-height:1.3;font-weight:700;}
.intro-customer-copy h3{margin:0;font-size:clamp(1.8rem,3vw,3rem);}
.intro-compare{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:50px;}
.intro-compare article{padding:38px;border:1px solid var(--line);border-radius:18px;background:#fff;}
.intro-compare-accent{box-shadow:inset 0 5px 0 var(--gold),var(--shadow);}
.intro-compare-label{margin:0;color:var(--blue);font-size:.76rem;font-weight:800;letter-spacing:.12em;}
.intro-compare h3{margin:12px 0 20px;font-size:1.55rem;line-height:1.15;}
.intro-compare ul{margin:0;padding-left:20px;color:var(--text);}
.intro-compare li{margin:9px 0;}
.intro-honesty{max-width:900px;margin:34px auto 0;text-align:center;color:var(--text);}
.intro-sxp-introduction{background:linear-gradient(135deg,#f8fafc 0%,#edf4fa 100%);}
.intro-sxp-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:70px;align-items:center;}
.intro-sxp-grid h2{font-size:clamp(2.6rem,5vw,5.2rem);}
.intro-sxp-grid p{color:var(--text);font-size:1.05rem;}
.intro-sxp-customer{font-weight:800;color:var(--ink)!important;font-size:1.2rem!important;}
.intro-sxp-mark{padding:32px;text-align:center;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow);}
.intro-sxp-mark img{width:min(360px,100%);}
.intro-sxp-mark span,.intro-sxp-mark small{display:block;}
.intro-sxp-mark span{margin-top:10px;font-weight:800;}
.intro-sxp-mark small{margin-top:8px;color:var(--text);}
.intro-threshold{padding:clamp(92px,11vw,155px) 0;text-align:center;background:radial-gradient(circle at 50% 0%,rgba(32,164,255,.18),transparent 36%),#050d18;color:#fff;}
.intro-threshold .intro-shell{max-width:900px;}
.intro-threshold h2{font-size:clamp(2.8rem,5.7vw,5.8rem);}
.intro-threshold>div>p:not(.intro-kicker){max-width:760px;margin:24px auto;color:rgba(255,255,255,.72);font-size:1.08rem;}
.intro-threshold-button{display:inline-flex;align-items:center;gap:10px;margin-top:14px;padding:15px 24px;border-radius:999px;background:var(--gold);color:#111c2e;font-weight:850;box-shadow:0 15px 45px rgba(245,166,35,.22);}
.intro-threshold small{display:block;margin-top:16px;color:rgba(255,255,255,.5);}
.intro-footer{padding:28px 0;background:#02070d;color:#fff;border-top:1px solid rgba(255,255,255,.08);}
.intro-footer-grid{display:flex;justify-content:space-between;gap:30px;align-items:center;}
.intro-footer-grid div{display:flex;flex-direction:column;}
.intro-footer-grid span{color:rgba(255,255,255,.55);font-size:.86rem;}
.intro-footer-grid a{color:var(--gold);font-weight:800;}
@media(max-width:980px){.intro-hero-grid,.intro-consumption-grid,.intro-alternative-grid,.intro-sxp-grid{grid-template-columns:1fr;}.intro-pillar-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.intro-flow{grid-template-columns:1fr 1fr;}.intro-flow>b{display:none;}.intro-customer{grid-template-columns:1fr;}.intro-customer-image{min-height:480px;}.intro-compare{grid-template-columns:1fr;}}
@media(max-width:640px){.intro-shell{width:min(100% - 28px,1180px);}.intro-header{min-height:74px;padding:7px 16px;}.intro-brand{width:160px;}.intro-header-link{font-size:.78rem;}.intro-hero{padding:72px 0 86px;}.intro-hero h1{font-size:clamp(2.75rem,13vw,4.4rem);}.intro-actions{display:grid;}.intro-button{width:100%;}.intro-section{padding:72px 0;}.intro-pillar-grid,.intro-flow{grid-template-columns:1fr;}.intro-reveal-card{padding:34px 22px;}.intro-consumption-list>div{grid-template-columns:38px 1fr;padding:20px 17px;}.intro-customer-copy{padding:56px 24px;}.intro-compare article{padding:28px 22px;}.intro-footer-grid{align-items:flex-start;flex-direction:column;}}

/* Introductory / Buyer Site — Draft 02 refinements */
.intro-burden-build{display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:14px;align-items:stretch;margin:48px 0 56px;}
.intro-burden-build article{padding:28px 24px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 14px 34px rgba(20,33,61,.06);}
.intro-burden-build article>span{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:#102442;color:var(--gold);font-size:.75rem;font-weight:800;}
.intro-burden-build b{align-self:center;color:var(--blue);font-size:1.5rem;}
.intro-burden-stage{margin:18px 0 4px;color:var(--blue);font-size:.77rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;}
.intro-burden-build h3{margin:0 0 10px;font-size:1.28rem;color:var(--brand-navy);}
.intro-burden-build article>p:last-child{margin:0;color:var(--text);font-size:.92rem;line-height:1.65;}
.intro-focus-section{background:#fff;}
.intro-focus-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(44px,7vw,90px);align-items:start;}
.intro-focus-grid h2{font-size:clamp(2.35rem,4.7vw,4.8rem);}
.intro-focus-grid>div:first-child>p:last-child{font-size:1.08rem;line-height:1.78;color:var(--text);}
.intro-focus-examples{display:grid;gap:14px;}
.intro-focus-examples article{padding:24px 26px;border-left:4px solid var(--gold);background:var(--soft);border-radius:0 14px 14px 0;}
.intro-focus-examples strong{display:block;color:var(--brand-navy);font-size:1.05rem;}
.intro-focus-examples p{margin:7px 0 0;color:var(--text);line-height:1.65;}
.intro-focus-close{margin-top:56px;padding-top:34px;border-top:1px solid var(--line);text-align:center;}
.intro-focus-close p{margin:0;color:var(--blue);font-size:.8rem;font-weight:800;letter-spacing:.11em;text-transform:uppercase;}
.intro-focus-close strong{display:block;margin-top:8px;color:var(--brand-navy);font-size:clamp(1.45rem,3vw,2.45rem);line-height:1.2;}
@media (max-width:980px){
  .intro-burden-build{grid-template-columns:1fr 1fr;}
  .intro-burden-build>b{display:none;}
  .intro-focus-grid{grid-template-columns:1fr;}
}
@media (max-width:620px){
  .intro-burden-build{grid-template-columns:1fr;}
}

/* Introductory buyer experience — Draft 03 reveal pass */
.intro-header-neutral {
  justify-content: space-between;
  gap: 1rem;
}
.intro-brand-text {
  width: auto;
  height: auto;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: inherit;
}
.intro-header-context {
  max-width: 34rem;
  text-align: right;
  font-size: .78rem;
  opacity: .66;
}
.intro-sxp-reveal-line {
  margin: .65rem 0 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.015em;
}
@media (max-width: 720px) {
  .intro-header-context { display: none; }
}


/* v2 Digital Headquarters arrival continuity */
.headquarters-arrival-note {
  margin: 0 0 .75rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .82;
}
.headquarters-arrival-note[hidden] { display: none; }

/* ============================================================
   FOR BUSINESSES — DRAFT 07
   Commercial evaluation layer after the Digital Headquarters.
   ============================================================ */
.business-page{background:#fff;color:var(--ink);}
.business-shell{width:min(1180px,calc(100% - 40px));margin:0 auto;}
.business-hero{padding:clamp(82px,9vw,132px) 0 86px;background:radial-gradient(circle at 82% 18%,rgba(32,164,255,.13),transparent 30%),linear-gradient(145deg,#f7fafc 0%,#eef4fa 100%);border-bottom:1px solid var(--line);}
.business-hero-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);gap:clamp(46px,7vw,90px);align-items:center;}
.business-hero h1{max-width:780px;margin:14px 0 24px;font-size:clamp(3rem,5.8vw,6.2rem);line-height:.98;letter-spacing:-.045em;color:var(--brand-navy);}
.business-hero-lead{max-width:760px;color:var(--text);font-size:clamp(1.05rem,1.5vw,1.2rem);line-height:1.78;}
.business-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px;}
.business-actions.centered{justify-content:center;}
.business-fit-card{padding:34px;border-radius:20px;background:#071426;color:#fff;box-shadow:0 26px 70px rgba(7,20,38,.18);}
.business-card-label{margin:0;color:var(--gold);font-size:.72rem;font-weight:800;letter-spacing:.12em;}
.business-fit-card h2{margin:12px 0 24px;font-size:clamp(1.55rem,2.5vw,2.25rem);line-height:1.18;}
.business-fit-row{display:grid;grid-template-columns:42px 1fr;gap:13px;padding:17px 0;border-top:1px solid rgba(255,255,255,.12);align-items:start;}
.business-fit-row span{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:rgba(245,166,35,.12);color:var(--gold);font-weight:800;font-size:.76rem;}
.business-fit-row p{margin:4px 0 0;color:rgba(255,255,255,.76);line-height:1.55;}
.business-section{padding:clamp(78px,8vw,118px) 0;}
.business-section-soft{background:#f4f7fa;}
.business-section-dark{background:#071426;color:#fff;}
.business-heading{max-width:660px;}
.business-heading.narrow{max-width:900px;margin:0 auto 48px;text-align:center;}
.business-heading h2{margin:12px 0 20px;font-size:clamp(2.35rem,4.5vw,4.65rem);line-height:1.05;letter-spacing:-.035em;color:var(--brand-navy);}
.business-heading p:not(.eyebrow){color:var(--text);font-size:1.04rem;line-height:1.78;}
.business-heading.light h2{color:#fff;}
.business-heading.light p:not(.eyebrow){color:rgba(255,255,255,.72);}
.business-responsibility-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.business-responsibility-grid article{padding:34px 30px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 14px 36px rgba(20,33,61,.06);}
.business-responsibility-grid article span{color:var(--blue);font-size:.75rem;font-weight:800;letter-spacing:.11em;}
.business-responsibility-grid article h3{margin:16px 0 12px;font-size:1.45rem;line-height:1.18;color:var(--brand-navy);}
.business-responsibility-grid article p{margin:0;color:var(--text);line-height:1.68;}
.business-responsibility-grid .business-responsibility-accent{box-shadow:inset 0 5px 0 var(--gold),0 16px 42px rgba(20,33,61,.08);}
.business-precept{max-width:900px;margin:54px auto 0;text-align:center;border:0;padding:0;color:var(--brand-navy);font-size:clamp(1.65rem,3.2vw,3rem);line-height:1.16;font-weight:800;}
.business-two-column{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(52px,8vw,96px);align-items:start;}
.business-capability-list{display:grid;gap:12px;}
.business-capability-list article{display:grid;grid-template-columns:48px 1fr;gap:16px;padding:24px 0;border-bottom:1px solid var(--line);}
.business-capability-list article:first-child{padding-top:0;}
.business-capability-list span{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:#102442;color:var(--gold);font-size:.76rem;font-weight:800;}
.business-capability-list h3{margin:2px 0 6px;color:var(--brand-navy);font-size:1.3rem;}
.business-capability-list p{margin:0;color:var(--text);line-height:1.65;}
.business-governance-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.business-governance-grid article{padding:30px 26px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.04);}
.business-governance-grid strong{display:block;color:#fff;font-size:1.16rem;}
.business-governance-grid p{margin:12px 0 0;color:rgba(255,255,255,.68);line-height:1.65;}
.business-process{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.business-process article{padding:30px 26px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:0 12px 32px rgba(20,33,61,.055);}
.business-process span{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:#102442;color:var(--gold);font-size:.76rem;font-weight:800;}
.business-process h3{margin:18px 0 9px;color:var(--brand-navy);font-size:1.25rem;}
.business-process p{margin:0;color:var(--text);line-height:1.65;font-size:.94rem;}
.business-customer-grid{align-items:center;}
.business-text-link{display:inline-block;margin-top:18px;color:var(--blue);font-weight:800;}
.business-quote-panel{padding:clamp(34px,5vw,58px);border-radius:22px;background:#071426;color:#fff;box-shadow:0 24px 60px rgba(7,20,38,.14);}
.business-quote-panel p{margin:0;color:var(--gold);font-size:clamp(1.7rem,3vw,3rem);line-height:1.12;font-weight:800;}
.business-quote-panel strong{display:block;margin-top:22px;color:rgba(255,255,255,.76);font-size:1.05rem;line-height:1.65;}
.business-industry-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.business-industry-grid article{padding:28px;border:1px solid var(--line);border-radius:16px;background:#fff;}
.business-industry-grid h3{margin:0 0 10px;color:var(--brand-navy);font-size:1.2rem;}
.business-industry-grid p{margin:0;color:var(--text);line-height:1.62;}
.business-availability-note{max-width:850px;margin:30px auto 0;text-align:center;color:var(--text);font-size:.93rem;}
.business-final-cta{padding:clamp(92px,10vw,145px) 0;text-align:center;background:radial-gradient(circle at 50% 0%,rgba(32,164,255,.17),transparent 34%),#050d18;color:#fff;}
.business-final-cta .business-shell{max-width:980px;}
.business-final-cta h2{margin:12px auto 22px;color:#fff;font-size:clamp(2.7rem,5.3vw,5.4rem);line-height:1.04;letter-spacing:-.035em;}
.business-final-cta>div>p:not(.eyebrow){max-width:790px;margin:0 auto;color:rgba(255,255,255,.72);font-size:1.06rem;line-height:1.75;}
.business-final-cta small{display:block;max-width:760px;margin:24px auto 0;color:rgba(255,255,255,.48);line-height:1.55;}
@media (max-width:980px){
  .business-hero-grid,.business-two-column{grid-template-columns:1fr;}
  .business-responsibility-grid,.business-industry-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .business-governance-grid,.business-process{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:640px){
  .business-shell{width:min(100% - 28px,1180px);}
  .business-hero{padding-top:68px;}
  .business-responsibility-grid,.business-industry-grid,.business-governance-grid,.business-process{grid-template-columns:1fr;}
  .business-fit-card{padding:26px 22px;}
  .business-actions{flex-direction:column;align-items:stretch;}
  .business-actions .button{width:100%;justify-content:center;text-align:center;}
}

/* ============================================================
   FINAL-MILE DELIVERY CAPABILITIES — DRAFT 08
   Capability layer after For Businesses.
   ============================================================ */
.capabilities-page{background:#fff;color:var(--ink);}
.capabilities-shell{width:min(1180px,calc(100% - 40px));margin:0 auto;}
.capabilities-hero{padding:clamp(82px,9vw,132px) 0 88px;background:radial-gradient(circle at 82% 18%,rgba(32,164,255,.12),transparent 31%),linear-gradient(145deg,#f8fafc 0%,#edf4fa 100%);border-bottom:1px solid var(--line);}
.capabilities-hero-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);gap:clamp(48px,7vw,92px);align-items:center;}
.capabilities-hero h1{max-width:790px;margin:14px 0 24px;font-size:clamp(3rem,5.7vw,6.1rem);line-height:.98;letter-spacing:-.045em;color:var(--brand-navy);}
.capabilities-hero-lead{max-width:760px;color:var(--text);font-size:clamp(1.05rem,1.5vw,1.2rem);line-height:1.78;}
.capabilities-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px;}.capabilities-actions.centered{justify-content:center;}
.capabilities-principle-card{padding:36px;border-radius:20px;background:#071426;color:#fff;box-shadow:0 26px 70px rgba(7,20,38,.18);}
.capabilities-card-label{margin:0;color:var(--gold);font-size:.72rem;font-weight:800;letter-spacing:.12em;}
.capabilities-principle-card h2{margin:13px 0 20px;color:#fff;font-size:clamp(1.8rem,3vw,2.8rem);line-height:1.12;}
.capabilities-principle-card>p:last-child{margin:0;color:rgba(255,255,255,.73);line-height:1.72;}
.capabilities-section{padding:clamp(78px,8vw,118px) 0;}.capabilities-section-soft{background:#f4f7fa;}.capabilities-section-dark{background:#071426;color:#fff;}
.capabilities-heading{max-width:670px;}.capabilities-heading.narrow{max-width:900px;margin:0 auto 48px;text-align:center;}
.capabilities-heading h2{margin:12px 0 20px;font-size:clamp(2.35rem,4.5vw,4.65rem);line-height:1.05;letter-spacing:-.035em;color:var(--brand-navy);}.capabilities-heading p:not(.eyebrow){color:var(--text);font-size:1.04rem;line-height:1.78;}
.capabilities-heading.light h2{color:#fff;}.capabilities-heading.light p:not(.eyebrow){color:rgba(255,255,255,.72);}
.capabilities-grid-main{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.capabilities-grid-main article,.capabilities-fit-grid article,.capabilities-industry-grid article{padding:32px 30px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 14px 36px rgba(20,33,61,.055);}
.capabilities-grid-main span,.capabilities-fit-grid span{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:#102442;color:var(--gold);font-size:.75rem;font-weight:800;}
.capabilities-grid-main h3,.capabilities-fit-grid h3,.capabilities-industry-grid h3{margin:18px 0 10px;color:var(--brand-navy);font-size:1.3rem;line-height:1.2;}
.capabilities-grid-main p,.capabilities-fit-grid p,.capabilities-industry-grid p{margin:0;color:var(--text);line-height:1.67;}
.capabilities-two-column{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(52px,8vw,96px);align-items:start;}
.capabilities-detail-list{display:grid;gap:0;}.capabilities-detail-list article{display:grid;grid-template-columns:48px 1fr;gap:16px;padding:24px 0;border-bottom:1px solid var(--line);}.capabilities-detail-list article:first-child{padding-top:0;}
.capabilities-detail-list span{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:#102442;color:var(--gold);font-size:.76rem;font-weight:800;}.capabilities-detail-list h3{margin:2px 0 6px;color:var(--brand-navy);font-size:1.3rem;}.capabilities-detail-list p{margin:0;color:var(--text);line-height:1.65;}
.capabilities-elevated-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}.capabilities-elevated-grid article{padding:30px 26px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.04);}.capabilities-elevated-grid strong{display:block;color:#fff;font-size:1.17rem;}.capabilities-elevated-grid p{margin:12px 0 0;color:rgba(255,255,255,.68);line-height:1.65;}
.capabilities-dark-cta{max-width:900px;margin:34px auto 0;padding-top:30px;border-top:1px solid rgba(255,255,255,.12);text-align:center;}.capabilities-dark-cta p{margin:0 auto 12px;color:rgba(255,255,255,.7);line-height:1.7;}.capabilities-dark-cta a{color:var(--gold);font-weight:800;}
.capabilities-fit-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}.capabilities-industry-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}.capabilities-industry-grid h3{margin-top:0;}
.capabilities-availability-note{max-width:870px;margin:32px auto 0;text-align:center;color:var(--text);font-size:.93rem;line-height:1.65;}
.capabilities-final-cta{padding:clamp(92px,10vw,145px) 0;text-align:center;background:radial-gradient(circle at 50% 0%,rgba(32,164,255,.17),transparent 34%),#050d18;color:#fff;}.capabilities-final-cta .capabilities-shell{max-width:980px;}.capabilities-final-cta h2{margin:12px auto 22px;color:#fff;font-size:clamp(2.7rem,5.3vw,5.4rem);line-height:1.04;letter-spacing:-.035em;}.capabilities-final-cta>div>p:not(.eyebrow){max-width:800px;margin:0 auto;color:rgba(255,255,255,.72);font-size:1.06rem;line-height:1.75;}.capabilities-final-cta small{display:block;max-width:760px;margin:24px auto 0;color:rgba(255,255,255,.48);line-height:1.55;}.button-on-dark{border-color:rgba(255,255,255,.28);color:#fff;}
@media(max-width:980px){.capabilities-hero-grid,.capabilities-two-column{grid-template-columns:1fr;}.capabilities-elevated-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.capabilities-fit-grid,.capabilities-industry-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:640px){.capabilities-shell{width:min(100% - 28px,1180px);}.capabilities-hero{padding-top:68px;}.capabilities-grid-main,.capabilities-elevated-grid,.capabilities-fit-grid,.capabilities-industry-grid{grid-template-columns:1fr;}.capabilities-principle-card{padding:27px 23px;}.capabilities-actions{flex-direction:column;align-items:stretch;}.capabilities-actions .button{width:100%;justify-content:center;text-align:center;}}


/* ============================================================
   SXP COMMERCIAL PRICING PRECEPT — GOVERNANCE STANDARD
   Stand-alone public precept; not ordinary footer boilerplate.
   ============================================================ */
.sxp-price-precept{padding:clamp(54px,6vw,82px) 20px;background:#eef3f7;border-top:1px solid rgba(20,33,61,.08);border-bottom:1px solid rgba(20,33,61,.08);}
.sxp-price-precept-inner{width:min(1080px,100%);margin:0 auto;text-align:center;}
.sxp-price-precept p{margin:0;color:#102442;font-size:clamp(1.7rem,3.3vw,3.25rem);line-height:1.12;letter-spacing:-.025em;font-weight:800;}
@media(max-width:640px){.sxp-price-precept{padding:48px 18px;}.sxp-price-precept p{font-size:clamp(1.55rem,7vw,2.15rem);}}

/* PARTNER ARCHITECTURE — DRAFT 12 */
.partner-v2{background:#fff;}
.partner-v2 .partner-hero{padding:clamp(86px,9vw,132px) 0 82px;background:radial-gradient(circle at 84% 18%,rgba(32,164,255,.12),transparent 30%),linear-gradient(145deg,#f8fafc,#edf4fa);}
.partner-shell{width:min(1180px,calc(100% - 40px));margin:0 auto;}
.partner-hero-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(330px,.9fr);gap:clamp(48px,7vw,90px);align-items:center;}
.partner-v2 h1{margin:14px 0 22px;color:#102442;font-size:clamp(3rem,5.5vw,5.8rem);line-height:.99;letter-spacing:-.045em;}
.partner-lead{max-width:760px;color:var(--text);font-size:1.08rem;line-height:1.78;}
.partner-principle{padding:34px;border-radius:20px;background:#071426;color:#fff;box-shadow:0 24px 65px rgba(7,20,38,.17);}
.partner-principle small{display:block;color:var(--gold);font-weight:800;letter-spacing:.12em;text-transform:uppercase;}
.partner-principle strong{display:block;margin:14px 0 12px;font-size:1.7rem;line-height:1.18;}
.partner-principle p{margin:0;color:rgba(255,255,255,.7);line-height:1.7;}
.partner-section{padding:clamp(76px,8vw,116px) 0;}
.partner-section.soft{background:#f4f7fa;}.partner-section.dark{background:#071426;color:#fff;}
.partner-heading{max-width:820px;margin-bottom:40px;}.partner-heading.center{margin:0 auto 44px;text-align:center;}
.partner-heading h2{margin:10px 0 16px;color:#102442;font-size:clamp(2.25rem,4.3vw,4.5rem);line-height:1.05;letter-spacing:-.035em;}
.partner-heading p:not(.eyebrow){color:var(--text);line-height:1.75;}
.partner-heading.light h2{color:#fff}.partner-heading.light p:not(.eyebrow){color:rgba(255,255,255,.7)}
.partner-two-paths{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;}
.partner-path{padding:36px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:0 14px 36px rgba(20,33,61,.055);}
.partner-path .path-label{color:var(--blue);font-size:.74rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;}
.partner-path h3{margin:14px 0 12px;color:#102442;font-size:1.65rem;}.partner-path p{color:var(--text);line-height:1.7;}
.partner-path ul{padding-left:1.2rem;color:var(--text);line-height:1.75;}
.partner-dark-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.partner-dark-grid article{padding:30px 26px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.04);}
.partner-dark-grid strong{display:block;color:#fff;font-size:1.18rem;}.partner-dark-grid p{margin:11px 0 0;color:rgba(255,255,255,.68);line-height:1.65;}
.partner-boundary{max-width:900px;margin:38px auto 0;padding-top:30px;border-top:1px solid rgba(255,255,255,.14);text-align:center;color:rgba(255,255,255,.72);line-height:1.75;}
.partner-final{text-align:center}.partner-final h2{max-width:900px;margin:12px auto 20px;color:#102442;font-size:clamp(2.5rem,4.7vw,4.8rem);line-height:1.04;letter-spacing:-.035em;}.partner-final>p{max-width:780px;margin:0 auto 28px;color:var(--text);line-height:1.75;}
@media(max-width:900px){.partner-hero-grid,.partner-two-paths{grid-template-columns:1fr}.partner-dark-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.partner-shell{width:min(100% - 28px,1180px)}.partner-dark-grid{grid-template-columns:1fr}.partner-principle,.partner-path{padding:26px 22px}}


/* HUMAN HANDOFF — DRAFT 13 */
.contact-v2-hero{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:clamp(42px,7vw,88px);align-items:center;}
.contact-v2-principle{padding:34px;border-radius:20px;background:#071426;color:#fff;box-shadow:0 24px 65px rgba(7,20,38,.16)}
.contact-v2-principle small{display:block;color:var(--gold);font-weight:800;letter-spacing:.12em;text-transform:uppercase}.contact-v2-principle strong{display:block;margin:14px 0 12px;font-size:1.65rem;line-height:1.2}.contact-v2-principle p{margin:0;color:rgba(255,255,255,.7);line-height:1.7}
.contact-v2-section{background:#f4f7fa}.contact-v2-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:38px}.contact-v2-grid article{padding:32px 30px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 14px 36px rgba(20,33,61,.055)}.contact-v2-grid span{display:inline-flex;width:38px;height:38px;align-items:center;justify-content:center;border-radius:50%;background:#102442;color:var(--gold);font-size:.75rem;font-weight:800}.contact-v2-grid h3{margin:18px 0 10px;color:#102442;font-size:1.35rem}.contact-v2-grid p{color:var(--text);line-height:1.68}.contact-v2-grid a{font-weight:800}.contact-v2-general{display:flex;justify-content:space-between;align-items:center;gap:32px;margin-top:28px;padding:34px;border-radius:18px;background:#fff;border:1px solid var(--line)}.contact-v2-general>div{max-width:720px}.contact-v2-general h2{margin:8px 0 10px;color:#102442}.contact-v2-general p:not(.eyebrow){margin:0;color:var(--text);line-height:1.68}
.handoff-standard{padding:clamp(72px,8vw,110px) 20px;background:#f4f7fa;text-align:center}.handoff-standard h2{max-width:850px;margin:12px auto 18px;color:#102442;font-size:clamp(2.2rem,4vw,4rem);line-height:1.08;letter-spacing:-.03em}.handoff-standard p:not(.eyebrow){max-width:820px;margin:0 auto;color:var(--text);line-height:1.75}
@media(max-width:820px){.contact-v2-hero,.contact-v2-grid{grid-template-columns:1fr}.contact-v2-general{align-items:flex-start;flex-direction:column}}


/* Draft 21 — White-Glove deep-dive readability correction
   Keep storyboard imagery and service copy in separate visual bands. */
.delivery-journey .white-glove-deep-dive .delivery-stage {
  grid-template-columns: 1fr;
}
.delivery-journey .white-glove-deep-dive .delivery-stage__gallery {
  grid-column: 1 / -1;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.delivery-journey .white-glove-deep-dive .delivery-stage__content {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-top: 2px;
  text-align: left;
}
.delivery-journey .white-glove-deep-dive .delivery-stage__content > p {
  max-width: 920px;
  margin-left: 0;
  margin-right: 0;
}
.delivery-journey .white-glove-deep-dive .delivery-stage__capabilities {
  justify-content: flex-start;
}
@media (max-width: 760px) {
  .delivery-journey .white-glove-deep-dive .delivery-stage__gallery {
    grid-template-columns: 1fr;
  }
}


/* Launch accessibility and form-data controls */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.7rem 1rem;
  border-radius: 0.45rem;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.data-use-note {
  display: block;
  margin-top: 0.65rem;
  line-height: 1.55;
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}


/* Draft 24 - visitor comprehension and journey consistency */
.comprehension-shell,.resource-shell,.strategic-shell{width:min(1120px,calc(100% - 40px));margin:0 auto}.definition-section,.promise-section,.resource-section,.strategic-section{padding:72px 0}.definition-section.soft,.resource-section.soft,.strategic-section.soft{background:var(--soft)}.definition-intro,.promise-intro,.resource-intro,.strategic-intro{max-width:780px;margin:0 auto 32px;text-align:center}.definition-grid,.promise-grid,.resource-grid,.strategic-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.definition-card,.promise-card,.resource-card,.strategic-card{padding:26px;border:1px solid var(--line);border-radius:12px;background:#fff;box-shadow:0 10px 30px rgba(20,33,61,.06)}.definition-card h3,.promise-card h3,.resource-card h3,.strategic-card h3{margin-top:0}.definition-outcomes{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:26px}.definition-outcomes article{padding:18px;border-radius:10px;background:#fff;border:1px solid var(--line)}.service-plan-panel,.smartengine-definition{max-width:950px;margin:28px auto 0;padding:28px;border-left:5px solid var(--accent);background:#fff;box-shadow:0 10px 30px rgba(20,33,61,.06)}.smartengine-definition{margin:18px 0 0;max-width:none}.smartengine-definition strong{display:block;margin-bottom:6px}.resource-card .button{margin-top:12px}.resource-version{font-size:.84rem;color:var(--muted)}.strategic-form{max-width:820px;margin:34px auto 0}.field-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.field-grid .full{grid-column:1/-1}.strategic-form label{display:grid;gap:7px;font-weight:700}.strategic-form input,.strategic-form select,.strategic-form textarea{width:100%;padding:12px 13px;border:1px solid var(--line);border-radius:8px;font:inherit;background:#fff}.data-notice{font-size:.9rem;color:var(--muted);margin-top:16px}.fit-meaning{margin-top:28px}.fit-note{max-width:820px;margin:24px auto 0;text-align:center}.service-promise-boundary{max-width:850px;margin:24px auto 0;text-align:center;font-weight:700}.resource-hero{padding:84px 0 54px;background:linear-gradient(180deg,#f7f9fc,#fff)}.resource-hero h1,.strategic-hero h1{font-size:clamp(2.4rem,5vw,4.7rem);line-height:1.02;margin:.15em 0}.strategic-hero{padding:84px 0 54px;background:linear-gradient(180deg,#f7f9fc,#fff)}
@media(max-width:980px){.definition-grid,.promise-grid,.resource-grid,.strategic-grid{grid-template-columns:1fr}.definition-outcomes{grid-template-columns:repeat(2,minmax(0,1fr))}.main-nav{margin-left:0}.field-grid{grid-template-columns:1fr}.field-grid .full{grid-column:auto}}
@media(max-width:640px){.definition-outcomes{grid-template-columns:1fr}.comprehension-shell,.resource-shell,.strategic-shell{width:min(100% - 28px,1120px)}}

.resource-intro-left,.strategic-intro-left{text-align:left;margin-left:0}

/* Draft 24.1 — deterministic anchor landing beneath the sticky site header. */
html { scroll-padding-top: 7.5rem; }
:where(main, section, article, div)[id] { scroll-margin-top: 7.5rem; }

/* SmartEngine first-awareness panel: visible immediately after Digital HQ arrival. */
.smartengine-awareness { padding: 3.5rem 0; border-bottom: 1px solid rgba(15, 23, 42, .10); background: #f8fafc; }
.smartengine-awareness .journey-container { max-width: 980px; }
.smartengine-awareness h2 { margin: .35rem 0 1rem; }
.smartengine-awareness p { max-width: 900px; }
.smartengine-awareness__status { margin-top: 1rem; padding: 1rem 1.1rem; border-left: 4px solid currentColor; background: rgba(255,255,255,.72); }

/* Draft 24.3 — preserve the original Digital Headquarters hero placement.
   The Gateway arrival note is contextual metadata and must not shift the hero content. */
.home-page .headquarters-hero-content { position: relative; }
.home-page .headquarters-arrival-note {
  position: absolute;
  top: 42px;
  left: 0;
  margin: 0;
}
@media (max-width: 760px) {
  .home-page .headquarters-arrival-note { top: 26px; }
}

/* Draft 24.4 — Digital Headquarters hero placement lock.
   Preserve the originally approved visual entry position independently of
   browser scroll behavior and viewport-height centering. */
.home-page .home-hero {
  align-items: start;
}
.home-page .home-hero .headquarters-hero-content {
  padding-top: 8px;
}
.home-page .headquarters-arrival-note {
  top: 18px;
  left: auto;
  right: 0;
  margin: 0;
}
@media (max-width: 760px) {
  .home-page .home-hero .headquarters-hero-content { padding-top: 28px; }
  .home-page .headquarters-arrival-note { display: none; }
}

/* Draft 24.5 — final page-entry alignment calibration.
   Main-page heroes begin immediately beneath the global header; intentional
   section targets align directly beneath the live sticky header with no
   residual strip from the preceding section. */
.home-page .home-hero {
  padding-top: 10px;
}
.home-page .home-hero .headquarters-hero-content {
  padding-top: 0;
}
@media (max-width: 760px) {
  .home-page .home-hero { padding-top: 24px; }
  .home-page .home-hero .headquarters-hero-content { padding-top: 0; }
}
