:root {
  --orange: #f45425;
  --orange-bright: #ff6a31;
  --navy: #0a1b32;
  --ink: #102033;
  --muted: #647184;
  --cloud: #f2f5f7;
  --white: #ffffff;
  --line: rgba(11, 27, 49, .14);
  --accent: var(--orange);
  --accent-soft: #fff0ea;
  --page: #ffffff;
  --surface: #f4f6f7;
  --display: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --radius: 22px;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
}
.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus { top: 10px; }

/* Concept controls */
.concept-bar {
  min-height: 42px;
  padding: 6px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  background: var(--navy);
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.concept-bar small { justify-self: end; font-size: 9px; }
.concept-switcher { display: flex; gap: 5px; }
.concept-button {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  background: transparent;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.concept-button i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.concept-button:nth-child(2) i { background: #d8ff4f; }
.concept-button:nth-child(3) i { background: #4bd8ff; }
.concept-button:hover,
.concept-button.is-active { background: rgba(255,255,255,.14); color: white; }

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  min-height: 88px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(10,27,50,.1);
}
.brand {
  display: block;
  width: 260px;
  height: 68px;
  overflow: hidden;
  background: #fff;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.03);
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 46px);
}
.desktop-nav a {
  position: relative;
  padding: 34px 0 31px;
  color: #304054;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  min-width: 150px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.header-cta span { margin-left: 12px; color: var(--accent); }
.menu-button, .mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(750px, calc(100vh - 130px));
  overflow: hidden;
  background: #13243a;
  color: white;
}
.hero-media, .hero-media::after, .hero-scrim {
  position: absolute;
  inset: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.08);
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5,19,37,.92) 0%, rgba(5,19,37,.64) 46%, rgba(5,19,37,.11) 75%),
    linear-gradient(0deg, rgba(5,19,37,.72), transparent 45%);
}
.hero-media::after {
  content: "";
  background:
    linear-gradient(110deg, transparent 0 68%, rgba(244,84,37,.72) 68.1% 68.4%, transparent 68.5%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 110px);
  z-index: 2;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 0 105px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.8vw, 110px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}
.hero-copy h1 em, .section-intro h2 em {
  color: var(--accent);
  font-style: normal;
}
.hero-summary {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--accent); color: white; }
.button-primary:hover { filter: brightness(1.08); }
.button-ghost {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  backdrop-filter: blur(12px);
}
.play-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--navy);
  font-size: 9px;
}
.hero-status { align-self: end; margin-bottom: 50px; }
.status-card, .metric-card {
  padding: 22px;
  backdrop-filter: blur(16px);
  background: rgba(9,25,45,.68);
  border: 1px solid rgba(255,255,255,.16);
}
.status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.status-card strong, .status-card small { display: block; }
.status-card strong { font-size: 13px; }
.status-card small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: 11px; }
.live-dot {
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: #68de8d;
  box-shadow: 0 0 0 5px rgba(104,222,141,.13);
}
.metric-card {
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.metric-card > span, .metric-card small { display: block; }
.metric-card > span {
  color: rgba(255,255,255,.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.metric-card strong {
  display: block;
  margin: 5px 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 64px;
  letter-spacing: -.06em;
  line-height: 1;
}
.metric-card sup { font-size: .38em; vertical-align: super; }
.metric-card small { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.5; }
.slider-controls {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(8,23,42,.4);
  color: white;
  cursor: pointer;
}
.slide-dots { display: flex; gap: 6px; }
.slide-dot {
  width: 44px;
  height: 38px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,.26);
  background: transparent;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  text-align: left;
  cursor: pointer;
}
.slide-dot.is-active { border-color: var(--accent); color: white; }

/* Trust strip */
.trust-strip {
  width: min(calc(100% - 48px), var(--max));
  min-height: 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.trust-strip p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trust-strip div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.trust-strip span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.trust-strip span::before { content: "•"; margin-right: 9px; color: var(--accent); }

.why-abs {
  width: min(calc(100% - 48px), 1040px);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 136px) 0 clamp(18px, 3vw, 42px);
}
.why-abs h2 {
  max-width: 900px;
  margin: 0;
  color: #050b12;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: -.055em;
  line-height: 1;
  text-transform: uppercase;
}
.why-abs p {
  max-width: 875px;
  margin: clamp(30px, 4vw, 52px) 0 0;
  color: #091727;
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.48;
  letter-spacing: -.012em;
}

/* Comparison */
.comparison {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 0;
}
.comparison::before {
  content: "";
  position: absolute;
  top: 250px;
  left: -130px;
  width: 330px;
  height: 330px;
  border: 70px solid var(--accent-soft);
  border-radius: 50%;
  opacity: .55;
  z-index: -1;
}
.section-intro {
  width: min(100%, 850px);
  margin: 0 auto 72px;
  text-align: center;
}
.section-intro h2, .next-step h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}
.section-intro > p:last-child {
  max-width: 670px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.comparison-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
  align-items: stretch;
}
.comparison-card {
  padding: clamp(30px, 3.4vw, 54px);
  border: 1px solid var(--line);
  background: var(--page);
}
.abs-card { border-radius: var(--radius) 0 0 var(--radius); }
.self-card { border-radius: 0 var(--radius) var(--radius) 0; background: var(--surface); }
.card-heading {
  padding-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.card-number {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 900;
}
.self-card .card-number { background: #d8dde3; color: #6a7582; }
.card-heading p { margin: 0 0 5px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.card-heading h3 { margin: 0; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.benefit-list { margin: 30px 0; padding: 0; list-style: none; }
.benefit-list li { display: flex; gap: 16px; padding: 13px 0; }
.list-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.self-card .list-icon { background: #e6e9ec; color: #8c939b; }
.benefit-list strong, .benefit-list small { display: block; }
.benefit-list strong { margin: 3px 0 5px; font-size: 13px; }
.benefit-list small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.text-link {
  display: inline-flex;
  gap: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.friction-note {
  margin: 33px 0 0;
  padding: 18px;
  border-radius: 12px;
  background: rgba(16,32,51,.06);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.comparison-center {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.comparison-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 45px, rgba(255,255,255,.035) 46px);
}
.vs-pill {
  position: absolute;
  top: 38px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}
.route-line {
  position: relative;
  width: 2px;
  height: 250px;
  background: linear-gradient(var(--accent), rgba(255,255,255,.25));
}
.route-line span {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.route-line span:nth-child(1) { top: 0; }
.route-line span:nth-child(2) { top: 25%; }
.route-line span:nth-child(3) { top: 50%; }
.route-line span:nth-child(4) { top: 75%; }
.route-line span:nth-child(5) { top: 100%; }
.route-label {
  margin-top: 26px;
  display: grid;
  gap: 9px;
  text-align: center;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .13em;
}
.route-label strong { color: var(--accent); font-size: 26px; letter-spacing: -.03em; }
.outcomes {
  width: min(100%, var(--max));
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcomes article {
  min-height: 130px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}
.outcomes article:last-child { border-right: 0; }
.outcomes strong { color: var(--accent); font-size: 10px; }
.outcomes span { font-size: 12px; font-weight: 800; line-height: 1.5; }

/* Open information layout */
.info-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 130px);
  border-top: 1px solid var(--line);
}
.info-feature {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 50px 0 40px;
}
.info-kicker,
.story-label {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.info-feature > h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 50px);
  letter-spacing: -.045em;
  line-height: 1.02;
  text-transform: uppercase;
}
.info-feature > p:not(.info-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.savings-stat {
  margin: 38px 0 32px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.savings-stat > span {
  align-self: start;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.savings-stat strong {
  grid-row: span 2;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 76px);
  letter-spacing: -.07em;
  line-height: .8;
}
.savings-stat sup { font-size: .3em; vertical-align: super; }
.savings-stat small {
  max-width: 180px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}
.info-stories { border-bottom: 1px solid var(--line); }
.info-story {
  position: relative;
  min-height: 250px;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 58px;
  gap: clamp(20px, 3vw, 46px);
  border-top: 1px solid var(--line);
}
.info-story:first-child { border-top: 0; }
.story-number {
  padding-top: 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}
.story-copy h3 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 2.5vw, 39px);
  letter-spacing: -.035em;
  line-height: 1.08;
  text-transform: uppercase;
}
.story-copy > p:not(.story-label) {
  max-width: 650px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.context-note {
  max-width: 650px;
  margin-top: 20px;
  padding-left: 16px;
  display: block;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 10px;
  font-style: italic;
  line-height: 1.5;
}
.story-mark {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 18px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.info-story:hover .story-mark {
  background: var(--accent);
  color: white;
  transform: rotate(8deg);
}
.service-band {
  width: min(100%, var(--max));
  margin: 100px auto 0;
  padding: clamp(38px, 5vw, 68px);
  background: var(--navy);
  color: white;
}
.service-band-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.service-band-heading .eyebrow { margin: 0; }
.service-band-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 43px);
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-list article {
  min-height: 155px;
  padding: 30px 30px 25px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-content: start;
  gap: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.service-list article:nth-child(3n+2),
.service-list article:nth-child(3n+3) { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.13); }
.service-list article:nth-last-child(-n+3) { border-bottom: 0; }
.service-list strong {
  grid-row: span 2;
  color: var(--accent);
  font-size: 9px;
}
.service-list span { font-size: 13px; font-weight: 800; }
.service-list small { color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.5; }

/* Closing and footer */
.next-step {
  margin-top: 50px;
  padding: 48px 24px;
  background:
    linear-gradient(90deg, rgba(5,20,38,.94), rgba(5,20,38,.7)),
    url("american-buying-service-logo-optimized.webp") center 53% / cover no-repeat;
  color: white;
  text-align: center;
}
.next-step h2 { font-size: clamp(42px, 4.3vw, 64px); }
.next-step .button { margin-top: 20px; }
.site-footer {
  padding: 68px max(24px, calc((100vw - var(--max)) / 2)) 25px;
  background: #071424;
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(300px, 1fr) minmax(360px, 1.2fr);
  gap: clamp(45px, 6vw, 95px);
  align-items: start;
  padding-bottom: 58px;
}
.footer-brand { width: 290px; height: 76px; border-radius: 6px; }
.footer-brand-column {
  display: grid;
  align-content: start;
  gap: 20px;
}
.footer-brand-copy {
  max-width: 290px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.65;
}
.footer-links h2,
.footer-contact h2 {
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.footer-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}
.footer-link-list a {
  width: fit-content;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}
.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}
.footer-link-list a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.footer-contact address {
  display: grid;
  gap: 21px;
  font-style: normal;
}
.contact-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}
.contact-row a {
  width: fit-content;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}
.contact-row a:hover,
.contact-row a:focus-visible { color: var(--accent); }
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Theme 02 — warm editorial */
body[data-concept="horizon"] {
  --accent: #e95f32;
  --accent-soft: #f7e8db;
  --navy: #23312c;
  --ink: #252b27;
  --muted: #6f756f;
  --page: #f7f3ea;
  --surface: #eee8dc;
  --line: rgba(37,43,39,.16);
  --radius: 3px;
}
body[data-concept="horizon"] .site-header { background: rgba(247,243,234,.97); }
body[data-concept="horizon"] .hero { margin: 18px; min-height: min(720px, calc(100vh - 166px)); border-radius: 2px; }
body[data-concept="horizon"] .hero-scrim {
  background: linear-gradient(90deg, rgba(25,32,29,.91) 0%, rgba(25,32,29,.58) 48%, rgba(25,32,29,.1) 78%);
}
body[data-concept="horizon"] .hero-copy h1,
body[data-concept="horizon"] .section-intro h2,
body[data-concept="horizon"] .next-step h2,
body[data-concept="horizon"] .info-feature > h3,
body[data-concept="horizon"] .story-copy h3,
body[data-concept="horizon"] .service-band-heading h3 {
  font-family: var(--display);
  letter-spacing: -.045em;
  text-transform: none;
}
body[data-concept="horizon"] .hero-copy h1 em,
body[data-concept="horizon"] .section-intro h2 em { font-style: italic; }
body[data-concept="horizon"] .comparison-center { background: #23312c; }
body[data-concept="horizon"] .route-line span { border-color: #23312c; }
body[data-concept="horizon"] .next-step { background-color: #23312c; }

/* Theme 03 — technology forward */
body[data-concept="midnight"] {
  --accent: #49d4f4;
  --accent-soft: rgba(73,212,244,.12);
  --navy: #070e17;
  --ink: #eaf7fb;
  --muted: #8da2ae;
  --page: #09131d;
  --surface: #0e1b27;
  --line: rgba(138,215,233,.17);
  --radius: 16px;
}
body[data-concept="midnight"] .site-header { background: rgba(7,14,23,.97); }
body[data-concept="midnight"] .desktop-nav a { color: #b3c5ce; }
body[data-concept="midnight"] .header-cta { background: var(--accent); color: #06111a; }
body[data-concept="midnight"] .header-cta span { color: #06111a; }
body[data-concept="midnight"] .hero { border-bottom: 1px solid var(--line); }
body[data-concept="midnight"] .hero-scrim {
  background: linear-gradient(90deg, rgba(3,10,17,.96) 0%, rgba(3,10,17,.66) 52%, rgba(3,10,17,.28) 100%);
}
body[data-concept="midnight"] .hero-media video { filter: saturate(.5) hue-rotate(140deg) contrast(1.15); }
body[data-concept="midnight"] .hero-media::after {
  background:
    radial-gradient(circle at 80% 30%, rgba(73,212,244,.2), transparent 25%),
    linear-gradient(110deg, transparent 0 68%, rgba(73,212,244,.65) 68.1% 68.25%, transparent 68.4%),
    repeating-linear-gradient(90deg, rgba(73,212,244,.035) 0 1px, transparent 1px 110px);
}
body[data-concept="midnight"] .comparison-card { background: #0b1722; }
body[data-concept="midnight"] .self-card { background: #0d1924; }
body[data-concept="midnight"] .self-card .list-icon { background: rgba(255,255,255,.06); color: #778995; }
body[data-concept="midnight"] .self-card .card-number { background: #1a2b38; color: #7f95a1; }
body[data-concept="midnight"] .friction-note { background: rgba(255,255,255,.04); }
body[data-concept="midnight"] .comparison-center { border: 1px solid var(--accent); }
body[data-concept="midnight"] .route-line span { border-color: #070e17; }
body[data-concept="midnight"] .site-footer { background: #040a10; }

@media (max-width: 1080px) {
  .concept-bar { grid-template-columns: auto 1fr; }
  .concept-bar small { display: none; }
  .concept-switcher { justify-self: end; }
  .site-header { grid-template-columns: 230px 1fr auto; gap: 20px; }
  .brand { width: 220px; height: 62px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 11px; }
  .hero-inner { grid-template-columns: 1fr 260px; gap: 38px; }
  .comparison-shell { grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr); }
  .comparison-card { padding: 30px 24px; }
  .info-layout { grid-template-columns: minmax(270px, 340px) minmax(0, 1fr); gap: 50px; }
  .footer-top { grid-template-columns: 270px minmax(0, 1fr); }
  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 800px) {
  .concept-bar > span { display: none; }
  .concept-bar { grid-template-columns: 1fr; }
  .concept-switcher { justify-self: center; }
  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }
  .brand { width: 210px; height: 58px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button {
    width: 43px;
    height: 43px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    display: grid;
    align-content: center;
    gap: 5px;
    background: var(--navy);
  }
  .menu-button span:not(.sr-only) { height: 1px; background: white; }
  .mobile-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 20px 24px 28px;
    background: var(--page);
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero { min-height: 720px; }
  body[data-concept="horizon"] .hero { min-height: 700px; margin: 10px; }
  .hero-inner {
    width: min(calc(100% - 40px), var(--max));
    padding: 70px 0 110px;
    grid-template-columns: 1fr;
    gap: 45px;
    align-content: center;
  }
  .hero-copy h1 { font-size: clamp(52px, 11vw, 82px); }
  .hero-summary { max-width: 520px; }
  .hero-status { width: min(100%, 380px); margin: 0; display: grid; grid-template-columns: 1fr 1fr; }
  .status-card { border-radius: var(--radius) 0 0 var(--radius); }
  .metric-card { border-top: 1px solid rgba(255,255,255,.16); border-left: 0; border-radius: 0 var(--radius) var(--radius) 0; }
  .metric-card strong { font-size: 48px; }
  .slider-controls { right: 20px; }
  .trust-strip { grid-template-columns: 1fr; gap: 5px; padding: 23px 0; }
  .trust-strip div { flex-wrap: wrap; justify-content: flex-start; }
  .comparison { padding-top: 90px; }
  .section-intro { margin-bottom: 54px; }
  .info-layout { grid-template-columns: 1fr; gap: 10px; }
  .info-feature { position: static; padding: 45px 0 35px; }
  .info-feature > h3 { max-width: 620px; }
  .info-feature > p:not(.info-kicker) { max-width: 620px; }
  .savings-stat { max-width: 620px; }
  .info-story { min-height: 230px; }
  .service-band { margin-top: 70px; }
  .service-band-heading { align-items: flex-start; flex-direction: column; }
  .service-list { grid-template-columns: 1fr 1fr; }
  .service-list article:nth-child(n) { padding: 26px 24px 22px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .service-list article:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.13); }
  .service-list article:nth-last-child(-n+2) { border-bottom: 0; }
  .comparison-shell { grid-template-columns: 1fr; }
  .abs-card { border-radius: var(--radius) var(--radius) 0 0; }
  .self-card { border-radius: 0 0 var(--radius) var(--radius); }
  .comparison-center { min-height: 190px; order: 0; }
  .route-line { width: 55%; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.25)); }
  .route-line span { top: 50% !important; }
  .route-line span:nth-child(1) { left: 0; }
  .route-line span:nth-child(2) { left: 25%; }
  .route-line span:nth-child(3) { left: 50%; }
  .route-line span:nth-child(4) { left: 75%; }
  .route-line span:nth-child(5) { left: 100%; }
  .vs-pill { top: 20px; }
  .route-label { margin-top: 20px; grid-template-columns: 1fr auto 1fr; align-items: center; }
  .outcomes { grid-template-columns: 1fr 1fr; }
  .outcomes article:nth-child(2) { border-right: 0; }
  .outcomes article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-contact {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 540px) {
  .concept-bar { overflow-x: auto; justify-content: start; }
  .concept-switcher { justify-self: start; min-width: max-content; }
  .concept-button { padding: 7px 9px; }
  .site-header { padding: 0 16px; }
  .brand { width: 186px; height: 55px; }
  .hero { min-height: 690px; }
  body[data-concept="horizon"] .hero { margin: 6px; min-height: 680px; }
  .hero-inner { width: calc(100% - 32px); padding: 55px 0 105px; align-content: start; }
  .hero-copy h1 { font-size: clamp(44px, 13.2vw, 64px); line-height: .94; }
  .hero-summary { margin-top: 22px; font-size: 15px; }
  .hero-actions { margin-top: 26px; }
  .button { width: 100%; }
  .button-ghost { width: auto; padding-right: 20px; }
  .hero-status { grid-template-columns: 1fr; gap: 0; }
  .status-card { border-radius: var(--radius) var(--radius) 0 0; }
  .metric-card { border-top: 0; border-left: 1px solid rgba(255,255,255,.16); border-radius: 0 0 var(--radius) var(--radius); padding: 16px 20px; }
  .metric-card strong { display: inline-block; margin-right: 8px; font-size: 40px; }
  .metric-card small { display: inline; }
  .slider-controls { bottom: 18px; left: 16px; right: 16px; justify-content: space-between; }
  .slide-dot { width: 35px; }
  .trust-strip { width: calc(100% - 32px); }
  .trust-strip div { gap: 13px; }
  .trust-strip span { width: calc(50% - 8px); font-size: 11px; }
  .why-abs { width: calc(100% - 32px); padding: 70px 0 10px; }
  .why-abs h2 { font-size: 50px; letter-spacing: -.055em; line-height: 1; }
  .why-abs p { margin-top: 31px; font-size: 18px; line-height: 1.48; }
  .comparison { padding: 75px 16px 0; }
  .section-intro { text-align: left; }
  .section-intro h2 { font-size: 43px; }
  .next-step h2 { font-size: 38px; }
  .section-intro > p:last-child { font-size: 14px; }
  .info-feature { padding-top: 32px; }
  .info-feature > h3 { font-size: 34px; }
  .savings-stat {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }
  .savings-stat strong { grid-row: auto; font-size: 66px; }
  .savings-stat small { max-width: 240px; }
  .info-story {
    min-height: 0;
    padding: 35px 0;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }
  .story-mark { display: none; }
  .story-copy h3 { font-size: 27px; }
  .story-copy > p:not(.story-label) { font-size: 12px; }
  .service-band { margin-top: 50px; padding: 30px 22px; }
  .service-band-heading h3 { font-size: 29px; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article:nth-child(n) {
    min-height: 112px;
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .service-list article:last-child { border-bottom: 0; }
  .comparison-card { padding: 26px 20px; }
  .card-heading { gap: 14px; }
  .benefit-list { margin: 22px 0; }
  .comparison-center { min-height: 160px; }
  .outcomes { grid-template-columns: 1fr; }
  .outcomes article { min-height: 90px; padding: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .outcomes article:last-child { border-bottom: 0; }
  .next-step { margin-top: 36px; padding: 42px 20px; }
  .site-footer { padding: 38px 20px 22px; }
  .footer-brand { width: 260px; height: 70px; }
  .footer-top { padding-bottom: 42px; }
  .footer-links h2,
  .footer-contact h2 { margin-bottom: 20px; }
  .footer-link-list { gap: 15px 22px; }
  .footer-link-list a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-bottom { gap: 16px; flex-direction: column; }
}

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

/* Reference-driven header and solutions direction */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  min-height: 84px;
  padding: 9px 26px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: rgba(6, 22, 38, .52);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 0;
  color: white;
}
.site-header .brand {
  grid-column: 1;
  width: 260px;
  height: 66px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.site-header .brand img {
  transform: scale(1.1);
}
.nav-trigger {
  grid-column: 2;
  grid-row: 1;
  width: 48px;
  height: 48px;
  margin-top: 9px;
  padding: 13px 10px;
  display: none;
  align-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.nav-trigger:hover { background: rgba(255,255,255,.55); }
.nav-trigger span:not(.sr-only) {
  width: 25px;
  height: 2px;
  display: block;
  background: currentColor;
}
.desktop-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  gap: clamp(18px, 1.8vw, 30px);
}
.desktop-nav > a,
.desktop-nav > .nav-dropdown > summary {
  position: relative;
  min-height: 48px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: .015em;
  line-height: 1;
  list-style: none;
  white-space: nowrap;
  cursor: pointer;
}
.desktop-nav > .nav-dropdown > summary::-webkit-details-marker { display: none; }
.desktop-nav > a::after,
.desktop-nav > .nav-dropdown > summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > .nav-dropdown:hover > summary::after,
.desktop-nav > .nav-dropdown[open] > summary::after,
.desktop-nav > .nav-dropdown > summary:focus-visible::after { transform: scaleX(1); }
.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > .nav-dropdown > summary:hover,
.desktop-nav > .nav-dropdown > summary:focus-visible { color: white; }
.nav-dropdown { position: relative; }
.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.nav-dropdown[open] .nav-chevron { transform: translateY(3px) rotate(225deg); }
.nav-mega {
  position: absolute;
  z-index: 60;
  top: 100%;
  left: 50%;
  width: min(520px, calc(100vw - 48px));
  padding: 18px;
  display: none;
  gap: 4px;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 14px 14px;
  background:
    radial-gradient(circle at 92% 15%, rgba(244,84,37,.13), transparent 31%),
    rgba(248,250,251,.98);
  color: var(--navy);
  box-shadow: 0 24px 65px rgba(2,15,29,.28);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.nav-dropdown[open] > .nav-mega,
.nav-dropdown:hover > .nav-mega { display: grid; }
.nav-mega-services {
  width: min(720px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  column-gap: 24px;
}
.nav-mega-products { grid-template-columns: 1fr; }
.desktop-nav .nav-mega a {
  min-height: 43px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(10,27,50,.1);
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  white-space: normal;
}
.desktop-nav .nav-mega a::after { display: none; }
.desktop-nav .nav-mega a:hover,
.desktop-nav .nav-mega a:focus-visible {
  background: rgba(244,84,37,.09);
  color: #bd3615;
}
.header-tools {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  gap: clamp(20px, 3vw, 44px);
}
.header-tools button,
.header-tools a {
  min-width: 45px;
  padding: 7px 3px;
  border: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  background: transparent;
  color: inherit;
  font-size: 9px;
  cursor: pointer;
}
.header-tools svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.mobile-nav {
  position: absolute;
  top: 96px;
  left: max(30px, calc((100vw - 1500px) / 2));
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 112px);
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 22px 70px rgba(7,20,36,.22);
}
.mobile-nav.is-open { display: grid; }
.mobile-nav > a,
.mobile-nav > .mobile-dropdown > summary {
  min-height: 46px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(10,27,50,.1);
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}
.mobile-nav > .mobile-dropdown > summary::-webkit-details-marker { display: none; }
.mobile-nav > .mobile-dropdown > summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  font-weight: 500;
}
.mobile-nav > .mobile-dropdown[open] > summary::after { content: "−"; }
.mobile-submenu {
  padding: 8px 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 14px;
  border-bottom: 1px solid rgba(10,27,50,.1);
  background: rgba(10,27,50,.035);
}
.mobile-submenu a {
  min-height: 42px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  border-left: 2px solid transparent;
  color: #263a4f;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}
.mobile-submenu a:hover,
.mobile-submenu a:focus-visible {
  border-left-color: var(--accent);
  background: rgba(244,84,37,.07);
  color: #bd3615;
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .nav-trigger { grid-column: 3; justify-self: end; display: grid; }
  .header-tools { display: none; }
}

@media (min-width: 1101px) {
  .mobile-nav.is-open { display: none; }
}

.hero {
  min-height: min(850px, 100vh);
  background: #497893;
}
.hero-scrim {
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(0deg, rgba(4,20,35,.36), transparent 45%);
}
.hero-media::after {
  background: linear-gradient(90deg, rgba(4,20,35,.1), transparent 35%, rgba(4,20,35,.05));
}
.hero-inner {
  position: relative;
  width: min(calc(100% - 60px), 1500px);
  min-height: inherit;
  margin: 0 auto;
  padding: 0;
  display: block;
}
.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(700px, 62vw);
  text-align: center;
  transform: translate(-50%, -50%);
}
.hero-copy h1 {
  max-width: none;
  color: white;
  font-size: clamp(43px, 4.6vw, 72px);
  letter-spacing: -.04em;
  line-height: .96;
  text-shadow:
    0 3px 5px rgba(0,0,0,.92),
    0 12px 34px rgba(0,0,0,.72);
}
.hero-copy h1 em {
  color: white;
  font-style: italic;
}
.hero-summary {
  max-width: 580px;
  margin: 15px auto 0;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  text-shadow:
    0 2px 4px rgba(0,0,0,.95),
    0 8px 24px rgba(0,0,0,.78);
}
.slider-controls {
  right: auto;
  bottom: 30px;
  left: max(30px, calc((100vw - 1500px) / 2));
  width: min(calc(100% - 60px), 1500px);
  justify-content: space-between;
}
.video-compact {
  padding: 5px 14px 5px 6px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(7,20,36,.35);
  color: white;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.slider-arrows { display: flex; gap: 7px; }

.solutions {
  padding: clamp(90px, 9vw, 135px) 24px 100px;
  background: var(--page);
}
.solutions-intro {
  width: min(100%, 680px);
  margin: 0 auto 65px;
  text-align: center;
}
.solutions-intro .eyebrow { margin-bottom: 10px; }
.solutions-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: -.055em;
  line-height: 1;
  text-transform: uppercase;
}
.title-rule {
  width: 64px;
  height: 4px;
  margin: 22px auto 28px;
  display: block;
  border-radius: 4px;
  background: var(--accent);
}
.solutions-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.solution-panels {
  width: min(100%, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.solution-panel {
  position: relative;
  isolation: isolate;
  min-height: 310px;
  min-width: 0;
  padding: 42px 28px 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.65);
  color: white;
  text-align: center;
  overflow: hidden;
  background-color: #07182a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.solution-panel[data-solution="brand-building"] { background-image: url("assets/solutions/brand-building-service.webp"); background-position: 52% center; }
.solution-panel[data-solution="drop-ship"] { background-image: url("assets/solutions/drop-ship-service.webp"); background-position: center; }
.solution-panel[data-solution="warehousing-fulfillment"] { background-image: url("assets/solutions/warehousing-fulfillment-service.webp"); background-position: 55% center; }
.solution-panel[data-solution="virtual-office"] { background-image: url("assets/solutions/virtual-office-support.webp"); background-position: center; }
.solution-panel[data-solution="trade-show"] { background-image: url("assets/solutions/trade-show-representation.webp"); background-position: 57% center; }
.solution-panel[data-solution="sales-marketing"] { background-image: url("assets/solutions/sales-marketing-service.webp"); background-position: center; }
.solution-panel[data-solution="sourcing-procurement"] { background-image: url("assets/solutions/sourcing-procurement-service.webp"); background-position: 50% center; }
.solution-panel[data-solution="marketplace-ecommerce"] { background-image: url("assets/solutions/marketplace-ecommerce-sales.webp"); background-position: 50% center; }
.solution-panel[data-solution="formulation-development"] { background-image: url("assets/solutions/formulation-development-service.webp"); background-position: center; }
.solution-panel[data-solution="packaging-design"] { background-image: url("assets/solutions/packaging-design.webp"); background-position: center; }
.solution-panel:nth-child(3n) { border-right: 0; }
.solution-panel:last-child { grid-column: 2; border-bottom: 0; }
.solution-panel > * { position: relative; z-index: 1; }
.solution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(3,16,31,.78);
  transition: background .25s ease;
}
.solution-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.solution-panel:hover::before,
.solution-panel:focus-visible::before { background: rgba(3,16,31,.86); }
.solution-panel:hover::after,
.solution-panel:focus-visible::after { transform: scaleX(1); }
.solution-panel:focus-visible {
  z-index: 2;
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.solution-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
}
.solution-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.solution-icon img { width: 100%; height: 100%; display: block; object-fit: contain; }
.solution-panel strong {
  max-width: 280px;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.12;
}
.solution-panel small {
  max-width: 270px;
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.55;
}
.panel-arrow {
  position: absolute;
  bottom: 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  transition: opacity .25s ease, transform .25s ease;
}
.panel-arrow b { margin-left: 8px; color: var(--accent); font-size: 15px; }
.solution-panel:hover .panel-arrow,
.solution-panel:focus-visible .panel-arrow { opacity: 1; transform: translateX(4px); }
.solutions-video {
  width: min(100% - 48px, 1380px);
  margin: 76px auto 0;
  padding: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
  overflow: hidden;
  background: linear-gradient(115deg, #07182a 0%, #0b243d 70%, #0f3048 100%);
  color: white;
}
.solutions-video-copy { max-width: 500px; }
.solutions-video-copy .eyebrow { color: #ff956f; }
.solutions-video-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: -.055em;
  line-height: .98;
}
.solutions-video-copy .title-rule { margin: 24px 0; }
.solutions-video-copy > p:last-of-type {
  max-width: 455px;
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.65;
}
.solutions-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: #020b13;
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
}
.solutions-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.solutions-video-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(5,20,36,.7);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  pointer-events: none;
}

.product-showcase { margin-top: clamp(74px, 9vw, 132px); }
.product-showcase-intro {
  padding: clamp(52px, 6vw, 82px) 24px;
  background:
    radial-gradient(circle at 15% 80%, rgba(53,111,158,.26), transparent 28%),
    radial-gradient(circle at 86% 5%, rgba(244,84,37,.14), transparent 27%),
    #0b3158;
  color: white;
  text-align: center;
}
.product-showcase-intro .eyebrow { color: #ffb09a; }
.product-showcase-intro h2 {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 60px);
  letter-spacing: -.05em;
  line-height: 1;
}
.product-showcase-intro > p:last-child {
  width: min(100%, 720px);
  margin: 20px auto 0;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}
.product-grid {
  width: min(calc(100% - 48px), 1080px);
  margin: clamp(34px, 5vw, 62px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  position: relative;
  isolation: isolate;
  min-height: 244px;
  padding: 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 11px;
  overflow: hidden;
  background: url("assets/product-categories/otop-global.webp") 38% center / cover no-repeat;
  color: white;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(145deg, rgba(4,27,51,.81), rgba(14,62,104,.76));
  transition: background .25s ease;
}
.product-card:nth-child(1) { background-image: url("assets/product-categories/otop-global.webp"); background-position: 38% center; }
.product-card:nth-child(2) { background-image: url("assets/product-categories/consumer-electronics.webp"); background-position: 55% center; }
.product-card:nth-child(3) { background-image: url("assets/product-categories/food-and-beverage.webp"); background-position: center; }
.product-card:nth-child(4) { background-image: url("assets/product-categories/sports-and-fitness.webp"); background-position: 55% center; }
.product-card:nth-child(5) { background-image: url("assets/product-categories/home-decor.webp"); background-position: 55% center; }
.product-card:nth-child(6) { background-image: url("assets/product-categories/clothing-and-accessories.webp"); background-position: 52% center; }
.product-card-index {
  position: absolute;
  top: 17px;
  left: 19px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}
.product-card strong {
  max-width: 250px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.08;
}
.product-card strong::before {
  width: 34px;
  height: 3px;
  margin: 0 auto 15px;
  display: block;
  background: var(--accent);
  content: "";
}
.product-card small {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card small b { margin-left: 5px; color: #ffb09a; font-size: 14px; }
.product-card:hover,
.product-card:focus-visible { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(7,20,36,.2); }
.product-card:hover::after,
.product-card:focus-visible::after { background: linear-gradient(145deg, rgba(4,27,51,.66), rgba(14,62,104,.57)); }

.footer-brand {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.footer-brand img { transform: scale(1.08); }

@media (max-width: 900px) {
  .site-header {
    min-height: 94px;
    padding: 14px 20px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .site-header .brand { width: 250px; height: 70px; }
  .nav-trigger { margin-top: 5px; }
  .header-tools { gap: 12px; }
  .header-tools button, .header-tools a { min-width: 38px; }
  .header-tools span { display: none; }
  .mobile-nav { top: 82px; left: 20px; }
  .hero { min-height: 800px; }
  .hero-inner { width: calc(100% - 40px); }
  .hero-copy { width: min(620px, 85vw); }
  .slider-controls { left: 20px; width: calc(100% - 40px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-panels { grid-template-columns: 1fr 1fr; }
  .solution-panel {
    min-height: 300px;
    border-right: 1px solid rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.65);
  }
  .solution-panel:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.65); }
  .solution-panel:nth-child(even) { border-right: 0; }
  .solution-panel:nth-last-child(-n+2) { border-bottom: 0; }
  .solution-panel:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 12px;
    grid-template-columns: auto 1fr auto;
    gap: 7px;
    align-items: center;
    background: rgba(6, 22, 38, .58);
  }
  .site-header .brand { width: 205px; height: 60px; }
  .nav-trigger { width: 42px; height: 42px; padding: 9px; }
  .nav-trigger span:not(.sr-only) { width: 22px; }
  .mobile-nav {
    top: 70px;
    left: 13px;
    width: calc(100% - 26px);
    max-height: calc(100vh - 84px);
    padding: 18px;
  }
  .mobile-submenu {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero { min-height: 780px; }
  .hero-inner { width: calc(100% - 26px); }
  .hero-copy { width: calc(100% - 16px); }
  .hero-copy h1 { font-size: 43px; }
  .hero-summary { max-width: 330px; font-size: 12px; line-height: 1.45; }
  .slider-controls { left: 13px; width: calc(100% - 26px); }
  .slider-controls .slide-dots { display: none; }
  .trust-strip { margin-top: 0; }
  .solutions { padding: 75px 16px 70px; }
  .solutions-intro { margin-bottom: 45px; text-align: left; }
  .solutions-intro h2 { font-size: 50px; }
  .title-rule { margin: 18px 0 23px; }
  .solutions-intro > p:last-child { font-size: 13px; }
  .solution-panels {
    grid-template-columns: 1fr;
  }
  .solution-panel {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.65) !important;
  }
  .solution-panel:last-child {
    grid-column: auto;
    border-bottom: 0 !important;
  }
  .solution-panel::before { background: rgba(3,16,31,.80); }
  .solutions-video {
    width: 100%;
    margin-top: 54px;
    padding: 28px 20px 36px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .solutions-video-copy h2 { font-size: 43px; }
  .solutions-video-copy > p:last-of-type { font-size: 14px; }
  .solutions-video-frame {
    border-radius: 13px;
    box-shadow: 0 18px 40px rgba(0,0,0,.32);
  }
  .product-showcase { margin-top: 62px; }
  .product-showcase-intro { padding: 48px 20px; text-align: left; }
  .product-showcase-intro h2 { font-size: 43px; }
  .product-showcase-intro > p:last-child { margin-left: 0; font-size: 14px; }
  .product-grid { width: 100%; grid-template-columns: 1fr; gap: 12px; }
  .product-card { min-height: 220px; }
}

/* Interactive product categories */
.product-showcase {
  width: min(calc(100% - 48px), 1280px);
  margin: clamp(72px, 9vw, 124px) auto 0;
  padding: 0;
}
.product-showcase-intro,
.product-grid { display: none; }
.product-interactive {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.55fr);
  background: #f4f6f7;
}
.product-feature {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  overflow: hidden;
  background: url("assets/product-categories/otop-global.webp") 38% center / cover no-repeat;
  color: white;
  transition: background-position .45s ease;
}
.product-feature::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,23,40,.03) 34%, rgba(5,20,38,.88) 100%);
  content: "";
}
.product-feature[data-category="electronics"] { background-image: url("assets/product-categories/consumer-electronics.webp"); background-position: 55% center; }
.product-feature[data-category="food"] { background-image: url("assets/product-categories/food-and-beverage.webp"); background-position: center; }
.product-feature[data-category="sport"] { background-image: url("assets/product-categories/sports-and-fitness.webp"); background-position: 55% center; }
.product-feature[data-category="home"] { background-image: url("assets/product-categories/home-decor.webp"); background-position: 55% center; }
.product-feature[data-category="garment"] { background-image: url("assets/product-categories/clothing-and-accessories.webp"); background-position: 52% center; }
.product-feature-caption {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
}
.product-feature-caption > span {
  display: block;
  color: #ff9a74;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-feature-caption h2 {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.1vw, 49px);
  letter-spacing: -.05em;
  line-height: .98;
}
.product-feature-caption p {
  max-width: 290px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.83);
  font-size: 14px;
  line-height: 1.45;
}
.product-options {
  padding: clamp(36px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: clamp(30px, 5vw, 64px) clamp(20px, 4vw, 58px);
}
.product-option {
  min-height: 134px;
  padding: 10px;
  border: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}
.product-option svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-option span { font-size: clamp(14px, 1.5vw, 19px); font-weight: 800; line-height: 1.15; }
.product-option:hover,
.product-option:focus-visible,
.product-option[aria-pressed="true"] { color: var(--accent); transform: translateY(-4px); }
.product-option:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 900px) {
  .product-interactive { grid-template-columns: 1fr; }
  .product-feature { min-height: 360px; }
  .product-options { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .product-showcase { width: 100%; margin-top: 62px; }
  .product-feature { min-height: 300px; }
  .product-feature-caption { right: 20px; bottom: 22px; left: 20px; }
  .product-feature-caption h2 { font-size: 38px; }
  .product-options { padding: 34px 16px; grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .product-option { min-height: 116px; gap: 10px; }
  .product-option svg { width: 45px; height: 45px; }
  .product-option span { font-size: 14px; }
}

/* Keep the interactive category selector above the product card collection. */
.product-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-interactive {
  width: min(calc(100% - 48px), 1280px);
  order: 1;
  margin: 0 auto;
}
.product-showcase-intro {
  order: 2;
  margin-top: clamp(72px, 9vw, 124px);
  display: block;
}
.product-grid {
  order: 3;
  margin-bottom: clamp(74px, 9vw, 128px);
  display: grid;
}

@media (max-width: 900px) {
  .product-interactive { width: calc(100% - 40px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .product-interactive { width: 100%; }
  .product-showcase-intro { margin-top: 62px; }
  .product-grid { width: 100%; grid-template-columns: 1fr; }
}

/* Products We Serve banner */
.product-showcase-intro {
  padding: clamp(38px, 4vw, 58px) 24px;
}
.product-showcase-intro h2 {
  margin: 0;
  color: #ffe400;
  font-family: var(--sans);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-transform: uppercase;
}
.product-showcase-intro > p:last-child {
  width: min(100%, 1320px);
  margin: 11px auto 0;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}
@media (max-width: 560px) {
  .product-showcase-intro { padding: 36px 20px; text-align: center; }
  .product-showcase-intro h2 { font-size: 22px; }
  .product-showcase-intro > p:last-child { margin: 10px auto 0; font-size: 18px; }
}

/* Full-bleed video band: keeps the player on the right until compact screens. */
.solutions-video {
  width: 100vw;
  max-width: none;
  margin: 76px calc(50% - 50vw) 0;
  padding: clamp(36px, 5vw, 72px) max(24px, calc((100vw - var(--max)) / 2));
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: clamp(32px, 6vw, 104px);
}
.solutions-video-copy {
  width: 100%;
  max-width: 500px;
}
.solutions-video-frame {
  width: 100%;
  min-width: 0;
  border-radius: clamp(14px, 1.5vw, 22px);
}

@media (max-width: 760px) {
  .solutions-video {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-block: 42px 48px;
  }
  .solutions-video-copy { max-width: 640px; }
  .solutions-video-frame {
    width: min(100%, 720px);
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .solutions-video {
    width: 100vw;
    margin: 54px calc(50% - 50vw) 0;
    padding: 36px 16px 42px;
    gap: 28px;
  }
}

/* Products We Serve carousel */
.product-showcase-intro { order: 1; margin-top: 0; }
.product-grid { display: none; }
.product-interactive {
  width: 100%;
  min-height: 0;
  order: 2;
  margin: 0;
  grid-template-columns: minmax(360px, 37vw) minmax(0, 1fr);
  background: #fff;
}
.product-feature {
  min-height: clamp(520px, 46vw, 720px);
  background-position: 9% center;
}
.product-feature-caption { right: clamp(24px, 3vw, 50px); bottom: clamp(28px, 4vw, 54px); left: clamp(24px, 3vw, 50px); }
.product-feature-caption h2 { font-size: clamp(36px, 3.4vw, 58px); }
.product-feature-link {
  min-height: 44px;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.76);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.product-feature-link:hover,
.product-feature-link:focus-visible { background: white; color: var(--navy); }
.product-slider-panel {
  min-width: 0;
  padding: clamp(44px, 6vw, 94px) 0 clamp(32px, 4vw, 64px) clamp(30px, 5vw, 90px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}
.product-slider-kicker {
  margin: 0 0 clamp(24px, 3vw, 42px);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-options {
  min-width: 0;
  padding: 0 0 24px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.product-options::-webkit-scrollbar { display: none; }
.product-option {
  flex: 0 0 clamp(190px, 21vw, 306px);
  min-height: 0;
  padding: 0;
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 14px;
  scroll-snap-align: start;
  color: var(--navy);
  text-align: left;
  transform: none;
}
.product-option svg { display: none; }
.product-option::before {
  width: 100%;
  aspect-ratio: 1 / .92;
  display: block;
  background: url("assets/product-categories/otop-global.webp") 38% center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(10,27,50,.08);
  content: "";
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-option[data-category="electronics"]::before { background-image: url("assets/product-categories/consumer-electronics.webp"); background-position: 55% center; }
.product-option[data-category="food"]::before { background-image: url("assets/product-categories/food-and-beverage.webp"); background-position: center; }
.product-option[data-category="sport"]::before { background-image: url("assets/product-categories/sports-and-fitness.webp"); background-position: 55% center; }
.product-option[data-category="home"]::before { background-image: url("assets/product-categories/home-decor.webp"); background-position: 55% center; }
.product-option[data-category="garment"]::before { background-image: url("assets/product-categories/clothing-and-accessories.webp"); background-position: 52% center; }
.product-option span { font-size: clamp(15px, 1.4vw, 20px); font-weight: 800; line-height: 1.2; }
.product-option:hover,
.product-option:focus-visible,
.product-option[aria-pressed="true"] { color: var(--accent); transform: none; }
.product-option:hover::before,
.product-option:focus-visible::before,
.product-option[aria-pressed="true"]::before { box-shadow: inset 0 0 0 4px var(--accent); transform: translateY(-4px); }
.product-progress {
  width: min(100%, 560px);
  height: 3px;
  margin: 24px 0 0;
  overflow: hidden;
  background: rgba(10,27,50,.16);
}
.product-progress span {
  width: calc(100% / 6);
  height: 100%;
  display: block;
  background: var(--accent);
  transform: translateX(calc(var(--product-progress, 0) * 100%));
  transition: transform .3s ease;
}
.product-slider-controls {
  width: min(100% - 24px, 430px);
  padding-top: 22px;
  border-top: 1px solid rgba(10,27,50,.18);
  display: flex;
  align-items: center;
  gap: 18px;
}
.product-slider-control {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10,27,50,.25);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.product-slider-control:hover,
.product-slider-control:focus-visible { border-color: var(--accent); background: var(--accent); color: white; }
.product-slider-control:disabled { border-color: rgba(10,27,50,.12); color: rgba(10,27,50,.32); cursor: not-allowed; }
.product-slider-count { margin: 0 auto; color: var(--navy); font-size: 14px; font-weight: 800; }
.product-slider-count b { color: var(--accent); }

@media (max-width: 760px) {
  .product-interactive { display: block; }
  .product-feature { display: none; }
  .product-slider-panel { padding: 34px 0 34px 20px; }
  .product-slider-kicker { margin-bottom: 22px; }
  .product-options { padding: 0 20px 0 0; gap: 16px; }
  .product-progress { width: calc(100% - 20px); margin: 20px 20px 0 0; }
  .product-option {
    flex-basis: min(84vw, 420px);
    min-height: min(112vw, 510px);
    padding: 26px 24px;
    align-content: end;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    color: white;
  }
  .product-option::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    background-position: 9% center;
    box-shadow: none;
    content: "";
  }
  .product-option::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,20,38,.03) 36%, rgba(5,20,38,.87) 100%);
    content: "";
  }
  .product-option[data-category="otop"]::before { background-position: 38% center; }
  .product-option[data-category="electronics"]::before { background-position: 55% center; }
  .product-option[data-category="food"]::before { background-position: center; }
  .product-option[data-category="sport"]::before { background-position: 55% center; }
  .product-option[data-category="home"]::before { background-position: 55% center; }
  .product-option[data-category="garment"]::before { background-position: 52% center; }
  .product-option span { font-size: clamp(28px, 8vw, 42px); letter-spacing: -.04em; }
  .product-option:hover::before,
  .product-option:focus-visible::before,
  .product-option[aria-pressed="true"]::before { box-shadow: inset 0 0 0 4px var(--accent); transform: none; }
  .product-slider-controls { width: calc(100% - 20px); margin-right: 20px; }
}

@media (max-width: 560px) {
  .product-showcase-intro { margin-top: 62px; }
  .product-slider-panel { padding-top: 30px; }
  .product-slider-kicker { font-size: 10px; }
  .product-slider-controls { gap: 12px; }
}

/* Keep adjacent homepage bands connected with a subtle visual divider. */
.product-showcase { margin: 0; }
.product-showcase-intro { border-top: 1px solid rgba(255,255,255,.2); }
.next-step { margin-top: 0; border-top: 1px solid rgba(255,255,255,.18); }

/* Two-line homepage headline with a wider, cleaner display face. */
.hero-copy h1 {
  max-width: none;
  font-family: "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(52px, 5.2vw, 82px);
  font-weight: 850;
  letter-spacing: -.05em;
  line-height: .95;
}
.hero-copy h1 span { display: block; white-space: nowrap; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(36px, 6vw, 52px); }
}
@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(22px, 6.2vw, 28px); letter-spacing: -.045em; }
}

/* About page */
.about-page .site-header { position: relative; background: rgba(6,22,38,.92); }
.about-hero { min-height: min(680px, calc(100vh - 84px)); display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); background: #f5f6f7; }
.about-hero-copy { max-width: 660px; padding: clamp(72px, 9vw, 150px) max(28px, calc((100vw - var(--max)) / 2)); align-self: center; }
.about-hero-copy .eyebrow, .about-section-heading .eyebrow { color: var(--accent); }
.about-hero h1, .about-section-heading h2 { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(42px, 5vw, 76px); letter-spacing: -.055em; line-height: .98; }
.about-hero-copy > p:last-child { max-width: 520px; margin: 28px 0 0; color: #43566a; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }
.about-hero-media { min-height: 100%; background: linear-gradient(180deg, rgba(7,24,42,.08), rgba(7,24,42,.45)), url("abs-container-solutions.webp") 58% center / cover no-repeat; }
.about-story, .about-services, .about-stats { width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: clamp(76px, 9vw, 132px) 0; }
.about-story { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(38px, 8vw, 130px); }
.about-section-heading .eyebrow { margin-bottom: 13px; }
.about-story .eyebrow, .about-services .eyebrow { font-size: clamp(15px, 1.35vw, 20px); letter-spacing: .16em; }
.about-section-heading h2 { font-size: clamp(36px, 4.2vw, 62px); }
.about-copy, .about-services-copy, .about-closing { display: grid; gap: 22px; }
.about-copy p, .about-services-copy p, .about-closing p { margin: 0; color: #43566a; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.72; }
.about-stats { border-top: 1px solid rgba(10,27,50,.13); }
.about-stats .about-section-heading .eyebrow { display: none; }
.about-stat-grid { margin-top: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); }
.about-stat { min-height: 0; padding: 0; background: transparent; }
.stat-line { display: none; }
.about-stat strong { display: block; color: var(--navy); font-size: clamp(34px, 3.4vw, 54px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.about-stat p { margin: 12px 0 0; color: var(--navy); font-size: 16px; font-weight: 600; line-height: 1.35; }
.about-services { border-top: 1px solid rgba(10,27,50,.13); }
.about-services-copy { max-width: 770px; margin: 32px 0 0; }
.about-service-list { margin: clamp(36px, 5vw, 62px) 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; list-style: none; background: rgba(10,27,50,.12); }
.about-service-list li { min-height: 116px; padding: 25px 28px 25px 55px; position: relative; background: white; color: #263a4f; font-size: 16px; font-weight: 650; line-height: 1.5; }
.about-service-list li::before { position: absolute; top: 30px; left: 28px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); content: ""; }
.about-service-list li.about-service-item > h3 { margin: 0 0 10px; color: #263a4f; font-size: inherit; font-weight: 800; line-height: 1.35; }
.about-service-list li.about-service-item > p { margin: 0; color: #263a4f; font-size: inherit; font-weight: inherit; line-height: 1.5; }
.about-closing { max-width: 870px; }
@media (max-width: 900px) { .about-hero { min-height: auto; grid-template-columns: 1fr; } .about-hero-copy { max-width: none; padding: 82px 40px; } .about-hero-media { min-height: 390px; } .about-story { grid-template-columns: 1fr; gap: 34px; } .about-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .about-hero-copy { padding: 60px 20px; } .about-hero-media { min-height: 300px; } .about-story, .about-services, .about-stats { width: calc(100% - 40px); padding: 64px 0; } .about-stat-grid, .about-service-list { grid-template-columns: 1fr; } .about-service-list li { min-height: 0; padding: 22px 22px 22px 48px; font-size: 15px; } .about-service-list li::before { top: 29px; left: 22px; } }

/* Reference-style About hero */
.about-hero { min-height: 610px; grid-template-columns: minmax(0, 53%) minmax(0, 47%); overflow: hidden; background: white; }
.about-hero-copy { max-width: none; padding: clamp(72px, 7vw, 120px) clamp(42px, 6vw, 120px); position: relative; z-index: 1; clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%); background: white; }
.about-hero-copy > * { max-width: 540px; }
.about-hero h1 { font-size: clamp(42px, 3.6vw, 62px); }
.about-hero-copy > p:last-child { max-width: 480px; font-size: clamp(17px, 1.25vw, 20px); }
.about-hero-media { margin-left: -7%; position: relative; background-position: center; }
.about-hero-media::after { position: absolute; top: 0; right: 0; bottom: 0; width: 7%; background: var(--accent); clip-path: polygon(65% 0, 100% 0, 100% 100%, 0 100%); content: ""; }
@media (max-width: 900px) { .about-hero { min-height: auto; grid-template-columns: 1fr; } .about-hero-copy { padding: 72px 40px; clip-path: none; } .about-hero-media { min-height: 390px; margin-left: 0; } }
@media (max-width: 560px) { .about-hero-copy { padding: 58px 20px; } .about-hero h1 { font-size: clamp(40px, 11vw, 52px); } .about-hero-media { min-height: 290px; } }

/* Legal pages */
.legal-page {
  background: var(--surface);
}
.legal-page .site-header {
  position: relative;
  background: rgba(6,22,38,.94);
}
.legal-main {
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0 clamp(82px, 10vw, 132px);
}
.legal-document {
  padding: clamp(34px, 5vw, 68px) clamp(22px, 5vw, 74px);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(10,27,50,.08);
  overflow-wrap: anywhere;
}
.legal-document h1 {
  margin: 0 0 clamp(34px, 5vw, 56px);
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -.055em;
  line-height: .98;
}
.legal-document h2 {
  margin: clamp(42px, 5vw, 60px) 0 18px;
  padding-top: 8px;
  border-top: 3px solid var(--accent);
  color: var(--navy);
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.16;
}
.legal-document h2:first-of-type { margin-top: 0; }
.legal-document h3 {
  margin: 28px 0 11px;
  color: var(--navy);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.35;
}
.legal-document p,
.legal-document li {
  margin: 0 0 18px;
  color: #34485d;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.72;
}
.legal-document h2 + p,
.legal-document h3 + p { margin-top: 0; }
.legal-document .legal-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.legal-document .legal-list li {
  margin: 0;
  padding: 7px 0 7px 24px;
  position: relative;
}
.legal-document .legal-list li::before {
  position: absolute;
  top: 1.03em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}
.legal-document .legal-list li.legal-list-nested { padding-left: 48px; }
.legal-document .legal-list li.legal-list-nested::before {
  left: 24px;
  width: 6px;
  height: 6px;
  background: var(--muted);
}
.legal-document a {
  color: #bd3615;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-document a:hover,
.legal-document a:focus-visible { color: var(--navy); }
.legal-document a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (max-width: 560px) {
  .legal-main { width: calc(100% - 32px); padding-top: 38px; }
  .legal-document { padding: 28px 20px 36px; }
  .legal-document h1 { font-size: clamp(40px, 12vw, 54px); }
  .legal-document p,
  .legal-document li { font-size: 16px; line-height: 1.68; }
}

/* Product category detail pages */
.product-detail-page .site-header { position: relative; background: rgba(6,22,38,.92); }
.product-detail-page .site-header .desktop-nav a, .product-detail-page .site-header .nav-dropdown summary, .product-detail-page .site-header .header-tools button { color: white; }
.product-detail-hero { min-height: clamp(300px, 34vw, 510px); position: relative; display: grid; align-items: end; overflow: hidden; background: var(--navy) var(--category-position, center) / cover no-repeat; color: white; isolation: isolate; }
.product-detail-hero::before { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,19,37,.86) 0%, rgba(5,19,37,.61) 43%, rgba(5,19,37,.12) 78%); content: ""; }
.product-detail-hero-inner { width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: clamp(54px, 7vw, 104px) 0; }
.product-detail-hero h1 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(42px, 5.7vw, 80px); font-weight: 850; letter-spacing: -.055em; line-height: .94; text-transform: uppercase; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.product-detail-hero .title-rule { display: none; }
.product-detail-main { width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: clamp(36px, 5vw, 68px) 0 clamp(78px, 10vw, 138px); }.breadcrumbs { margin: 0 0 clamp(42px, 6vw, 72px); color: #5b6a7d; font-size: 13px; }.breadcrumbs a { color: var(--navy); font-weight: 750; }.breadcrumbs span { margin: 0 8px; color: var(--accent); }
.product-detail-intro { max-width: 800px; }.category-pill { margin: 0 0 15px; display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--accent-soft); color: #b13e18; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }.product-detail-intro h2, .product-detail-section h2, .product-video-copy h2, .product-contact-card h2 { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(32px, 4vw, 54px); letter-spacing: -.045em; line-height: 1; }.product-detail-intro > p, .product-detail-section p, .product-video-copy p { color: #45576b; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.68; }
.product-detail-grid { margin-top: clamp(50px, 7vw, 88px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(10,27,50,.14); }.product-detail-section { min-height: 300px; padding: clamp(30px, 4vw, 52px); background: #f4f6f7; }.product-detail-section:nth-child(2) { background: white; }.product-detail-section h2 { font-size: clamp(27px, 2.7vw, 39px); }.product-detail-section ul { margin: 25px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; color: #34485d; font-size: 16px; line-height: 1.5; }.product-detail-section li { padding-left: 22px; position: relative; }.product-detail-section li::before { position: absolute; top: .58em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); content: ""; }
.product-video { margin: clamp(64px, 9vw, 120px) 0; padding: clamp(34px, 5vw, 66px); display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); gap: clamp(28px, 5vw, 74px); align-items: center; background: var(--navy); }.product-video-copy h2 { color: white; }.product-video-copy h2::after { width: 55px; height: 5px; margin-top: 23px; display: block; background: var(--accent); content: ""; }.product-video-copy p { color: rgba(255,255,255,.76); }.product-video-frame { aspect-ratio: 16 / 9; overflow: hidden; background: #050d17; }.product-video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; }
.product-contact-card { margin-top: clamp(36px, 5vw, 64px); padding: clamp(38px, 6vw, 78px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; background: linear-gradient(110deg, #f4f6f7, #fff); border-left: 7px solid var(--accent); }.product-contact-card h2 { font-size: clamp(30px, 3.4vw, 48px); }.product-contact-card p { max-width: 650px; margin: 15px 0 0; color: #4d6075; font-size: 17px; line-height: 1.6; }.product-contact-card .button { flex: 0 0 auto; background: var(--navy); color: white; }.product-contact-card .button:hover, .product-contact-card .button:focus-visible { background: var(--accent); }
@media (max-width: 760px) { .product-detail-hero-inner, .product-detail-main { width: calc(100% - 40px); } .product-detail-hero { min-height: 310px; } .product-detail-grid, .product-video, .product-contact-card { grid-template-columns: 1fr; } .product-detail-section { min-height: 0; } .product-video { gap: 34px; } .product-contact-card .button { justify-self: start; } }
@media (max-width: 400px) { .product-detail-hero-inner, .product-detail-main { width: calc(100% - 32px); } .product-detail-hero h1 { font-size: clamp(34px, 11vw, 44px); } .breadcrumbs { font-size: 12px; } .product-video, .product-contact-card { padding: 28px 22px; } }

/* Our Solutions detail pages */
.service-detail-page { background: #fff; color: var(--navy); }
.service-detail-page .site-header { position: relative; z-index: 10; background: rgba(6,22,38,.94); }
.service-detail-page .site-header .desktop-nav a,
.service-detail-page .site-header .nav-dropdown summary,
.service-detail-page .site-header .header-tools button { color: white; }
.service-detail-page .nav-mega {
  background:
    radial-gradient(circle at 92% 15%, rgba(244,84,37,.13), transparent 31%),
    rgba(248,250,251,.98);
  color: var(--navy);
}
.service-detail-page .desktop-nav .nav-mega a { border-bottom-color: rgba(10,27,50,.1); color: var(--navy); }
.service-detail-page .desktop-nav .nav-mega a:hover,
.service-detail-page .desktop-nav .nav-mega a:focus-visible { background: rgba(244,84,37,.09); color: #bd3615; }
.service-detail-hero { min-height: clamp(420px, 45vw, 660px); position: relative; display: flex; align-items: center; overflow: hidden; isolation: isolate; background: var(--navy) var(--service-hero-position, center) / cover no-repeat; background-image: var(--service-hero-image); color: white; }
.service-detail-hero::before { position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(5,19,37,.82), rgba(5,19,37,.46) 48%, rgba(5,19,37,.16)); content: ""; }
/* Full-width wave divider: a low left edge, soft center dip, and high right edge. */
.service-detail-hero::after { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: clamp(100px, 12vw, 170px); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 152C190 120 380 88 550 96C700 102 790 125 930 95C1110 60 1270 28 1440 18V180H0Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat; content: ""; }
.service-detail-hero-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: clamp(52px, 8vw, 118px) 0 clamp(92px, 11vw, 148px); position: relative; z-index: 2; }
.service-title-panel { width: min(100%, 780px); padding: 0; position: relative; overflow: visible; background: transparent; border-radius: 0; box-shadow: none; }
.service-title-panel::after { display: none; }
.service-title-panel .eyebrow { margin-bottom: 18px; color: var(--accent); text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.service-title-panel h1 { max-width: 720px; margin: 0; color: white; font-family: var(--display); font-size: clamp(46px, 5.5vw, 82px); font-weight: 850; letter-spacing: -.06em; line-height: .95; text-shadow: 0 3px 22px rgba(0,0,0,.42); text-wrap: balance; }
.service-feature { width: 100%; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; align-items: stretch; }
.service-feature-second { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.service-feature-copy { width: 100%; max-width: none; padding: clamp(76px, 9vw, 140px) clamp(30px, 5vw, 96px); align-self: center; }
.service-feature-first .service-feature-copy { padding-left: max(30px, 12vw); }
.service-feature-second .service-feature-copy { padding-right: max(30px, 12vw); }
.service-feature-copy .eyebrow { margin-bottom: 14px; color: var(--accent); }
.service-detail-page[data-service="brand-building"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="drop-ship"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="marketplace-ecommerce"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="sales-marketing"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="formulation-development"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="warehousing-fulfillment"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="sourcing-procurement"] .service-feature-first .service-feature-copy > .eyebrow,
.service-detail-page[data-service="virtual-office"] .service-feature-first .service-feature-copy > .eyebrow {
  display: none;
}
.service-feature-copy h2, .service-contact-cta h2 { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(34px, 4vw, 60px); letter-spacing: -.055em; line-height: .99; text-wrap: balance; }
.service-feature-copy p:not(.eyebrow) { margin: 26px 0 0; color: #45576b; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; }
.service-feature-copy .button { margin-top: 30px; }
.service-feature-image { width: 100%; min-width: 0; min-height: clamp(500px, 47vw, 700px); overflow: hidden; background: #07182a; }
.service-feature-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.service-feature-first .service-feature-image img { object-position: var(--service-feature-position, center); }
.service-feature-second .service-feature-image img { object-position: var(--service-second-position, 68% center); }
.service-contact-cta { width: min(calc(100% - 48px), 1180px); margin: clamp(68px, 9vw, 120px) auto; padding: clamp(38px, 5vw, 72px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center; background: var(--navy); color: white; }
.service-contact-cta .eyebrow { margin-bottom: 14px; color: #ff956f; }
.service-contact-cta h2 { color: white; }
.service-contact-cta p:last-child { margin: 16px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.55; }
.service-contact-cta .button { flex: 0 0 auto; }
@media (max-width: 900px) {
  .service-detail-hero { min-height: 500px; }
  .service-detail-hero::after { height: clamp(86px, 13vw, 120px); }
  .service-title-panel { max-width: 680px; }
  .service-feature, .service-feature-second { grid-template-columns: 1fr; }
  .service-feature { border-bottom: 0; }
  .service-feature-first { margin-top: clamp(28px, 4vw, 40px); }
  .service-feature-image { order: 1; }
  .service-feature-copy { order: 2; }
  .service-feature-second { margin-top: clamp(24px, 3vw, 32px); }
  .service-feature-image { min-height: clamp(420px, 58vw, 600px); }
  .service-feature-copy { padding-top: 72px; padding-bottom: 72px; }
  .service-feature-copy h2, .service-contact-cta h2 { font-size: clamp(32px, 5vw, 48px); }
}
@media (max-width: 760px) {
  .service-detail-hero { min-height: 430px; }
  .service-detail-hero::after { display: none; }
  .service-detail-hero::after { height: clamp(80px, 22vw, 112px); }
  .service-detail-hero-inner, .service-contact-cta { width: calc(100% - 40px); }
  .service-title-panel { width: 100%; }
  .service-title-panel h1 { font-size: clamp(40px, 8vw, 58px); }
  .service-feature, .service-feature-second, .service-contact-cta { grid-template-columns: 1fr; }
  .service-feature { width: 100%; }
  .service-feature-first { margin-top: 28px; }
  .service-feature-second { margin-top: 24px; }
  .service-feature-copy, .service-feature-first .service-feature-copy, .service-feature-second .service-feature-copy { padding: 64px 28px; }
  .service-feature-image { min-height: 360px; aspect-ratio: 4 / 3; }
  .service-feature-copy .button { margin-top: 24px; }
  .service-contact-cta { margin-top: 68px; margin-bottom: 76px; }
  .service-contact-cta .button { justify-self: start; }
}
@media (max-width: 400px) {
  .service-detail-hero { min-height: 390px; }
  .service-detail-hero::after { height: clamp(72px, 24vw, 88px); }
  .service-detail-hero-inner, .service-contact-cta { width: calc(100% - 32px); }
  .service-title-panel h1 { font-size: clamp(36px, 10.5vw, 48px); }
  .service-feature-copy, .service-feature-first .service-feature-copy, .service-feature-second .service-feature-copy { padding: 56px 20px; }
  .service-feature-first { margin-top: 24px; }
  .service-feature-second { margin-top: 20px; }
  .service-feature-image { min-height: 300px; }
  .service-feature-copy h2, .service-contact-cta h2 { font-size: clamp(31px, 9.5vw, 42px); }
  .service-feature-copy p:not(.eyebrow), .service-contact-cta p:last-child { font-size: 16px; }
  .service-contact-cta { padding: 30px 22px; }
}

/* Standalone product-page video player */
.product-video { display: block; padding: clamp(20px, 4vw, 52px); background: white; }
.product-video-copy { display: none; }
.product-video-frame { width: min(100%, 900px); margin: 0 auto; box-shadow: 0 18px 42px rgba(10,27,50,.14); }

/* Keep product-page dropdowns legible over their category heroes. */
.product-detail-page .nav-mega {
  background: rgba(6,22,38,.98);
  color: white;
}
.product-detail-page .desktop-nav .nav-mega a {
  border-bottom-color: rgba(255,255,255,.16);
  color: white;
}
.product-detail-page .desktop-nav .nav-mega a:hover,
.product-detail-page .desktop-nav .nav-mega a:focus-visible {
  background: rgba(244,84,37,.22);
  color: white;
}

/* Homepage and About-page editorial imagery */
.why-abs-image {
  width: min(42%, 340px);
  aspect-ratio: 1 / 1;
  float: left;
  margin: 4px clamp(22px, 4vw, 54px) 18px 0;
  object-fit: cover;
}
.next-step {
  background:
    linear-gradient(90deg, rgba(5,20,38,.94), rgba(5,20,38,.62)),
    url("assets/about/virtual-office-support.webp") center / cover no-repeat;
}
.about-hero {
  min-height: clamp(560px, 47vw, 680px);
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
}
.about-hero-copy { clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); }
.about-hero-copy > * { transform: translateX(clamp(24px, 2.8vw, 40px)); }
.about-hero-media {
  margin-left: -7%;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  background-image: linear-gradient(180deg, rgba(7,24,42,.06), rgba(7,24,42,.32)), url("assets/about/market-aisle-hero.webp");
  background-position: center;
}
.about-hero-media::after { display: none; }
.product-feature[data-category="otop"] {
  background-position: center;
  background-size: cover;
}
.product-option { flex-basis: clamp(180px, 19vw, 260px); }
@media (min-width: 761px) and (max-width: 980px) {
  .product-interactive { grid-template-columns: 1fr; }
  .product-feature { min-height: 520px; }
  .product-slider-panel { padding: 44px 0 48px 40px; }
}
@media (max-width: 900px) {
  .why-abs-image { width: min(46%, 310px); margin-right: 28px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-copy { clip-path: none; }
  .about-hero-copy > * { transform: none; }
  .about-hero-media { min-height: 390px; margin-left: 0; clip-path: none; }
}
@media (max-width: 560px) {
  .why-abs-image { width: 100%; max-width: 400px; float: none; margin: 0 0 24px; display: block; }
  .about-hero-media { min-height: 290px; }
}

/* Mobile uses compact square category cards instead of the desktop feature-card treatment. */
@media (max-width: 760px) {
  .product-options { padding: 0 20px 20px 0; gap: 16px; }
  .product-option {
    flex: 0 0 min(42vw, 210px);
    min-height: 0;
    padding: 0;
    display: grid;
    align-content: start;
    gap: 10px;
    isolation: auto;
    position: static;
    overflow: visible;
    color: var(--navy);
  }
  .product-option::before {
    position: static;
    z-index: auto;
    inset: auto;
    width: 100%;
    aspect-ratio: 1;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(10,27,50,.08);
  }
  .product-option::after { display: none; }
  .product-option span {
    font-size: clamp(15px, 4vw, 18px);
    letter-spacing: -.025em;
    line-height: 1.15;
  }
  .product-option:hover::before,
  .product-option:focus-visible::before,
  .product-option[aria-pressed="true"]::before {
    box-shadow: inset 0 0 0 4px var(--accent);
    transform: none;
  }
}

/* Keep the Why Use section centered with the sections that follow it. */
.why-abs { width: min(calc(100% - 48px), 1120px); text-align: center; }
.why-abs h2 { margin-inline: auto; }
.why-abs p { max-width: 960px; margin-right: auto; margin-left: auto; text-align: left; }
@media (max-width: 560px) { .why-abs { width: calc(100% - 32px); } }

/* Contact page */
.contact-page {
  background: #fff;
  color: var(--ink);
}
.contact-page .site-header {
  position: relative;
  z-index: 10;
  background: rgba(6,22,38,.94);
}
.contact-page .site-header .desktop-nav > a,
.contact-page .site-header .nav-dropdown > summary,
.contact-page .site-header .header-tools button { color: white; }
.contact-page .nav-mega {
  background:
    radial-gradient(circle at 92% 15%, rgba(244,84,37,.13), transparent 31%),
    rgba(248,250,251,.98);
  color: var(--navy);
}
.contact-page .desktop-nav .nav-mega a { color: var(--navy); }
.contact-page .desktop-nav .nav-mega a:hover,
.contact-page .desktop-nav .nav-mega a:focus-visible { color: #bd3615; }
.contact-section {
  width: min(calc(100% - 48px), 1380px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 116px) 0 clamp(82px, 10vw, 138px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(48px, 6vw, 92px);
  align-items: start;
}
.contact-form-column { min-width: 0; }
.contact-form-column .eyebrow { margin-bottom: 14px; }
.contact-form-column h1 {
  margin: 0;
  color: #292b31;
  font-family: var(--display);
  font-size: clamp(56px, 7.3vw, 112px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .92;
}
.contact-intro {
  max-width: 760px;
  margin: clamp(36px, 4vw, 62px) 0 0;
  color: #233b57;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}
.contact-email {
  max-width: 100%;
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}
.contact-email:hover,
.contact-email:focus-visible { color: var(--accent); }
.contact-email-icon {
  width: 25px;
  height: 25px;
  color: var(--accent);
}
.contact-email-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form { margin-top: 27px; }
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 10px;
}
.contact-field { min-width: 0; }
.contact-field label {
  display: block;
  margin-bottom: 7px;
  color: #102033;
  font-size: 15px;
  line-height: 1.3;
}
.contact-field label span { color: #d93625; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #7a8795;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.contact-field input {
  min-height: 60px;
  padding: 12px 15px;
}
.contact-field textarea {
  min-height: 150px;
  padding: 13px 15px;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 3px solid rgba(244,84,37,.22);
  outline-offset: 1px;
  border-color: var(--accent);
}
.contact-message-field { margin-top: 17px; }
.contact-consent {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #314964;
  font-size: 14px;
  line-height: 1.55;
}
.contact-consent input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  accent-color: var(--accent);
}
.contact-consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-consent a:hover,
.contact-consent a:focus-visible { color: var(--accent); }
.contact-submit {
  min-width: 148px;
  margin-top: 24px;
}
.contact-partner-card {
  min-height: 100%;
  padding: clamp(34px, 4vw, 50px);
  border-radius: 19px;
  background: #f5a261;
  color: #203044;
}
.contact-partner-card h2 {
  max-width: 340px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.03;
}
.contact-partner-intro {
  margin: 38px 0 0;
  font-size: 16px;
  line-height: 1.75;
}
.contact-partner-list {
  margin-top: 42px;
  display: grid;
  gap: 34px;
}
.contact-partner-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.partner-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}
.partner-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-partner-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 1.9vw, 30px);
  letter-spacing: -.035em;
  line-height: 1.1;
}
.contact-partner-item p {
  margin: 13px 0 0;
  font-size: 15px;
  line-height: 1.65;
}
.contact-card-button {
  min-width: 174px;
  margin-top: 40px;
  background: var(--navy);
  color: white;
}
.contact-card-button:hover,
.contact-card-button:focus-visible { background: var(--accent); }
.locations-section {
  padding: clamp(70px, 9vw, 132px) 0;
  background: #c4e7ef;
  color: var(--navy);
}
.locations-inner {
  width: min(calc(100% - 48px), 1380px);
  margin: 0 auto;
}
.locations-heading { max-width: 780px; }
.locations-heading .eyebrow { margin-bottom: 15px; color: #385068; }
.locations-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 106px);
  letter-spacing: -.065em;
  line-height: .92;
}
.locations-heading > p:last-child {
  margin: clamp(30px, 4vw, 56px) 0 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
}
.locations-grid {
  margin-top: clamp(52px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
}
.location-card {
  min-width: 0;
}
.location-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 39px);
  letter-spacing: -.04em;
  line-height: 1.03;
}
.location-card p {
  margin: 12px 0 0;
  color: #2c465e;
  font-size: 16px;
  line-height: 1.5;
}
.location-detail {
  width: fit-content;
  max-width: 100%;
  margin-top: 9px;
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.location-detail:hover,
.location-detail:focus-visible { color: var(--accent); }
.footer-contact-link {
  min-height: 44px;
  margin: -8px 0 18px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 750;
}
.footer-contact-link:hover,
.footer-contact-link:focus-visible { color: var(--accent); }
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; }
  .contact-partner-card { min-height: 0; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .contact-section { width: calc(100% - 40px); padding-top: 58px; }
  .locations-inner { width: calc(100% - 40px); }
  .contact-form-column h1 { font-size: clamp(54px, 14vw, 82px); }
  .contact-partner-card { padding: 34px 28px; }
}
@media (max-width: 560px) {
  .contact-section { width: calc(100% - 32px); padding-top: 48px; }
  .locations-section { padding: 64px 0; }
  .locations-inner { width: calc(100% - 32px); }
  .locations-heading h2 { font-size: clamp(46px, 13vw, 64px); line-height: .96; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 17px; }
  .contact-form-column h1 {
    font-size: clamp(46px, 13vw, 64px);
    line-height: .96;
    text-wrap: balance;
  }
  .contact-email { font-size: clamp(18px, 5.5vw, 24px); gap: 10px; }
  .contact-intro,
  .contact-consent,
  .contact-partner-intro,
  .contact-partner-item p { overflow-wrap: anywhere; }
  .contact-partner-list { gap: 28px; }
  .contact-partner-item { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; }
  .partner-icon { width: 50px; height: 50px; }
  .contact-card-button,
  .contact-submit { width: auto; }
}

/* Site search */
.site-search-dialog {
  width: min(calc(100% - 40px), 780px);
  max-height: min(80vh, 760px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
}
.site-search-dialog::backdrop {
  background: rgba(4, 17, 31, .72);
  backdrop-filter: blur(5px);
}
.site-search-panel {
  max-height: min(80vh, 760px);
  padding: clamp(26px, 4vw, 44px);
  overflow: auto;
  background: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}
.site-search-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.site-search-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.055em;
  line-height: .98;
}
.site-search-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(10, 27, 50, .2);
  border-radius: 50%;
  background: white;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.site-search-close:hover,
.site-search-close:focus-visible { border-color: var(--accent); color: var(--accent); }
.site-search-form { margin-top: 30px; }
.site-search-form label {
  display: block;
  margin-bottom: 8px;
  color: #263a4f;
  font-size: 14px;
  font-weight: 750;
}
.site-search-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.site-search-form input {
  min-width: 0;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #7a8795;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.site-search-form input:focus {
  outline: 3px solid rgba(244, 84, 37, .22);
  outline-offset: 1px;
  border-color: var(--accent);
}
.site-search-form .button { min-width: 112px; }
.site-search-status {
  min-height: 24px;
  margin: 22px 0 0;
  color: #43566a;
  font-size: 15px;
  line-height: 1.5;
}
.site-search-results {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid rgba(10, 27, 50, .13);
}
.site-search-results li { border-bottom: 1px solid rgba(10, 27, 50, .13); }
.site-search-results a {
  min-height: 72px;
  padding: 15px 0;
  display: grid;
  gap: 5px;
  color: var(--navy);
  text-decoration: none;
}
.site-search-results strong { font-size: 18px; }
.site-search-results span { color: #5f7184; font-size: 13px; text-transform: capitalize; }
.site-search-results a:hover strong,
.site-search-results a:focus-visible strong { color: var(--accent); }
.mobile-search-trigger { display: none; }
@media (max-width: 1100px) {
  .mobile-search-trigger {
    min-height: 46px;
    padding: 13px 0;
    display: block;
    border: 0;
    border-bottom: 1px solid rgba(10, 27, 50, .14);
    background: transparent;
    color: var(--navy);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }
}
@media (max-width: 560px) {
  .site-search-dialog { width: calc(100% - 24px); }
  .site-search-panel { padding: 24px 20px; }
  .site-search-form-row { grid-template-columns: 1fr; }
  .site-search-form .button { min-height: 48px; justify-self: start; }
}

/* Keep the full-width video band inside the layout viewport. */
.solutions-video {
  width: 100%;
  margin-inline: 0;
}

/* Responsive and deferred image delivery. */
.solution-panel[data-solution="brand-building"] { --responsive-bg: image-set(url("assets/solutions/brand-building-service-768.webp") 1x, url("assets/solutions/brand-building-service.webp") 2x); background-image: none; }
.solution-panel[data-solution="drop-ship"] { --responsive-bg: image-set(url("assets/solutions/drop-ship-service-768.webp") 1x, url("assets/solutions/drop-ship-service.webp") 2x); background-image: none; }
.solution-panel[data-solution="warehousing-fulfillment"] { --responsive-bg: image-set(url("assets/solutions/warehousing-fulfillment-service-768.webp") 1x, url("assets/solutions/warehousing-fulfillment-service.webp") 2x); background-image: none; }
.solution-panel[data-solution="virtual-office"] { --responsive-bg: image-set(url("assets/solutions/virtual-office-support-768.webp") 1x, url("assets/solutions/virtual-office-support.webp") 2x); background-image: none; }
.solution-panel[data-solution="trade-show"] { --responsive-bg: image-set(url("assets/solutions/trade-show-representation-768.webp") 1x, url("assets/solutions/trade-show-representation.webp") 2x); background-image: none; }
.solution-panel[data-solution="sales-marketing"] { --responsive-bg: image-set(url("assets/solutions/sales-marketing-service-768.webp") 1x, url("assets/solutions/sales-marketing-service.webp") 2x); background-image: none; }
.solution-panel[data-solution="sourcing-procurement"] { --responsive-bg: image-set(url("assets/solutions/sourcing-procurement-service-768.webp") 1x, url("assets/solutions/sourcing-procurement-service.webp") 2x); background-image: none; }
.solution-panel[data-solution="marketplace-ecommerce"] { --responsive-bg: image-set(url("assets/solutions/marketplace-ecommerce-sales-768.webp") 1x, url("assets/solutions/marketplace-ecommerce-sales.webp") 2x); background-image: none; }
.solution-panel[data-solution="formulation-development"] { --responsive-bg: image-set(url("assets/solutions/formulation-development-service-768.webp") 1x, url("assets/solutions/formulation-development-service.webp") 2x); background-image: none; }
.solution-panel[data-solution="packaging-design"] { --responsive-bg: image-set(url("assets/solutions/packaging-design-768.webp") 1x, url("assets/solutions/packaging-design.webp") 2x); background-image: none; }
.solution-panel.is-media-ready { background-image: var(--responsive-bg); }

.product-feature { --responsive-bg: image-set(url("assets/product-categories/otop-global-768.webp") 1x, url("assets/product-categories/otop-global.webp") 2x); background-image: none; }
.product-feature[data-category="electronics"] { --responsive-bg: image-set(url("assets/product-categories/consumer-electronics-768.webp") 1x, url("assets/product-categories/consumer-electronics.webp") 2x); }
.product-feature[data-category="food"] { --responsive-bg: image-set(url("assets/product-categories/food-and-beverage-768.webp") 1x, url("assets/product-categories/food-and-beverage.webp") 2x); }
.product-feature[data-category="sport"] { --responsive-bg: image-set(url("assets/product-categories/sports-and-fitness-768.webp") 1x, url("assets/product-categories/sports-and-fitness.webp") 2x); }
.product-feature[data-category="home"] { --responsive-bg: image-set(url("assets/product-categories/home-decor-768.webp") 1x, url("assets/product-categories/home-decor.webp") 2x); }
.product-feature[data-category="garment"] { --responsive-bg: image-set(url("assets/product-categories/clothing-and-accessories-768.webp") 1x, url("assets/product-categories/clothing-and-accessories.webp") 2x); }
.product-feature.is-media-ready { background-image: var(--responsive-bg); }

.product-option::before { background-image: none; }
.product-option[data-category="otop"] { --responsive-bg: image-set(url("assets/product-categories/otop-global-768.webp") 1x, url("assets/product-categories/otop-global.webp") 2x); }
.product-option[data-category="electronics"] { --responsive-bg: image-set(url("assets/product-categories/consumer-electronics-768.webp") 1x, url("assets/product-categories/consumer-electronics.webp") 2x); }
.product-option[data-category="food"] { --responsive-bg: image-set(url("assets/product-categories/food-and-beverage-768.webp") 1x, url("assets/product-categories/food-and-beverage.webp") 2x); }
.product-option[data-category="sport"] { --responsive-bg: image-set(url("assets/product-categories/sports-and-fitness-768.webp") 1x, url("assets/product-categories/sports-and-fitness.webp") 2x); }
.product-option[data-category="home"] { --responsive-bg: image-set(url("assets/product-categories/home-decor-768.webp") 1x, url("assets/product-categories/home-decor.webp") 2x); }
.product-option[data-category="garment"] { --responsive-bg: image-set(url("assets/product-categories/clothing-and-accessories-768.webp") 1x, url("assets/product-categories/clothing-and-accessories.webp") 2x); }
.product-option.is-media-ready::before { background-image: var(--responsive-bg); }

.product-detail-hero { background-image: var(--category-image); }
.about-hero-media { background-image: linear-gradient(180deg, rgba(7,24,42,.06), rgba(7,24,42,.32)), image-set(url("assets/about/market-aisle-hero-768.webp") 1x, url("assets/about/market-aisle-hero.webp") 2x); }
.next-step { --responsive-bg: image-set(url("assets/about/virtual-office-support-768.webp") 1x, url("assets/about/virtual-office-support.webp") 2x); background: #07182a; }
.next-step.is-media-ready { background: linear-gradient(90deg, rgba(5,20,38,.94), rgba(5,20,38,.62)), var(--responsive-bg) center / cover no-repeat; }

@media (max-width: 900px) {
  .service-detail-hero { background-image: var(--service-hero-image-mobile, var(--service-hero-image)); }
  .about-hero-media { background-image: linear-gradient(180deg, rgba(7,24,42,.06), rgba(7,24,42,.32)), url("assets/about/market-aisle-hero-768.webp"); }
  .solution-panel[data-solution="brand-building"] { --responsive-bg: url("assets/solutions/brand-building-service-768.webp"); }
  .solution-panel[data-solution="drop-ship"] { --responsive-bg: url("assets/solutions/drop-ship-service-768.webp"); }
  .solution-panel[data-solution="warehousing-fulfillment"] { --responsive-bg: url("assets/solutions/warehousing-fulfillment-service-768.webp"); }
  .solution-panel[data-solution="virtual-office"] { --responsive-bg: url("assets/solutions/virtual-office-support-768.webp"); }
  .solution-panel[data-solution="trade-show"] { --responsive-bg: url("assets/solutions/trade-show-representation-768.webp"); }
  .solution-panel[data-solution="sales-marketing"] { --responsive-bg: url("assets/solutions/sales-marketing-service-768.webp"); }
  .solution-panel[data-solution="sourcing-procurement"] { --responsive-bg: url("assets/solutions/sourcing-procurement-service-768.webp"); }
  .solution-panel[data-solution="marketplace-ecommerce"] { --responsive-bg: url("assets/solutions/marketplace-ecommerce-sales-768.webp"); }
  .solution-panel[data-solution="formulation-development"] { --responsive-bg: url("assets/solutions/formulation-development-service-768.webp"); }
  .solution-panel[data-solution="packaging-design"] { --responsive-bg: url("assets/solutions/packaging-design-768.webp"); }
}

@media (max-width: 760px) {
  .product-detail-hero { background-image: var(--category-image-mobile, var(--category-image)); }
  .product-option[data-category="otop"] { --responsive-bg: url("assets/product-categories/otop-global-768.webp"); }
  .product-option[data-category="electronics"] { --responsive-bg: url("assets/product-categories/consumer-electronics-768.webp"); }
  .product-option[data-category="food"] { --responsive-bg: url("assets/product-categories/food-and-beverage-768.webp"); }
  .product-option[data-category="sport"] { --responsive-bg: url("assets/product-categories/sports-and-fitness-768.webp"); }
  .product-option[data-category="home"] { --responsive-bg: url("assets/product-categories/home-decor-768.webp"); }
  .product-option[data-category="garment"] { --responsive-bg: url("assets/product-categories/clothing-and-accessories-768.webp"); }
}
