/* ============================================================
   Pixior — Enterprise 3PL Fulfillment
   Design system extracted from "Pixior Website.dc.html"
   ============================================================ */

:root {
  /* Brand */
  --blue:      #0464B9;
  --blue-hov:  #1273CC;
  --blue-dk:   #0A4F8F;
  --sky:       #8FC4F2;
  --sky-2:     #7FA6C9;
  --sky-3:     #4E9FE0;

  /* Dark surfaces */
  --ink:       #081C30;
  --ink-2:     #06182B;

  /* Text */
  --head:      #122033;
  --text:      #152435;
  --body:      #3D4C5C;
  --muted:     #51606F;

  /* Light surfaces */
  --white:     #ffffff;
  --gray:      #F4F7FA;
  --chip:      #EEF4FA;

  /* Lines */
  --line:      rgba(9, 40, 74, .10);
  --line-2:    rgba(9, 40, 74, .12);
  --line-3:    rgba(9, 40, 74, .14);
  --line-dk:   rgba(255, 255, 255, .12);

  --wrap: 1240px;
  --radius: 6px;
  --card-radius: 12px;
  --shadow-card: 0 24px 60px -24px rgba(8, 28, 48, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  font-family: Archivo, system-ui, -apple-system, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dk); }

img { max-width: 100%; }

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

.page-shell { min-height: 100vh; display: flex; flex-direction: column; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 110px 24px; }
.section--tight { padding: 96px 24px; }
.section--md { padding: 100px 24px; }
.section--90 { padding: 90px 24px; }
.industry-anchor { scroll-margin-top: 78px; }
.bg-gray  { background: var(--gray); }
.bg-white { background: var(--white); }
.bg-ink   { background: var(--ink); }
.border-t { border-top: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }

/* ---------- Typography ---------- */
.eyebrow {
  font: 600 12.5px Archivo, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--sky); }

.h1 {
  font: 700 62px/1.05 Archivo, sans-serif;
  letter-spacing: -.025em;
  color: #fff;
  text-wrap: balance;
}
.page-hero .h1 { font-size: 52px; line-height: 1.08; }

.h2 {
  font: 700 42px/1.1 Archivo, sans-serif;
  letter-spacing: -.02em;
  color: var(--head);
  text-wrap: balance;
}
.h2--sm { font-size: 36px; line-height: 1.15; }
.h2--38 { font-size: 38px; line-height: 1.15; }

.lead {
  font: 400 19px/1.6 Archivo, sans-serif;
  color: rgba(255, 255, 255, .82);
  text-wrap: pretty;
}
.body { font: 400 17px/1.65 Archivo, sans-serif; color: var(--body); text-wrap: pretty; }
.muted-sm { font: 400 13.5px/1.45 Archivo, sans-serif; color: var(--muted); }

.label {
  font: 600 12px Archivo, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.label--blue { color: var(--blue); }
.label--sky  { color: var(--sky-2); }

.rule-label {
  font: 600 12px Archivo, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}
.rule-label--sky {
  color: var(--sky-2);
  border-bottom-color: rgba(255, 255, 255, .14);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 16px Archivo, sans-serif;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--sm { font-size: 15px; padding: 14px 26px; }
.btn--nav { font-size: 14px; padding: 12px 22px; }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hov); color: #fff; }

.btn--ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { background: #EAF3FB; color: var(--blue); }

.btn--outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid rgba(4, 100, 185, .4);
}
.btn--outline:hover { background: var(--chip); border-color: var(--blue); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font: 500 14px Archivo, sans-serif;
  color: var(--head);
  background: var(--chip);
  border: 1px solid rgba(4, 100, 185, .18);
  padding: 9px 16px;
  border-radius: 999px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(9, 40, 74, .1);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; height: 72px;
}
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { display: block; width: 132px; height: 44px; object-fit: contain; }
.nav__links {
  display: flex; align-items: center; gap: 22px; flex: 1; flex-wrap: wrap;
}
.nav__link {
  font: 500 14px Archivo, sans-serif;
  color: var(--body);
  transition: color .15s ease;
}
.nav__link:hover { color: var(--blue); }
.nav__link.is-active { color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__dropdown { position: relative; }
.nav__dropdown-trigger { display: flex; align-items: center; gap: 5px; }
.nav__dropdown-trigger span { font-size: 11px; transition: transform .15s ease; }
.nav__submenu {
  position: absolute; top: calc(100% + 18px); left: -18px; min-width: 235px;
  padding: 9px; background: var(--white); border: 1px solid var(--line-2);
  border-radius: 6px; box-shadow: var(--shadow-card); opacity: 0; visibility: hidden;
  transform: translateY(-5px); transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.nav__submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav__dropdown:hover .nav__submenu, .nav__dropdown:focus-within .nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown:hover .nav__dropdown-trigger span, .nav__dropdown:focus-within .nav__dropdown-trigger span { transform: rotate(180deg); }
.nav__submenu-link { display: block; padding: 10px 12px; border-radius: 4px; color: var(--body); font: 600 13.5px Archivo, sans-serif; }
.nav__submenu-link:hover, .nav__submenu-link.is-active { background: var(--chip); color: var(--blue); }
.solution-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-link-card { display: flex; flex-direction: column; gap: 7px; min-height: 126px; padding: 24px; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius); transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.solution-link-card strong { color: var(--head); font: 700 17px/1.25 Archivo, sans-serif; }
.solution-link-card span { color: var(--muted); font: 400 14px/1.5 Archivo, sans-serif; }
.solution-link-card:hover { border-color: rgba(4, 100, 185, .4); transform: translateY(-2px); box-shadow: 0 14px 28px -22px rgba(8, 28, 48, .6); }

/* ---------- Dashboard showcase ---------- */
.dashboard-showcase { position: relative; overflow: hidden; padding: 96px 18px; background: var(--ink); }
.dashboard-showcase::after { content: "X"; position: absolute; right: -24px; bottom: -140px; color: rgba(4, 100, 185, .13); font: 800 420px/1 Archivo, sans-serif; pointer-events: none; }
.dashboard-showcase__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px, .48fr) minmax(0, 1.52fr); gap: 44px; align-items: start; max-width: 1540px; padding: 0 16px; }
.dashboard-showcase__copy { padding-top: 0; }
.dashboard-showcase__copy .h2 { color: var(--white); margin-bottom: 22px; }
.dashboard-showcase__copy .body { color: #b9cadb; font-size: 17px; margin-bottom: 28px; }
.dashboard-midnight { margin: 0 0 26px; padding: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-left: 3px solid var(--sky); border-radius: 7px; }
.dashboard-midnight h3 { margin: 0 0 9px; color: var(--white); font: 700 19px/1.25 Archivo, sans-serif; }
.dashboard-midnight p { margin: 0; color: #dce8f2; font: 400 14px/1.55 Archivo, sans-serif; }
.dashboard-midnight__stats { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; color: #dce8f2; font: 600 12.5px/1.4 Archivo, sans-serif; }
.dashboard-midnight__stats strong { color: var(--sky); font-size: 17px; }
.dashboard-midnight small { display: block; margin-top: 10px; color: #7f9ab2; font: 400 10px/1.4 Archivo, sans-serif; }
.dashboard-benefits { display: grid; gap: 14px; margin-bottom: 32px; }
.dashboard-benefits > div { display: flex; align-items: flex-start; gap: 12px; color: #dce8f2; font: 500 14.5px/1.45 Archivo, sans-serif; }
.x-mark { flex: none; color: var(--sky); font: 800 18px/1 Archivo, sans-serif; }
.dashboard-ui { padding: 22px; background: #f7fafc; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; box-shadow: 0 28px 90px -20px rgba(0,0,0,.65); color: var(--head); }
.dashboard-ui__top { display: flex; align-items: center; justify-content: space-between; padding: 0 3px 18px; }
.dashboard-wordmark { font: 800 17px Archivo, sans-serif; letter-spacing: .14em; }
.dashboard-wordmark > span { color: var(--blue); }
.dashboard-wordmark small { margin-left: 9px; color: var(--muted); font-size: 8px; letter-spacing: .11em; }
.dashboard-live { display: flex; align-items: center; gap: 7px; color: #168458; font: 700 11px Archivo, sans-serif; }
.dashboard-live i { width: 7px; height: 7px; border-radius: 50%; background: #24b879; box-shadow: 0 0 0 4px rgba(36,184,121,.14); }
.dashboard-ui__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dashboard-ui__stats > div { display: flex; flex-direction: column; gap: 5px; padding: 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.dashboard-ui__stats span { color: var(--muted); font: 600 9.5px Archivo, sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.dashboard-ui__stats strong { color: var(--head); font: 800 21px Archivo, sans-serif; }
.dashboard-ui__stats small { color: #168458; font: 700 9px Archivo, sans-serif; }
.dashboard-ui__body { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; margin-top: 10px; }
.dashboard-chart, .dashboard-activity { padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; }
.dashboard-chart__head { display: flex; justify-content: space-between; align-items: center; }
.dashboard-chart__head strong, .dashboard-activity > strong { font: 700 11px Archivo, sans-serif; }
.dashboard-chart__head span { color: var(--muted); font: 500 9px Archivo, sans-serif; }
.dashboard-bars { display: flex; align-items: flex-end; gap: 8px; height: 118px; margin-top: 14px; padding-top: 8px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0, transparent 35px, rgba(9,40,74,.06) 36px); }
.dashboard-bars i { flex: 1; height: var(--h); min-width: 7px; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--blue), var(--sky-3)); }
.dashboard-days { display: flex; justify-content: space-around; padding-top: 7px; color: var(--muted); font: 600 8px Archivo, sans-serif; }
.dashboard-activity > div { display: grid; grid-template-columns: 8px 1fr auto; gap: 7px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.dashboard-activity > div:last-child { border-bottom: 0; }
.dashboard-activity span { color: var(--body); font: 500 9px/1.25 Archivo, sans-serif; }
.dashboard-activity b { color: var(--muted); font: 600 8px Archivo, sans-serif; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-dot--green { background: #24b879; }.status-dot--blue { background: var(--blue); }.status-dot--gold { background: #e8a629; }
.dashboard-visual { min-width: 0; }
.dashboard-visual__frame { overflow: hidden; background: var(--white); border: 1px solid rgba(255,255,255,.28); border-radius: 12px; box-shadow: 0 28px 90px -20px rgba(0,0,0,.65); }
.dashboard-visual__bar { display: flex; justify-content: space-between; align-items: center; height: 46px; padding: 0 16px; background: #f6f8fb; border-bottom: 1px solid var(--line); }
.dashboard-visual__bar > span { display: flex; gap: 5px; }.dashboard-visual__bar > span i { width: 7px; height: 7px; border-radius: 50%; background: #c7d1dc; }
.dashboard-visual__client { display: flex; align-items: center; gap: 10px; }
.dashboard-visual__client strong { display: flex; align-items: center; gap: 8px; color: var(--head); font: 700 12px Archivo, sans-serif; }
.dashboard-visual__client strong img { width: 27px; height: 27px; object-fit: contain; }
.dashboard-visual__client span { display: flex; align-items: center; gap: 7px; color: var(--muted); font: 600 10px Archivo, sans-serif; }
.dashboard-visual__bar em { width: 6px; height: 6px; border-radius: 50%; background: #24b879; box-shadow: 0 0 0 3px rgba(36,184,121,.15); }
.dashboard-visual__frame img { display: block; width: 100%; height: auto; }
.dashboard-metric-context { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin: 12px 2px 0; color: #a8bed2; font: 500 10px/1.4 Archivo, sans-serif; }
.dashboard-metric-context strong { color: var(--white); font-size: 11px; }
.dashboard-counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 10px; }
.dashboard-counter-grid > div { min-width: 0; padding: 13px 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 7px; }
.dashboard-counter-grid span { display: block; overflow: hidden; color: #a8bed2; font: 600 8.5px Archivo, sans-serif; text-overflow: ellipsis; white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.dashboard-counter-grid strong { display: block; margin-top: 5px; color: var(--white); font: 800 21px Archivo, sans-serif; font-variant-numeric: tabular-nums; }

/* ---------- Technology ecosystem and warehousing proof ---------- */
.warehousing-callout { margin-top: 30px; padding: 24px; background: var(--ink); border-left: 4px solid var(--blue); border-radius: 0 var(--card-radius) var(--card-radius) 0; }
.warehousing-callout__label { margin-bottom: 14px; color: var(--sky); font: 700 11px/1.3 Archivo, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.warehousing-callout h3 { margin: 0 0 10px; color: var(--white); font: 700 22px/1.25 Archivo, sans-serif; }
.warehousing-callout p { margin: 0; color: #bfd0df; font: 400 14.5px/1.6 Archivo, sans-serif; }
.ecosystem-panel { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: 48px; align-items: start; margin-top: 40px; padding: 38px; background: var(--white); border: 1px solid var(--line-2); border-top: 4px solid var(--blue); }
.ecosystem-panel h3 { margin: 0 0 12px; color: var(--head); font: 700 26px/1.2 Archivo, sans-serif; }
.ecosystem-panel p { margin: 0; color: var(--muted); font: 400 15px/1.6 Archivo, sans-serif; }
.ecosystem-panel__platforms { display: flex; flex-wrap: wrap; gap: 9px; }
.ecosystem-panel__platforms span { padding: 10px 14px; background: var(--chip); border: 1px solid rgba(4,100,185,.18); border-radius: 999px; color: var(--head); font: 600 13px/1.25 Archivo, sans-serif; }

/* ---------- Retailer/channel marquee ---------- */
.partner-showcase { overflow: hidden; padding: 82px 0 72px; background: var(--white); border-top: 1px solid var(--line); }
.partner-showcase__head { max-width: 760px; margin: 0 auto 42px; padding: 0 24px; text-align: center; }
.partner-showcase__head h2 { margin: 8px 0 14px; color: var(--head); font: 700 clamp(28px, 3vw, 40px)/1.15 Archivo, sans-serif; letter-spacing: -.025em; }
.partner-showcase__head p { color: var(--muted); font: 400 15.5px/1.65 Archivo, sans-serif; }
.partner-marquee { overflow: hidden; padding: 8px 0; mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent); }
.partner-track { display: flex; align-items: center; gap: 20px; width: max-content; animation: partner-scroll 70s linear infinite; }
.partner-marquee--reverse .partner-track { animation-direction: reverse; animation-duration: 76s; }
.partner-track span { white-space: nowrap; color: var(--head); font: 700 16px Archivo, sans-serif; padding: 11px 17px; background: var(--gray); border: 1px solid var(--line); border-radius: 999px; }
.partner-track i { color: var(--blue); font: 800 15px Archivo, sans-serif; font-style: normal; }
.partner-marquee:hover .partner-track { animation-play-state: paused; }
@keyframes partner-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .partner-track { animation-play-state: paused; } }

/* ---------- Home retailer-logo ticker ---------- */
.page#page-home { display: none; }
.page#page-home.is-active { display: flex; flex-direction: column; }
.page#page-home > * { order: 6; }
.page#page-home > .hero { order: 1; }
.page#page-home > .home-logo-ticker { order: 2; }
.page#page-home > .kpi-strip { order: 3; }
.page#page-home > .dashboard-showcase { order: 4; }
.home-logo-ticker { overflow: hidden; padding: 18px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.home-logo-ticker__track { display: flex; align-items: center; width: max-content; animation: home-logo-scroll 115s linear infinite; }
.home-logo-ticker__set { display: flex; align-items: center; gap: 16px; padding-right: 16px; }
.home-logo-ticker__logo { display: flex; width: 168px; height: 72px; flex: 0 0 168px; align-items: center; justify-content: center; overflow: hidden; padding: 8px 10px; background: var(--white); border: 1px solid rgba(8, 38, 78, 0.09); border-radius: 8px; }
.home-logo-ticker__logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.home-logo-ticker:hover .home-logo-ticker__track { animation-play-state: paused; }
@keyframes home-logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .home-logo-ticker__track { animation-play-state: paused; } }
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--head);
  border-radius: 2px;
}
.nav__toggle span + span { margin-top: 5px; }

/* ---------- Logo wordmark ---------- */
.wordmark { font: 700 26px Archivo, sans-serif; letter-spacing: .22em; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 660px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,22,40,.93) 0%, rgba(6,22,40,.82) 42%, rgba(6,22,40,.35) 100%);
}
.hero__corner-logo {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: max(28px, calc((100vw - var(--wrap)) / 2 + 24px));
  width: clamp(84px, 9vw, 128px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .28));
}
.hero__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: 96px 24px; width: 100%;
}
.hero__content { max-width: 720px; animation: fadeUp .7s ease both; }
.hero__regions {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12.5px Archivo, sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 22px;
}
.hero__regions .dot { color: rgba(255, 255, 255, .35); }
.hero__content .lead { max-width: 560px; margin-bottom: 36px; }
.hero__content .h1 { margin-bottom: 22px; }
.hero__credential {
  display: inline-flex; align-items: center; gap: 12px; max-width: 590px;
  margin-top: 22px; padding: 12px 16px;
  color: #fff; background: rgba(6, 22, 40, .68);
  border: 1px solid rgba(90, 176, 255, .42); border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18); backdrop-filter: blur(8px);
}
.hero__credential-mark {
  display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px;
  border-radius: 50%; color: #fff; background: var(--blue);
  font: 800 16px/1 Archivo, sans-serif;
}
.hero__credential > span:last-child { display: grid; gap: 2px; }
.hero__credential strong { font: 700 14px/1.3 Archivo, sans-serif; letter-spacing: .02em; }
.hero__credential small { color: rgba(255, 255, 255, .76); font: 400 12.5px/1.45 Archivo, sans-serif; }
.industry-certification { margin-top: 0; margin-bottom: 42px; background: var(--ink); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--ink); overflow: hidden; }
.page-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .24;
}
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,22,40,.92), rgba(6,22,40,.6));
}
.page-hero__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: 110px 24px 90px;
}
.page-hero .lead { max-width: 700px; }
.page-hero .h1 { margin-bottom: 24px; }
.page-hero--photo { min-height: 520px; display: flex; align-items: center; }
.page-hero--photo .page-hero__bg { opacity: .82; object-position: center; }
.page-hero--photo .page-hero__scrim {
  background: linear-gradient(90deg, rgba(6,22,40,.97) 0%, rgba(6,22,40,.86) 38%, rgba(6,22,40,.28) 72%, rgba(6,22,40,.10) 100%);
}
.page-hero--photo .page-hero__inner { width: 100%; padding-top: 118px; padding-bottom: 100px; }

/* ---------- KPI strip (home) ---------- */
.kpi-strip { background: var(--ink-2); border-top: 1px solid rgba(255, 255, 255, .08); }
.kpi-strip__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 44px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 32px 28px;
}
.kpi__num { font: 700 30px/1 Archivo, sans-serif; color: #fff; letter-spacing: -.02em; }
.kpi__label { margin-top: 8px; font: 400 13.5px/1.45 Archivo, sans-serif; color: var(--sky-2); }

/* ---------- Grids ---------- */
.grid { display: grid; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-2-wide { grid-template-columns: 1.05fr .95fr; }
.grid-2-narrow { grid-template-columns: .95fr 1.05fr; }
.grid-2-9 { grid-template-columns: .9fr 1.1fr; }
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.gap-72 { gap: 72px; }
.gap-64 { gap: 64px; }
.gap-56 { gap: 56px; }
.gap-40 { gap: 40px; }
.items-center { align-items: center; }
.items-start { align-items: start; }

.media {
  border-radius: var(--card-radius); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.media img { width: 100%; object-fit: cover; display: block; }

/* ---------- Bullet / proof lists ---------- */
.dot-list { display: flex; flex-direction: column; gap: 12px; }
.dot-list__item { display: flex; align-items: center; gap: 12px; }
.dot-list__item .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: none;
}
.dot-list__item span:last-child { font: 500 16px Archivo, sans-serif; color: var(--text); }

.ul { padding-left: 20px; display: flex; flex-direction: column; gap: 9px; margin: 0; }
.ul li { font: 400 15.5px/1.55 Archivo, sans-serif; color: var(--body); }
.ul--15 li { font-size: 15px; line-height: 1.5; }

.dash-list { display: flex; flex-direction: column; gap: 14px; }
.dash-list__item { display: flex; gap: 12px; align-items: baseline; }
.dash-list__item .dash { color: var(--sky-3); font: 700 14px Archivo, sans-serif; }
.dash-list__item span:last-child { font: 400 16px/1.5 Archivo, sans-serif; color: rgba(255,255,255,.88); }

/* ---------- Industry link cards (home) ---------- */
.link-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px;
}
.link-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 26px; color: var(--head);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.link-card:hover { border-color: var(--blue); box-shadow: 0 10px 30px -14px rgba(4,100,185,.35); color: var(--head); }
.link-card span:first-child { font: 600 18px Archivo, sans-serif; }
.link-card .arrow { color: var(--blue); font-size: 18px; }

/* ---------- Technology (home) split panel ---------- */
.tech-home { position: relative; background: var(--ink); overflow: hidden; }
.tech-home__img {
  position: absolute; right: 0; top: 0; height: 100%; width: 46%;
  object-fit: cover; opacity: .28;
}
.tech-home__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 52%, rgba(8,28,48,.55) 100%);
}
.tech-home__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 110px 24px; }
.tech-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 880px; }

/* ---------- Process (home) ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); align-items: start; }
.process__step { position: relative; padding: 0 14px; text-align: center; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--chip); border: 1.5px solid rgba(4,100,185,.3);
  display: flex; align-items: center; justify-content: center;
  font: 700 20px Archivo, sans-serif; color: var(--blue);
}
.process__step .step-num { margin: 0 auto 18px; }
.process__name { font: 600 17px Archivo, sans-serif; color: var(--head); margin-bottom: 6px; }
.process__desc { font: 400 13.5px/1.5 Archivo, sans-serif; color: var(--muted); }

.onboard-banner {
  margin: 56px auto 0; max-width: 640px;
  background: var(--ink); border-radius: var(--card-radius);
  padding: 34px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.onboard-banner__title { font: 700 24px Archivo, sans-serif; color: #fff; letter-spacing: -.01em; }
.onboard-banner__sub { margin-top: 8px; font: 400 15px Archivo, sans-serif; color: var(--sky-2); }
.onboard-banner a { color: var(--sky); font: 600 15px Archivo, sans-serif; white-space: nowrap; }
.onboard-banner a:hover { color: #fff; }

/* ---------- Customer service list (home) ---------- */
.cs-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-2); }
.cs-list__row {
  padding: 18px 0; border-bottom: 1px solid var(--line-2);
  font: 600 19px Archivo, sans-serif; color: var(--head);
}
.cs-list__row--accent { color: var(--blue); }

/* ---------- Logo strip ---------- */
.logostrip { text-align: center; }
.logostrip__row {
  display: flex; justify-content: center; align-items: center;
  gap: 64px; flex-wrap: wrap; opacity: .55;
}
.logostrip__row span { font: 700 22px Archivo, sans-serif; color: var(--body); }

/* ---------- Cards (generic) ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--card-radius);
  padding: 32px 36px;
}
.card--gray { background: var(--gray); border-color: rgba(9,40,74,.08); }
.card--dark {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dk);
  border-radius: var(--card-radius); padding: 32px 36px;
}
.card__title { font: 700 17px Archivo, sans-serif; color: var(--head); margin-bottom: 6px; }
.card__text { font: 400 15px/1.55 Archivo, sans-serif; color: var(--muted); }

.stat-card {
  background: var(--gray); border: 1px solid rgba(9,40,74,.08);
  border-radius: 10px; padding: 22px 24px;
}
.stat-card__num { font: 700 24px Archivo, sans-serif; color: var(--head); }

/* ---------- Apparel value-added proof ---------- */
.apparel-ops .h2 { max-width: 620px; margin-bottom: 38px; }
.apparel-ops__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.apparel-ops__card { min-height: 290px; padding: 30px; background: var(--ink); border-top: 4px solid var(--blue); border-radius: 0 0 var(--card-radius) var(--card-radius); }
.apparel-ops__label { margin-bottom: 24px; color: var(--sky); font: 700 11px/1.3 Archivo, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.apparel-ops__card h3 { margin: 0 0 16px; color: var(--white); font: 700 22px/1.25 Archivo, sans-serif; }
.apparel-ops__card p { margin: 0; color: #bfd0df; font: 400 15px/1.6 Archivo, sans-serif; }
.apparel-ops__card .apparel-ops__proof { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); color: var(--white); font-weight: 600; }

/* ---------- Value added service catalog ---------- */
.vas-offers .h2 { max-width: 760px; }
.vas-offers__intro { max-width: 680px; margin: 16px 0 38px; }
.vas-offers__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: start; }
.vas-offers__card { padding: 30px 32px; background: var(--white); border: 1px solid var(--line-2); border-top: 4px solid var(--blue); border-radius: 0 0 var(--card-radius) var(--card-radius); }
.vas-offers__num { margin-bottom: 18px; color: var(--sky-3); font: 700 11px/1.3 Archivo, sans-serif; letter-spacing: .14em; }
.vas-offers__card h3 { margin: 0 0 20px; color: var(--head); font: 700 22px/1.25 Archivo, sans-serif; }
.vas-offers__card ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 22px; margin: 0; padding: 0; list-style: none; }
.vas-offers__card li { position: relative; padding-left: 16px; color: var(--body); font: 500 13.5px/1.45 Archivo, sans-serif; }
.vas-offers__card li::before { content: ""; position: absolute; top: .52em; left: 0; width: 6px; height: 6px; background: var(--blue); }
.vas-offers__card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 80px minmax(240px,.7fr) minmax(0,1.3fr); gap: 26px; align-items: start; background: var(--ink); border-color: var(--ink); }
.vas-offers__card--featured .vas-offers__num { margin: 5px 0 0; color: var(--sky); }
.vas-offers__card--featured h3 { margin: 0; color: var(--white); font-size: 25px; }
.vas-offers__card--featured p { margin: 0; color: #bfd0df; font: 400 15px/1.65 Archivo, sans-serif; }

.metric-row {
  background: var(--ink); border-radius: 10px; padding: 26px 30px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
}
.metric-row__k { font: 400 15px Archivo, sans-serif; color: var(--sky-2); }
.metric-row__v { font: 700 30px Archivo, sans-serif; color: #fff; white-space: nowrap; }

.result { font: 600 15px Archivo, sans-serif; color: var(--blue); }

/* ---------- Solutions accordion ---------- */
.solution { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }
.solution__media { position: sticky; top: 100px; }
.solution__media img { height: 420px; }
.solution-proof {
  position: sticky; top: 100px; min-height: 390px; padding: 42px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--ink); border-radius: var(--card-radius); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.solution-proof::after {
  content: "X"; position: absolute; right: -22px; bottom: -70px;
  color: rgba(4,100,185,.18); font: 800 230px/1 Archivo, sans-serif; pointer-events: none;
}
.solution-proof > * { position: relative; z-index: 1; }
.solution-proof__label { color: var(--sky); font: 600 12px Archivo, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.solution-proof__value { margin: 18px 0 8px; color: #fff; font: 700 46px/1 Archivo, sans-serif; letter-spacing: -.03em; }
.solution-proof__text { color: #b9cadb; font: 400 15px/1.55 Archivo, sans-serif; }
.solution-proof__list { display: grid; gap: 13px; margin-top: 32px; }
.solution-proof__list span { display: flex; gap: 10px; color: #dce8f2; font: 500 14px/1.45 Archivo, sans-serif; }
.solution-proof__list span::before { content: "X"; color: var(--sky); font-weight: 800; }

.amazon-certification {
  display: flex; align-items: flex-start; gap: 14px; margin: 0 0 28px; padding: 20px 22px;
  background: #f4f8fc; border: 1px solid #d8e5f0; border-left: 4px solid var(--blue); border-radius: 8px;
}
.amazon-certification__mark {
  display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 50%; color: #fff; background: var(--blue); font: 800 17px/1 Archivo, sans-serif;
}
.amazon-certification strong { display: block; margin-bottom: 5px; color: var(--head); font: 700 17px/1.3 Archivo, sans-serif; }
.amazon-certification p { margin: 0; color: var(--muted); font: 400 14.5px/1.55 Archivo, sans-serif; }

.solution-capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.solution-capability { min-height: 190px; padding: 28px; background: #fff; border: 1px solid var(--line-2); border-top: 3px solid var(--blue); border-radius: 0 0 var(--card-radius) var(--card-radius); }
.solution-capability__num { margin-bottom: 22px; color: var(--sky-3); font: 700 12px Archivo, sans-serif; letter-spacing: .12em; }
.solution-capability h3 { margin: 0 0 10px; color: var(--head); font: 700 18px/1.25 Archivo, sans-serif; }
.solution-capability p { margin: 0; color: var(--muted); font: 400 14.5px/1.55 Archivo, sans-serif; }

.solution-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: solution-step; }
.solution-step { position: relative; padding: 0 28px 0 0; counter-increment: solution-step; }
.solution-step:not(:last-child)::after { content: "\2192"; position: absolute; right: 8px; top: 4px; color: var(--sky-3); font-size: 24px; }
.solution-step__num { margin-bottom: 18px; color: var(--blue); font: 700 13px Archivo, sans-serif; letter-spacing: .12em; }
.solution-step__num::before { content: "0" counter(solution-step); }
.solution-step h3 { margin: 0 0 9px; color: var(--head); font: 700 18px/1.3 Archivo, sans-serif; }
.solution-step p { margin: 0; color: var(--muted); font: 400 14.5px/1.55 Archivo, sans-serif; }

.solution-cta { padding: 72px 24px; background: var(--ink); overflow: hidden; position: relative; }
.solution-cta::after { content: "X"; position: absolute; right: 2%; bottom: -130px; color: rgba(4,100,185,.14); font: 800 330px/1 Archivo, sans-serif; }
.solution-cta__inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.solution-cta .h2 { color: #fff; max-width: 760px; margin-bottom: 14px; }
.solution-cta .body { color: #b9cadb; max-width: 680px; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
.acc { border-top: 1px solid var(--line-2); }
.acc:last-of-type { border-bottom: 1px solid var(--line-2); }
.acc__summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 0; font: 600 17px Archivo, sans-serif; color: var(--head);
}
.acc__summary .pm { color: var(--blue); transition: transform .2s ease; }
.acc[open] .acc__summary .pm { transform: rotate(45deg); }
.acc__body { margin: 0 0 20px; font: 400 15.5px/1.65 Archivo, sans-serif; color: var(--body); }
.acc__body.ul { margin-bottom: 20px; }

/* ---------- Industries page ---------- */
.industry { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.reality {
  background: var(--ink); border-radius: 10px; padding: 24px 28px; margin-bottom: 26px;
}
.reality__label {
  font: 600 11.5px Archivo, sans-serif; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky-2); margin-bottom: 10px;
}
.reality__text { font: 500 17px/1.55 Archivo, sans-serif; color: #fff; }

/* ---------- Onboarding phases ---------- */
.phase {
  display: grid; grid-template-columns: 88px 1fr; gap: 32px;
  padding: 44px 0; border-bottom: 1px solid var(--line);
}
.phase .step-num { flex: none; }
.phase__title { margin-bottom: 8px; font: 700 26px/1.2 Archivo, sans-serif; letter-spacing: -.015em; color: var(--head); }
.phase__tagline { font: 600 16px Archivo, sans-serif; color: var(--blue); margin-bottom: 14px; }
.phase__intro { margin-bottom: 18px; font: 400 15.5px/1.6 Archivo, sans-serif; color: var(--body); }
.outcome {
  background: var(--gray); border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0; padding: 14px 20px;
  font: 500 15px/1.55 Archivo, sans-serif; color: var(--head); margin-top: 18px;
}
.outcome b { color: var(--blue); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-3); }
.faq__summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font: 600 17px/1.4 Archivo, sans-serif; color: var(--head);
}
.faq__summary .pm { color: var(--blue); flex: none; transition: transform .2s ease; }
.faq[open] .faq__summary .pm { transform: rotate(45deg); }
.faq__answer { margin: 0 0 24px; padding: 0 4px; font: 400 15.5px/1.65 Archivo, sans-serif; color: var(--body); }

/* ---------- Final CTA ---------- */
.supply-chain-visit { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.12); }
.supply-chain-visit__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; padding: 72px 24px; }
.supply-chain-visit h2 { margin: 0 0 14px; color: var(--white); font: 700 36px/1.15 Archivo, sans-serif; letter-spacing: -.02em; }
.supply-chain-visit p { margin: 0; color: #bfd0df; font: 400 16px/1.6 Archivo, sans-serif; }
.supply-chain-visit__contact { display: grid; gap: 14px; justify-items: start; }
.supply-chain-visit__contact .btn-row { margin-bottom: 8px; }
.supply-chain-visit__contact .btn--ghost { border-color: rgba(255,255,255,.4); }
.supply-chain-visit__contact p strong { color: var(--white); }
.supply-chain-visit__contact small { color: #7f9ab2; font: 500 12.5px/1.5 Archivo, sans-serif; }
.final-cta { background: var(--blue); }
.final-cta__inner { max-width: var(--wrap); margin: 0 auto; padding: 88px 24px; text-align: center; }
.final-cta h2 { font: 700 40px/1.15 Archivo, sans-serif; letter-spacing: -.02em; color: #fff; text-wrap: balance; margin-bottom: 14px; }
.final-cta p { font: 400 16px Archivo, sans-serif; color: rgba(255,255,255,.75); margin-bottom: 34px; }
.final-cta .btn-row { justify-content: center; }
.final-cta__heritage { display: grid; gap: 7px; max-width: 780px; margin: 30px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); }
.final-cta__heritage strong { color: var(--white); font: 700 18px/1.35 Archivo, sans-serif; }
.final-cta__heritage span { color: rgba(255,255,255,.78); font: 400 14.5px/1.55 Archivo, sans-serif; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: 64px 24px 40px; }
.footer__top {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  align-items: flex-start; margin-bottom: 48px;
}
.footer__brand-logo { display: block; width: 250px; max-width: 100%; height: auto; border-radius: 8px; }
.footer__slogan { margin-top: 10px; font: 600 14.5px/1.5 Archivo, sans-serif; letter-spacing: .01em; color: #9FB4C7; }
.footer__slogan .x { color: var(--sky-3); }
.footer__tag { margin-top: 10px; font: 400 14px/1.6 Archivo, sans-serif; color: #5F7891; max-width: 300px; }
.footer__nav { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font: 600 11.5px Archivo, sans-serif; letter-spacing: .14em; text-transform: uppercase;
  color: #5F7891; margin-bottom: 4px;
}
.footer__col a { font: 400 14px Archivo, sans-serif; color: #9FB4C7; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer__bottom div { font: 400 13px Archivo, sans-serif; color: #5F7891; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,22,40,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal[hidden] { display: none; }
.modal__panel {
  background: #fff; border-radius: 14px; max-width: 520px; width: 100%;
  padding: 40px 44px; box-shadow: 0 40px 100px -20px rgba(0,0,0,.5);
  animation: fadeUp .3s ease both; max-height: 88vh; overflow: auto;
}
.modal__brand-logo { display: block; width: 126px; height: auto; margin: -10px auto 18px; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.modal__head h3 { font: 700 26px Archivo, sans-serif; letter-spacing: -.015em; color: var(--head); }
.modal__close {
  background: none; border: none; font: 400 22px Archivo, sans-serif; color: var(--muted);
  cursor: pointer; line-height: 1; padding: 4px;
}
.modal__sub { margin-bottom: 26px; font: 400 14.5px/1.5 Archivo, sans-serif; color: var(--muted); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; font: 600 12.5px Archivo, sans-serif; color: var(--head); }
.field input, .field select, .field textarea {
  font: 400 15px Archivo, sans-serif; padding: 12px 14px;
  border: 1px solid rgba(9,40,74,.2); border-radius: 7px; color: var(--head);
  outline-color: var(--blue); background: #fff;
}
.field textarea { resize: vertical; }
.service-field { border: 0; padding: 0; margin: 0; min-width: 0; }
.service-field legend { margin-bottom: 10px; }
.service-field legend span { font-weight: 400; color: var(--muted); }
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.service-option { position: relative; cursor: pointer; }
.service-option input { position: absolute; opacity: 0; pointer-events: none; }
.service-option span {
  display: flex; align-items: center; justify-content: center; min-height: 42px; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: 4px; background: var(--white);
  color: var(--head); font: 600 12px/1.25 Archivo, sans-serif; text-align: center;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.service-option input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.service-option input:checked + span { border-color: var(--blue); background: var(--blue); color: var(--white); }
.service-option:hover span { border-color: var(--blue); }
.form .btn--primary { justify-content: center; margin-top: 6px; padding: 15px; }
.form button[disabled] { opacity: .65; cursor: wait; }
.form__status {
  margin: -4px 0 0; color: #B42318; text-align: center;
  font: 600 13px/1.45 Archivo, sans-serif;
}
.form__status:empty { display: none; }
.contact-call {
  display: grid; justify-items: stretch; gap: 5px; padding-top: 2px; text-align: center;
}
.contact-call__button {
  justify-content: center; padding: 14px 18px; border-color: rgba(4,100,185,.4);
}
.contact-call p { margin: 3px 0 0; color: var(--muted); font: 500 13px/1.4 Archivo, sans-serif; }
.contact-call__number { color: var(--blue); font: 700 16px/1.4 Archivo, sans-serif; text-decoration: none; }
.contact-call__number:hover { text-decoration: underline; }
.modal__success { text-align: center; padding: 24px 0 12px; }
.modal__check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--chip); border: 1.5px solid rgba(4,100,185,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font: 700 26px Archivo, sans-serif; color: var(--blue);
}
.modal__success h3 { font: 700 24px Archivo, sans-serif; color: var(--head); margin-bottom: 10px; }
.modal__success p { font: 400 15.5px/1.6 Archivo, sans-serif; color: var(--muted); margin-bottom: 28px; }

/* ---------- Company brand mark ---------- */
.company-brand-section { padding: 74px 24px; }
.company-brand-section__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: center; }
.company-brand-logo { padding: 24px; background: var(--white); border: 1px solid var(--line-2); border-radius: 12px; box-shadow: var(--shadow-card); }
.company-brand-logo img { display: block; width: 100%; height: auto; }
.company-brand-section__inner .h2 { margin-bottom: 18px; }

/* ---------- Page routing ---------- */
.page { display: none; }
.page.is-active { display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .tech-home__img { opacity: .18; }
}

@media (max-width: 960px) {
  .section, .section--md, .section--90 { padding: 80px 24px; }
  .section--tight { padding: 72px 24px; }
  .h1 { font-size: 46px; }
  .page-hero .h1 { font-size: 40px; }
  .h2 { font-size: 34px; }
  .h2--38 { font-size: 32px; }

  .grid-2, .grid-2-wide, .grid-2-narrow, .grid-2-9, .grid-3,
  .solution, .industry, .tech-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution__media { position: static; }
  .solution__media img, .media img { height: 340px; }
  .solution-proof { position: static; min-height: 320px; }
  .solution-capabilities { grid-template-columns: repeat(2, 1fr); }
  .solution-process { grid-template-columns: repeat(2, 1fr); gap: 38px 0; }
  .solution-step:nth-child(2)::after { display: none; }
  .solution-cta__inner { align-items: flex-start; flex-direction: column; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .solution-link-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-showcase { padding: 80px 24px; }
  .dashboard-showcase__grid { grid-template-columns: 1fr; gap: 46px; }
  .company-brand-section__inner { grid-template-columns: 1fr; gap: 38px; }
  .company-brand-logo { max-width: 480px; }
  .apparel-ops__grid { grid-template-columns: 1fr; }
  .apparel-ops__card { min-height: 0; }
  .vas-offers__grid { grid-template-columns: 1fr; }
  .vas-offers__card--featured { grid-template-columns: 1fr; gap: 14px; }
  .ecosystem-panel, .supply-chain-visit__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Mobile nav */
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 12px 0; width: 100%; }
  .nav__dropdown { width: 100%; }
  .nav__dropdown-trigger { justify-content: space-between; }
  .nav__submenu { position: static; min-width: 0; padding: 0 0 7px 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav__submenu::before { display: none; }
  .nav__submenu-link { padding: 9px 12px; }
  .nav__cta { display: none; }
  .nav__actions { margin-left: auto; }
  .nav__toggle { margin-left: 0; }
}

@media (max-width: 620px) {
  .h1 { font-size: 36px; }
  .page-hero .h1 { font-size: 32px; }
  .h2 { font-size: 28px; }
  .h2--sm, .h2--38 { font-size: 26px; }
  .hero__inner { padding: 72px 24px; }
  .hero { min-height: 560px; }
  .hero__credential { align-items: flex-start; margin-top: 18px; padding: 11px 13px; }
  .hero__credential small { font-size: 11.5px; }
  .industry-certification { width: 100%; margin-top: 0; margin-bottom: 34px; }
  .section, .section--md, .section--90, .section--tight { padding: 64px 20px; }
  .process { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .vas-offers__card { padding: 26px 24px; }
  .vas-offers__card ul { grid-template-columns: 1fr; }
  .solution-link-grid { grid-template-columns: 1fr; }
  .page-hero--photo { min-height: 500px; }
  .page-hero--photo .page-hero__bg { object-position: 64% center; }
  .page-hero--photo .page-hero__scrim { background: linear-gradient(90deg, rgba(6,22,40,.97), rgba(6,22,40,.68)); }
  .solution-capabilities, .solution-process { grid-template-columns: 1fr; }
  .solution-step { padding-right: 0; }
  .solution-step::after { display: none; }
  .solution-proof { padding: 32px; }
  .solution-proof__value { font-size: 38px; }
  .dashboard-showcase { padding: 64px 20px; }
  .dashboard-showcase__grid { gap: 36px; }
  .dashboard-ui { padding: 13px; }
  .dashboard-ui__stats { grid-template-columns: 1fr; }
  .dashboard-ui__body { grid-template-columns: 1fr; }
  .dashboard-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-wordmark small { display: none; }
  .dashboard-visual__client { gap: 6px; }
  .dashboard-visual__client strong { font-size: 8px; }
  .dashboard-visual__client strong img { width: 18px; height: 18px; }
  .dashboard-visual__client span { gap: 5px; font-size: 8px; }
  .dashboard-metric-context { align-items: flex-start; flex-direction: column; gap: 2px; }
  .partner-showcase { padding: 64px 0 54px; }
  .partner-showcase__head { margin-bottom: 30px; }
  .partner-track span { font-size: 14px; padding: 9px 14px; }
  .home-logo-ticker { padding: 12px 0; }
  .home-logo-ticker__set { gap: 12px; padding-right: 12px; }
  .home-logo-ticker__logo { width: 136px; height: 62px; flex-basis: 136px; padding: 7px 9px; }
  .modal__panel { padding: 30px 24px; }
  .final-cta h2 { font-size: 30px; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { width: 100%; }
  .nav__logo img { width: 112px; height: 38px; }
  .footer__brand { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer__brand-logo { margin-inline: auto; }
  .footer__tag { margin-left: auto; margin-right: auto; }
  .footer__nav { width: 100%; justify-content: space-around; text-align: center; }
  .footer__col { align-items: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- Hero tagline: Pick.Pack.Ship ---------- */
.hero__content .h1 { margin-bottom: 10px; }
.hero__tagline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .2em;
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0 0 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}
.hero__tagline-pick, .hero__tagline-ship { color: var(--white); }
.hero__tagline-pack { color: var(--sky); }
.hero__tagline-arrow { color: var(--sky); font-weight: 500; }
.hero__tagline-smart-track-arrow { margin-left: .08em; }
.hero__smart-track { display: block; width: clamp(104px, 10vw, 150px); height: auto; margin-left: .08em; filter: brightness(0) saturate(100%) invert(52%) sepia(87%) saturate(1400%) hue-rotate(185deg) brightness(94%) contrast(91%) drop-shadow(0 2px 12px rgba(0,0,0,.35)); }
@media (max-width: 620px) {
  .hero__tagline { flex-wrap: nowrap; gap: .1em; width: 100%; white-space: nowrap; font-size: clamp(18px, 5.8vw, 23px); }
  .hero__smart-track { flex: none; width: clamp(64px, 18vw, 82px); margin-left: .04em; }
  .hero__corner-logo { top: 24px; right: 20px; width: 72px; }
}
