/* ==========================================================================
   HQ Supply Chain — Design System
   Source: ramp.com homepage, extracted from live site CSS (2026-08-15)
   Adaptations: solar lime → purple  ·  lausanne → IBM Plex Sans (free)
   ========================================================================== */

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
}

/* --------------------------------------------------------------------------
   1. Tokens — real Ramp values, purple in place of --solar
   -------------------------------------------------------------------------- */
:root {
  --solar:        #6e3ff3;          /* was #e4f222 (Ramp lime) — brand accent */
  --solar-hover:  #5b2ce1;
  --solar-soft:   #eee9fd;          /* purple tint (chip / icon wash) */
  --solar-line:   #d9cdfb;

  --gray-light:   #f4f2f0;          /* bone canvas (--grayLight) */
  --gray-medium:  #d2cecb;          /* borders (--grayMedium / --border-primary) */
  --gray-dark:    #6e6a68;          /* muted text (--grayDark) */
  --ink:          #0c0a08;          /* text-primary */
  --hushed:       rgba(12, 10, 8, .6);   /* text-hushed */
  --hushed-2:     rgba(12, 10, 8, .45);
  --black:        #212121;          /* --black-rgb: 33,33,33 */
  --black-100:    rgba(33, 33, 33, .1);
  --black-50:     rgba(33, 33, 33, .05);
  --black-25:     rgba(33, 33, 33, .025);
  --white:        #ffffff;
  --white-500:    rgba(255, 255, 255, .5);

  /* Fonts */
  --font: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
          Arial, sans-serif;

  /* Semantic type tokens: CMS content should inherit these instead of
     hard-coded pixel values so editorial changes remain visually stable. */
  --type-body:       16px;
  --type-body-small: 14px;
  --type-label:      12px;
  --type-meta:       11px;
  --type-micro:      10px;

  /* Radii (Ramp scale) */
  --r-sm: 4px;
  --r-md: 6px;      /* buttons, inputs */
  --r-lg: 8px;
  --r-xl: 12px;     /* form container, media, cards */
  --r-2xl: 16px;

  /* Layout */
  --container: 1536px;              /* Ramp max-w-screen-2xl */
  --gutter: clamp(16px, 3vw, 48px);   /* Ramp px-4 → px-6 inside 1536 container */
  --nav-banner-h: 40px;
  --nav-row-h: 56px;
  --nav-h: calc(var(--nav-banner-h) + var(--nav-row-h));
  --section-y: clamp(96px, 11vw, 150px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ink);
  background: var(--gray-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--nav-h);   /* room for fixed nav (banner + row) */
}
body.banner-off { padding-top: var(--nav-row-h); }
::selection { background: var(--solar); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--solar); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   3. Type scale — Ramp headline-x / body-x (weight 400, tracking ~0)
   -------------------------------------------------------------------------- */
.headline-xl { font-size: clamp(36px, 4vw, 40px);   line-height: clamp(40px, 4.2vw, 42px);  letter-spacing: -.01px; }
.headline-l  { font-size: clamp(31px, 3.4vw, 34px); line-height: clamp(35px, 3.8vw, 38px);  letter-spacing: -.01px; }
.headline-m  { font-size: clamp(26px, 3vw, 28px);   line-height: clamp(30px, 3.3vw, 32px); }
.headline-s  { font-size: clamp(21px, 2.4vw, 22px); line-height: clamp(25px, 2.7vw, 26px); }
.headline-xs { font-size: clamp(19px, 2.2vw, 22px); line-height: clamp(23px, 2.5vw, 26px); }
.body-xl { font-size: clamp(17px, 1.9vw, 18px); line-height: clamp(22px, 2.2vw, 22px); }
.body-l  { font-size: clamp(16px, 1.7vw, 17px); line-height: 24px; }
.body-m  { font-size: clamp(15px, 1.25vw, 16px); line-height: 1.5; }
.body-s  { font-size: clamp(13.5px, 1.15vw, 14px); line-height: 1.45; }
.body-xs { font-size: 12px; line-height: 16px; }

/* CMS rich text contract. The renderer adds .cms-richtext only to approved
   rich fields; plain [data-cms] values keep their existing textContent flow. */
.cms-richtext {
  max-width: 65ch;
  font-size: var(--type-body);
  line-height: 1.6;
}
.cms-richtext p { margin: 0 0 1em; }
.cms-richtext p:last-child { margin-bottom: 0; }
.cms-richtext h3,
.cms-richtext h4 { margin: 1.5em 0 .55em; line-height: 1.2; }
.cms-richtext h3 { font-size: 1.25em; }
.cms-richtext h4 { font-size: 1.1em; }
.cms-richtext ul,
.cms-richtext ol { margin: 0 0 1em; padding-left: 1.35em; list-style: revert; }
.cms-richtext li + li { margin-top: .35em; }
.cms-richtext a { color: var(--solar-hover); text-decoration: underline; text-underline-offset: .15em; }
.cms-richtext blockquote { margin: 1em 0; padding-left: 1em; border-left: 2px solid var(--solar); color: var(--hushed); }
@media (max-width: 640px) {
  .cms-richtext { font-size: 15px; line-height: 1.58; }
}

h1, h2, h3, h4 { font-weight: 400; }
.tabular { font-variant-numeric: tabular-nums; }
.text-hushed { color: var(--hushed); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.leading-trim { line-height: 1; }
.block { display: block; }
.i { width: 16px; height: 16px; flex: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--type-label); line-height: 16px; letter-spacing: .18px;
  text-transform: uppercase; color: var(--hushed);
}
.eyebrow--carbon { color: rgba(255,255,255,.6); }

/* Width helpers (Ramp max-w utilities) */
.mw-533 { max-width: 533px; }
.mw-656 { max-width: 656px; }
.mw-755 { max-width: 755px; }
.mw-960 { max-width: 960px; }

/* Responsive <br> / <span> helpers (Ramp hidden md:block / xl:block) */
.only-md { display: none; }
.only-xl { display: none; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.band { border-top: 1px solid var(--gray-medium); }
.logo { display: inline-flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; }
.brand-logo-img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  /* The full circular lockup contains its own HQ Supply Chain lettering.
     Keep the old text fallback in markup, but let the image be the single
     source of truth for the visible brand. */
  content: url("/assets/img/brand/hq-supply-chain-logo-light.webp");
}
.logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: max-content;
}

/* Centered section head (Ramp: mx-auto max-w-[960px] text-center) */
.section-head-c { max-width: 960px; margin-inline: auto; text-align: center; }
.section-head-c h2 { margin-top: 18px; }
.section-head-c h2 .block + .block { margin-top: 2px; }
.section-head-c .sub { margin-top: 20px; color: var(--hushed); max-width: 540px; margin-inline: auto; text-wrap: balance; }
.section-head-c > p { margin: 20px auto 0; max-width: 540px; text-wrap: balance; }
.section-head-c .btn { margin-top: 32px; }

/* --------------------------------------------------------------------------
   5. Buttons & links — Ramp: rounded-md, h-51px, px-5
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  height: 51px;
  padding: 0 20px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background-color .3s, color .3s, transform .2s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary { background: var(--solar); color: #fff; }
.btn--primary:hover { background: var(--solar-hover); }
.btn--secondary {
  background: var(--gray-light);
  color: var(--ink);
}
.btn--secondary:hover { background: var(--gray-medium); }
.btn--black { background: var(--black); color: #fff; }
.btn--black:hover { background: #000; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: var(--r-md); }

/* Inline text link with animated arrow (Ramp group/link) */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--hushed);
  transition: color .2s;
}
.text-link:hover { color: var(--ink); }
.text-link svg { width: 15px; height: 15px; flex: none; transition: transform .2s; }
.text-link:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Announcement bar — black, 40px, body-s, centered
   -------------------------------------------------------------------------- */
.announce {
  position: relative;
  z-index: 60;
  height: var(--nav-banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.announce-inner { display: flex; align-items: center; gap: 6px; max-width: 100%; padding: 0 44px; }
.announce a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.announce .close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--r-md);
  color: rgba(255,255,255,.8);
}
.announce .close:hover { background: rgba(255,255,255,.12); }
.announce .close svg { width: 15px; height: 15px; }
.banner-off .announce { display: none; }

/* --------------------------------------------------------------------------
   7. Navigation — fixed, translucent white + blur, 96px
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: var(--white-500);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--black-50);
  transition: border-color .3s, background-color .3s;
}
.nav.scrolled { border-bottom-color: var(--black-100); background: rgba(255,255,255,.8); }
.nav-row {
  height: var(--nav-row-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 20px;
  color: var(--hushed);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

/* Nav dropdowns (Ramp megamenu) */
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 20px;
  color: var(--hushed);
  transition: color .2s;
  cursor: pointer;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--ink); }
.nav-chev { width: 12px; height: 12px; flex: none; transition: transform .2s var(--ease); }
.nav-item:hover .nav-chev, .nav-item.open .nav-chev { transform: rotate(180deg); }
.nav-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  box-shadow: 0 14px 40px rgba(12,10,8,.12), 0 3px 10px rgba(12,10,8,.05);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 70;
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop,
.nav-item.open .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-cols { display: flex; gap: 8px; }
.nav-drop-col { display: flex; flex-direction: column; gap: 2px; min-width: 196px; }
.nav-drop-head {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 8px 12px 4px;
}
.nav-drop-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 20px;
  color: var(--ink);
  transition: background-color .15s;
}
.nav-drop-col a:hover { background: var(--gray-light); }
.nav-icon-wrap {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-50);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--gray-dark);
  transition: color .16s var(--ease), background-color .16s var(--ease), border-color .16s var(--ease);
}
.nav-icon-wrap .nav-ic { width: 17px; height: 17px; display: block; }
.nav-drop-col a:hover .nav-icon-wrap,
.nav-drop-col a:focus-visible .nav-icon-wrap,
.nav-drop-col a[aria-current="page"] .nav-icon-wrap {
  color: var(--solar);
  border-color: rgba(110,63,243,.2);
  background: var(--solar-soft);
}
.nav-item-label { min-width: 0; }
.nav-drop-all {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 12px 4px;
  border-top: 1px solid var(--black-50);
  font-size: 13px;
  font-weight: 500;
  color: var(--solar);
}
.nav-drop-all:hover { color: var(--solar-hover); }
.nav-drop-all .nav-icon-wrap { color: var(--solar); background: var(--solar-soft); border-color: transparent; }
.nav-drop-all .nav-row-arrow { width: 14px; height: 14px; margin-left: auto; flex: none; }

/* Solutions and Industries share one catalogue rhythm on every page. */
.nav-drop--catalogue { padding: 14px; }
.nav-drop--solutions { width: 608px; }
.nav-drop--industries { width: min(704px, calc(100vw - 32px)); }
.nav-drop--catalogue .nav-drop-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.nav-drop--catalogue .nav-drop-col { min-width: 0; gap: 2px; }
.nav-drop--catalogue .nav-drop-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding: 2px 8px 6px;
  white-space: nowrap;
}
.nav-drop--catalogue .nav-drop-head::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--black-50);
}
.nav-drop--catalogue .nav-drop-col a {
  min-height: 46px;
  padding: 6px 8px;
  gap: 10px;
  line-height: 1.25;
}
.nav-drop--catalogue .nav-drop-col a[aria-current="page"] {
  color: var(--ink);
  background: var(--solar-soft);
}
.nav-drop--catalogue .nav-drop-all {
  min-height: 42px;
  margin-top: 10px;
  padding: 10px 8px 0;
}

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-login {
  font-size: 14px;
  color: var(--hushed);
  padding: 0 10px;
  height: 40px;
  display: inline-flex;
  align-items: center;
}
.nav-login:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  background: var(--black-50);
}
.nav-toggle:hover { background: var(--black-100); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  border-radius: 2px; position: relative;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top: 5px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

.logo-mark { font-size: 20px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.logo-mark i { font-style: normal; color: var(--solar); }
.logo-sub { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-dark); }

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--white);
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .drawer-link {
  font-size: 22px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.mobile-drawer .drawer-link .nav-icon-wrap { color: var(--gray-dark); }
.mobile-drawer .drawer-link .nav-row-arrow { width: 16px; height: 16px; margin-left: auto; flex: none; }
.mobile-drawer .drawer-link[aria-current="page"] { color: var(--solar); }
.mobile-drawer .drawer-link[aria-current="page"] .nav-icon-wrap {
  color: var(--solar);
  border-color: rgba(110,63,243,.2);
  background: var(--solar-soft);
}
.mobile-drawer .drawer-link--catalogue {
  min-height: 50px;
  padding: 8px 0;
  gap: 12px;
  font-size: 17px;
  line-height: 1.25;
}
.mobile-drawer .drawer-link--all {
  margin-top: 8px;
  color: var(--solar);
  font-weight: 500;
}
.mobile-drawer .drawer-link--all .nav-icon-wrap {
  color: var(--solar);
  border-color: transparent;
  background: var(--solar-soft);
}
.drawer-cta { margin-top: 28px; width: 100%; }
.drawer-login { text-align: center; margin-top: 18px; font-size: 14px; color: var(--hushed); }
.mobile-drawer .drawer-group-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin: 26px 0 4px;
}
.mobile-drawer .drawer-group-head:first-child { margin-top: 0; }
.mobile-drawer .drawer-subhead {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hushed);
  margin: 18px 0 4px;
}
.mobile-drawer .drawer-group-head--catalogue { margin-top: 30px; }

/* --------------------------------------------------------------------------
   8. Hero — single-column editorial (Ramp layout) + interactive starfield
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--gray-medium); }
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 50% 8%, rgba(255, 203, 92, .09), transparent 46%),
    radial-gradient(rgba(12,10,8,.12) 1px, transparent 1.4px);
  background-size: auto, 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.5) 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.5) 60%, transparent 100%);
  pointer-events: none;
}
/* Interactive starfield replaces the static dot-grid once JS is active */
.hero.has-stars .hero-canvas {
  background-image: radial-gradient(circle at 50% 8%, rgba(255, 203, 92, .1), transparent 46%);
  background-size: auto;
}
.hero-stars {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.6) 72%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.6) 72%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(48px, 7vw, 96px);
  max-width: 1180px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: .18px;
  text-transform: uppercase;
  color: var(--hushed);
}
.hero-eyebrow .chip {
  background: var(--gray-light);
  border-radius: var(--r-sm);
  padding: 5px 6px;
  font-size: 10px;
  letter-spacing: .18px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero h1 { margin-top: 32px; max-width: 1000px; }
.hero-sub { margin-top: 24px; max-width: 531px; color: var(--hushed); }

/* Email form CTA — Ramp: rounded-xl pill, input + solar button */
.cta-form { margin-top: 32px; max-width: 500px; }
.cta-field {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  background: var(--white);
  padding: 4px;
  transition: border-color .2s;
}
.cta-field:focus-within { border-color: var(--black-100); }
.cta-field input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}
.cta-field input::placeholder { color: var(--hushed-2); }
.cta-field .btn { flex: none; height: 52px; border-radius: var(--r-md); }
.cta-note { margin-top: 12px; font-size: 12px; color: var(--hushed); }

/* Media block — Ramp: border rounded-xl, product UI */
.media-block {
  margin-top: clamp(40px, 6vw, 64px);
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}

/* Browser-chrome mockup */
.mockup { background: var(--white); }
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-medium);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot:nth-child(1) { background: #f26d6d; }
.chrome-dot:nth-child(2) { background: #f5bf4f; }
.chrome-dot:nth-child(3) { background: #61c76e; }
.chrome-url {
  margin-left: 12px;
  font-size: 11.5px;
  color: var(--gray-dark);
  background: var(--gray-light);
  border-radius: var(--r-md);
  padding: 5px 12px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-body { padding: clamp(20px, 3vw, 32px); }
.mockup-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.mockup-kicker { font-size: var(--type-meta); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 6px; }
.mockup-title { font-size: 18px; font-weight: 500; }
.mockup-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: var(--solar);
  background: var(--solar-soft); border: 1px solid var(--solar-line);
  padding: 5px 10px; border-radius: 100px;
}
.mockup-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--solar); }

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.ms { border: 1px solid var(--gray-medium); border-radius: var(--r-lg); padding: 12px; background: var(--gray-light); }
.ms-label { display: block; font-size: var(--type-meta); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 6px; }
.ms-value { display: block; font-size: 19px; font-weight: 500; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.ms-delta { display: inline-block; font-size: 10.5px; margin-top: 2px; color: var(--gray-dark); }
.ms-delta.up { color: #2a9d62; }
.ms-delta.up::before { content: "▲"; font-size: 8px; margin-right: 3px; vertical-align: 1px; }

.mockup-chart { margin-bottom: 18px; }
.chart-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 84px;
  border-bottom: 1px solid var(--gray-medium);
}
.chart-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--solar), #c9b8fb); min-height: 4px; }
.chart-bars i.hl { background: var(--solar); }
.chart-x { display: flex; gap: 6px; margin-top: 8px; }
.chart-x span { flex: 1; font-size: 9.5px; color: var(--gray-dark); text-align: center; }

.mockup-timeline {
  display: flex; align-items: center;
  padding: 14px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--r-lg);
  background: var(--gray-light);
}
.tl-step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: none; }
.tl-step i { position: relative; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gray-medium); background: var(--white); }
.tl-step.done i { background: var(--solar); border-color: var(--solar); box-shadow: 0 0 0 3px var(--solar-soft); }
.tl-step.done i::after {
  content: ""; position: absolute; left: 6px; top: 3px;
  width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.tl-step span { font-size: var(--type-meta); font-weight: 500; color: var(--ink); }
.tl-step em { font-style: normal; font-size: var(--type-micro); color: var(--gray-dark); }
.tl-line { flex: 1; height: 1px; background: var(--gray-medium); margin: 0 8px; position: relative; top: -11px; }
.tl-line.fill { background: var(--solar); }

/* --------------------------------------------------------------------------
   9. Placeholder media slots (replace with real images/videos on BaoTa)
   -------------------------------------------------------------------------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-dark);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .03em;
  background-color: var(--gray-light);
  background-image:
    linear-gradient(135deg, rgba(12,10,8,.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(12,10,8,.035) 25%, transparent 25%);
  background-size: 18px 18px, 18px 18px;
  border: 1px dashed var(--gray-medium);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.ph span { padding: 0 20px; }

/* --------------------------------------------------------------------------
   10. Customer wall — ticker + logo grid (Ramp sec-2)
   -------------------------------------------------------------------------- */
.ticker-bar {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-medium);
  padding: 12px 0;
}
.ticker-label {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: .18px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 14px 0 0;
  margin-right: 14px;
  border-right: 1px solid var(--gray-medium);
  background: var(--gray-light);
  position: relative;
  z-index: 2;
}
.ticker-track { display: flex; gap: 16px; padding-right: 16px; animation: ticker 26s linear infinite; }
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-100%); } }
.t-chip {
  flex: none;
  width: 132px;
  height: 32px;
  border: 1px dashed var(--black-100);
  border-radius: var(--r-md);
  background: var(--gray-light);
  position: relative;
}
.t-chip::before {
  content: ""; position: absolute; left: 10px; top: 8px;
  width: 58px; height: 5px; border-radius: 3px; background: var(--gray-medium); opacity: .75;
}
.t-chip::after {
  content: ""; position: absolute; left: 10px; bottom: 8px;
  width: 40px; height: 5px; border-radius: 3px; border: 1px dashed var(--gray-medium);
}

.wall-head { margin-top: clamp(48px, 7vw, 80px); }
.wall-head h2 { max-width: 656px; }
.wall-head .text-link { margin-top: 16px; }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-xl);
  padding: 1px;
  overflow: hidden;
  margin-top: 40px;
}
.wall-tile {
  aspect-ratio: 1 / 1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 26px);
  transition: background-color .3s;
}
.wall-tile:hover { background: rgba(255,255,255,.5); }
.wall-tile .logo-ph {
  max-width: 120px;
  text-align: center;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  opacity: .4;
  line-height: 1.1;
}
.wall-tile--featured {
  grid-column: 7 / 9;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}
.wall-tile--featured:hover { background: var(--black); }
.wall-tile--featured .featured-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 12px;
  border: 0; border-radius: 0;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.wall-tile--featured .featured-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wall-tile--featured .featured-stat { font-size: clamp(32px, 3.4vw, 46px); line-height: 1; color: var(--white); }
.wall-tile--featured .featured-cap { font-size: 14px; line-height: 20px; color: rgba(255,255,255,.6); }

/* --------------------------------------------------------------------------
   11. Platform cards (Ramp sec-3) — 2 large + 3 small
   -------------------------------------------------------------------------- */
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: clamp(20px, 3vw, 32px); }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(32px, 5vw, 64px); }
.platform-grid--three { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--gray-light);
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 483px;
  transition: border-color .3s, transform .3s;
}
.p-card:hover { border-color: var(--gray-dark); }
.p-card--three { min-height: 400px; }
.p-card-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 32px 24px 0 28px;
}
.p-card-head h3 { max-width: 300px; }
.p-arrow {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--black-100);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s, color .3s, border-color .3s;
}
.p-card:hover .p-arrow { background: var(--solar); border-color: var(--solar); color: #fff; }
.p-arrow svg { width: 16px; height: 16px; }
.p-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 20px;
}
.p-card-media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--gray-light) 82%);
  pointer-events: none;
}
.p-card-media span { position: relative; }

/* --------------------------------------------------------------------------
   12. Sticky scroll — "Systems that never spoke" (Ramp sec-4)
   -------------------------------------------------------------------------- */
.scroll-stage { position: relative; height: min(160vh, 1500px); }
.scroll-pin {
  position: sticky;
  top: var(--nav-h);
  height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scroll-visual {
  position: relative;
  width: min(100%, calc((100dvh - var(--nav-h)) * 7 / 5));
  aspect-ratio: 7 / 5;
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  background: var(--white);
  overflow: hidden;
}
.scroll-visual::before {
  content: "";
  position: absolute;
  inset-inline: 0; top: 0;
  height: 130px;
  z-index: 4;
  background: linear-gradient(to bottom, var(--gray-light) 55%, transparent);
  pointer-events: none;
}
.scroll-title {
  position: absolute;
  top: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  padding: 0 24px;
}
.scroll-title h2 { max-width: 960px; }
.scroll-title p { margin-top: 14px; max-width: 540px; color: var(--hushed); text-wrap: balance; }

.scenes { position: absolute; inset: 0; }
.scene { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--ease); }
.scene.active { opacity: 1; }
.scene-media { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.scene-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 24px 46px;
  background: linear-gradient(to top, rgba(255,255,255,.94), transparent);
}
.scene-label { font-size: 13px; font-weight: 600; color: var(--solar); flex: none; }
.scene-msg { font-size: 13px; color: var(--ink); }
.scene-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 3;
}
.scene-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-medium); transition: background-color .3s, transform .3s; }
.scene-dot.active { background: var(--solar); transform: scale(1.3); }

/* --------------------------------------------------------------------------
   13. Feature rows — Stack-style alternating media + copy (Ramp sec-5)
   -------------------------------------------------------------------------- */
.feature-intro { text-align: center; }
.feature-intro h2 { max-width: 960px; margin-inline: auto; }
.feature-intro .btn { margin-top: 32px; }

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 533px) minmax(0, 755px);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  margin-top: clamp(64px, 9vw, 120px);
}
.feature-row--flip { grid-template-columns: minmax(0, 755px) minmax(0, 533px); }
.feature-row--flip > .feature-media { order: 1; }
.feature-row--flip > .feature-copy { order: 2; }

.feature-copy h2 { max-width: 533px; }
.feature-copy .text-link { margin-top: 18px; }
.feature-quote {
  margin-top: 28px;
  max-width: 533px;
  font-size: 15.5px;
  line-height: 22px;
  color: var(--ink);
  text-wrap: pretty;
}
.feature-quote::before { content: "\201C"; margin-left: -0.4em; }
.feature-quote::after  { content: "\201D"; }
.feature-attrib { margin-top: 20px; display: flex; align-items: flex-end; gap: 16px; }
.feature-attrib .avatar {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 1px solid var(--gray-medium);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 14px;
}
.feature-attrib b { display: block; font-size: 15px; font-weight: 500; }
.feature-attrib span { font-size: 13px; color: var(--hushed); }

.story-quote {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--gray-medium);
}
.story-quote blockquote {
  margin: 0;
  font-size: 15.5px;
  line-height: 22px;
  color: var(--ink);
  text-wrap: pretty;
}
.story-quote blockquote::before { content: "\201C"; }
.story-quote blockquote::after  { content: "\201D"; }
.story-quote figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--hushed);
}
.story-quote figcaption b {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

.feature-media {
  position: relative;
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}
.feature-media .ph { aspect-ratio: 1 / 1; border: 0; border-radius: 0; }
.feature-media .play-btn {
  position: absolute;
  right: 20px; bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px 0 18px;
  border-radius: 100px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  transition: background-color .3s;
}
.feature-media .play-btn:hover { background: #000; }
.feature-media .play-btn svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   14. CTA strip (Ramp sec-6) — bone panel + black button
   -------------------------------------------------------------------------- */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--r-xl);
  background-color: #f4f2ef;
  /* REPLACE with the artwork image, e.g. url(assets/img/pothole-artwork.webp) */
  background-image: radial-gradient(circle at 80% 50%, rgba(110,63,243,.06), transparent 55%);
  background-position: 80% center;
  background-size: cover;
  overflow: hidden;
}
.cta-strip h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 400; line-height: 1.25; }
.cta-strip--form h2 { font-weight: 600; }
.cta-strip p { margin-top: 10px; color: var(--hushed); max-width: 560px; }
.cta-strip .btn { flex: none; }

/* --------------------------------------------------------------------------
   15. Scale cards (Ramp sec-7) — media top + copy below
   -------------------------------------------------------------------------- */
.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(56px, 8vw, 80px);
}
.scale-card {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
  align-items: flex-start;
}
.scale-media { aspect-ratio: 5 / 4; width: 100%; }
.scale-card h2 { max-width: 533px; }
.scale-card p { margin-top: 12px; color: var(--hushed); max-width: 533px; }
.scale-card .text-link { margin-top: 20px; }

/* --------------------------------------------------------------------------
   16. Wall of love (Ramp sec-8) — marquee of quote cards
   -------------------------------------------------------------------------- */
.wall-marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(32px, 5vw, 48px);
  padding: 16px 0 8px;
}
.wall-marquee::before,
.wall-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 79px;
  z-index: 5;
  pointer-events: none;
}
.wall-marquee::before { left: 0; background: linear-gradient(to right, var(--gray-light) 0%, transparent 71%); }
.wall-marquee::after  { right: 0; background: linear-gradient(to left, var(--gray-light) 0%, transparent 71%); }
.wall-row { display: flex; overflow: hidden; margin-bottom: 16px; }
.wall-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  animation: marquee var(--dur, 60s) linear infinite;
}
.wall-row:nth-child(2) .wall-group { --dur: 72s; animation-delay: -24s; }
.wall-row:nth-child(3) .wall-group { --dur: 84s; animation-delay: -48s; }
.wall-row:hover .wall-group { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }

.love-card {
  flex: none;
  width: 280px;
  height: 192px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: var(--r-2xl);
  padding: 20px;
}
.love-card-head { display: flex; align-items: center; gap: 12px; }
.love-card .lc-avatar {
  flex: none;
  width: 40px; height: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-medium);
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--gray-dark);
}
.love-card .lc-name { font-size: 14px; line-height: 20px; font-weight: 400; }
.love-card .lc-role { font-size: 13px; line-height: 18px; color: var(--hushed); }
.love-card blockquote {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 19px;
  color: var(--hushed);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   17. Footer — black (Ramp footer) with corner-cut top edge
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--black);
  color: rgba(255,255,255,.7);
}
.footer-notch {
  position: absolute;
  inset-inline: 0;
  top: -24px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  pointer-events: none;
}
.footer-notch svg { width: 24px; height: 24px; fill: var(--black); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-block: 72px 48px;
}
.footer-brand .logo-mark { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.45); }
.footer-brand .brand-logo-img {
  width: 68px;
  height: 68px;
  content: url("/assets/img/brand/hq-supply-chain-logo-dark.webp");
}
.footer-brand p { margin-top: 16px; font-size: 13.5px; line-height: 20px; max-width: 26em; color: rgba(255,255,255,.5); }
.footer h4 { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .legal { display: flex; gap: 22px; }

/* --------------------------------------------------------------------------
   18. Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--rd, 0s);
}
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  html.js .reveal, .reveal { opacity: 1; transform: none; }
  .ticker-track, .wall-group { animation: none !important; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 768px) { .only-md { display: block; } }
@media (min-width: 1280px) { .only-xl { display: block; } }

@media (max-width: 1080px) {
  .platform-grid--three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .wall-tile .logo-ph { font-size: 16px; }
}

@media (max-width: 991px) {
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: inline-flex; }
  :root { --nav-banner-h: 56px; }

  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .wall-tile--featured { grid-column: span 2; grid-row: span 2; }

  .feature-row,
  .feature-row--flip { grid-template-columns: 1fr; }
  .feature-row--flip > .feature-media,
  .feature-row--flip > .feature-copy { order: 0; }
  .feature-row--flip > .feature-media { order: 2; }
  .feature-row--flip > .feature-copy { order: 1; }

  .scale-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand-logo-img { width: 44px; height: 44px; }
  .footer-brand .brand-logo-img { width: 64px; height: 64px; }
  .platform-grid,
  .platform-grid--three { grid-template-columns: 1fr; }
  .p-card, .p-card--three { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mockup-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { padding-top: 40px; }
  .hero h1 { margin-top: 24px; }
  .cta-field { flex-direction: column; align-items: stretch; padding: 12px; gap: 8px; }
  .cta-field input { flex: 0 0 auto; height: 44px; padding: 0 12px; text-align: center; }
  .cta-field .btn { width: 100%; }
  .love-card { width: 260px; }
  .scroll-visual { width: 100%; }
  .scene-caption { flex-direction: column; align-items: flex-start; gap: 4px; padding-bottom: 38px; }
}

/* ==========================================================================
   CMS 配置驱动 — admin 后台写入 assets/data/*.json，site.js 应用覆盖
   ========================================================================== */
.ph.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ph.has-bg span { display: none; }
.ph.has-video { background: #111; }
.cms-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero Control Tower media — shows a real screenshot/video (set via
   data-cms-bg → home.json hero.mockupMedia). Falls back to a caption
   until a media asset is configured. Height is forced via padding-bottom
   (16:9) so the cover image is always perfectly centered. */
.hero-media { position: relative; height: 0; padding-bottom: 56.25%; overflow: hidden; }
.hero-media.has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-media.has-bg .hero-media-note { display: none; }
.hero-media.has-video { background: #111; }
.hero-media .cms-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media-note {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px; color: var(--gray-dark);
}

/* ==========================================================================
   Solutions hub & detail pages — shared components (Ramp /startups style)
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--hushed);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-dark); }
.breadcrumb a:hover { color: var(--solar); }
.breadcrumb .sep { opacity: .45; }
.breadcrumb .cur { color: var(--ink); }

/* Centered solution hero — Ramp /startups (headline centered, media banner below) */
.sol-hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(20px, 4vw, 48px) 0 0;
}
.sol-hero-inner .breadcrumb { justify-content: center; }
.sol-hero-inner .hero-eyebrow { margin-top: 0; }
.sol-hero-inner .headline-xl { margin-top: 16px; max-width: 820px; }
.sol-hero-inner .hero-sub { max-width: 560px; margin-inline: auto; }
.sol-hero-inner .cta-form { margin-inline: auto; width: 100%; max-width: 500px; }
.sol-hero-media { padding: clamp(36px, 5vw, 64px) 0 clamp(8px, 2vw, 24px); }
.winner-products-hero .sol-hero-inner {
  padding-bottom: clamp(64px, 8vw, 112px);
}
.winner-products-hero + .winner-library {
  padding-top: clamp(56px, 6vw, 88px);
}
.sol-media { position: relative; height: 0; padding-bottom: 56.25%; margin-top: 0; border-radius: var(--r-2xl); }
.sol-media.has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.sol-media.has-bg .sol-media-note { display: none; }
.sol-media.has-video { background: #111; }
.sol-media .cms-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sol-media-note {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px; color: var(--gray-dark);
}
.sol-media-video {
  position: absolute; inset: 0; z-index: 1;
  display: block; overflow: hidden;
  color: #fff; text-decoration: none;
  background: #17151b;
}
.sol-media-video::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,10,8,.04) 28%, rgba(12,10,8,.76) 100%);
  transition: background .25s var(--ease);
}
.sol-media-video:hover::after, .sol-media-video:focus-visible::after { background: linear-gradient(180deg, rgba(12,10,8,.10) 20%, rgba(110,63,243,.74) 100%); }
.sol-media-video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sol-media-video-copy { position: absolute; z-index: 2; left: clamp(18px, 3vw, 30px); bottom: clamp(18px, 3vw, 30px); display: grid; gap: 4px; }
.sol-media-video-copy strong { font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; letter-spacing: -.01em; }
.sol-media-video-copy small { color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.sol-media-video-play { position: absolute; z-index: 2; right: clamp(18px, 3vw, 30px); bottom: clamp(18px, 3vw, 30px); display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(255,255,255,.18); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.sol-media-video-play .i { width: 18px; height: 18px; margin-left: 3px; }

/* Service catalog grid */
.sol-group-head {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--gray-medium);
}
.sol-group-head:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.sol-group-head h2 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
.sol-group-note { color: var(--hushed); font-size: clamp(13.5px, 1.15vw, 15px); }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: var(--r-lg);
  padding: 24px;
  color: inherit;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.sol-card:hover { border-color: var(--solar); box-shadow: 0 10px 30px rgba(110,63,243,.10); transform: translateY(-2px); }
.sol-card-ic {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--solar-soft); color: var(--solar);
  display: flex; align-items: center; justify-content: center;
}
.sol-card-ic .i { width: 20px; height: 20px; }
.sol-card h3 { font-size: clamp(16px, 1.45vw, 18px); font-weight: 600; margin-top: 16px; }
.sol-card-desc { margin-top: 6px; font-size: clamp(13.5px, 1.15vw, 15px); line-height: 1.5; color: var(--hushed); }
.sol-card-points { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.sol-card-points li { display: flex; gap: 8px; font-size: clamp(13px, 1.05vw, 14px); line-height: 1.4; color: var(--ink); }
.sol-card-points .i { width: 14px; height: 14px; color: var(--solar); flex: none; margin-top: 2px; }
.sol-card-link {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--solar);
}
.sol-card:hover .sol-card-link { color: var(--solar-hover); }

/* Checklist (accountability section) */
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; }
.check-list .i { width: 18px; height: 18px; color: var(--solar); flex: none; margin-top: 2px; }

/* Stats band */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
}
.stat-item { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.stat-num { font-size: clamp(34px, 3.4vw, 40px); font-weight: 600; letter-spacing: -.02em; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.05; }
.stat-num [data-suffix-wrap] { color: var(--solar); }
.stat-label { font-size: clamp(14px, 1.25vw, 15px); line-height: 1.5; color: var(--hushed); max-width: 24ch; }
@media (min-width: 1025px) {
  .stat-item + .stat-item { border-left: 1px solid var(--black-100); padding-left: 24px; }
}
@media (max-width: 1024px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); padding: clamp(24px, 4vw, 40px); }
  .stat-item + .stat-item { border-left: 0; padding-left: 0; border-top: 1px solid var(--black-100); padding-top: 24px; }
}
@media (max-width: 640px) {
  .sol-media-video-copy { left: 16px; bottom: 16px; }
  .sol-media-video-play { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

/* How the work runs — 3 steps */
.sol-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-step {
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.sol-step-num { font-size: clamp(13.5px, 1.15vw, 14px); font-weight: 600; color: var(--solar); }
.sol-step h3 { font-size: clamp(18px, 1.6vw, 19px); font-weight: 600; margin-top: 10px; }
.sol-step p { margin-top: 10px; font-size: clamp(14.5px, 1.25vw, 15px); line-height: 1.6; color: var(--hushed); }

/* Industry tiles */
.industry-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.industry-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 18px;
  border: 1px solid var(--black-100);
  border-radius: var(--r-md);
  font-size: clamp(14.5px, 1.2vw, 16px); font-weight: 500; color: var(--ink);
  transition: border-color .18s;
}
.industry-tile:hover { border-color: var(--solar); }
.industry-tile .i { width: 18px; height: 18px; color: var(--solar); flex: none; }

/* FAQ accordion */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--gray-medium); }
.faq-item:first-child { border-top: 1px solid var(--gray-medium); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left;
  font-size: clamp(16px, 1.45vw, 18px); font-weight: 500; color: var(--ink);
  cursor: pointer; background: none; border: 0;
}
.faq-q:hover { color: var(--solar); }
.faq-q .i { width: 18px; height: 18px; color: var(--gray-dark); flex: none; transition: transform .25s var(--ease); }
.faq-item.open .faq-q .i { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0; font-size: clamp(15px, 1.3vw, 16.5px); line-height: 1.65; color: var(--hushed); max-width: 660px; overflow: hidden; min-height: 0; }
.faq-item.open .faq-a p { padding-bottom: 22px; }

/* Active section in nav */
.nav-item.current > .nav-link { color: var(--solar); }

/* Responsive */
@media (max-width: 960px) {
  .sol-media { padding-bottom: 62.5%; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .sol-steps { grid-template-columns: 1fr; }
  .industry-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sol-grid { grid-template-columns: 1fr; }
  .industry-tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   Solutions series — Ramp-matching additions
   logo marquee · story rows intro · proof band · perks · CTA form
   ============================================================ */

/* --- Logo marquee (Ramp sec-1) --- */
.logo-strip { padding: 8px 0 0; }
.logo-strip-head { text-align: center; font-size: clamp(12.5px, 1.1vw, 14px); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--hushed); margin-bottom: 30px; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }
.logo-track { display: flex; width: max-content; animation: logoMarquee 36s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-wm { margin-right: 64px; font-size: 17px; font-weight: 600; color: var(--ink); opacity: .5; white-space: nowrap; letter-spacing: .02em; }
@keyframes logoMarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .logo-wm { margin: 8px 22px; }
}

/* --- Story intro (Ramp sec-3 header) --- */
.story-intro { max-width: 640px; text-align: center; margin: 0 auto 56px; }
.story-intro h2 { margin-top: 14px; }
.story-intro .body-m { margin-top: 16px; color: var(--hushed); text-wrap: balance; }

/* 03 · Story feature cards — Ramp sec-3 (3-column image cards) */
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
}
.story-card { display: flex; flex-direction: column; }
.story-card-media .ph {
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: var(--r-xl);   /* Ramp 12px */
}
.story-card-body { margin-top: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; align-items: flex-start; }
.story-card-body .eyebrow { font-size: 12px; line-height: 16px; }
.story-card-body h3 { margin-top: 14px; }
.story-card-body .body-m { margin-top: 14px; color: var(--hushed); text-wrap: balance; }
.story-card-body .text-link { margin-top: 18px; }
.story-card .check-list { margin-top: 16px; }

/* Solutions overview: equal-height editorial columns with aligned evidence. */
.solution-story .story-cards { align-items: stretch; }
.solution-story .story-card {
  height: 100%;
  transform: none;
}
.solution-story .story-card-body {
  flex: 1;
  display: grid;
  grid-template-rows: auto auto minmax(9.5em, auto) 1fr;
  align-items: start;
  width: 100%;
}
.solution-story .story-card-body > h3 {
  min-height: 2.6em;
}
.solution-story .story-card:hover {
  transform: none;
}
.solution-story .story-card-tail {
  align-self: end;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 218px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--black-100);
}
.solution-story .story-card-tail-label {
  color: var(--gray-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}
.solution-story .story-card-tail .check-list { margin-top: 14px; }
.solution-story .story-card-tail .check-list { gap: 10px; }
.solution-story .story-card-tail .check-list li { font-size: 14px; }
.solution-story .story-card-tail .text-link {
  margin-top: auto;
  padding-top: 18px;
}

@media (max-width: 900px) {
  .solution-story .story-cards { grid-template-columns: 1fr; gap: 44px; }
  .solution-story .story-card-body { display: flex; }
  .solution-story .story-card-body > h3 { min-height: 0; }
  .solution-story .story-card-tail { min-height: 0; }
  .solution-story .story-card-tail .text-link { margin-top: 18px; padding-top: 0; }
}

/* Related services — image-led violet grid shared by all Solution child pages */
.related-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.14), transparent 34%), var(--solar);
  color: #fff;
}
.related-showcase .section-head-c {
  position: relative;
  z-index: 1;
  max-width: none;
  display: grid;
  grid-template-columns: 24% minmax(0, 1fr);
  column-gap: 40px;
  align-items: start;
  text-align: left;
}
.related-showcase .eyebrow {
  grid-column: 1;
  padding-top: 12px;
  color: rgba(255,255,255,.64);
}
.related-showcase .headline-m {
  grid-column: 2;
  color: #fff;
  font-size: clamp(46px, 5.7vw, 84px);
  line-height: .9;
  letter-spacing: -.05em;
}
.related-showcase .sub {
  grid-column: 2;
  max-width: 58ch;
  margin-top: 28px;
  color: rgba(255,255,255,.74);
}
.related-showcase .related-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(42px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.28);
  border-left: 1px solid rgba(255,255,255,.28);
}
.related-showcase .related-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(300px, 29vw, 430px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.7vw, 36px);
  color: #fff;
  background-color: #29135f;
  background-position: center;
  background-size: cover;
  border-right: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: color .45s var(--ease), background-position .7s var(--ease);
}
.related-showcase .related-card::before,
.related-showcase .related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.related-showcase .related-card::before {
  background:
    linear-gradient(180deg, rgba(18,7,45,.22) 0%, rgba(18,7,45,.38) 42%, rgba(18,7,45,.92) 100%),
    linear-gradient(125deg, rgba(110,63,243,.2), transparent 60%);
  transition: opacity .45s var(--ease);
}
.related-showcase .related-card::after {
  background: rgba(248,246,255,.94);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
}
.related-showcase .related-card > * { position: relative; z-index: 1; }
.related-showcase .related-card small {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .14em;
  color: rgba(255,255,255,.72);
  transition: color .45s var(--ease);
}
.related-showcase .related-card strong {
  max-width: 12ch;
  margin-top: auto;
  font-size: clamp(27px, 2.7vw, 42px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
  text-wrap: balance;
}
.related-showcase .related-card > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.32);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .45s var(--ease);
}
.related-showcase .related-card .i {
  width: 14px;
  height: 14px;
  color: currentColor;
  transition: transform .35s var(--ease);
}
.related-showcase .related-card:hover,
.related-showcase .related-card:focus-visible {
  color: #5b2ce1;
  background-position: 52% center;
}
.related-showcase .related-card:hover::before,
.related-showcase .related-card:focus-visible::before { opacity: .12; }
.related-showcase .related-card:hover::after,
.related-showcase .related-card:focus-visible::after { transform: translateY(0); }
.related-showcase .related-card:hover small,
.related-showcase .related-card:focus-visible small { color: rgba(91,44,225,.68); }
.related-showcase .related-card:hover > span,
.related-showcase .related-card:focus-visible > span { border-color: rgba(91,44,225,.28); }
.related-showcase .related-card:hover .i,
.related-showcase .related-card:focus-visible .i { transform: translate(3px, -3px); }
.related-showcase .related-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

@media (max-width: 900px) {
  .related-showcase .section-head-c { grid-template-columns: 1fr; }
  .related-showcase .eyebrow {
    grid-column: 1;
    padding-top: 0;
    margin-bottom: 24px;
  }
  .related-showcase .headline-m {
    grid-column: 1;
    font-size: clamp(40px, 12vw, 58px);
  }
  .related-showcase .sub { grid-column: 1; }
  .related-showcase .related-grid { grid-template-columns: 1fr; }
  .related-showcase .related-card {
    min-height: clamp(270px, 58vw, 390px);
    background-position: center 44%;
  }
  .related-showcase .related-card strong { max-width: 16ch; }
}

@media (hover: none) {
  .related-showcase .related-card:hover {
    color: #fff;
    background-position: center 44%;
  }
  .related-showcase .related-card:hover::before { opacity: 1; }
  .related-showcase .related-card:hover::after { transform: translateY(101%); }
  .related-showcase .related-card:hover small { color: rgba(255,255,255,.72); }
  .related-showcase .related-card:hover > span { border-color: rgba(255,255,255,.32); }
  .related-showcase .related-card:hover .i { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .related-showcase .related-card,
  .related-showcase .related-card::before,
  .related-showcase .related-card::after,
  .related-showcase .related-card .i { transition: none; }
}

/* Hideable sections (showcase) — [hidden] must beat any display rule */
[hidden] { display: none !important; }

/* CORE SOLUTIONS — 4 numbered capability groups (Ramp) */
.core-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.core-card {
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  padding: clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.core-card:hover { border-color: var(--solar); box-shadow: 0 10px 30px rgba(110, 63, 243, .08); }
.core-card-head { display: flex; align-items: baseline; gap: 14px; }
.core-num { font-size: clamp(28px, 2.6vw, 34px); font-weight: 600; color: var(--solar); letter-spacing: -.02em; line-height: 1; }
.core-key { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--hushed); }
.core-card h3 { font-size: clamp(20px, 1.8vw, 22px); font-weight: 600; }
.core-card > p { color: var(--hushed); line-height: 1.55; }
.core-links { margin-top: auto; padding-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.core-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--black-100); border-radius: 999px;
  padding: 6px 12px; font-size: 13px; font-weight: 500; color: var(--ink);
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease);
}
.core-chip:hover { border-color: var(--solar); color: var(--solar); background: var(--solar-soft); }
.core-chip .i { width: 13px; height: 13px; color: var(--solar); }
@media (max-width: 900px) { .core-grid { grid-template-columns: 1fr; } }

/* FULL SERVICE ECOSYSTEM — 15 cards */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
}
.eco-card {
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  padding: clamp(18px, 2vw, 24px);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), transform .15s var(--ease);
}
.eco-card:hover { border-color: var(--solar); box-shadow: 0 10px 30px rgba(110, 63, 243, .08); transform: translateY(-2px); }
.eco-ic { width: 40px; height: 40px; border-radius: var(--r-lg); background: var(--solar-soft); display: flex; align-items: center; justify-content: center; color: var(--solar); }
.eco-ic .i { width: 20px; height: 20px; }
.eco-card h3 { font-size: clamp(16px, 1.4vw, 18px); font-weight: 600; }
.eco-card p { font-size: clamp(13.5px, 1.15vw, 15px); line-height: 1.5; color: var(--hushed); }
.eco-link { margin-top: auto; padding-top: 4px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--solar); }
.eco-link .i { width: 15px; height: 15px; transition: transform .15s var(--ease); }
.eco-card:hover .eco-link .i { transform: translateX(3px); }
@media (max-width: 900px) { .eco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .eco-grid { grid-template-columns: 1fr; } }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* Mobile tap targets (audit pass) — chips ≥44px, see-all link padded hit area */
@media (max-width: 640px) {
  .core-chip { min-height: 44px; padding: 9px 14px; }
  .blog-see-all { padding: 10px 0; margin: -10px 0; }
}

/* BLOG / INSIGHTS — cards synced from blog.json */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.blog-head > div { max-width: 640px; }
.blog-head h2 { margin-top: 10px; }
.blog-head .body-m { margin-top: 12px; color: var(--hushed); max-width: 560px; }
.blog-see-all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--solar); flex: none; }
.blog-see-all .i { width: 15px; height: 15px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
  margin-top: clamp(28px, 4vw, 40px);
}
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--black-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), transform .15s var(--ease);
}
.blog-card:hover { border-color: var(--solar); box-shadow: 0 14px 34px rgba(110, 63, 243, .12); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16 / 9; border: 0; border-radius: 0; background-color: var(--gray-light); }
.blog-card-img.has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.blog-card-body { display: flex; flex-direction: column; gap: 10px; padding: clamp(16px, 1.8vw, 20px); }
.blog-card-meta { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--solar); }
.blog-card h3 { font-size: clamp(16px, 1.4vw, 18px); font-weight: 600; line-height: 1.35; }
.blog-card-excerpt { font-size: 14px; line-height: 1.55; color: var(--hushed); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* SHOWCASE — full-width media block, default visible, JSON-toggleable */
.showcase-media {
  position: relative;
  aspect-ratio: 16 / 7.5;
  border-radius: var(--r-2xl);
  margin-top: clamp(28px, 4vw, 44px);
  background-color: var(--gray-light);
}
.showcase-media.has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.showcase-media.has-video { background: #111; }
.showcase-media .cms-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) { .showcase-media { aspect-ratio: 4 / 3; } }
.showcase-caption {
  position: absolute; left: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  color: #fff; font-size: 14px; line-height: 1.4;
  background: rgba(12, 10, 8, .55);
  padding: 8px 14px; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* WHY HQ — 3PL vs HQ comparison table */
.why-table {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--black-100);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-top: clamp(28px, 4vw, 44px);
}
.why-row { display: contents; }
.why-row > * {
  padding: 16px 20px;
  border-top: 1px solid var(--black-100);
  font-size: clamp(14px, 1.25vw, 15.5px);
  line-height: 1.5;
}
.why-row--head > * { border-top: 0; background: var(--gray-light); font-weight: 600; }
.why-row > :nth-child(2), .why-row > :nth-child(3) { border-left: 1px solid var(--black-100); }
.why-row > .why-crit { color: var(--hushed); font-weight: 500; }
.why-row > .why-ours { background: var(--solar-soft); color: var(--ink); }
@media (max-width: 900px) {
  .why-table { display: block; }
  .why-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-row > .why-crit { grid-column: 1 / -1; }
  .why-row > :nth-child(2), .why-row > :nth-child(3) { border-left: 0; }
  .why-row > .why-theirs { border-right: 1px solid var(--black-100); }
  .why-row--head .why-crit { display: none; }
}
@media (max-width: 900px) {
  .story-cards { grid-template-columns: 1fr; }
}
.mini-quote { margin-top: 24px; font-size: clamp(15.5px, 1.4vw, 17px); line-height: 1.6; font-weight: 500; color: var(--ink); }
.mini-quote-attrib { margin-top: 12px; font-size: clamp(13px, 1.1vw, 14.5px); color: var(--hushed); }
.mini-quote-attrib strong { color: var(--ink); font-weight: 600; margin-right: 6px; }

/* --- Proof / testimonial band (Ramp sec-5) --- */
.proof-band { background: var(--solar-soft); border: 1px solid var(--solar-line); border-radius: var(--r-xl); padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 48px); text-align: center; }
.proof-eyebrow { font-size: clamp(12.5px, 1.1vw, 14px); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--solar); }
.proof-title { font-size: clamp(22px, 3vw, 30px); line-height: 1.25; font-weight: 600; max-width: 720px; margin: 18px auto 0; text-wrap: balance; }
.proof-quote { font-size: clamp(20px, 2.6vw, 27px); line-height: 1.5; font-weight: 500; max-width: 760px; margin: 36px auto 0; }
.proof-attrib { margin-top: 18px; font-size: 14px; color: var(--hushed); }
.proof-attrib strong { color: var(--ink); font-weight: 600; }
.proof-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; text-align: left; }
.proof-note { background: #fff; border: 1px solid var(--black-100); border-radius: var(--r-lg); padding: 20px; }
.proof-note blockquote { font-size: clamp(14.5px, 1.25vw, 16px); line-height: 1.6; color: var(--ink); }
.proof-note cite { display: block; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--hushed); }
.proof-note cite strong { display: block; color: var(--ink); font-weight: 600; }

/* --- Perks two-card section (Ramp sec-7) --- */
.perks-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.perk-card { border: 1px solid var(--black-100); border-radius: var(--r-xl); padding: clamp(26px, 3.5vw, 44px); display: flex; flex-direction: column; align-items: flex-start; }
.perk-card .perk-ic { width: 44px; height: 44px; border-radius: 10px; background: var(--solar-soft); color: var(--solar); display: inline-flex; align-items: center; justify-content: center; }
.perk-card .perk-ic .i { width: 22px; height: 22px; }
.perk-card h3 { margin-top: 20px; font-size: clamp(20px, 1.7vw, 22px); }
.perk-card p { margin-top: 10px; font-size: clamp(15px, 1.3vw, 16.5px); line-height: 1.65; color: var(--hushed); }
.perk-card .text-link { margin-top: 18px; }

/* --- CTA strip with email form (Ramp sec-10) --- */
.cta-strip--form { flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.cta-strip--form h2 { font-size: clamp(28px, 3.4vw, 36px); font-weight: 600; letter-spacing: -.01em; max-width: 620px; }
.cta-strip--form p { color: var(--hushed); max-width: 520px; margin: 12px auto 0; font-size: clamp(15px, 1.3vw, 16.5px); }
.cta-strip--form .cta-form { width: 100%; max-width: 480px; }

/* Responsive */
@media (max-width: 960px) {
  .proof-notes { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Solutions series — premium motion & structure pass (14 sections)
   Stagger entrances use animation so hover transitions stay free.
   ============================================================ */

/* ---------- Stagger entrance (animation, hover-safe) ---------- */
html.js .stagger > * { opacity: 0; }
html.js .stagger.in > * {
  opacity: 1;
  animation: stagUp .72s var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}
@keyframes stagUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .stagger > * { opacity: 1; animation: none; }
}

/* ---------- 01 · Hero glow + floating glass cards ---------- */
.sol-hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(44% 48% at 78% 26%, rgba(110, 63, 243, .20), transparent 62%),
    radial-gradient(32% 38% at 10% 72%, rgba(110, 63, 243, .12), transparent 60%);
}
.sol-hero-inner, .sol-hero-media { position: relative; z-index: 2; }
.sol-hero-inner .cta-field:focus-within {
  border-color: var(--solar);
  box-shadow: 0 0 0 4px rgba(110, 63, 243, .10), 0 14px 30px rgba(110, 63, 243, .14);
}
/* ---------- 02 · Logo marquee — grayscale → color on hover ---------- */
.logo-wm {
  filter: grayscale(1);
  transition: filter .4s var(--ease), opacity .4s var(--ease), color .4s var(--ease);
}
.logo-marquee:hover .logo-wm { filter: grayscale(0); opacity: 1; }

/* ---------- 03 · Story cards — hover lift + image zoom ---------- */
.story-card { transition: transform .4s var(--ease); }
.story-card:hover { transform: translateY(-6px); }
.story-card-media { overflow: hidden; border-radius: var(--r-xl); }
.story-card-media .ph { overflow: hidden; transition: transform .8s var(--ease); }
.story-card:hover .story-card-media .ph { transform: scale(1.06); }

/* ---------- 04 · Core — editorial alternating blocks + abstract dashboard ---------- */
.core-blocks {
  display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 32px);
  margin-top: clamp(32px, 4vw, 48px);
}
.core-block {
  display: grid;
  grid-template-areas: "body visual";
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
  border: 1px solid var(--black-100);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.core-block:nth-child(even) {
  grid-template-areas: "visual body";
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.core-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(110, 63, 243, .10);
  border-color: var(--solar-line);
}
.core-block-body { grid-area: body; }
.core-block-body .core-num { font-size: clamp(30px, 2.6vw, 38px); }
.core-block-body .core-key { margin-left: 2px; }
.core-block-body h3 { margin-top: 12px; font-size: clamp(22px, 2.2vw, 26px); font-weight: 600; }
.core-block-body p { margin-top: 14px; color: var(--hushed); line-height: 1.6; max-width: 52ch; }
.core-block .core-links { margin-top: 22px; }
.core-block-visual { grid-area: visual; display: flex; align-items: center; justify-content: center; }
.core-img { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--r-xl); }
.core-img.has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ---------- 05 · Eco — numbered glass cards, gradient glow ---------- */
.eco-card {
  position: relative; overflow: hidden;
  background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.eco-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, rgba(110, 63, 243, .10), transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.eco-card:hover::before { opacity: 1; }
.eco-num {
  position: absolute; top: 12px; right: 16px; z-index: 1;
  font-size: clamp(22px, 2vw, 28px); font-weight: 700;
  color: var(--solar); opacity: .16; letter-spacing: -.02em; line-height: 1;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.eco-card:hover .eco-num { opacity: .38; transform: scale(1.12); }
.eco-ic { position: relative; z-index: 1; }
.eco-card h3, .eco-card p, .eco-link { position: relative; z-index: 1; }
.eco-card:hover { border-color: var(--solar); box-shadow: 0 14px 34px rgba(110, 63, 243, .12); transform: translateY(-4px); }
.eco-card:hover .eco-link .i { transform: translateX(4px); }

/* ---------- 06 · Blog — featured left + side magazine, mobile snap-scroll ---------- */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(18px, 2.4vw, 24px);
  margin-top: clamp(28px, 4vw, 40px);
}
.blog-side { display: flex; flex-direction: column; gap: clamp(18px, 2.4vw, 24px); }
.blog-card-img { transition: transform .7s var(--ease); transform-origin: center; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card--featured { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.blog-card--featured .blog-card-img { aspect-ratio: auto; height: 100%; }
.blog-card--featured .blog-card-body { justify-content: center; gap: 12px; }
.blog-card--featured h3 { font-size: clamp(18px, 1.9vw, 22px); }
.blog-card--featured .blog-card-excerpt { font-size: 14.5px; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--solar); }
.blog-card-link .i { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.blog-card:hover .blog-card-link .i { transform: translateX(3px); }
.blog-card--side { display: grid; grid-template-columns: 132px minmax(0, 1fr); align-items: stretch; }
.blog-card--side .blog-card-img { aspect-ratio: auto; height: 100%; min-height: 92px; }
.blog-card--side .blog-card-body { padding: 14px 16px; gap: 6px; }
.blog-card--side .blog-card-meta { font-size: 11px; }
.blog-card--side h3 { font-size: 15.5px; line-height: 1.4; }
.blog-card--side .blog-card-excerpt {
  font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 900px) {
  .blog-layout {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .blog-side { display: contents; }
  .blog-layout > .blog-card, .blog-layout > .blog-side > .blog-card { scroll-snap-align: start; }
  .blog-card--featured { flex: 0 0 90%; }
  .blog-card--side { flex: 0 0 80%; }
  .blog-card--featured, .blog-card--side { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card-img { aspect-ratio: 16 / 9; height: auto; }
  .blog-card--side .blog-card-img { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
}

/* ---------- 07 · Showcase — dark overlay + status cards + play ctrl ---------- */
.showcase-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(12, 10, 8, .62), rgba(12, 10, 8, .06) 45%, rgba(12, 10, 8, .28));
  transition: opacity .3s var(--ease);
}
.showcase-media.is-engaging::after { opacity: .8; }
.showcase-caption { z-index: 2; }
.showcase-float {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .92);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 16px 38px rgba(12, 10, 8, .22);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.showcase-float b { display: block; font-size: 13px; color: var(--ink); }
.showcase-float small { font-size: 11.5px; color: var(--hushed); }
.showcase-float .i { width: 18px; height: 18px; color: var(--solar); flex: none; }
.showcase-float--tl { top: clamp(14px, 3vw, 26px); left: clamp(14px, 3vw, 26px); }
.showcase-float--br { bottom: clamp(14px, 3vw, 26px); right: clamp(14px, 3vw, 26px); }
.showcase-ctrl {
  position: absolute; z-index: 2; inset: 0; margin: auto;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.showcase-ctrl button, .showcase-ctrl a {
  width: 100%; height: 100%; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .18); color: #fff; border: 0;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.showcase-ctrl button:hover, .showcase-ctrl a:hover, .showcase-ctrl a:focus-visible { transform: scale(1.08); background: rgba(110, 63, 243, .55); }
.showcase-ctrl .i { width: 22px; height: 22px; margin-left: 2px; }
.showcase-ctrl button.is-playing .i { margin-left: 0; }
@media (max-width: 640px) {
  .showcase-float { padding: 8px 10px; }
  .showcase-float b { font-size: 12px; }
  .showcase-float small { font-size: 10.5px; }
  .showcase-float--tl { top: 10px; left: 10px; }
  .showcase-float--br { bottom: 10px; right: 10px; }
  .showcase-ctrl { width: 52px; height: 52px; }
}

/* ---------- 08 · Why — two panels + VS indicator ---------- */
.why-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 44px);
}
.why-panel { border-radius: var(--r-xl); padding: clamp(20px, 2.6vw, 28px); }
.why-panel--theirs { border: 1px dashed var(--gray-medium); }
.why-panel--ours {
  border: 1px solid var(--solar-line);
  background: linear-gradient(180deg, var(--solar-soft), rgba(110, 63, 243, .05));
  box-shadow: 0 18px 44px rgba(110, 63, 243, .10);
}
.why-panel-eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hushed); margin-bottom: 18px;
}
.why-panel--ours .why-panel-eyebrow { color: var(--solar); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px; border-radius: var(--r-lg);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.why-panel--theirs .why-li:hover { background: rgba(12, 10, 8, .03); }
.why-panel--ours .why-li:hover { background: rgba(255, 255, 255, .7); transform: translateX(3px); }
.why-li-q { font-size: 12px; font-weight: 600; letter-spacing: .03em; color: var(--gray-dark); }
.why-li-v { display: flex; align-items: baseline; gap: 8px; font-size: clamp(14px, 1.25vw, 15.5px); line-height: 1.5; color: var(--ink); }
.why-panel--theirs .why-li-v { color: var(--hushed); }
.why-li-v .i { width: 15px; height: 15px; color: var(--solar); flex: none; transform: translateY(2px); }
.why-vs {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--solar); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: .04em;
  box-shadow: 0 10px 28px rgba(110, 63, 243, .35);
  justify-self: center;
}
@media (max-width: 900px) {
  .why-compare { grid-template-columns: 1fr; gap: 16px; }
  .why-vs { width: 44px; height: 44px; }
}

/* ---------- 09 · Steps — connector line + scroll progress ---------- */
.sol-steps { position: relative; }
.sol-steps::before, .sol-steps::after {
  content: ""; position: absolute; left: 10%; right: 10%; top: 43px; height: 2px;
  border-radius: 999px; pointer-events: none;
}
.sol-steps::before { background: var(--black-100); }
.sol-steps::after {
  background: linear-gradient(90deg, var(--solar), #9b7bff);
  transform-origin: left;
  transform: scaleX(var(--prog, 0));
}
.sol-step {
  position: relative; z-index: 2;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.sol-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--black-100);
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.sol-step.is-active { border-color: var(--solar-line); box-shadow: 0 14px 34px rgba(110, 63, 243, .10); transform: translateY(-3px); }
.sol-step.is-active .sol-step-num { background: var(--solar); border-color: var(--solar); color: #fff; box-shadow: 0 8px 20px rgba(110, 63, 243, .32); }
@media (max-width: 900px) { .sol-steps::before, .sol-steps::after { display: none; } }

/* Solutions overview: scroll-pinned, image-led three-step sequence. */
.solution-process {
  position: relative;
  background: var(--off-white);
}
.solution-process-track {
  position: relative;
  height: 280svh;
  --process-progress: 0;
}
.solution-process-sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(92px, 12vh, 124px) 0 clamp(30px, 5vh, 54px);
}
.solution-process-head { margin-bottom: clamp(26px, 4vh, 44px); }
.solution-process-stage {
  position: relative;
  overflow: hidden;
  min-height: clamp(390px, 53vh, 520px);
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: var(--r-2xl);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 24px 64px rgba(12, 10, 8, .16);
}
.solution-process-progress {
  position: absolute;
  top: clamp(28px, 3.5vw, 48px);
  bottom: clamp(28px, 3.5vw, 48px);
  left: clamp(18px, 2vw, 28px);
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}
.solution-process-progress span {
  display: block;
  width: 100%;
  height: calc(var(--process-progress) * 100%);
  border-radius: inherit;
  background: var(--solar);
  transform-origin: top;
}
.solution-process-panels {
  position: relative;
  min-height: clamp(310px, 42vh, 420px);
  padding-left: clamp(14px, 2vw, 28px);
}
.solution-process-panel { position: static; }
.solution-process-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 40%;
  padding: clamp(18px, 2.2vh, 24px) 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  transition: transform .5s var(--ease);
}
.solution-process-panel:first-child .solution-process-copy { border-top: 0; }
.solution-process-copy .sol-step-num {
  border-color: rgba(255, 255, 255, .24);
  background: transparent;
  color: rgba(255, 255, 255, .7);
}
.solution-process-copy h3 {
  color: rgba(255, 255, 255, .68);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}
.solution-process-copy p {
  max-width: 39ch;
  margin-top: 9px;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(14px, 1.15vw, 15.5px);
  line-height: 1.55;
}
.solution-process-panel.is-active .solution-process-copy {
  transform: translateX(6px);
}
.solution-process-panel.is-active .solution-process-copy h3 { color: var(--white); }
.solution-process-panel.is-active .solution-process-copy p { color: rgba(255, 255, 255, .74); }
.solution-process-panel.is-active .solution-process-copy .sol-step-num {
  border-color: var(--solar);
  background: var(--solar);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(110, 63, 243, .34);
}
.solution-process-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 45%;
  overflow: hidden;
  margin: 0;
  border-radius: calc(var(--r-2xl) - 6px);
  background: #24211e;
  opacity: 0;
  clip-path: inset(7% 0 7% 0 round calc(var(--r-2xl) - 6px));
  transform: scale(.985);
  pointer-events: none;
  transition: opacity .42s var(--ease), clip-path .68s var(--ease), transform .68s var(--ease);
}
.solution-process-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: transform 1s var(--ease);
}
.solution-process-panel:nth-child(1) .solution-process-image { background-image: url('/assets/img/placeholder-sourcing.webp'); }
.solution-process-panel:nth-child(2) .solution-process-image { background-image: url('/assets/img/placeholder-warehouse.jpg'); }
.solution-process-panel:nth-child(3) .solution-process-image { background-image: url('/assets/img/placeholder-fulfillment.jpg'); }
.solution-process-media::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(180deg, transparent, rgba(12, 10, 8, .72));
}
.solution-process-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1.45;
}
.solution-process-panel.is-active .solution-process-media {
  opacity: 1;
  clip-path: inset(0 round calc(var(--r-2xl) - 6px));
  transform: scale(1);
  pointer-events: auto;
}
.solution-process-panel.is-active .solution-process-image { transform: scale(1); }

@media (max-width: 900px) {
  .solution-process-track { height: auto; }
  .solution-process-sticky {
    position: relative;
    min-height: 0;
    padding: var(--section-y) 0;
  }
  .solution-process-head { margin-bottom: 34px; }
  .solution-process-stage { padding: 24px; }
  .solution-process-progress { display: none; }
  .solution-process-panels { min-height: 0; padding-left: 0; }
  .solution-process-panel + .solution-process-panel { margin-top: 34px; }
  .solution-process-copy { width: 100%; padding: 0 0 18px; opacity: 1; }
  .solution-process-panel + .solution-process-panel .solution-process-copy { padding-top: 26px; }
  .solution-process-panel.is-active .solution-process-copy { transform: none; }
  .solution-process-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: clamp(230px, 64vw, 360px);
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-process-track { height: auto; }
  .solution-process-sticky { position: relative; min-height: 0; padding: var(--section-y) 0; }
  .solution-process-progress { display: none; }
  .solution-process-panels { min-height: 0; padding-left: 0; }
  .solution-process-panel + .solution-process-panel { margin-top: 34px; }
  .solution-process-copy { width: 100%; opacity: 1; transform: none; }
  .solution-process-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    height: clamp(260px, 46vw, 460px);
    margin-top: 16px;
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

/* ---------- 10 · Stats — hover enlarge + glow ---------- */
.stat-item { transition: transform .3s var(--ease); }
.stat-item:hover { transform: translateY(-3px); }
.stat-num { transition: transform .3s var(--ease), text-shadow .3s var(--ease); }
.stat-item:hover .stat-num { transform: scale(1.06); text-shadow: 0 10px 30px rgba(110, 63, 243, .22); }

/* ---------- 11 · Proof — carousel slides + arrows + progress dots ---------- */
.proof-band { position: relative; overflow: hidden; }
.proof-carousel { overflow: hidden; margin-top: 36px; }
.proof-slides { display: flex; transition: transform .6s var(--ease); }
.proof-slide { min-width: 100%; flex: none; }
.proof-slide .proof-quote { margin-top: 0; }
.proof-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.proof-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--solar-line); background: #fff; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.proof-arrow:hover { background: var(--solar); border-color: var(--solar); color: #fff; }
.proof-arrow .i { width: 17px; height: 17px; }
.proof-arrow--prev .i { transform: rotate(180deg); }
.proof-dots { display: flex; gap: 8px; align-items: center; }
.proof-dot {
  width: 8px; height: 8px; border-radius: 999px; border: 0; cursor: pointer; padding: 0;
  background: var(--solar-line);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.proof-dot.is-active { background: var(--solar); transform: scaleX(2.75); }
.proof-dot:hover { background: var(--solar); }
@media (max-width: 640px) { .proof-arrow { width: 40px; height: 40px; } }

/* ---------- 12 · Case study — featured story ---------- */
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border: 1px solid var(--black-100);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3.6vw, 44px);
  background: var(--white);
  overflow: hidden;
}
.case-media { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.case-media .ph { aspect-ratio: 4 / 3; border: 0; border-radius: 0; }
.case-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(12, 10, 8, .6); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.case-body .eyebrow { color: var(--solar); }
.case-body h2 { margin-top: 14px; font-size: clamp(26px, 3vw, 36px); line-height: 1.15; }
.case-metric { margin-top: 20px; display: flex; align-items: baseline; gap: 14px; }
.case-metric span { font-size: clamp(34px, 3.6vw, 44px); font-weight: 700; color: var(--solar); letter-spacing: -.02em; line-height: 1; }
.case-metric small { font-size: 14px; color: var(--hushed); max-width: 30ch; }
.case-body .body-m { margin-top: 16px; color: var(--hushed); line-height: 1.65; max-width: 56ch; }
.case-body .check-list { margin-top: 18px; }
.case-body .text-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--solar); }
.case-body .text-link .i { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.case-body .text-link:hover .i { transform: translateX(3px); }
@media (max-width: 900px) { .case-study { grid-template-columns: 1fr; } }

/* ---------- 13 · FAQ — hover highlight + brand accent on open ---------- */
.faq-title { text-align: center; }
.faq-item { transition: background .25s var(--ease), border-color .25s var(--ease); }
.faq-item:hover { background: var(--solar-soft); }
.faq-item.open { background: var(--solar-soft); border-bottom-color: var(--solar-line); }
.faq-item.open .faq-q { color: var(--solar); }
.faq-item.open .faq-q .i { color: var(--solar); }

/* ---------- 14 · CTA — dark panel, radial glow, floating icons, magnetic ---------- */
.cta-strip--dark {
  position: relative;
  justify-content: center;
  background-color: #0c0a08;
  background-image:
    radial-gradient(120% 150% at 50% -20%, rgba(110, 63, 243, .38), transparent 58%),
    radial-gradient(80% 100% at 100% 112%, rgba(110, 63, 243, .20), transparent 55%);
  color: #fff;
  overflow: hidden;
}
.cta-strip--dark h2 { color: #fff; max-width: 640px; }
.cta-strip--dark p { color: rgba(255, 255, 255, .62); }
.cta-copy { position: relative; z-index: 2; }
.cta-glow {
  position: absolute; z-index: 1; pointer-events: none;
  inset: auto 50% -22% auto;
  width: 62%; height: 62%;
  transform: translate(50%, 0);
  background: radial-gradient(closest-side, rgba(110, 63, 243, .42), transparent 70%);
}
.cta-float {
  position: absolute; z-index: 1; pointer-events: none;
  color: rgba(255, 255, 255, .16);
  animation: ctaFloat 9s var(--ease) infinite;
}
.cta-float .i { width: 26px; height: 26px; }
.cta-float--1 { top: 16%; left: 7%; transform: rotate(-8deg); }
.cta-float--2 { top: 64%; right: 9%; transform: rotate(6deg); animation-delay: -3s; }
.cta-float--3 { top: 30%; right: 21%; transform: rotate(12deg); animation-delay: -6s; }
@keyframes ctaFloat {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -10px; }
}
.cta-strip--dark .cta-form { position: relative; z-index: 2; }
.cta-strip--dark .cta-field {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
}
.cta-strip--dark .cta-field:focus-within {
  border-color: rgba(110, 63, 243, .9);
  box-shadow: 0 0 0 4px rgba(110, 63, 243, .18);
}
.cta-strip--dark .cta-field input { color: #fff; }
.cta-strip--dark .cta-field input::placeholder { color: rgba(255, 255, 255, .5); }
.cta-strip--dark .btn--primary { box-shadow: 0 10px 30px rgba(110, 63, 243, .4); }
.cta-strip--dark [data-magnetic] {
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
@media (max-width: 640px) {
  .cta-float { display: none; }
}

/* --------------------------------------------------------------------------
   Get a Quote — supply-chain path builder
   -------------------------------------------------------------------------- */
.quote-body { background: #ece9e6; }
.quote-nav .announce-inner { justify-content: center; }
.quote-nav-actions { display: flex; align-items: center; gap: 14px; }
.quote-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  line-height: 1;
}
.quote-nav-link:hover { color: var(--solar); border-color: var(--solar); }

.quote-intake { border-bottom: 1px solid var(--gray-medium); }
.quote-glow {
  position: absolute;
  z-index: 0;
  width: 760px;
  height: 760px;
  left: -310px;
  top: 70px;
  border-radius: 50%;
  background: rgba(110, 63, 243, .12);
  filter: blur(110px);
  pointer-events: none;
}
.quote-intake-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(72px, 8vw, 120px);
}
.quote-intro {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
  padding-top: 8px;
}
.quote-intro .breadcrumb { margin-bottom: 54px; }
.quote-intro h1 {
  max-width: 700px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .99;
  letter-spacing: -.025em;
}
.quote-intro > .body-xl {
  max-width: 600px;
  margin-top: 28px;
  color: var(--hushed);
  line-height: 1.45;
}
.quote-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  max-width: 660px;
}
.quote-route span {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 54px;
  font-size: 11px;
  color: var(--hushed);
}
.quote-route span .i { width: 22px; height: 22px; color: var(--ink); }
.quote-route i { height: 1px; background: var(--gray-medium); }
.quote-promises { display: grid; gap: 12px; margin-top: 38px; max-width: 600px; }
.quote-promises li { display: flex; gap: 12px; color: var(--hushed); }
.quote-promises .i { width: 18px; height: 18px; margin-top: 2px; color: var(--solar); }

.quote-form-card {
  scroll-margin-top: calc(var(--nav-h) + 16px);
  background: var(--white);
  border: 1px solid rgba(12, 10, 8, .14);
  border-radius: var(--r-2xl);
  box-shadow: 0 24px 64px rgba(12, 10, 8, .12), 0 4px 12px rgba(12, 10, 8, .05);
  padding: clamp(26px, 3.2vw, 48px);
}
.quote-form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 30px;
}
.quote-form-head h2 { font-size: clamp(28px, 2.7vw, 40px); line-height: 1.08; }
.quote-form-head > span { flex: none; font-size: 12px; color: var(--hushed); }
.quote-error,
.quote-services-error {
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid #b34848;
  border-radius: var(--r-md);
  background: #fff1f1;
  color: #762828;
  font-size: 14px;
}
.quote-services-error { margin: 14px 0 0; }
.quote-fieldset { border: 0; border-top: 1px solid var(--gray-medium); padding: 34px 0 6px; }
.quote-fieldset + .quote-fieldset { margin-top: 32px; }
.quote-fieldset legend {
  padding-right: 18px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}
.quote-field-help { margin: 8px 0 20px; font-size: 14px; color: var(--hushed); }
.quote-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.quote-path-grid label { min-width: 0; }
.quote-path-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.quote-path-card {
  display: grid;
  align-content: start;
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--r-lg);
  background: #fbfaf9;
  cursor: pointer;
  transition: border-color .2s, background-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.quote-path-card .i { width: 22px; height: 22px; margin-bottom: 19px; color: var(--hushed); }
.quote-path-card b { font-size: 14px; font-weight: 500; }
.quote-path-card small { margin-top: 3px; font-size: 11px; line-height: 1.3; color: var(--hushed); }
.quote-path-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.quote-path-input:focus-visible + .quote-path-card { outline: 2px solid var(--solar); outline-offset: 2px; }
.quote-path-input:checked + .quote-path-card {
  border-color: var(--solar);
  background: var(--solar-soft);
  box-shadow: 0 8px 22px rgba(110, 63, 243, .12);
}
.quote-path-input:checked + .quote-path-card .i { color: var(--solar); }
.quote-path-wide { grid-column: 1 / -1; }
.quote-path-wide .quote-path-card {
  grid-template-columns: auto auto 1fr;
  align-items: center;
  align-content: center;
  gap: 12px;
  min-height: 68px;
}
.quote-path-wide .quote-path-card .i { margin: 0; }
.quote-path-wide .quote-path-card small { margin: 0; justify-self: end; }

.quote-fields { display: grid; gap: 18px; }
.quote-fields--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quote-control { display: grid; gap: 8px; min-width: 0; }
.quote-control--block { margin-top: 22px; }
.quote-control > span { font-size: 13px; font-weight: 500; }
.quote-control em,
.quote-consent em { color: var(--solar); font-style: normal; }
.quote-control input,
.quote-control select,
.quote-control textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #aaa6a3;
  border-radius: var(--r-md);
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .18s, box-shadow .18s;
}
.quote-control textarea { min-height: 138px; resize: vertical; line-height: 1.5; }
.quote-control select { appearance: auto; }
.quote-control input::placeholder,
.quote-control textarea::placeholder { color: #716d6a; }
.quote-control input:focus,
.quote-control select:focus,
.quote-control textarea:focus {
  outline: 0;
  border-color: var(--solar);
  box-shadow: 0 0 0 3px rgba(110, 63, 243, .15);
}
.quote-check-row { display: flex; flex-wrap: wrap; gap: 8px; }
.quote-check-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--gray-medium);
  border-radius: 999px;
  background: #fbfaf9;
  font-size: 13px;
  cursor: pointer;
}
.quote-control .quote-check-row input[type="checkbox"] {
  appearance: auto;
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  accent-color: var(--solar);
}
.quote-control .quote-check-row input[type="checkbox"]:focus { box-shadow: none; }
.quote-check-row label:has(input:checked) {
  border-color: var(--solar);
  background: var(--solar-soft);
  color: var(--solar-hover);
}
.quote-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 30px 0 18px;
  font-size: 13px;
  color: var(--hushed);
}
.quote-consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--solar); }
.quote-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.quote-submit { width: 100%; min-height: 56px; }
.quote-submit:disabled { cursor: wait; opacity: .72; }
.quote-form-note { display: flex; justify-content: center; gap: 7px; margin-top: 13px; font-size: 12px; color: var(--hushed); }
.quote-form-note .i { width: 14px; height: 14px; }

.quote-next { background: var(--white); }
.quote-next-head { max-width: 760px; margin-bottom: 54px; }
.quote-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--gray-medium); }
.quote-next-grid li { min-height: 230px; padding: 28px 36px 12px 0; border-right: 1px solid var(--gray-medium); }
.quote-next-grid li + li { padding-left: 36px; }
.quote-next-grid li:last-child { border-right: 0; }
.quote-next-grid li > span { font-variant-numeric: tabular-nums; color: var(--solar); font-size: 13px; }
.quote-next-grid h3 { margin-top: 50px; font-size: 20px; }
.quote-next-grid p { max-width: 38ch; margin-top: 10px; color: var(--hushed); }

.quote-faq {
  border-top: 1px solid var(--gray-medium);
  background: var(--gray-light);
}
.quote-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: start;
}
.quote-faq-copy { max-width: 470px; }
.quote-faq-copy h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.quote-faq-copy p { margin-top: 24px; color: var(--hushed); line-height: 1.55; }
.quote-faq-list { max-width: none; margin: 0; }
.quote-faq .faq-q { gap: 30px; padding: 25px 0; font-size: clamp(17px, 1.6vw, 20px); }
.quote-faq .faq-a p { max-width: 720px; }
.quote-faq .faq-item.open .faq-a p { padding-bottom: 26px; }

.quote-footer { padding: 32px 0; background: var(--black); color: rgba(255,255,255,.7); }
.quote-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 13px; }
.quote-footer .logo-mark { color: var(--white); }
.quote-footer .logo-sub { color: rgba(255,255,255,.5); }
.quote-footer .brand-logo-img { width: 56px; height: 56px; content: url("/assets/img/brand/hq-supply-chain-logo-dark.webp"); }

.quote-thanks { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; border: 0; }
.quote-thanks-inner { position: relative; z-index: 2; max-width: 760px; text-align: center; padding-top: 88px; padding-bottom: 88px; }
.quote-thanks-check {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--solar);
  color: var(--white);
}
.quote-thanks-check .i { width: 28px; height: 28px; }
.quote-thanks h1 { font-size: clamp(46px, 6vw, 78px); line-height: .98; letter-spacing: -.025em; }
.quote-thanks p { max-width: 620px; margin: 28px auto 0; color: var(--hushed); }
.quote-thanks-actions { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 38px; }

@media (max-width: 1040px) {
  .quote-intake-grid { grid-template-columns: 1fr; }
  .quote-intro { position: relative; top: auto; }
  .quote-intro .breadcrumb { margin-bottom: 42px; }
  .quote-form-card { max-width: 820px; width: 100%; }
}
@media (max-width: 680px) {
  .quote-nav .nav-login { display: none; }
  .quote-nav-actions { gap: 0; }
  .quote-intake-grid { padding-top: 46px; }
  .quote-intro h1 { font-size: clamp(42px, 12vw, 58px); }
  .quote-route { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .quote-route i { display: none; }
  .quote-route span { min-width: 0; font-size: 10px; }
  .quote-promises { margin-bottom: 12px; }
  .quote-form-card { padding: 24px 18px; border-radius: var(--r-xl); }
  .quote-form-head { align-items: flex-start; padding-bottom: 24px; }
  .quote-form-head > span { margin-top: 5px; }
  .quote-path-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-path-wide { grid-column: 1 / -1; }
  .quote-path-card { min-height: 116px; }
  .quote-fields--two { grid-template-columns: 1fr; }
  .quote-next-grid { grid-template-columns: 1fr; }
  .quote-next-grid li,
  .quote-next-grid li + li { min-height: 0; padding: 26px 0 34px; border-right: 0; border-bottom: 1px solid var(--gray-medium); }
  .quote-next-grid li:last-child { border-bottom: 0; }
  .quote-next-grid h3 { margin-top: 28px; }
  .quote-faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .quote-faq-copy { max-width: 560px; }
  .quote-faq .faq-q { gap: 18px; padding: 22px 0; }
  .quote-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .quote-footer .brand-logo-img { width: 52px; height: 52px; }
  .quote-thanks-actions { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   Network — interactive order-path compiler
   -------------------------------------------------------------------------- */
.network-page { --network-violet: #6e3ff3; }
.network-page .nav-link.active { color: var(--solar); }
.network-page .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 2px;
  background: var(--solar);
}
.network-hero {
  min-height: calc(100svh - var(--nav-h) - 72px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 3.6vw, 52px) 0 clamp(30px, 3.8vw, 56px);
  overflow: hidden;
}
.network-hero-grid {
  display: grid;
  grid-template-columns: minmax(470px, .82fr) minmax(690px, 1.18fr);
  gap: clamp(18px, 2.4vw, 40px);
  align-items: center;
}
.network-hero-copy { position: relative; z-index: 2; }
.network-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(66px, 5.45vw, 88px);
  line-height: .89;
  letter-spacing: -.052em;
  font-weight: 600;
}
.network-hero-copy > p {
  max-width: 550px;
  margin-top: 32px;
  color: var(--hushed);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
}
.network-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.network-compiler {
  position: relative;
  min-width: 0;
  margin-right: calc(var(--gutter) * -.55);
  transform: perspective(1100px) rotateY(var(--network-tilt-x, 0deg)) rotateX(var(--network-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .35s var(--ease);
}
.network-scenario-label {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 0;
  color: var(--hushed);
  font-size: var(--type-meta);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.network-mode {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 4px;
  border: 1px solid rgba(12,10,8,.16);
  border-radius: 999px;
  background: rgba(244,242,240,.92);
}
.network-mode span { padding: 0 7px 0 10px; font-size: 11px; color: var(--hushed); text-transform: uppercase; letter-spacing: .08em; }
.network-mode button { min-width: 42px; height: 30px; padding: 0 10px; border-radius: 999px; font-size: 12px; transition: background .2s, color .2s; }
.network-mode button.is-active { color: #fff; background: var(--solar); }
.network-stage {
  position: relative;
  aspect-ratio: 1.42;
  min-height: 560px;
  overflow: visible;
  background-image: radial-gradient(circle, rgba(110,63,243,.15) 1px, transparent 1.2px);
  background-size: 20px 20px;
}
.network-stage::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 31%;
  top: 13%;
  border-radius: 50%;
  background: rgba(110,63,243,.08);
  filter: blur(52px);
  pointer-events: none;
}
.network-route { width: 100%; height: 100%; overflow: visible; }
.network-grid-lines { fill: none; stroke: rgba(12,10,8,.08); stroke-width: 1; }
.network-grid-lines path { vector-effect: non-scaling-stroke; }
.network-route-base,
.network-route-live,
.network-route-ghost { fill: none; vector-effect: non-scaling-stroke; }
.network-route-ghost { stroke: rgba(110,63,243,.16); stroke-width: 1.4; stroke-dasharray: 2 7; }
.network-route-ghost--top { transform: translateY(-4px); }
.network-route-ghost--bottom { transform: translateY(4px); }
.network-route-base { stroke: rgba(110,63,243,.22); stroke-width: 9; filter: blur(4px); }
.network-route-live {
  stroke: var(--solar);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  filter: drop-shadow(0 0 7px rgba(110,63,243,.58));
  animation: networkFlow 1.6s linear infinite;
}
@keyframes networkFlow { to { stroke-dashoffset: -40; } }
.network-parcel {
  filter: drop-shadow(0 10px 14px rgba(66,35,151,.26));
  transform-box: fill-box;
  transform-origin: center;
  animation: parcelHover 1.8s ease-in-out infinite alternate;
}
@keyframes parcelHover { to { transform: translateY(-5px) rotate(2deg); } }
.network-node circle:first-child { fill: #f9f8f6; stroke: var(--solar); stroke-width: 2; }
.network-node circle:nth-child(2) { fill: var(--solar); }
.network-node text { fill: var(--ink); font: 600 14px var(--font); letter-spacing: .06em; }
.network-node--us,
.network-node--eu { opacity: .3; transition: opacity .35s; }
.network-compiler[data-market="us"] .network-node--us,
.network-compiler[data-market="eu"] .network-node--eu { opacity: 1; }
.network-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 154px;
  padding: 12px 14px;
  border: 1px solid rgba(12,10,8,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 11px 30px rgba(12,10,8,.1);
  transition: transform .4s var(--ease), opacity .3s;
}
.network-float .i { width: 20px; height: 20px; color: var(--solar); }
.network-float span { display: grid; }
.network-float small { color: var(--solar); font-size: var(--type-meta); }
.network-float strong { font-size: 12px; font-weight: 500; }
.network-float--source { left: 1%; bottom: 12%; }
.network-float--check { left: 25%; bottom: 0; }
.network-float--position { left: 48%; top: 11%; }
.network-float--fulfill { left: 59%; bottom: 7%; }
.network-float--deliver { right: 0; top: 30%; }
.network-compiler:hover .network-float--source { transform: translate3d(-5px,-4px,20px); }
.network-compiler:hover .network-float--check { transform: translate3d(0,-8px,28px); }
.network-compiler:hover .network-float--position { transform: translate3d(6px,-5px,24px); }
.network-compiler:hover .network-float--fulfill { transform: translate3d(3px,-7px,22px); }
.network-compiler:hover .network-float--deliver { transform: translate3d(7px,-3px,26px); }
.network-ledger {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 2%;
  width: 184px;
  padding: 18px 20px;
  border: 1px solid rgba(12,10,8,.14);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(12,10,8,.12);
}
.network-ledger div { position: relative; display: flex; align-items: center; gap: 10px; min-height: 31px; color: var(--hushed); font-size: 11px; }
.network-ledger i { position: relative; z-index: 1; width: 8px; height: 8px; border: 1px solid var(--gray-medium); border-radius: 50%; background: #fff; }
.network-ledger i::after { content: ""; position: absolute; width: 1px; height: 23px; left: 3px; top: 8px; background: var(--gray-medium); }
.network-ledger div:last-child i::after { display: none; }
.network-ledger i.is-live { border-color: var(--solar); background: var(--solar); box-shadow: 0 0 0 4px var(--solar-soft); }
.network-ticker { overflow: hidden; border-top: 1px solid var(--gray-medium); border-bottom: 1px solid var(--gray-medium); background: #fff; }
.network-ticker > div { display: flex; align-items: center; justify-content: space-between; min-width: 820px; max-width: var(--container); height: 72px; margin: auto; padding: 0 var(--gutter); text-transform: uppercase; letter-spacing: .09em; font-size: 12px; font-weight: 500; }
.network-ticker .i { width: 17px; height: 17px; color: var(--solar); }

.network-intro { overflow: hidden; background: #fff; }
.network-display { max-width: 1250px; font-size: clamp(60px, 9.3vw, 148px); line-height: .88; letter-spacing: -.055em; }
.network-intro-foot { display: flex; justify-content: flex-end; align-items: flex-end; gap: 48px; margin-top: clamp(54px, 8vw, 110px); }
.network-intro-foot p { max-width: 590px; color: var(--hushed); font-size: clamp(17px,1.7vw,23px); line-height: 1.48; }
.network-intro-foot .text-link { margin-bottom: 6px; }
.network-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(12,10,8,.16);
  border-radius: var(--r-xl);
  background-color: #e7e3df;
  background-image:
    linear-gradient(rgba(12,10,8,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,10,8,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center;
  isolation: isolate;
}
.network-media::before,
.network-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(12,10,8,.12);
}
.network-media::before { width: 1px; height: 100%; left: 50%; top: 0; }
.network-media::after { width: 100%; height: 1px; left: 0; top: 50%; }
.network-media-mark { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(12,10,8,.2); border-radius: 50%; background: rgba(255,255,255,.56); color: var(--solar); }
.network-media-mark .i { width: 26px; height: 26px; }
.network-media figcaption { position: absolute; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; font-size: 12px; }
.network-media figcaption span { font-weight: 500; }
.network-media figcaption small { color: var(--hushed); font-size: 11px; }
.network-media.has-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.network-media.has-bg > * { display: none; }
.network-media.has-video { background: #111; }
.network-media .cms-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.network-media--intro { width: 100%; min-height: 520px; margin-top: clamp(64px, 8vw, 112px); aspect-ratio: 16 / 7; }

.network-workflow { padding: clamp(100px, 12vw, 180px) 0; background: #e9e6e3; }
.network-workflow-layout { display: grid; grid-template-columns: minmax(360px,.78fr) minmax(520px,1.22fr); gap: clamp(60px,8vw,130px); align-items: start; }
.network-workflow-copy h2 { max-width: 650px; font-size: clamp(48px,5.8vw,84px); line-height: .95; letter-spacing: -.04em; }
.network-workflow-copy > p { max-width: 500px; margin-top: 26px; color: var(--hushed); font-size: 17px; }
.network-steps { margin-top: 72px; border-top: 1px solid rgba(12,10,8,.18); }
.network-steps li { border-bottom: 1px solid rgba(12,10,8,.18); }
.network-steps button { width: 100%; display: grid; grid-template-columns: 42px 1fr; gap: 4px 16px; padding: 22px 0; text-align: left; }
.network-steps span { grid-row: 1 / span 2; color: var(--hushed); font-size: 12px; }
.network-steps strong { font-size: 18px; font-weight: 400; }
.network-steps small { max-width: 470px; max-height: 0; overflow: hidden; color: var(--hushed); font-size: 13px; line-height: 1.5; opacity: 0; transform: translateY(-4px); transition: opacity .3s, transform .3s var(--ease); }
.network-steps li.is-active strong { color: var(--solar-hover); }
.network-steps li.is-active small { max-height: 70px; opacity: 1; transform: translateY(0); padding-top: 6px; }
.network-workflow-stage {
  position: sticky;
  top: calc(var(--nav-h) + 42px);
  min-height: 640px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(12,10,8,.15);
  border-radius: 18px;
  background: #f8f7f5;
  box-shadow: 0 22px 70px rgba(12,10,8,.1);
}
.workflow-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--gray-medium); font-size: 12px; }
.workflow-head span { color: var(--hushed); text-transform: uppercase; letter-spacing: .1em; }
.workflow-head strong { font-weight: 500; color: var(--solar); }
.workflow-track { position: absolute; top: 114px; bottom: 136px; left: 59px; width: 1px; background: var(--gray-medium); }
.workflow-track::before { content: ""; position: absolute; top: 0; left: 0; width: 1px; height: 100%; background: var(--solar); transform: scaleY(var(--workflow-progress,.25)); transform-origin: top; transition: transform .55s var(--ease); }
.workflow-track i { position: absolute; left: -6px; width: 13px; height: 13px; border: 1px solid var(--gray-medium); border-radius: 50%; background: #f8f7f5; }
.workflow-track i:nth-child(1) { top: 0; }.workflow-track i:nth-child(2) { top: 33.3%; }.workflow-track i:nth-child(3) { top: 66.6%; }.workflow-track i:nth-child(4) { bottom: 0; }
.workflow-scenes { position: absolute; inset: 84px 28px 125px 92px; }
.workflow-scene { position: absolute; inset: 0; display: grid; align-content: center; padding: clamp(28px,4vw,58px); overflow: hidden; border: 1px solid var(--gray-medium); background: #fff; opacity: 0; transform: translateY(28px) scale(.97); pointer-events: none; transition: opacity .4s, transform .55s var(--ease); }
.workflow-scene::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.2) 100%); pointer-events: none; }
.workflow-scene::after { content: ""; position: absolute; z-index: 1; right: -1px; bottom: -1px; width: 42%; height: 42%; border-left: 1px solid var(--solar-line); border-top: 1px solid var(--solar-line); background-image: radial-gradient(circle, rgba(110,63,243,.18) 1px, transparent 1.2px); background-size: 18px 18px; pointer-events: none; }
.workflow-scene-media { position: absolute; z-index: 0; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; filter: saturate(.82) contrast(.96); }
.workflow-scene-copy { position: relative; z-index: 2; max-width: 560px; }
.workflow-scene.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.workflow-scene .i { width: 44px; height: 44px; margin-bottom: 60px; color: var(--solar); }
.workflow-scene span { color: var(--hushed); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.workflow-scene b { max-width: 500px; margin-top: 10px; font-size: clamp(34px,4vw,58px); line-height: 1; font-weight: 400; letter-spacing: -.035em; }
.workflow-scene small { margin-top: 16px; color: var(--hushed); font-size: 14px; }
.workflow-order { position: absolute; left: 92px; right: 28px; bottom: 28px; display: flex; align-items: center; gap: 13px; height: 70px; padding: 0 16px; border: 1px solid var(--gray-medium); background: #fff; box-shadow: 0 8px 26px rgba(12,10,8,.08); }
.workflow-order > .i { width: 25px; height: 25px; color: var(--solar); }
.workflow-order span { display: grid; }
.workflow-order small { font-size: var(--type-meta); color: var(--hushed); text-transform: uppercase; letter-spacing: .08em; }
.workflow-order strong { font-size: 13px; font-weight: 500; }
.workflow-order em { margin-left: auto; padding: 4px 8px; border-radius: 999px; background: var(--solar-soft); color: var(--solar-hover); font-size: var(--type-meta); font-style: normal; text-transform: uppercase; }

.network-proof { background: var(--black); color: #fff; border-radius: 26px; }
.network-proof-head { max-width: 960px; margin-inline: auto; text-align: center; }
.network-proof h2 { font-size: clamp(58px,7.5vw,110px); line-height: .9; letter-spacing: -.045em; }
.network-proof-head p { max-width: 620px; margin: 28px auto 0; color: rgba(255,255,255,.58); font-size: 17px; line-height: 1.55; }
.network-proof-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: clamp(64px,7vw,96px); }
.network-proof-grid > div { position: relative; isolation: isolate; display: flex; min-height: 280px; flex-direction: column; overflow: hidden; padding: 32px; border-radius: var(--r-xl); background: #ebe4dd; color: var(--ink); }
.network-proof-grid > div::after { content: ""; position: absolute; z-index: -1; width: 86%; aspect-ratio: 1; right: -28%; bottom: -100%; border-radius: 50%; background: rgba(110,63,243,.52); filter: blur(54px); }
.network-proof-grid > div:nth-child(2)::after { right: auto; left: -28%; }
.network-proof-grid small { color: var(--hushed); font-size: 14px; }
.network-proof-grid strong { display: block; margin-top: auto; color: var(--ink); font-size: clamp(72px,8vw,112px); line-height: .82; font-weight: 400; letter-spacing: -.04em; }
.network-proof-grid span { display: block; max-width: 330px; margin-top: 28px; color: var(--hushed); }
.network-proof-note { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.44); font-size: 12px; }
.network-media--proof { min-height: 360px; margin-top: clamp(68px,8vw,112px); aspect-ratio: 3 / 1; border-color: rgba(255,255,255,.2); background-color: #2b2928; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); color: #fff; }
.network-media--proof::before,
.network-media--proof::after { background: rgba(255,255,255,.16); }
.network-media--proof .network-media-mark { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #aa8bff; }
.network-media--proof figcaption small { color: rgba(255,255,255,.5); }

.network-regions { background: #fff; }
.network-regions-head h2 { margin: 0; font-size: clamp(52px,6vw,88px); line-height: .94; letter-spacing: -.04em; }
.network-regions-head > p { max-width: 620px; font-size: 18px; line-height: 1.55; }
.network-region-stories { display: grid; gap: clamp(96px,11vw,168px); margin-top: clamp(72px,9vw,128px); }
.network-region-story { display: grid; grid-template-columns: minmax(0,7fr) minmax(300px,4fr); gap: clamp(48px,7vw,112px); align-items: center; }
.network-region-story .network-region-copy { grid-column: 2; grid-row: 1; }
.network-region-story .network-media { grid-column: 1; grid-row: 1; }
.network-region-story--reverse { grid-template-columns: minmax(300px,4fr) minmax(0,7fr); }
.network-region-story--reverse .network-region-copy { grid-column: 1; }
.network-region-story--reverse .network-media { grid-column: 2; }
.network-region-copy h3 { max-width: 520px; font-size: clamp(36px,4vw,58px); line-height: 1; letter-spacing: -.035em; }
.network-region-copy > p { max-width: 540px; margin-top: 24px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.network-region-copy ul { display: grid; gap: 12px; margin-top: 34px; }
.network-region-copy li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.network-region-copy li .i { color: var(--solar); }
.network-media--region { width: 100%; aspect-ratio: 4 / 3; min-height: 430px; }

.network-boundaries { background: #e9e6e3; }
.network-boundaries-grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(340px,5fr); gap: clamp(52px,7vw,112px); align-items: center; }
.network-boundaries h2 { font-size: clamp(52px,6vw,92px); line-height: .92; letter-spacing: -.045em; }
.network-boundaries-copy > p { max-width: 560px; margin-top: 28px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.network-boundary-lines { margin-top: 48px; border-top: 1px solid rgba(12,10,8,.2); }
.network-boundary-lines > div { display: grid; gap: 10px; padding: 22px 0; border-bottom: 1px solid rgba(12,10,8,.2); }
.network-boundary-lines span { font-size: 13px; color: var(--solar-hover); }
.network-boundary-lines p { color: var(--hushed); }
.network-media--boundaries { width: 100%; min-height: 560px; aspect-ratio: 4 / 5; }

.network-faq { background: var(--gray-light); }
.network-cta { position: relative; overflow: hidden; background: #fff; text-align: center; }
.network-cta::before { content: ""; position: absolute; width: 520px; height: 520px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid var(--solar-line); border-radius: 50%; box-shadow: 0 0 0 90px rgba(110,63,243,.035), 0 0 0 180px rgba(110,63,243,.02); }
.network-cta-inner { position: relative; z-index: 1; }
.network-cta p { color: var(--hushed); }
.network-cta h2 { max-width: 980px; margin: 16px auto 38px; font-size: clamp(52px,7.5vw,112px); line-height: .92; letter-spacing: -.05em; }
.network-cta .btn { min-width: 240px; }

@media (max-width: 1120px) {
  .network-hero-grid { grid-template-columns: 1fr; }
  .network-hero-copy { max-width: 820px; }
  .network-compiler { max-width: 920px; width: 100%; }
  .network-workflow-layout { grid-template-columns: .85fr 1.15fr; gap: 48px; }
}
@media (max-width: 900px) {
  .network-workflow-layout,
  .network-boundaries-grid { grid-template-columns: 1fr; }
  .network-workflow-stage { position: relative; top: auto; margin-top: 20px; }
  .network-region-story,
  .network-region-story--reverse { grid-template-columns: 1fr; gap: 36px; }
  .network-region-story .network-media,
  .network-region-story--reverse .network-media { grid-column: 1; grid-row: 1; }
  .network-region-story .network-region-copy,
  .network-region-story--reverse .network-region-copy { grid-column: 1; grid-row: 2; }
  .network-media--boundaries { min-height: 460px; aspect-ratio: 16 / 10; }
}
@media (max-width: 680px) {
  .network-page .nav-link.active::after { display: none; }
  .network-hero { padding-top: 48px; }
  .network-hero-copy h1 { font-size: clamp(52px,15vw,72px); }
  .network-hero-copy > p { margin-top: 24px; font-size: 17px; }
  .network-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .network-scenario-label { top: 5px; left: 4px; }
  .network-stage { min-height: 500px; aspect-ratio: auto; overflow: hidden; }
  .network-mode { top: 14px; right: 14px; }
  .network-route { position: absolute; top: 36px; left: -24%; width: 150%; height: 360px; }
  .network-float { min-width: 145px; padding: 10px; }
  .network-float--source { left: 4%; bottom: 10%; }
  .network-float--check,
  .network-float--fulfill { display: none; }
  .network-float--position { left: auto; right: 4%; top: 29%; }
  .network-float--deliver { right: 4%; bottom: 3%; top: auto; }
  .network-ledger { display: none; }
  .network-ticker > div { height: 62px; min-width: 700px; animation: networkTicker 16s linear infinite; }
  @keyframes networkTicker { from { transform: translateX(0); } to { transform: translateX(-32%); } }
  .network-display { font-size: clamp(54px,18vw,82px); }
  .network-intro-foot { align-items: flex-start; flex-direction: column; margin-top: 52px; }
  .network-media--intro { min-height: 0; margin-top: 52px; aspect-ratio: 1 / 1; }
  .network-media figcaption { left: 16px; right: 16px; bottom: 15px; align-items: flex-start; flex-direction: column; gap: 3px; }
  .network-workflow { padding: 90px 0; }
  .network-workflow-copy h2 { font-size: 50px; }
  .network-steps { margin-top: 48px; }
  .network-workflow-stage { min-height: 520px; padding: 18px; border-radius: 12px; }
  .workflow-track { left: 28px; top: 96px; bottom: 112px; }
  .workflow-scenes { inset: 76px 18px 105px 50px; }
  .workflow-scene { padding: 26px; }
  .workflow-scene .i { margin-bottom: 44px; }
  .workflow-scene::after { width: 34%; height: 35%; }
  .workflow-order { left: 50px; right: 18px; bottom: 18px; }
  .network-proof { border-radius: 18px; }
  .network-proof-grid { grid-template-columns: 1fr; }
  .network-proof-grid > div { min-height: 250px; padding: 26px; }
  .network-media--proof { min-height: 0; margin-top: 54px; aspect-ratio: 4 / 3; }
  .network-region-stories { gap: 82px; margin-top: 62px; }
  .network-media--region { min-height: 330px; aspect-ratio: 1 / 1; }
  .network-media--boundaries { min-height: 0; aspect-ratio: 4 / 3; }
  .network-boundary-lines { margin-top: 38px; }
  .network-cta::before { width: 300px; height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .network-route-live,
  .network-ticker > div,
  .network-parcel { animation: none !important; }
  .network-compiler { transform: none !important; }
  .network-float,
  .workflow-scene,
  .workflow-track::before { transition: none !important; }
}

/* ==========================================================================
   Technology — Shingled Order Workbench
   ========================================================================== */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.technology-page { background: #fff; }
.technology-page .nav-link.active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -7px; height: 2px; background: var(--solar); }

.tech-hero { min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; overflow: hidden; padding: clamp(48px,4vw,72px) 0; background: #fff; }
.tech-hero-grid { display: grid; grid-template-columns: minmax(360px,.84fr) minmax(620px,1.16fr); gap: clamp(54px,7vw,116px); align-items: center; }
.tech-hero-copy { position: relative; z-index: 2; }
.tech-hero h1 { max-width: 720px; font-size: clamp(58px,5.15vw,82px); line-height: .92; letter-spacing: -.04em; text-wrap: balance; }
.tech-hero-copy > p { max-width: 590px; margin-top: 30px; color: var(--hushed); font-size: clamp(17px,1.45vw,21px); line-height: 1.5; }
.tech-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }

.tech-workbench { --tech-panel-shift: 0px; position: relative; min-width: 0; padding: 18px; border: 1px solid rgba(12,10,8,.15); border-radius: 20px; background: #e9e6e3; box-shadow: 0 34px 88px rgba(12,10,8,.13); transform: translateZ(0); }
.tech-workbench-top { display: flex; align-items: center; justify-content: space-between; height: 35px; padding: 0 4px 12px; color: var(--hushed); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.tech-live { display: inline-flex; align-items: center; gap: 7px; }
.tech-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--solar); box-shadow: 0 2px 10px rgba(110,63,243,.38); }
.tech-workbench-tabs { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; padding: 4px; border: 1px solid rgba(12,10,8,.12); border-radius: 10px; background: rgba(255,255,255,.72); }
.tech-workbench-tabs button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; border-radius: 7px; color: var(--hushed); font-size: 13px; transition: color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); }
.tech-workbench-tabs button:hover { color: var(--ink); background: rgba(110,63,243,.08); }
.tech-workbench-tabs button[aria-selected="true"] { color: #fff; background: var(--solar); box-shadow: 0 8px 18px rgba(91,44,225,.24); }
.tech-workbench-stage { position: relative; min-height: 470px; margin-top: 14px; perspective: 1200px; }
.tech-sheet { position: absolute; inset: 16px 10px -8px; border: 1px solid rgba(12,10,8,.11); border-radius: 13px; background: #d7d1cc; transform-origin: center bottom; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.tech-sheet--back { transform: translate3d(26px,-4px,-80px) rotate(1.2deg); opacity: .65; }
.tech-sheet--mid { transform: translate3d(12px,2px,-40px) rotate(.5deg); background: #ece8e4; }
.tech-workbench.is-switching .tech-sheet--back { transform: translate3d(34px,-8px,-80px) rotate(2deg); }
.tech-workbench.is-switching .tech-sheet--mid { transform: translate3d(17px,-2px,-40px) rotate(.9deg); }
.tech-panel { position: absolute; inset: 0; z-index: 2; min-width: 0; overflow: hidden; padding: 28px; border: 1px solid rgba(12,10,8,.14); border-radius: 13px; background: #fff; box-shadow: 0 18px 40px rgba(12,10,8,.09); opacity: 0; transform: translate3d(34px,16px,0) rotate(.6deg); clip-path: inset(0 0 0 100% round 13px); transition: opacity .42s var(--ease), transform .58s cubic-bezier(.2,.8,.2,1), clip-path .58s cubic-bezier(.2,.8,.2,1); }
.tech-panel.is-active { opacity: 1; transform: none; clip-path: inset(0 round 13px); }
.tech-panel[hidden] { display: block; visibility: hidden; }
.tech-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-medium); }
.tech-panel-head h2 { max-width: 460px; font-size: clamp(30px,3vw,46px); line-height: 1; letter-spacing: -.035em; }
.tech-status { flex: none; padding: 7px 10px; border-radius: 999px; background: var(--solar-soft); color: var(--solar-hover); font-size: 11px; font-weight: 500; }

.tech-connect-flow { display: grid; grid-template-columns: 1fr 48px 104px 48px 82px; align-items: center; gap: 10px; min-height: 255px; }
.tech-channel-stack, .tech-destinations { display: grid; gap: 8px; }
.tech-channel-stack span, .tech-destinations span { display: grid; place-items: center; min-height: 45px; padding: 8px; border: 1px solid var(--gray-medium); border-radius: 8px; background: var(--gray-light); font-size: 12px; font-weight: 500; }
.tech-channel-stack span:nth-child(2) { transform: translateX(8px); }
.tech-core { display: grid; place-items: center; align-content: center; min-height: 128px; border-radius: 50%; background: var(--solar); color: #fff; box-shadow: 0 20px 42px rgba(91,44,225,.25); }
.tech-core .i { width: 24px; height: 24px; }
.tech-core strong { margin-top: 7px; font-size: 14px; }
.tech-core small { color: rgba(255,255,255,.66); font-size: var(--type-micro); }
.tech-flow-line { position: relative; height: 1px; overflow: hidden; background: rgba(110,63,243,.2); }
.tech-flow-line i { position: absolute; width: 12px; height: 4px; top: -1px; left: -12px; border-radius: 999px; background: var(--solar); animation: techSignal 1.8s linear infinite; }
@keyframes techSignal { to { transform: translateX(60px); } }
.tech-event { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--gray-medium); border-radius: 8px; background: #faf9f8; font-size: 12px; }
.tech-event span { color: var(--solar-hover); }
.tech-event strong { font-weight: 500; }
.tech-event small { justify-self: end; color: var(--hushed); }

.tech-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.tech-summary div { min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px solid var(--gray-medium); border-radius: 9px; background: #faf9f8; }
.tech-summary small { color: var(--hushed); }
.tech-summary strong { font-size: 32px; line-height: 1; font-weight: 400; }
.tech-mini-table, .tech-edit-table { margin-top: 18px; border-top: 1px solid var(--gray-medium); }
.tech-mini-table > div { display: grid; grid-template-columns: 1fr 1fr 100px; gap: 16px; align-items: center; min-height: 47px; border-bottom: 1px solid var(--gray-medium); font-size: 12px; }
.tech-mini-table > div:first-child { min-height: 34px; color: var(--hushed); font-size: var(--type-meta); text-transform: uppercase; }
.tech-mini-table strong { font-weight: 500; }
.tech-mini-table em { justify-self: start; padding: 4px 7px; border-radius: 999px; background: var(--solar-soft); color: var(--solar-hover); font-style: normal; font-size: var(--type-meta); }

.tech-search { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 24px; }
.tech-search input { min-width: 0; height: 48px; padding: 0 14px; border: 1px solid var(--gray-medium); border-radius: 7px; color: var(--ink); font: inherit; }
.tech-search button { display: inline-flex; align-items: center; gap: 7px; min-height: 48px; padding: 0 16px; border-radius: 7px; background: var(--ink); color: #fff; font-size: 12px; }
.tech-timeline { display: grid; gap: 0; margin-top: 25px; }
.tech-timeline li { position: relative; display: grid; grid-template-columns: 18px 1fr auto; gap: 13px; min-height: 72px; }
.tech-timeline li::before { content: ""; position: absolute; width: 1px; top: 15px; bottom: -1px; left: 6px; background: var(--gray-medium); }
.tech-timeline li:last-child::before { display: none; }
.tech-timeline li > i { position: relative; z-index: 1; width: 13px; height: 13px; margin-top: 3px; border: 2px solid var(--gray-medium); border-radius: 50%; background: #fff; }
.tech-timeline .is-done > i { border-color: var(--solar); background: var(--solar); }
.tech-timeline .is-current > i { border-color: var(--solar); box-shadow: 0 0 0 5px var(--solar-soft); }
.tech-timeline span { display: grid; align-content: start; }
.tech-timeline strong { font-size: 13px; font-weight: 500; }
.tech-timeline small, .tech-timeline time { color: var(--hushed); font-size: 11px; }

.tech-bulk-bar { display: flex; align-items: center; gap: 7px; margin-top: 22px; }
.tech-bulk-bar button { min-height: 34px; padding: 0 11px; border: 1px solid var(--gray-medium); border-radius: 6px; background: #faf9f8; font-size: 11px; }
.tech-bulk-bar button:hover { border-color: var(--solar); color: var(--solar-hover); }
.tech-bulk-bar span { margin-left: auto; color: var(--hushed); font-size: var(--type-meta); }
.tech-edit-table > div { display: grid; grid-template-columns: 28px 100px 1fr 76px; gap: 12px; align-items: center; min-height: 48px; border-bottom: 1px solid var(--gray-medium); font-size: 11px; }
.tech-edit-table > div:first-child { min-height: 35px; color: var(--hushed); font-size: var(--type-meta); text-transform: uppercase; }
.tech-edit-table input { accent-color: var(--solar); }
.tech-edit-table strong { font-weight: 500; }
.tech-edit-table em { justify-self: start; color: var(--hushed); font-style: normal; }
.tech-edit-table.is-updated em { color: var(--solar-hover); font-weight: 500; }

.tech-channel-band { padding: 34px 0 31px; border-top: 1px solid var(--gray-medium); border-bottom: 1px solid var(--gray-medium); background: #fff; }
.tech-channel-band .container { display: grid; grid-template-columns: minmax(200px,.8fr) minmax(540px,1.6fr); align-items: center; gap: 16px 40px; }
.tech-channel-band p { font-size: 14px; font-weight: 500; }
.tech-channel-band small { grid-column: 2; color: var(--hushed); font-size: var(--type-meta); }
.tech-channel-logos { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.tech-channel-logos span { font-size: clamp(17px,1.8vw,24px); font-weight: 500; letter-spacing: -.02em; }

.tech-system { background: #e9e6e3; }
.tech-section-head { display: grid; grid-template-columns: 1fr minmax(320px,.62fr); gap: clamp(50px,8vw,130px); align-items: end; }
.tech-section-head h2 { max-width: 860px; font-size: clamp(54px,7vw,96px); line-height: .93; letter-spacing: -.04em; }
.tech-section-head p { max-width: 560px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.tech-system-map { margin-top: clamp(70px,8vw,112px); padding: clamp(28px,4vw,58px); border: 1px solid rgba(12,10,8,.16); border-radius: 18px; background: #fff; }
.tech-system-row { display: grid; gap: 12px; }
.tech-system-row--source { grid-template-columns: repeat(5,1fr); }
.tech-system-row--outcome { grid-template-columns: repeat(4,1fr); }
.tech-system-row span { display: grid; place-items: center; min-height: 72px; padding: 12px; border: 1px solid var(--gray-medium); border-radius: 8px; background: var(--gray-light); font-size: 13px; font-weight: 500; }
.tech-system-trace { position: relative; display: grid; place-items: center; height: 86px; overflow: hidden; }
.tech-system-trace::before { content: ""; position: absolute; width: 1px; top: 0; bottom: 0; left: 50%; background: rgba(110,63,243,.28); }
.tech-system-trace i { position: absolute; z-index: 1; width: 7px; height: 22px; top: -22px; left: calc(50% - 3px); border-radius: 999px; background: var(--solar); animation: techTrace 2.2s var(--ease) infinite; }
.tech-system-trace--out i { animation-delay: .55s; }
@keyframes techTrace { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(108px); opacity: 0; } }
.tech-system-trace b { position: relative; z-index: 2; padding: 4px 9px; border-radius: 999px; background: #fff; color: var(--hushed); font-size: 10px; font-weight: 500; }
.tech-system-core { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--ink); border-radius: 12px; overflow: hidden; background: var(--ink); color: #fff; }
.tech-system-core > div { display: grid; grid-template-columns: auto 1fr; gap: 14px 16px; padding: clamp(24px,3vw,42px); }
.tech-system-core > div + div { border-left: 1px solid rgba(255,255,255,.22); }
.tech-system-core .i { width: 30px; height: 30px; color: #aa8bff; }
.tech-system-core span { display: grid; }
.tech-system-core small { color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.tech-system-core strong { margin-top: 4px; font-size: clamp(36px,4vw,58px); line-height: 1; font-weight: 400; }
.tech-system-core p { grid-column: 2; max-width: 380px; color: rgba(255,255,255,.62); font-size: 13px; }

.tech-benefits { background: #fff; }
.tech-benefits h2 { max-width: 880px; font-size: clamp(54px,7vw,96px); line-height: .93; letter-spacing: -.04em; }
.tech-benefit-list { margin-top: clamp(72px,8vw,110px); border-top: 1px solid var(--gray-medium); }
.tech-benefit-list article { display: grid; grid-template-columns: 42px minmax(240px,.8fr) minmax(320px,1.2fr); gap: 24px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--gray-medium); }
.tech-benefit-list .i { width: 26px; height: 26px; color: var(--solar); }
.tech-benefit-list h3 { font-size: clamp(25px,2.6vw,38px); line-height: 1.05; letter-spacing: -.03em; }
.tech-benefit-list p { max-width: 610px; color: var(--hushed); font-size: 16px; line-height: 1.55; }

.tech-partner { overflow: hidden; border-radius: 26px; background: var(--black); color: #fff; }
.tech-partner-grid { display: grid; grid-template-columns: 1fr minmax(440px,.75fr); gap: clamp(70px,9vw,150px); align-items: center; }
.tech-partner-copy h2 { max-width: 800px; font-size: clamp(54px,6.8vw,96px); line-height: .92; letter-spacing: -.04em; }
.tech-partner-copy > p { max-width: 650px; margin-top: 30px; color: rgba(255,255,255,.6); font-size: 17px; line-height: 1.55; }
.btn--light { margin-top: 34px; background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--solar-soft); color: var(--solar-hover); }
.tech-partner-sheet { position: relative; padding: 30px; border-radius: 16px; background: #ebe4dd; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.24); }
.tech-partner-sheet > * { position: relative; z-index: 1; }
.tech-partner-sheet-head { display: flex; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(12,10,8,.2); }
.tech-partner-sheet-head span { color: var(--hushed); }
.tech-partner-sheet-head strong { color: var(--solar-hover); font-weight: 500; }
.tech-partner-sheet ul { display: grid; }
.tech-partner-sheet li { display: grid; grid-template-columns: 24px 1fr; gap: 14px; padding: 24px 0; border-bottom: 1px solid rgba(12,10,8,.15); }
.tech-partner-sheet li > .i { width: 20px; height: 20px; color: var(--solar); }
.tech-partner-sheet li span { display: grid; gap: 4px; }
.tech-partner-sheet li strong { font-size: 16px; font-weight: 500; }
.tech-partner-sheet li small { color: var(--hushed); font-size: 12px; }
.tech-partner-sheet > p { margin-top: 20px; color: var(--hushed); font-size: var(--type-body-small); }

.tech-faq { background: #fff; }
.tech-cta { position: relative; overflow: hidden; background: #e9e6e3; }
.tech-cta-inner { position: relative; z-index: 1; text-align: center; }
.tech-cta p { color: var(--hushed); }
.tech-cta h2 { max-width: 940px; margin: 16px auto 38px; font-size: clamp(54px,7vw,96px); line-height: .93; letter-spacing: -.04em; }

@media (max-width: 1180px) {
  .tech-hero-grid { grid-template-columns: 1fr; }
  .tech-hero-copy { max-width: 780px; }
  .tech-workbench { width: min(100%,920px); margin-inline: auto; }
  .tech-partner-grid { grid-template-columns: 1fr .85fr; gap: 52px; }
}
@media (max-width: 900px) {
  .tech-channel-band .container, .tech-section-head, .tech-partner-grid { grid-template-columns: 1fr; }
  .tech-channel-band small { grid-column: 1; }
  .tech-partner-sheet { max-width: 620px; }
  .tech-benefit-list article { grid-template-columns: 38px 1fr; padding: 30px 0; }
  .tech-benefit-list p { grid-column: 2; }
}
@media (max-width: 680px) {
  .technology-page .nav-link.active::after { display: none; }
  .tech-hero { min-height: auto; padding: 58px 0 76px; }
  .tech-hero-grid { gap: 38px; }
  .tech-hero h1 { font-size: clamp(50px,15vw,68px); }
  .tech-hero-actions { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 14px 18px; }
  .tech-workbench { margin-inline: 0; padding: 10px; border-radius: 14px; }
  .tech-workbench-top { padding: 0 2px 8px; font-size: 9px; }
  .tech-workbench-tabs { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .tech-workbench-tabs button { gap: 4px; min-width: 0; padding: 0 3px; font-size: 10px; }
  .tech-workbench-tabs button .i { width: 13px; height: 13px; }
  .tech-workbench-stage { min-height: 550px; }
  .tech-panel { padding: 19px; }
  .tech-panel-head { align-items: flex-start; flex-direction: column; gap: 12px; padding-bottom: 18px; }
  .tech-panel-head h2 { font-size: 31px; }
  .tech-connect-flow { grid-template-columns: 1fr 24px 78px; min-height: 260px; }
  .tech-connect-flow > :nth-child(4), .tech-connect-flow > :nth-child(5) { display: none; }
  .tech-core { min-height: 96px; }
  .tech-event { grid-template-columns: 1fr auto; }
  .tech-event small { grid-column: 1 / -1; justify-self: start; }
  .tech-summary { gap: 6px; }
  .tech-summary div { min-height: 98px; padding: 12px; }
  .tech-summary strong { font-size: 26px; }
  .tech-mini-table > div { grid-template-columns: 1fr .85fr 72px; gap: 8px; }
  .tech-search { grid-template-columns: 1fr; }
  .tech-bulk-bar { align-items: flex-start; flex-wrap: wrap; }
  .tech-bulk-bar span { width: 100%; margin: 4px 0 0; }
  .tech-edit-table > div { grid-template-columns: 24px 82px 1fr; gap: 7px; }
  .tech-edit-table > div > :last-child { display: none; }
  .tech-channel-band .container { gap: 24px; }
  .tech-channel-logos { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
  .tech-channel-logos span { font-size: 20px; }
  .tech-section-head h2, .tech-benefits h2, .tech-partner-copy h2, .tech-cta h2 { font-size: clamp(46px,13vw,62px); }
  .tech-system-map { padding: 16px; border-radius: 13px; }
  .tech-system-row--source { grid-template-columns: repeat(2,1fr); }
  .tech-system-row--source span:last-child { grid-column: 1 / -1; }
  .tech-system-core { grid-template-columns: 1fr; }
  .tech-system-core > div + div { border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .tech-system-row--outcome { grid-template-columns: repeat(2,1fr); }
  .tech-benefit-list article { grid-template-columns: 30px 1fr; gap: 15px; }
  .tech-benefit-list p { font-size: 15px; }
  .tech-partner { border-radius: 18px; }
  .tech-partner-sheet { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .tech-flow-line i, .tech-system-trace i { animation: none !important; }
  .tech-panel, .tech-sheet { transition: none !important; }
}

/* --------------------------------------------------------------------------
   About — accountability ledger
   -------------------------------------------------------------------------- */
.about-page, .contact-page { background: var(--gray-light); }
.about-page .nav-link.active::after,
.contact-page .nav-link.active::after { content: ""; position: absolute; right: 14px; bottom: 4px; left: 14px; height: 1px; background: var(--solar); }

.about-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-medium);
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(12,10,8,.045) 50%, transparent 50.05%),
    radial-gradient(circle at 17% 22%, rgba(110,63,243,.1), transparent 30%);
}
.about-hero-grid { display: grid; grid-template-columns: minmax(400px,.82fr) minmax(620px,1.18fr); gap: clamp(50px,7vw,118px); align-items: center; padding-top: clamp(64px,8vw,112px); padding-bottom: clamp(76px,9vw,126px); }
.about-hero h1 { max-width: 760px; font-size: clamp(58px,6.6vw,96px); line-height: .9; letter-spacing: -.04em; }
.about-hero-copy > p { max-width: 620px; margin-top: 30px; color: var(--hushed); font-size: clamp(17px,1.5vw,21px); line-height: 1.5; }
.about-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.about-ledger { overflow: hidden; border: 1px solid rgba(12,10,8,.18); border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(12,10,8,.11); }
.about-ledger-head { display: flex; justify-content: space-between; gap: 20px; padding: 15px 18px; border-bottom: 1px solid var(--gray-medium); background: #e9e6e3; color: var(--hushed); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.about-ledger-body { display: grid; grid-template-columns: 205px 1fr; min-height: 480px; }
.about-ledger-tabs { display: grid; align-content: start; border-right: 1px solid var(--gray-medium); background: #f8f7f5; }
.about-ledger-tabs button { position: relative; display: grid; grid-template-columns: 26px 1fr; gap: 2px 12px; min-height: 88px; padding: 17px; text-align: left; border-bottom: 1px solid var(--gray-medium); transition: background-color .22s, color .22s; }
.about-ledger-tabs button::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: transparent; }
.about-ledger-tabs button .i { grid-row: 1 / 3; width: 21px; height: 21px; margin-top: 2px; color: var(--hushed); }
.about-ledger-tabs button span { font-size: 14px; font-weight: 500; }
.about-ledger-tabs button small { color: var(--hushed); font-size: 10px; }
.about-ledger-tabs button[aria-selected="true"] { background: var(--solar-soft); color: var(--solar-hover); }
.about-ledger-tabs button[aria-selected="true"]::after { background: var(--solar); }
.about-ledger-tabs button[aria-selected="true"] .i { color: var(--solar); }
.about-ledger-panel { display: grid; align-content: space-between; gap: 30px; padding: clamp(30px,4vw,56px); }
.about-ledger-panel small { color: var(--solar-hover); font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.about-ledger-panel h2 { max-width: 580px; margin-top: 14px; font-size: clamp(31px,3.2vw,47px); line-height: 1.02; letter-spacing: -.035em; }
.about-ledger-panel > p { max-width: 560px; color: var(--hushed); font-size: 15px; line-height: 1.55; }
.about-ledger-panel dl { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--gray-medium); }
.about-ledger-panel dl div { padding: 19px 20px 0 0; }
.about-ledger-panel dl div + div { padding-left: 20px; border-left: 1px solid var(--gray-medium); }
.about-ledger-panel dt { color: var(--hushed); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.about-ledger-panel dd { margin-top: 8px; font-size: 13px; line-height: 1.45; }
.about-ledger-panel.is-updating h2,
.about-ledger-panel.is-updating > p,
.about-ledger-panel.is-updating dl { animation: aboutLedgerSet .42s var(--ease) both; }
.about-ledger-panel.is-updating > p { animation-delay: .04s; }
.about-ledger-panel.is-updating dl { animation-delay: .08s; }
@keyframes aboutLedgerSet { from { opacity: .35; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.about-reason { background: #fff; }
.about-reason-grid { display: grid; grid-template-columns: 1.1fr .7fr; gap: clamp(70px,10vw,170px); align-items: start; }
.about-reason h2 { max-width: 950px; font-size: clamp(58px,7.6vw,96px); line-height: .92; letter-spacing: -.04em; }
.about-reason-copy { display: grid; gap: 24px; padding-top: 12px; }
.about-reason-copy p { max-width: 610px; color: var(--hushed); font-size: 17px; line-height: 1.6; }
.about-fragment { display: grid; grid-template-columns: 1fr 64px 1fr; gap: 22px; align-items: center; margin-top: clamp(74px,9vw,124px); }
.about-fragment-before { display: grid; grid-template-columns: repeat(9,auto); align-items: center; gap: 10px; min-height: 120px; padding: 24px; border-top: 1px solid var(--gray-medium); border-bottom: 1px solid var(--gray-medium); }
.about-fragment-before span { color: var(--hushed); font-size: 12px; }
.about-fragment-before i { width: 20px; border-top: 1px dashed var(--gray-dark); }
.about-fragment-turn { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--solar); color: #fff; }
.about-fragment-turn .i { width: 22px; height: 22px; }
.about-fragment-after { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; min-height: 120px; padding: 24px; border: 1px solid var(--solar-line); background: var(--solar-soft); }
.about-fragment-after::before, .about-fragment-after::after { content: ""; height: 1px; background: var(--solar-line); }
.about-fragment-after span { font-size: 12px; }
.about-fragment-after b { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--solar); color: #fff; font-weight: 500; }

.about-boundaries { overflow: hidden; border-radius: 26px; background: var(--black); color: #fff; }
.about-boundaries h2 { max-width: 1040px; font-size: clamp(54px,7vw,96px); line-height: .92; letter-spacing: -.04em; }
.about-boundary-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: clamp(72px,8vw,110px); border-top: 1px solid rgba(255,255,255,.2); }
.about-boundary-grid article { min-height: 300px; padding: 34px 42px 20px 0; }
.about-boundary-grid article + article { padding-left: 42px; border-left: 1px solid rgba(255,255,255,.2); }
.about-boundary-grid h3 { max-width: 330px; font-size: clamp(24px,2.4vw,34px); line-height: 1.08; letter-spacing: -.025em; }
.about-boundary-grid p { max-width: 410px; margin-top: 88px; color: rgba(255,255,255,.62); line-height: 1.55; }

.about-principles { background: #fff; }
.about-principles-head { display: grid; grid-template-columns: 1fr minmax(320px,.6fr); gap: clamp(60px,9vw,150px); align-items: end; }
.about-principles-head h2 { max-width: 920px; font-size: clamp(54px,7vw,96px); line-height: .92; letter-spacing: -.04em; }
.about-principles-head p { max-width: 560px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.about-principle-list { margin-top: clamp(70px,8vw,112px); border-top: 1px solid var(--gray-medium); }
.about-principle-list article { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(360px,1.2fr); gap: 60px; align-items: center; min-height: 164px; border-bottom: 1px solid var(--gray-medium); }
.about-principle-list h3 { max-width: 620px; font-size: clamp(27px,2.8vw,42px); line-height: 1.05; letter-spacing: -.03em; }
.about-principle-list p { max-width: 650px; color: var(--hushed); line-height: 1.55; }

.about-region { background: #e9e6e3; }
.about-region-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px,10vw,170px); align-items: center; }
.about-region-copy h2 { max-width: 720px; font-size: clamp(54px,6.6vw,92px); line-height: .93; letter-spacing: -.04em; }
.about-region-copy p { max-width: 600px; margin-top: 28px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.about-region-copy .text-link { margin-top: 28px; }
.about-region-route { position: relative; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 18px; min-height: 310px; }
.about-region-route::before { content: ""; position: absolute; inset: 20% 10%; border-radius: 50%; background: rgba(110,63,243,.08); filter: blur(45px); }
.about-region-route span { position: relative; z-index: 1; display: grid; place-items: center; width: clamp(120px,12vw,176px); aspect-ratio: 1; border: 1px solid var(--gray-medium); border-radius: 50%; background: #fff; }
.about-region-route small { color: var(--hushed); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.about-region-route strong { margin-top: 6px; font-size: clamp(18px,1.8vw,27px); font-weight: 500; text-align: center; }
.about-region-route i { position: relative; z-index: 1; height: 1px; background: var(--solar); }

.about-fit { background: var(--gray-light); }
.about-fit h2 { max-width: 1050px; font-size: clamp(54px,7vw,96px); line-height: .92; letter-spacing: -.04em; }
.about-fit-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: clamp(68px,8vw,105px); border-top: 1px solid var(--gray-medium); }
.about-fit-grid > div { padding: 34px 60px 12px 0; }
.about-fit-grid > div + div { padding-left: 60px; border-left: 1px solid var(--gray-medium); }
.about-fit-grid h3 { font-size: 18px; font-weight: 500; }
.about-fit-grid ul { display: grid; margin-top: 26px; }
.about-fit-grid li { display: flex; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--gray-medium); color: var(--hushed); }
.about-fit-grid .i { width: 18px; height: 18px; color: var(--solar); }
.about-cta, .contact-cta { background: #e9e6e3; }
.about-cta-inner, .contact-cta-inner { text-align: center; }
.about-cta p, .contact-cta p { color: var(--hushed); }
.about-cta h2, .contact-cta h2 { max-width: 1000px; margin: 16px auto 38px; font-size: clamp(54px,7vw,96px); line-height: .93; letter-spacing: -.04em; }
.contact-cta h2 { margin: 0 auto 22px; }
.contact-cta p { max-width: 680px; margin: 0 auto 34px; font-size: 17px; line-height: 1.55; }

/* --------------------------------------------------------------------------
   Contact — conversation dispatch board
   -------------------------------------------------------------------------- */
.contact-hero { min-height: calc(100vh - var(--nav-h)); display: grid; align-items: center; border-bottom: 1px solid var(--gray-medium); background: var(--gray-light); }
.contact-hero-grid { display: grid; grid-template-columns: minmax(390px,.76fr) minmax(650px,1.24fr); gap: clamp(54px,7vw,116px); align-items: center; padding-top: clamp(64px,8vw,112px); padding-bottom: clamp(76px,9vw,126px); }
.contact-hero h1 { max-width: 760px; font-size: clamp(58px,6.4vw,94px); line-height: .9; letter-spacing: -.04em; }
.contact-hero-copy > p { max-width: 620px; margin-top: 30px; color: var(--hushed); font-size: clamp(17px,1.5vw,21px); line-height: 1.5; }
.contact-hero-note { display: flex; gap: 10px; align-items: center; margin-top: 34px; color: var(--hushed); font-size: 13px; }
.contact-hero-note .i { width: 18px; height: 18px; color: var(--solar); }

.contact-dispatch { overflow: hidden; border: 1px solid rgba(12,10,8,.18); border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(12,10,8,.11); }
.contact-dispatch-head { display: flex; justify-content: space-between; gap: 20px; padding: 15px 18px; border-bottom: 1px solid var(--gray-medium); background: #e9e6e3; color: var(--hushed); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.contact-dispatch-layout { display: grid; grid-template-columns: 275px 1fr; min-height: 510px; }
.contact-dispatch-tabs { display: grid; align-content: start; border-right: 1px solid var(--gray-medium); background: #f8f7f5; }
.contact-dispatch-tabs button { position: relative; display: grid; grid-template-columns: 24px 1fr 16px; gap: 14px; align-items: start; min-height: 116px; padding: 22px 18px; text-align: left; border-bottom: 1px solid var(--gray-medium); transition: background-color .22s, color .22s; }
.contact-dispatch-tabs button::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: transparent; }
.contact-dispatch-tabs button > .i:first-child { width: 21px; height: 21px; color: var(--hushed); }
.contact-dispatch-tabs button span { display: grid; gap: 4px; }
.contact-dispatch-tabs strong { font-size: 14px; font-weight: 500; }
.contact-dispatch-tabs small { color: var(--hushed); font-size: 10px; line-height: 1.35; }
.contact-route-arrow { width: 15px; height: 15px; margin-top: 3px; opacity: .45; }
.contact-dispatch-tabs button[aria-selected="true"] { background: var(--solar-soft); color: var(--solar-hover); }
.contact-dispatch-tabs button[aria-selected="true"]::after { background: var(--solar); }
.contact-dispatch-tabs button[aria-selected="true"] > .i:first-child, .contact-dispatch-tabs button[aria-selected="true"] .contact-route-arrow { color: var(--solar); opacity: 1; }
.contact-dispatch-panels { position: relative; }
.contact-dispatch-panel { position: absolute; inset: 0; display: grid; align-content: center; padding: clamp(32px,4vw,62px); opacity: 0; transform: translateY(12px); transition: opacity .34s var(--ease), transform .34s var(--ease); }
.contact-dispatch-panel.is-active { position: relative; min-height: 100%; opacity: 1; transform: translateY(0); }
.contact-dispatch-panel > small { color: var(--solar-hover); font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.contact-dispatch-panel h2 { max-width: 570px; margin-top: 14px; font-size: clamp(34px,3.5vw,52px); line-height: 1; letter-spacing: -.035em; }
.contact-dispatch-panel p { max-width: 540px; margin-top: 22px; color: var(--hushed); line-height: 1.55; }
.contact-dispatch-panel .btn { justify-self: start; margin-top: 30px; }
.contact-dispatch-panel .contact-panel-note { display: flex; gap: 8px; align-items: center; margin-top: 16px; color: var(--hushed); font-size: 12px; }
.contact-panel-note .i { width: 15px; height: 15px; color: var(--solar); }
.contact-panel-links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.contact-panel-links a { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; border-bottom: 1px solid var(--ink); }

.contact-prepare { background: #fff; }
.contact-prepare-grid { display: grid; grid-template-columns: minmax(420px,.82fr) 1.18fr; gap: clamp(70px,10vw,170px); }
.contact-prepare-copy { position: sticky; top: calc(var(--nav-h) + 52px); align-self: start; }
.contact-prepare h2 { max-width: 760px; font-size: clamp(54px,6.8vw,94px); line-height: .92; letter-spacing: -.04em; }
.contact-prepare-copy > p { max-width: 600px; margin-top: 28px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.contact-prepare-note { display: flex; gap: 10px; align-items: flex-start; max-width: 560px; margin-top: 22px; color: var(--ink); font-size: 13px; line-height: 1.45; }
.contact-prepare-note .i { flex: none; width: 17px; height: 17px; margin-top: 1px; color: var(--solar); }
.contact-prepare-list { border-top: 1px solid var(--gray-medium); }
.contact-prepare-list article { min-height: 178px; padding: 30px 0; border-bottom: 1px solid var(--gray-medium); }
.contact-prepare-list h3 { font-size: clamp(28px,3vw,44px); line-height: 1.04; letter-spacing: -.03em; }
.contact-prepare-list p { max-width: 620px; margin-top: 16px; color: var(--hushed); line-height: 1.55; }
.contact-review { display: grid; grid-template-columns: minmax(340px,.72fr) 1.28fr; margin-top: clamp(80px,9vw,124px); border-top: 1px solid var(--gray-medium); border-bottom: 1px solid var(--gray-medium); }
.contact-review-intro { padding: 40px clamp(34px,5vw,72px) 46px 0; }
.contact-review-intro h3 { max-width: 660px; font-size: clamp(36px,4vw,58px); line-height: .98; letter-spacing: -.035em; }
.contact-review-intro p { max-width: 560px; margin-top: 22px; color: var(--hushed); line-height: 1.55; }
.contact-review-list { display: grid; grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--gray-medium); }
.contact-review-list article { min-width: 0; padding: 42px clamp(22px,2.5vw,38px) 46px; border-right: 1px solid var(--gray-medium); }
.contact-review-list article:last-child { border-right: 0; }
.contact-review-list h4 { font-size: clamp(19px,1.7vw,24px); font-weight: 500; letter-spacing: -.02em; }
.contact-review-list p { margin-top: 42px; color: var(--hushed); font-size: 14px; line-height: 1.55; }

.contact-direct { overflow: hidden; border-radius: 26px; background: var(--black); color: #fff; }
.contact-direct-grid { display: grid; grid-template-columns: 1fr minmax(520px,.8fr); gap: clamp(70px,10vw,170px); align-items: center; }
.contact-direct-copy h2 { max-width: 780px; font-size: clamp(58px,7vw,96px); line-height: .92; letter-spacing: -.04em; }
.contact-direct-copy p { max-width: 660px; margin-top: 30px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.55; }
.contact-direct-list { border-top: 1px solid rgba(255,255,255,.2); }
.contact-direct-list > a, .contact-direct-list > div { display: grid; grid-template-columns: 26px 1fr 18px; gap: 18px; align-items: center; min-height: 112px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-direct-list > div { grid-template-columns: 26px 1fr; }
.contact-direct-list .i { width: 22px; height: 22px; color: #aa8bff; }
.contact-direct-list span { display: grid; gap: 5px; }
.contact-direct-list small { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.contact-direct-list strong { font-size: clamp(18px,2vw,27px); font-weight: 400; }
.contact-direct-list a:hover strong { color: #c2adff; }

.contact-channels { background: #e9e6e3; }
.contact-channels-head { display: grid; grid-template-columns: 1fr minmax(340px,.52fr); gap: clamp(70px,10vw,170px); align-items: end; }
.contact-channels-head h2 { max-width: 950px; font-size: clamp(54px,7vw,96px); line-height: .92; letter-spacing: -.04em; }
.contact-channels-head p { max-width: 570px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.contact-channel-board { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: clamp(72px,8vw,110px); padding: 1px; background: var(--gray-medium); }
.contact-channel { display: grid; grid-template-columns: 48px 1fr auto 18px; gap: 20px; align-items: center; min-height: 142px; padding: 24px 26px; background: #fff; transition: background-color .25s var(--ease), color .25s var(--ease); }
.contact-channel:hover, .contact-channel:focus-visible { background: var(--solar-soft); }
.contact-channel-icon { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--gray-medium); border-radius: 50%; color: var(--solar); background: #fff; }
.contact-channel-icon .i { width: 21px; height: 21px; }
.contact-channel-copy { display: grid; gap: 8px; }
.contact-channel-copy strong { font-size: clamp(19px,1.7vw,25px); font-weight: 500; letter-spacing: -.02em; }
.contact-channel-copy small { max-width: 430px; color: var(--hushed); font-size: 13px; line-height: 1.45; }
.contact-channel-state { color: var(--hushed); font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.contact-channel-arrow { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.contact-channel:not(.is-pending):hover .contact-channel-arrow,
.contact-channel:not(.is-pending):focus-visible .contact-channel-arrow { transform: translate(3px,-3px); }
.contact-channel.is-pending { color: var(--hushed); background: #f5f3f1; cursor: not-allowed; }
.contact-channel.is-pending .contact-channel-icon { color: var(--hushed); background: transparent; }
.contact-channel.is-pending .contact-channel-arrow { opacity: .28; }
.contact-faq { background: #fff; }

@media (max-width: 1180px) {
  .about-hero-grid, .contact-hero-grid { grid-template-columns: 1fr; }
  .about-hero-copy, .contact-hero-copy { max-width: 850px; }
  .about-ledger, .contact-dispatch { width: min(100%,950px); }
  .about-region-grid, .contact-direct-grid { grid-template-columns: 1fr; }
  .about-region-route { max-width: 940px; }
}
@media (max-width: 900px) {
  .about-reason-grid, .about-principles-head, .contact-prepare-grid, .contact-channels-head, .contact-review { grid-template-columns: 1fr; }
  .about-fragment { grid-template-columns: 1fr; }
  .about-fragment-turn { transform: rotate(90deg); }
  .about-boundary-grid { grid-template-columns: 1fr; }
  .about-boundary-grid article, .about-boundary-grid article + article { min-height: 0; padding: 32px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .about-boundary-grid p { margin-top: 24px; }
  .about-principle-list article { grid-template-columns: 1fr; gap: 18px; padding: 30px 0; }
  .contact-prepare-copy { position: relative; top: auto; }
  .contact-review-list { border-top: 1px solid var(--gray-medium); border-left: 0; }
  .contact-channel-board { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .about-page .nav-link.active::after, .contact-page .nav-link.active::after { display: none; }
  .about-hero, .contact-hero { min-height: auto; }
  .about-hero-grid, .contact-hero-grid { gap: 46px; padding-top: 58px; padding-bottom: 76px; }
  .about-hero h1, .contact-hero h1 { font-size: clamp(52px,15vw,68px); }
  .about-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .about-ledger-body, .contact-dispatch-layout { grid-template-columns: 1fr; }
  .about-ledger-tabs, .contact-dispatch-tabs { grid-template-columns: repeat(5,1fr); border-right: 0; border-bottom: 1px solid var(--gray-medium); overflow-x: auto; }
  .about-ledger-tabs button { grid-template-columns: 1fr; justify-items: center; gap: 6px; min-width: 0; min-height: 88px; padding: 14px 4px; text-align: center; }
  .about-ledger-tabs button .i { grid-row: auto; margin: 0; }
  .about-ledger-tabs button small { display: none; }
  .about-ledger-tabs button::after { inset: auto 0 0; width: auto; height: 2px; }
  .about-ledger-panel { min-height: 430px; padding: 26px 22px; }
  .about-ledger-panel dl { grid-template-columns: 1fr; }
  .about-ledger-panel dl div + div { padding-left: 0; border-left: 0; }
  .about-fragment-before { grid-template-columns: repeat(5,1fr); gap: 6px; padding: 18px 10px; }
  .about-fragment-before span { font-size: 9px; text-align: center; }
  .about-fragment-before i { width: auto; }
  .about-fragment-after { grid-template-columns: 1fr auto 1fr; padding: 18px 10px; }
  .about-fragment-after span { font-size: 10px; text-align: center; }
  .about-boundaries, .contact-direct { border-radius: 18px; }
  .about-region-route { grid-template-columns: 1fr; gap: 12px; }
  .about-region-route span { width: 150px; margin-inline: auto; }
  .about-region-route i { width: 1px; height: 38px; margin-inline: auto; }
  .about-fit-grid { grid-template-columns: 1fr; }
  .about-fit-grid > div, .about-fit-grid > div + div { padding: 30px 0; border-left: 0; }
  .about-fit-grid > div + div { border-top: 1px solid var(--gray-medium); }
  .contact-dispatch-tabs { grid-template-columns: repeat(3,1fr); overflow: visible; }
  .contact-dispatch-tabs button { grid-template-columns: 1fr; justify-items: center; gap: 7px; min-width: 0; min-height: 82px; padding: 12px 5px; text-align: center; }
  .contact-dispatch-tabs button > .i:first-child { width: 19px; height: 19px; }
  .contact-dispatch-tabs button span { gap: 0; }
  .contact-dispatch-tabs button small, .contact-route-arrow { display: none; }
  .contact-dispatch-tabs strong { font-size: 11px; line-height: 1.2; }
  .contact-dispatch-tabs button::after { inset: auto 0 0; width: auto; height: 2px; }
  .contact-dispatch-panel { min-height: 330px; padding: 24px 20px; }
  .contact-dispatch-panel h2 { margin-top: 0; font-size: clamp(28px,8vw,34px); }
  .contact-dispatch-panel p { margin-top: 14px; font-size: 14px; }
  .contact-dispatch-panel .btn, .contact-panel-links { margin-top: 18px; }
  .contact-dispatch-panel .contact-panel-note { margin-top: 14px; }
  .contact-panel-links { align-items: flex-start; flex-direction: column; }
  .contact-review { margin-top: 64px; }
  .contact-review-intro { padding: 32px 0 36px; }
  .contact-review-list { grid-template-columns: 1fr; }
  .contact-review-list article { padding: 28px 0 30px; border-right: 0; border-bottom: 1px solid var(--gray-medium); }
  .contact-review-list article:last-child { border-bottom: 0; }
  .contact-review-list p { margin-top: 14px; }
  .contact-direct-list strong { overflow-wrap: anywhere; }
  .contact-channel { grid-template-columns: 42px 1fr 16px; gap: 14px; min-height: 116px; padding: 20px 16px; }
  .contact-channel-icon { width: 40px; height: 40px; }
  .contact-channel-copy strong { font-size: 18px; }
  .contact-channel-state { grid-column: 2; justify-self: start; }
  .contact-channel-arrow { grid-column: 3; grid-row: 1 / 3; }
  .about-reason h2, .about-boundaries h2, .about-principles-head h2, .about-region-copy h2, .about-fit h2, .about-cta h2,
  .contact-prepare h2, .contact-direct-copy h2, .contact-channels-head h2, .contact-cta h2 { font-size: clamp(46px,13vw,62px); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-dispatch-panel { transition: none !important; }
  .about-ledger-panel.is-updating h2, .about-ledger-panel.is-updating > p, .about-ledger-panel.is-updating dl { animation: none !important; }
}

/* --------------------------------------------------------------------------
   About v2 — people who own the handoffs
   Approved composition: Ramp-like role wall + manifesto collage + directory
   -------------------------------------------------------------------------- */
.about-page { background: #fff; }

.about-people-hero {
  overflow: visible;
  padding-top: clamp(74px,8vw,124px);
  border-bottom: 1px solid var(--gray-medium);
  background: #fff;
}
.about-people-intro { max-width: 1540px; text-align: center; }
.about-people-intro h1 {
  max-width: 1480px;
  margin: 0 auto;
  font-size: clamp(68px,8.7vw,126px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.about-people-intro p {
  max-width: 790px;
  margin: 34px auto 0;
  color: var(--hushed);
  font-size: clamp(17px,1.45vw,21px);
  line-height: 1.5;
}
.about-people-intro .btn { margin-top: 30px; }
.about-role-scroll {
  position: relative;
  height: auto;
  margin-top: clamp(74px,8vw,118px);
}
.about-role-viewport {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  cursor: grab;
  outline: none;
}
.about-role-viewport:focus-visible { outline: 2px solid var(--solar); outline-offset: 6px; }
.about-role-viewport.is-dragging { cursor: grabbing; user-select: none; }
.about-role-viewport.is-dragging .about-role-card { transition: none; }
.about-role-wall {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  align-items: stretch;
  gap: 7px;
  width: max-content;
  margin: 0 auto -82px;
  padding: 0 20px;
}
.about-role-card {
  position: relative;
  flex: 0 0 clamp(230px,23vw,356px);
  min-width: 230px;
  margin-top: var(--role-lift);
  overflow: hidden;
  background: var(--black);
  color: #fff;
  opacity: var(--role-scroll-opacity,1);
  transform: translateY(var(--role-scroll-y,0px)) scale(var(--role-scroll-scale,1));
  transform-origin: center center;
  transition: transform .24s var(--ease), opacity .24s var(--ease), filter .24s var(--ease);
}
.about-role-card::before {
  content: "Role representation";
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  background: rgba(17,17,17,.78);
  color: rgba(255,255,255,.84);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-role-card img {
  display: block;
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  object-position: center 28%;
  background: #ddd9d4;
  filter: saturate(.82) contrast(1.02);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.about-role-card:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.02); }
.about-role-viewport, .about-handoff-tabs { scrollbar-width: none; }
.about-role-viewport::-webkit-scrollbar, .about-handoff-tabs::-webkit-scrollbar { display: none; }
.about-role-card > div { min-height: 148px; padding: 22px 22px 28px; }
.about-role-card h2 { font-size: clamp(17px,1.45vw,22px); font-weight: 500; letter-spacing: -.02em; }
.about-role-card p { max-width: 280px; margin-top: 10px; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.45; }

.about-manifesto { overflow: hidden; background: #f3f1ee; }
.about-manifesto-head { display: grid; grid-template-columns: 1.15fr .55fr; gap: clamp(60px,9vw,160px); align-items: end; }
.about-manifesto-head h2 {
  max-width: 1050px;
  font-size: clamp(58px,7.5vw,104px);
  line-height: .91;
  letter-spacing: -.045em;
}
.about-manifesto-head p { max-width: 560px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.about-role-note { grid-column: 2; color: var(--hushed); font-size: var(--type-body-small); letter-spacing: .06em; text-transform: uppercase; }
.about-collage { position: relative; width: min(1480px,calc(100% - 44px)); min-height: 840px; margin: clamp(82px,9vw,132px) auto 0; }
.about-collage-photo { position: absolute; width: min(31vw,440px); margin: 0; padding: 10px 10px 42px; background: #fff; box-shadow: 0 24px 65px rgba(12,10,8,.12); }
.about-collage-photo img { display: block; width: 100%; aspect-ratio: 1.22; object-fit: cover; object-position: center 26%; filter: saturate(.78); }
.about-collage-photo figcaption { position: absolute; right: 14px; bottom: 13px; left: 14px; font-size: 12px; }
.about-collage-photo--business { top: 20px; left: 0; transform: rotate(-3.2deg); }
.about-collage-photo--quality { top: 54px; right: 0; transform: rotate(2.8deg); }
.about-collage-photo--sourcing { bottom: 18px; left: 2%; transform: rotate(2.4deg); }
.about-collage-photo--fulfillment { right: 3%; bottom: 0; transform: rotate(-2.5deg); }
.about-manifesto-sheet {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 50%;
  width: min(39vw,560px);
  min-height: 560px;
  padding: clamp(38px,5vw,70px);
  transform: translateX(-50%) rotate(-.6deg);
  border: 1px solid rgba(12,10,8,.14);
  background: #fff;
  box-shadow: 0 28px 80px rgba(12,10,8,.16);
}
.about-manifesto-sheet::before { content: ""; position: absolute; top: -18px; left: 50%; width: 50px; height: 34px; transform: translateX(-50%); border: 2px solid var(--black); border-radius: 50% 50% 0 0; background: #d6d1ca; }
.about-manifesto-sheet h3 { max-width: 450px; font-size: clamp(42px,4.6vw,66px); line-height: .96; letter-spacing: -.04em; }
.about-manifesto-sheet p { max-width: 430px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--ink); color: var(--hushed); line-height: 1.55; }
.about-manifesto-sheet span { display: block; margin-top: 60px; color: var(--solar); font-size: 13px; }

.about-operate { background: #fff; }
.about-operate-head { display: grid; grid-template-columns: 1.1fr .55fr; gap: clamp(60px,9vw,150px); align-items: end; }
.about-operate-head h2 { max-width: 1020px; font-size: clamp(58px,7.3vw,102px); line-height: .91; letter-spacing: -.045em; }
.about-operate-head p { max-width: 560px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.about-handoff { margin-top: clamp(72px,8vw,112px); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.about-handoff-tabs { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid var(--gray-medium); }
.about-handoff-tabs button { position: relative; display: flex; gap: 12px; align-items: center; min-height: 82px; padding: 20px 24px; border-right: 1px solid var(--gray-medium); color: var(--hushed); text-align: left; }
.about-handoff-tabs button:last-child { border-right: 0; }
.about-handoff-tabs button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: transparent; }
.about-handoff-tabs .i { width: 21px; height: 21px; }
.about-handoff-tabs button[aria-selected="true"] { color: var(--solar-hover); background: var(--solar-soft); }
.about-handoff-tabs button[aria-selected="true"]::after { background: var(--solar); }
.about-handoff-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 440px; }
.about-handoff-title { display: grid; align-content: center; padding: clamp(36px,5vw,76px); border-right: 1px solid var(--gray-medium); }
.about-handoff-title h3 { max-width: 660px; font-size: clamp(39px,4.4vw,64px); line-height: .98; letter-spacing: -.04em; }
.about-handoff-title p { max-width: 600px; margin-top: 28px; color: var(--hushed); line-height: 1.55; }
.about-handoff-panel dl { display: grid; align-content: center; }
.about-handoff-panel dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 34px; align-items: start; min-height: 112px; padding: 28px clamp(30px,4vw,58px); border-bottom: 1px solid var(--gray-medium); }
.about-handoff-panel dl > div:last-child { border-bottom: 0; }
.about-handoff-panel dt { color: var(--hushed); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.about-handoff-panel dd { font-size: clamp(18px,1.7vw,24px); line-height: 1.3; }
.about-handoff-panel.is-updating h3, .about-handoff-panel.is-updating p, .about-handoff-panel.is-updating dl { animation: aboutLedgerSet .42s var(--ease) both; }

.about-directory { background: #f5f4f2; }
.about-directory-head { display: grid; grid-template-columns: 1.05fr .5fr; gap: clamp(60px,9vw,160px); align-items: end; }
.about-directory-head h2 { max-width: 1020px; font-size: clamp(58px,7.4vw,104px); line-height: .91; letter-spacing: -.045em; }
.about-directory-head p { max-width: 520px; color: var(--hushed); font-size: 17px; line-height: 1.55; }
.about-directory-tools { display: grid; grid-template-columns: 1fr 1fr 1.2fr; margin-top: clamp(72px,8vw,108px); border: 1px solid var(--gray-dark); background: #fff; }
.about-directory-tools label { position: relative; display: grid; gap: 8px; min-height: 92px; padding: 18px 22px; border-right: 1px solid var(--gray-dark); }
.about-directory-tools label:last-child { border-right: 0; }
.about-directory-tools label > span { color: var(--hushed); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.about-directory-tools select, .about-directory-tools input { width: 100%; min-height: 36px; padding: 0; border: 0; background: transparent; color: var(--ink); font: inherit; font-size: 15px; outline: 0; }
.about-directory-search { grid-template-columns: 26px 1fr; }
.about-directory-search > span { grid-column: 1 / -1; }
.about-directory-search .i { width: 20px; height: 20px; margin-top: 7px; color: var(--hushed); }
.about-directory-tools label:focus-within { background: var(--solar-soft); box-shadow: inset 0 -2px var(--solar); }
.about-directory-result { margin-top: 24px; color: var(--hushed); font-size: 12px; }
.about-role-directory { margin-top: 18px; border-top: 1px solid var(--ink); }
.about-role-row { border-bottom: 1px solid var(--ink); }
.about-role-row[hidden] { display: none; }
.about-role-row > button { display: grid; grid-template-columns: 1fr 28px; gap: 24px; align-items: center; width: 100%; min-height: 112px; padding: 24px 0; text-align: left; }
.about-role-row > button span { display: grid; grid-template-columns: minmax(340px,1fr) minmax(260px,.65fr); gap: 50px; align-items: center; }
.about-role-row > button strong { font-size: clamp(23px,2.3vw,34px); font-weight: 400; letter-spacing: -.025em; }
.about-role-row > button small { color: var(--hushed); font-size: 13px; }
.about-role-row > button > .i { width: 24px; height: 24px; transition: transform .3s var(--ease); }
.about-role-row.is-open > button { color: var(--solar-hover); }
.about-role-row.is-open > button > .i { transform: rotate(45deg); }
.about-role-row-body { display: none; grid-template-columns: 1fr .82fr auto; gap: clamp(34px,6vw,90px); align-items: start; padding: 6px 52px 42px 0; }
.about-role-row.is-open .about-role-row-body { display: grid; }
.about-role-row-body > p { max-width: 680px; color: var(--hushed); line-height: 1.6; }
.about-role-row-body dl { display: grid; gap: 16px; }
.about-role-row-body dl div { display: grid; grid-template-columns: 70px 1fr; gap: 12px; }
.about-role-row-body dt { color: var(--hushed); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.about-role-row-body dd { font-size: 13px; line-height: 1.4; }
.about-role-row-body a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; white-space: nowrap; color: var(--solar-hover); }
.about-role-row-body a .i { width: 18px; height: 18px; }

.about-boundary-new { overflow: hidden; border-radius: 26px; background: var(--black); color: #fff; }
.about-boundary-new h2 { max-width: 1220px; font-size: clamp(56px,7.2vw,100px); line-height: .91; letter-spacing: -.045em; }
.about-boundary-lines { margin-top: clamp(76px,8vw,116px); border-top: 1px solid rgba(255,255,255,.22); }
.about-boundary-lines article { display: grid; grid-template-columns: minmax(320px,.75fr) 1.25fr; gap: clamp(50px,8vw,140px); min-height: 190px; padding: 38px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.about-boundary-lines h3 { max-width: 520px; font-size: clamp(25px,2.5vw,38px); font-weight: 400; line-height: 1.08; }
.about-boundary-lines p { max-width: 660px; color: rgba(255,255,255,.62); line-height: 1.6; }

.about-region-new { position: relative; overflow: hidden; background: #e9e6e3; }
.about-region-new::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16; background-image: radial-gradient(circle at 1px 1px, rgba(12,10,8,.26) 1px, transparent 0); background-size: 24px 24px; }
.about-region-new-grid { position: relative; display: grid; grid-template-columns: minmax(390px,.78fr) minmax(650px,1.22fr); gap: clamp(58px,6.5vw,110px); align-items: center; }
.about-region-new-copy { min-width: 0; }
.about-region-new h2 { max-width: 700px; font-size: clamp(54px,5.9vw,86px); line-height: .92; letter-spacing: -.04em; }
.about-region-new-copy > p { max-width: 620px; margin-top: 30px; color: var(--hushed); font-size: 17px; line-height: 1.58; }
.about-region-new .text-link { margin-top: 34px; }

.about-region-milestones { margin-top: clamp(54px,6vw,78px); border-top: 1px solid var(--ink); }
.about-region-milestones li { display: grid; grid-template-columns: 86px minmax(0,1fr) auto; gap: 22px; align-items: start; padding: 24px 0; border-bottom: 1px solid rgba(12,10,8,.28); }
.about-region-milestones time { padding-top: 3px; color: var(--solar-hover); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.about-region-milestones strong { display: block; font-size: 18px; font-weight: 500; letter-spacing: -.015em; }
.about-region-milestones p { max-width: 390px; margin-top: 7px; color: var(--hushed); font-size: 13px; line-height: 1.45; }
.about-region-state { align-self: start; padding: 6px 8px; border: 1px solid currentColor; border-radius: 999px; font-size: var(--type-meta); font-weight: 600; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.about-region-state--operating, .about-region-state--live { color: var(--solar-hover); background: rgba(110,63,243,.07); }
.about-region-state--planned { color: var(--hushed); border-style: dashed; background: rgba(255,255,255,.32); }

.about-global-map { min-width: 0; border-top: 1px solid rgba(12,10,8,.58); border-bottom: 1px solid rgba(12,10,8,.58); }
.about-map-head { display: flex; justify-content: space-between; gap: 24px; align-items: center; min-height: 58px; padding: 0 4px; border-bottom: 1px solid rgba(12,10,8,.28); }
.about-map-head strong { font-size: 13px; font-weight: 500; letter-spacing: -.01em; }
.about-map-head span { color: var(--hushed); font-size: var(--type-meta); letter-spacing: .06em; text-transform: uppercase; }
.about-global-map-stage { position: relative; aspect-ratio: 1.62; min-height: 490px; overflow: hidden; background: rgba(255,255,255,.2); }
.about-global-map-svg { display: block; width: 100%; height: 100%; }
.about-map-land { fill: url(#about-map-land); stroke: rgba(255,255,255,.58); stroke-width: 1; }
.about-map-route { fill: none; stroke: var(--solar); stroke-width: 2.1; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.about-map-route--live { stroke-width: 2.8; }
.about-map-route--planned { opacity: .68; stroke: var(--ink); stroke-width: 1.6; stroke-dasharray: .025 .026; }
.about-map-route--service { opacity: .38; stroke-dasharray: .018 .025; }
.about-map-particle { opacity: 0; fill: #fff; stroke: var(--solar); stroke-width: 3; filter: url(#about-map-glow); transition: opacity .3s ease; }
.about-map-particle--quiet { stroke-width: 2; }
.about-map-node { vector-effect: non-scaling-stroke; }
.about-map-node--origin { fill: var(--solar); stroke: #fff; stroke-width: 3; filter: url(#about-map-glow); }
.about-map-node--live { fill: var(--solar); stroke: #fff; stroke-width: 3; }
.about-map-node--planned { fill: #e9e6e3; stroke: var(--ink); stroke-width: 2; stroke-dasharray: 3 2; }
.about-map-node-ring { fill: none; stroke: var(--solar); stroke-width: 1.5; opacity: .28; transform-box: fill-box; transform-origin: center; }
.about-map-endpoint { fill: var(--ink); opacity: .46; }
.about-region-new.is-map-active .about-map-route--live, .about-region-new.is-map-active .about-map-route--service { animation: aboutMapFlow 7s linear infinite; }
.about-region-new.is-map-active .about-map-route--planned { animation: aboutMapFlow 11s linear infinite reverse; }
.about-region-new.is-map-active .about-map-particle { opacity: 1; }
.about-region-new.is-map-active .about-map-node-ring { animation: aboutMapPulse 2.8s var(--ease) infinite; }
@keyframes aboutMapFlow { to { stroke-dashoffset: -1; } }
@keyframes aboutMapPulse { 0%,100% { opacity: .22; transform: scale(.8); } 50% { opacity: .58; transform: scale(1.42); } }

.about-map-labels { position: absolute; inset: 0; pointer-events: none; }
.about-map-label { position: absolute; display: grid; min-width: 150px; padding: 11px 13px 12px; border: 1px solid rgba(12,10,8,.36); background: rgba(255,255,255,.9); box-shadow: 0 12px 28px rgba(12,10,8,.09); }
.about-map-label small { color: var(--hushed); font-size: 8px; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; }
.about-map-label strong { margin-top: 5px; font-size: 15px; font-weight: 500; }
.about-map-label em { margin-top: 3px; color: var(--hushed); font-size: 9px; font-style: normal; }
.about-map-label--china { top: 36%; right: 2%; border-color: rgba(110,63,243,.65); }
.about-map-label--us { top: 37%; left: 1%; }
.about-map-label--eu { top: 17%; left: 39%; border-style: dashed; }
.about-global-map figcaption { min-height: 58px; padding: 15px 4px; color: var(--hushed); font-size: var(--type-body-small); line-height: 1.45; }

.about-fit-new { background: #fff; }
.about-fit-new h2 { max-width: 1180px; font-size: clamp(56px,7vw,100px); line-height: .91; letter-spacing: -.045em; }
.about-fit-new-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: clamp(70px,8vw,110px); border-top: 1px solid var(--ink); }
.about-fit-new-grid > div { padding: 34px 60px 0 0; }
.about-fit-new-grid > div + div { padding-left: 60px; border-left: 1px solid var(--ink); }
.about-fit-new-grid h3 { font-size: 18px; font-weight: 500; }
.about-fit-new-grid ul { margin-top: 24px; }
.about-fit-new-grid li { display: flex; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--gray-medium); color: var(--hushed); line-height: 1.45; }
.about-fit-new-grid .i { flex: 0 0 auto; width: 18px; height: 18px; color: var(--solar); }

@media (max-width: 1180px) {
  .about-role-wall { width: max-content; margin: 0; }
  .about-manifesto-head, .about-operate-head, .about-directory-head, .about-region-new-grid { grid-template-columns: 1fr; }
  .about-manifesto-head p, .about-operate-head p, .about-directory-head p { margin-top: 8px; }
  .about-role-note { grid-column: auto; }
  .about-collage { min-height: 760px; }
  .about-handoff-panel { grid-template-columns: 1fr; }
  .about-handoff-title { border-right: 0; border-bottom: 1px solid var(--gray-medium); }
  .about-directory-tools { grid-template-columns: 1fr 1fr; }
  .about-directory-search { grid-column: 1 / -1; border-top: 1px solid var(--gray-dark); }
  .about-directory-tools label:nth-child(2) { border-right: 0; }
  .about-role-row-body { grid-template-columns: 1fr 1fr; }
  .about-role-row-body > a { grid-column: 1 / -1; }
  .about-global-map { margin-top: 10px; }
  .about-global-map-stage { min-height: 0; }
}

@media (max-width: 760px) {
  .about-people-hero { padding-top: 58px; }
  .about-people-intro { text-align: left; }
  .about-people-intro h1 { font-size: clamp(58px,17vw,76px); line-height: .92; }
  .about-people-intro p { margin-top: 26px; }
  .about-role-scroll { height: auto; margin-top: 58px; }
  .about-role-viewport { position: relative; top: auto; height: auto; min-height: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .about-role-viewport::-webkit-scrollbar { display: none; }
  .about-role-wall { position: relative; top: auto; left: auto; display: grid; grid-template-columns: repeat(5,82vw); gap: 8px; width: max-content; margin: 0; padding: 0 16px 42px; transform: none; will-change: auto; }
  .about-role-card { min-width: 0; margin-top: 0; scroll-snap-align: start; transform: none; opacity: 1; transition: none; }
  .about-role-card img { aspect-ratio: .88; }
  .about-role-card > div { min-height: 132px; }
  .about-manifesto-head h2, .about-operate-head h2, .about-directory-head h2, .about-boundary-new h2, .about-region-new h2, .about-fit-new h2 { font-size: clamp(48px,13.8vw,64px); }
  .about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: auto; min-height: 0; margin: 64px 16px 0; }
  .about-collage-photo { position: relative; inset: auto; width: auto; padding: 6px 6px 34px; transform: none; }
  .about-collage-photo img { aspect-ratio: .9; }
  .about-manifesto-sheet { position: relative; top: auto; left: auto; grid-column: 1 / -1; grid-row: 2; width: auto; min-height: 0; padding: 34px 26px; transform: none; }
  .about-manifesto-sheet::before { display: none; }
  .about-manifesto-sheet h3 { font-size: clamp(40px,11.5vw,54px); }
  .about-manifesto-sheet p { margin-top: 30px; }
  .about-manifesto-sheet span { margin-top: 34px; }
  .about-handoff-tabs { overflow-x: auto; grid-template-columns: repeat(5,100px); }
  .about-handoff-tabs button { justify-content: center; min-height: 76px; padding: 14px 8px; border-right: 1px solid var(--gray-medium); }
  .about-handoff-tabs button span { font-size: 12px; }
  .about-handoff-panel { min-height: 0; }
  .about-handoff-title { padding: 34px 22px; }
  .about-handoff-title h3 { font-size: clamp(37px,10vw,48px); }
  .about-handoff-panel dl > div { grid-template-columns: 110px 1fr; gap: 20px; padding: 24px 22px; }
  .about-directory-tools { grid-template-columns: 1fr; }
  .about-directory-tools label, .about-directory-tools label:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--gray-dark); }
  .about-directory-search { grid-column: auto; border-top: 0; border-bottom: 0 !important; }
  .about-role-row > button { min-height: 100px; }
  .about-role-row > button span { grid-template-columns: 1fr; gap: 8px; }
  .about-role-row > button strong { font-size: 24px; }
  .about-role-row-body { grid-template-columns: 1fr; gap: 26px; padding: 4px 0 36px; }
  .about-role-row-body > a { grid-column: auto; }
  .about-boundary-new { border-radius: 18px; }
  .about-boundary-lines article { grid-template-columns: 1fr; gap: 22px; min-height: 0; }
  .about-region-new-grid { gap: 64px; }
  .about-region-new h2 { font-size: clamp(48px,13.8vw,64px); }
  .about-region-new-copy > p { margin-top: 24px; font-size: 16px; }
  .about-region-milestones { margin-top: 44px; }
  .about-region-milestones li { grid-template-columns: 68px minmax(0,1fr); gap: 14px; padding: 21px 0; }
  .about-region-milestones time { font-size: 11px; }
  .about-region-milestones strong { font-size: 16px; }
  .about-region-milestones p { font-size: 12px; }
  .about-region-state { grid-column: 2; justify-self: start; margin-top: -6px; }
  .about-map-head { align-items: flex-start; min-height: 68px; padding: 14px 0; }
  .about-map-head span { max-width: 130px; text-align: right; }
  .about-global-map-stage { aspect-ratio: auto; overflow: visible; background: transparent; }
  .about-global-map-svg { aspect-ratio: 1.42; height: auto; margin-top: 10px; }
  .about-map-labels { position: static; display: grid; grid-template-columns: 1fr; border-top: 1px solid rgba(12,10,8,.28); }
  .about-map-label { position: static; min-width: 0; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(12,10,8,.22); background: transparent; box-shadow: none; }
  .about-map-label--china, .about-map-label--us, .about-map-label--eu { border-style: solid; }
  .about-map-label small { font-size: 8px; }
  .about-map-label strong { font-size: 14px; }
  .about-global-map figcaption { padding: 14px 0; }
  .about-fit-new-grid { grid-template-columns: 1fr; }
  .about-fit-new-grid > div, .about-fit-new-grid > div + div { padding: 30px 0; border-left: 0; }
  .about-fit-new-grid > div + div { border-top: 1px solid var(--ink); }
}

/* ============================================================
   BLOG LIBRARY — FIELD NOTES LEDGER
   ============================================================ */
/* Every cover frame uses the same 5:3 ratio, on any page, so a row of cards
   always lines up even when the source images have different dimensions. */
:root { --blog-cover-ratio: 5 / 3; }
.blog-library-page { --blog-cover-ratio: 5 / 3; background: #f4f1eb; color: var(--ink); }
.blog-library-page .container { max-width: 1440px; }
.blog-library-page .i { width: 18px; height: 18px; fill: none; stroke: currentColor; }
.blog-record-label { font-size: 11px; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; }
.blog-record-label { color: var(--solar-hover); }

.blog-library-hero { padding: clamp(56px,6vw,88px) 0 0; background: #fff; }
.blog-library-titlebar { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 48px; align-items: center; }
.blog-library-titlebar h1 { max-width: 920px; font-size: clamp(48px,4.8vw,72px); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.blog-header-tools { display: flex; gap: 16px; align-items: center; }
.blog-header-tools button { min-height: 54px; border: 1px solid #c9c5be; border-radius: 8px; background: #fff; color: var(--ink); }
.blog-search-toggle { display: grid; width: 54px; padding: 0; place-items: center; }
.blog-search-toggle .i { width: 22px; height: 22px; }
.blog-category-toggle { min-width: 186px; padding: 0 24px; font-size: 14px; }
.blog-header-tools button:hover, .blog-header-tools button[aria-expanded="true"] { border-color: var(--ink); background: #f4f1eb; }
.blog-header-tools button:focus-visible { outline: 3px solid var(--solar); outline-offset: 3px; }
.blog-search-panel { margin-top: 26px; }
.blog-search-panel[hidden] { display: none; }
.blog-search-panel .blog-search { max-width: 620px; margin-left: auto; }
.blog-search label { display: block; margin-bottom: 12px; color: var(--hushed); font-size: 12px; }
.blog-search > div { display: grid; grid-template-columns: 22px minmax(0,1fr) auto; gap: 10px; align-items: center; min-height: 58px; border-bottom: 1px solid var(--ink); }
.blog-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; }
.blog-search input:focus-visible { border-radius: 2px; outline: 3px solid var(--solar); outline-offset: 5px; }
.blog-search input::placeholder { color: #66635f; }
.blog-search button { display: inline-flex; gap: 7px; align-items: center; min-height: 44px; border: 0; background: transparent; color: var(--ink); font-size: 12px; }
.blog-search button .i { width: 14px; height: 14px; transition: transform .2s ease; }
.blog-search button[aria-expanded="true"] .i { transform: rotate(180deg); }
.blog-category-tray { display: flex; gap: 8px; margin-top: 34px; flex-wrap: wrap; }
.blog-category-tray[hidden] { display: none; }
.blog-category-tray button { min-height: 42px; padding: 0 17px; border: 1px solid #cac5bd; border-radius: 999px; background: #fff; color: var(--ink); font-size: 12px; }
.blog-category-tray button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }

.blog-feature { display: grid; grid-template-columns: minmax(360px,.66fr) minmax(0,1fr); aspect-ratio: 2.75 / 1; margin-top: clamp(38px,4vw,58px); overflow: hidden; border: 1px solid #d8d3cb; border-radius: 16px; background: #f4f1eb; }
.blog-feature-copy { display: flex; min-height: 0; padding: clamp(32px,3.6vw,54px); flex-direction: column; }
.blog-feature-copy h2 { max-width: 590px; margin-top: 28px; font-size: clamp(34px,3.3vw,48px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.blog-feature-copy > p { display: none; }
.blog-feature-foot { display: flex; gap: 30px; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 42px; border-top: 1px solid #cbc5bc; }
.blog-feature-foot > span { max-width: 190px; color: var(--hushed); font-size: 11px; line-height: 1.45; }
.blog-feature-foot a { display: inline-flex; gap: 9px; align-items: center; color: var(--ink); font-size: 13px; }
.blog-feature-media { aspect-ratio: var(--blog-cover-ratio, 5 / 3); min-height: 0; overflow: hidden; background: #e9e4dc; }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.blog-feature:hover .blog-feature-media img { transform: scale(1.015); }
.blog-feature-nav { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; padding: 26px 0 clamp(64px,7vw,104px); }
.blog-feature-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.blog-feature-progress button { position: relative; height: 16px; padding: 0; border: 0; background: transparent; }
.blog-feature-progress button::before { content: ""; position: absolute; top: 7px; right: 0; left: 0; height: 1px; background: #d0ccc5; }
.blog-feature-progress button.is-active::before { height: 2px; background: var(--ink); }
.blog-feature-nav > div:last-child { display: flex; gap: 10px; }
.blog-feature-nav > div:last-child button { display: grid; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: #f4f1eb; color: var(--ink); place-items: center; }
.blog-feature-nav > div:last-child button:first-child .i { transform: rotate(180deg); }
.blog-feature-nav button:hover { background-color: #e8e3dc; }
.blog-feature-nav button:focus-visible { outline: 3px solid var(--solar); outline-offset: 2px; }
.blog-feature[hidden] { display: none; }

.blog-utility-section { padding: 0 0 clamp(84px,9vw,136px); background: #fff; }
.blog-utility-grid { display: grid; grid-template-columns: 1.12fr .88fr; }
.blog-newsletter, .blog-start-record { min-height: 490px; padding: clamp(38px,4.5vw,70px); }
.blog-newsletter { background: var(--ink); color: #fff; }
.blog-newsletter > .i { width: 32px; height: 32px; color: #aa8cff; }
.blog-newsletter .blog-record-label { margin-top: 72px; color: #aa8cff; }
.blog-newsletter h2, .blog-start-record h2 { max-width: 700px; margin-top: 18px; font-size: clamp(40px,4.2vw,64px); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.blog-newsletter > p:not(.blog-record-label), .blog-start-record > p:not(.blog-record-label) { max-width: 630px; margin-top: 20px; font-size: 15px; line-height: 1.55; }
.blog-newsletter > p:not(.blog-record-label) { color: rgba(255,255,255,.62); }
.blog-newsletter form { margin-top: auto; padding-top: 38px; }
.blog-newsletter label { display: block; margin-bottom: 10px; color: rgba(255,255,255,.6); font-size: 11px; }
.blog-newsletter form > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.blog-newsletter input { min-height: 52px; padding: 0 16px; border: 1px solid rgba(255,255,255,.35); border-radius: 4px; background: transparent; color: #fff; font: inherit; }
.blog-newsletter input::placeholder { color: rgba(255,255,255,.66); }
.blog-newsletter .btn--light { min-height: 52px; border: 1px solid #fff; background: #fff; color: var(--ink); }
.blog-newsletter-status { min-height: 20px; margin-top: 12px; color: #cbbbff; font-size: 11px; }
.blog-start-record { display: flex; flex-direction: column; background: var(--solar); color: #fff; }
.blog-start-record .blog-record-label { color: rgba(255,255,255,.68); }
.blog-start-record > p:not(.blog-record-label) { color: rgba(255,255,255,.72); }
.blog-start-record > div { display: flex; gap: 26px; margin-top: auto; padding-top: 38px; border-top: 1px solid rgba(255,255,255,.4); }
.blog-start-record a { display: inline-flex; gap: 8px; align-items: center; color: #fff; font-size: 13px; }

.blog-library-content { padding: clamp(90px,10vw,154px) 0; background: #f4f1eb; }
.blog-content-intro { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.55fr); gap: clamp(28px,5vw,84px); align-items: start; padding-bottom: 68px; }
.blog-content-intro h2 { max-width: 840px; font-size: clamp(48px,6.2vw,88px); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
.blog-content-intro > p:last-child { color: var(--hushed); font-size: 16px; line-height: 1.58; }
.blog-chapter { padding: 68px 0 84px; border-top: 1px solid var(--ink); }
.blog-chapter-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.45fr); gap: 60px; align-items: end; }
.blog-chapter-head > div { display: flex; gap: 28px; align-items: baseline; }
.blog-chapter-head span { color: var(--solar-hover); font-size: 12px; }
.blog-chapter-head h3 { font-size: clamp(37px,4vw,58px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.blog-chapter-head > p { color: var(--hushed); font-size: 14px; line-height: 1.55; }
.blog-chapter-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr); grid-template-rows: repeat(2,minmax(230px,auto)); margin-top: 54px; border-top: 1px solid #c9c4bc; }
.blog-article { color: inherit; }
.blog-article--lead { grid-row: 1 / 3; padding: 28px 38px 30px 0; border-bottom: 1px solid #c9c4bc; }
.blog-article--lead .blog-article-media { aspect-ratio: var(--blog-cover-ratio, 5 / 3); overflow: hidden; background: #e9e4dc; }
.blog-article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-article:hover .blog-article-media img { transform: scale(1.02); }
.blog-article-meta { display: flex; gap: 14px; justify-content: space-between; margin-top: 23px; color: var(--hushed); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.blog-article--lead h4 { max-width: 720px; margin-top: 18px; font-size: clamp(32px,3vw,45px); font-weight: 400; line-height: 1.02; letter-spacing: -.03em; }
.blog-article--lead > p { max-width: 720px; margin-top: 18px; color: var(--hushed); font-size: 15px; line-height: 1.55; }
.blog-article-action { display: inline-flex; gap: 8px; align-items: center; margin-top: 28px; color: var(--solar-hover); font-size: 12px; }
.blog-article--row { display: grid; grid-template-columns: minmax(0,1fr) 168px; gap: 28px; min-height: 230px; padding: 28px 0 28px 38px; border-bottom: 1px solid #c9c4bc; border-left: 1px solid #c9c4bc; }
.blog-article--row .blog-article-media { grid-column: 2; grid-row: 1; aspect-ratio: var(--blog-cover-ratio, 5 / 3); align-self: start; overflow: hidden; background: #e9e4dc; }
.blog-article--row .blog-article-copy { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; }
.blog-article--row .blog-article-meta { margin-top: 0; }
.blog-article--row h4 { margin-top: 24px; font-size: clamp(23px,2.2vw,32px); font-weight: 400; line-height: 1.05; letter-spacing: -.025em; }
.blog-article--row .blog-article-action { margin-top: auto; padding-top: 22px; }
.blog-chapter-loading { margin-top: 48px; color: var(--hushed); }
.blog-empty { padding: 70px 0; border-top: 1px solid var(--ink); text-align: center; }
.blog-empty p { font-size: 28px; }
.blog-empty button { margin-top: 20px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--solar-hover); }

.blog-preview-section { padding: clamp(70px,8vw,120px) 0; background: #fff; scroll-margin-top: 90px; }
.blog-preview-section[hidden] { display: none; }
.blog-preview-record { position: relative; }
.blog-preview-close { display: inline-flex; gap: 8px; align-items: center; min-height: 44px; border: 0; background: transparent; color: var(--hushed); font-size: 12px; }
.blog-preview-close .i { width: 16px; height: 16px; }
.blog-preview-head { display: grid; grid-template-columns: 150px minmax(0,1fr) minmax(280px,.5fr); gap: clamp(28px,5vw,84px); align-items: start; margin-top: 48px; padding-bottom: 68px; border-bottom: 1px solid var(--ink); }
.blog-preview-head h2 { max-width: 900px; font-size: clamp(48px,6vw,86px); font-weight: 400; line-height: .93; letter-spacing: -.045em; }
.blog-preview-head > p:last-child { color: var(--hushed); font-size: 16px; line-height: 1.58; }
.blog-preview-body { display: grid; grid-template-columns: 150px minmax(0,1fr) minmax(280px,.5fr); gap: clamp(28px,5vw,84px); padding-top: 50px; }
.blog-preview-body > p { color: var(--hushed); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.blog-preview-body ol { list-style: none; counter-reset: preview-points; }
.blog-preview-body li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 0 0 28px; font-size: clamp(22px,2.2vw,32px); line-height: 1.2; counter-increment: preview-points; }
.blog-preview-body li::before { content: "0" counter(preview-points); color: var(--solar-hover); font-size: 11px; padding-top: 7px; }
.blog-preview-body > div > p { color: var(--hushed); line-height: 1.56; }
.blog-preview-body .btn { margin-top: 30px; }

.blog-latest-section { padding: clamp(90px,9vw,140px) 0; background: #fff; }
.blog-latest-head { padding-bottom: 52px; }
.blog-latest-head h2 { font-size: clamp(48px,6vw,86px); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
.blog-latest-list { border-top: 1px solid var(--ink); }
.blog-latest-item { display: grid; grid-template-columns: 55px 128px minmax(0,1fr) 190px 120px 24px; gap: 24px; align-items: center; min-height: 112px; padding: 18px 0; border-bottom: 1px solid #c9c4bc; color: inherit; }
.blog-latest-item > span { color: var(--hushed); font-size: 11px; }
.blog-latest-thumb { display: block; aspect-ratio: 2 / 1; border-radius: var(--r-xl); overflow: hidden; background: var(--gray-light); }
.blog-latest-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-latest-item:hover .blog-latest-thumb img { transform: scale(1.02); }
.blog-latest-item h3 { font-size: clamp(21px,2vw,30px); font-weight: 400; line-height: 1.12; }
.blog-latest-item .i { color: var(--solar-hover); }
.blog-latest-item:hover h3 { color: var(--solar-hover); }

@media (max-width: 1100px) {
  .blog-latest-item { grid-template-columns: 40px 104px minmax(0,1fr) 150px 22px; gap: 16px; }
  .blog-latest-read { display: none; }
}

.blog-final-cta { padding: clamp(100px,12vw,180px) 0; background: #f4f1eb; text-align: center; }
.blog-final-cta h2 { max-width: 1100px; margin: 0 auto; font-size: clamp(56px,7.6vw,112px); font-weight: 400; line-height: .9; letter-spacing: -.05em; }
.blog-final-cta .btn { margin-top: 42px; }

@media (max-width: 1000px) {
  .blog-library-titlebar, .blog-content-intro, .blog-preview-head, .blog-preview-body { grid-template-columns: 1fr; gap: 30px; }
  .blog-header-tools { justify-self: start; }
  .blog-search-panel .blog-search { max-width: 620px; margin-left: 0; }
  .blog-feature { grid-template-columns: 1fr; aspect-ratio: auto; }
  .blog-feature-media { aspect-ratio: var(--blog-cover-ratio, 5 / 3); }
  .blog-utility-grid { grid-template-columns: 1fr; }
  .blog-chapter-head { grid-template-columns: 1fr; gap: 20px; }
  .blog-chapter-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .blog-article--lead { grid-row: auto; padding-right: 0; }
  .blog-article--row { border-left: 0; padding-left: 0; }
}

@media (max-width: 680px) {
  .blog-library-hero { padding-top: 54px; }
  .blog-library-titlebar h1 { font-size: clamp(48px,13vw,58px); }
  .blog-header-tools { width: 100%; gap: 10px; }
  .blog-search-toggle { flex: 0 0 52px; }
  .blog-category-toggle { min-width: 0; flex: 1; }
  .blog-search > div { grid-template-columns: 20px minmax(0,1fr); }
  .blog-search button { grid-column: 1 / 3; justify-content: space-between; border-top: 1px solid #d0cbc3; }
  .blog-category-tray { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .blog-category-tray button { flex: none; }
  .blog-feature { min-height: 0; aspect-ratio: auto; margin-top: 34px; border-radius: 12px; }
  .blog-feature-copy { min-height: 470px; padding: 30px 24px; }
  .blog-feature-copy h2 { margin-top: 28px; font-size: 40px; }
  .blog-feature-foot { gap: 20px; align-items: flex-start; flex-direction: column; }
  .blog-feature-media { aspect-ratio: var(--blog-cover-ratio, 5 / 3); min-height: 0; }
  .blog-feature-nav { gap: 14px; padding-top: 20px; }
  .blog-feature-progress { gap: 7px; }
  .blog-feature-nav > div:last-child button { width: 38px; height: 38px; }
  .blog-newsletter, .blog-start-record { min-height: 520px; padding: 34px 24px; }
  .blog-newsletter form > div { grid-template-columns: 1fr; }
  .blog-start-record > div { align-items: flex-start; flex-direction: column; }
  .blog-content-intro h2, .blog-preview-head h2, .blog-latest-head h2 { font-size: clamp(48px,13vw,62px); }
  .blog-chapter { padding: 54px 0 64px; }
  .blog-chapter-head > div { gap: 16px; align-items: flex-start; flex-direction: column; }
  .blog-chapter-grid { margin-top: 36px; }
  .blog-article--lead { padding: 18px 0 28px; }
  .blog-article--lead h4 { font-size: 32px; }
  .blog-article--row { grid-template-columns: minmax(0,1fr) 112px; gap: 18px; min-height: 208px; padding: 22px 0; }
  .blog-article--row h4 { margin-top: 18px; font-size: 23px; }
  .blog-article--row .blog-article-action span { display: none; }
  .blog-preview-body li { grid-template-columns: 30px 1fr; font-size: 23px; }
  .blog-latest-head { grid-template-columns: 1fr; gap: 24px; }
  .blog-latest-item { grid-template-columns: 34px 104px minmax(0,1fr) 20px; gap: 14px; min-height: 128px; }
  .blog-latest-category, .blog-latest-read { display: none; }
  .blog-final-cta h2 { font-size: clamp(52px,14vw,70px); }
}

@media (prefers-reduced-motion: reduce) {
  .blog-feature-media img, .blog-article-media img, .blog-search button .i { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .about-role-card img, .about-handoff-panel.is-updating h3, .about-handoff-panel.is-updating p, .about-handoff-panel.is-updating dl, .about-map-route, .about-map-node-ring { transition: none !important; animation: none !important; }
  .about-map-particle { display: none; }
}

/* ==========================================================================
   Industries — procurement desk overview + publishable vertical pages
   ========================================================================== */
.industries-page, .industry-page { background: #fff; }
.industries-page main, .industry-page main { overflow: clip; }

.industries-hero { min-height: calc(100svh - var(--nav-h)); padding: clamp(54px,6vw,92px) 0 42px; background: #fff; }
.industries-hero-grid { display: grid; grid-template-columns: minmax(0,.94fr) minmax(540px,1.06fr); gap: clamp(54px,7vw,116px); align-items: center; }
.industries-hero-copy { max-width: 690px; }
.industries-hero-copy h1 { max-width: 760px; font-size: clamp(54px,5.55vw,84px); line-height: .94; letter-spacing: -.04em; }
.industries-hero-copy > p { max-width: 620px; margin-top: 30px; color: var(--hushed); font-size: 18px; line-height: 1.48; }
.industries-hero-form { display: grid; grid-template-columns: minmax(0,1fr) auto; max-width: 570px; margin-top: 34px; padding: 4px; border: 1px solid var(--gray-medium); border-radius: 8px; background: #fff; }
.industries-hero-form input { min-width: 0; height: 50px; padding: 0 18px; border: 0; background: transparent; color: var(--ink); font: inherit; outline: 0; }
.industries-hero-form button { min-height: 50px; padding: 0 20px; border-radius: 6px; background: var(--solar); color: #fff; }
.industries-hero-form:focus-within { border-color: var(--solar); box-shadow: 0 0 0 3px rgba(110,63,243,.12); }
.industries-hero-copy > .text-link { margin-top: clamp(54px,8vh,88px); }

.sourcing-desk { position: relative; min-height: 670px; padding: 18px; overflow: hidden; border-radius: 22px; background: #ebe9e7; box-shadow: 0 28px 60px rgba(12,10,8,.12); }
.sourcing-desk-bar, .sourcing-desk-foot { position: relative; z-index: 4; display: flex; justify-content: space-between; align-items: center; color: var(--hushed); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.sourcing-desk-bar > span:last-child { display: inline-flex; align-items: center; gap: 7px; }
.sourcing-desk-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--solar); box-shadow: 0 0 0 5px rgba(110,63,243,.1); }
.sourcing-desk-route { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin-top: 18px; }
.sourcing-desk-route b { height: 3px; overflow: hidden; border-radius: 999px; background: rgba(12,10,8,.12); }
.sourcing-desk-route b::after { content: ""; display: block; width: 100%; height: 100%; background: var(--solar); transform: scaleX(0); transform-origin: left; transition: transform .56s var(--ease); }
.sourcing-desk-route b.is-complete::after, .sourcing-desk-route b.is-active::after { transform: scaleX(1); }
.sourcing-desk-stage { position: relative; z-index: 2; min-height: 530px; margin-top: 20px; }
.sourcing-slip { position: absolute; inset: 0; display: grid; align-content: start; padding: clamp(34px,4vw,58px); border: 1px solid rgba(12,10,8,.1); border-radius: 14px; background: rgba(255,255,255,.96); opacity: 0; transform: translateY(22px) scale(.985); pointer-events: none; transition: opacity .42s var(--ease),transform .56s var(--ease),box-shadow .56s var(--ease); }
.sourcing-slip.is-active { z-index: 3; opacity: 1; transform: none; pointer-events: auto; box-shadow: 0 24px 48px rgba(12,10,8,.11); }
.sourcing-slip small { color: var(--hushed); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.sourcing-slip h2 { max-width: 520px; margin-top: 26px; font-size: clamp(36px,3.4vw,52px); line-height: .98; letter-spacing: -.035em; }
.sourcing-slip > p { max-width: 500px; margin-top: 28px; color: var(--hushed); line-height: 1.52; }
.sourcing-slip-grid { display: grid; grid-template-columns: .7fr 1.3fr; margin-top: 46px; border-top: 1px solid var(--gray-medium); }
.sourcing-slip-grid > * { min-height: 52px; padding: 15px 0; border-bottom: 1px solid var(--gray-medium); }
.sourcing-slip-grid span { color: var(--hushed); font-size: 12px; }
.sourcing-slip-grid strong { font-weight: 500; }
.sourcing-slip ul { margin-top: 42px; border-top: 1px solid var(--gray-medium); }
.sourcing-slip li { display: grid; grid-template-columns: 38px 1fr auto; gap: 14px; align-items: center; min-height: 78px; border-bottom: 1px solid var(--gray-medium); }
.sourcing-slip li b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--solar-soft); color: var(--solar-hover); }
.sourcing-slip li em { color: var(--hushed); font-size: 11px; font-style: normal; }
.sample-check { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 56px; }
.sample-check span { display: flex; align-items: center; gap: 11px; min-height: 68px; padding: 0 18px; border: 1px solid var(--gray-medium); border-radius: 8px; }
.sample-check i { width: 9px; height: 9px; border-radius: 50%; background: #f0b46c; }
.sample-check .is-pass i { background: var(--solar); }
.packout-line { display: flex; align-items: center; gap: 20px; margin-top: 70px; padding: 30px; border-radius: 10px; background: var(--solar-soft); }
.packout-line .i { width: 44px; height: 44px; color: var(--solar-hover); }
.packout-line span { display: grid; gap: 4px; }
.packout-line strong { font-size: 19px; font-weight: 500; }
.packout-line small { color: var(--hushed); text-transform: none; letter-spacing: 0; }
.sourcing-desk-foot { margin-top: 15px; }

.industry-name-band { overflow: hidden; border-block: 1px solid var(--gray-medium); background: #fff; }
.industry-name-track { display: flex; justify-content: space-between; gap: 34px; width: max-content; min-width: 100%; padding: 24px var(--gutter); color: var(--hushed); font-size: 13px; white-space: nowrap; }

.sourcing-story { background: #fff; }
.sourcing-story-head { display: grid; grid-template-columns: 1fr .78fr; gap: clamp(70px,9vw,150px); align-items: end; }
.sourcing-story-head h2 { max-width: 920px; font-size: clamp(52px,6.6vw,96px); line-height: .92; letter-spacing: -.04em; }
.sourcing-story-head p { max-width: 620px; color: var(--hushed); font-size: 17px; line-height: 1.56; }
.sourcing-story-grid { display: grid; grid-template-columns: minmax(340px,.72fr) minmax(0,1.28fr); gap: clamp(60px,8vw,130px); min-height: 2240px; margin-top: clamp(76px,9vw,126px); }
.sourcing-story-tabs { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; border-top: 1px solid var(--ink); }
.sourcing-story-tabs button { display: grid; gap: 10px; width: 100%; min-height: 130px; padding: 25px 0; border-bottom: 1px solid var(--gray-medium); text-align: left; transition: color .25s,opacity .25s; }
.sourcing-story-tabs strong { font-size: 20px; font-weight: 400; }
.sourcing-story-tabs span { max-width: 520px; color: var(--hushed); font-size: 13px; line-height: 1.5; }
.sourcing-story-tabs button[aria-selected="false"] { opacity: .45; }
.sourcing-story-tabs button[aria-selected="true"] { color: var(--solar-hover); }
.sourcing-story-visual { position: sticky; top: calc(var(--nav-h) + 30px); align-self: start; min-height: 660px; padding: 36px; border-radius: 20px; background: #ebe9e7; }
.sourcing-story-visual > section { position: absolute; inset: 36px; opacity: 0; transform: translateY(18px); transition: opacity .4s var(--ease),transform .5s var(--ease); }
.sourcing-story-visual > section.is-active { opacity: 1; transform: none; }
.story-sheet { min-height: 588px; padding: clamp(38px,5vw,74px); border-radius: 13px; background: #fff; box-shadow: 0 24px 50px rgba(12,10,8,.1); }
.story-sheet > span { color: var(--hushed); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.story-sheet h3 { max-width: 650px; margin-top: 30px; font-size: clamp(38px,4.25vw,64px); line-height: .96; letter-spacing: -.035em; }
.brief-lines { display: grid; gap: 18px; margin-top: 70px; }
.brief-lines i { display: block; height: 1px; background: var(--gray-medium); }
.brief-lines i:nth-child(2) { width: 82%; }.brief-lines i:nth-child(3) { width: 63%; }
.story-note { display: inline-flex; margin-top: 40px; padding: 12px 15px; border-radius: 6px; background: var(--solar-soft); color: var(--solar-hover); font-size: 12px; }
.supplier-rows { margin-top: 65px; border-top: 1px solid var(--gray-medium); }
.supplier-rows p { display: flex; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--gray-medium); }
.supplier-rows b { font-weight: 500; }.supplier-rows em { color: var(--hushed); font-style: normal; }
.sample-board { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; margin-top: 55px; }
.sample-board > div { min-height: 250px; border-radius: 8px; background: linear-gradient(145deg,var(--solar-soft),#d7cff8); }
.sample-board p { display: grid; align-content: start; gap: 0; border-top: 1px solid var(--gray-medium); }
.sample-board p > * { padding: 17px 0; border-bottom: 1px solid var(--gray-medium); }
.sample-board b { font-weight: 500; }.sample-board span { color: var(--hushed); }
.release-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; gap: 14px; align-items: center; margin-top: 100px; }
.release-route .i { display: grid; width: 32px; height: 32px; padding: 8px; border-radius: 50%; background: var(--solar); color: #fff; }
.release-route i { height: 1px; background: var(--solar); }
.release-route span { font-size: 13px; }

.team-film { padding-top: 0; background: #fff; }
.team-film-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: #9d8ae1; }
.team-film-placeholder { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 58% 42%,rgba(255,255,255,.2),transparent 28%),linear-gradient(115deg,#9d8ae1,#5b2ce1); }
.team-film-placeholder::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg,rgba(12,10,8,0) 54%,rgba(12,10,8,.18) 100%); pointer-events: none; }
.team-film-poster, .team-film-video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.team-film-poster { filter: saturate(.82) contrast(.96); transition: transform .7s var(--ease), filter .4s var(--ease); }
.team-film-frame:hover .team-film-poster { transform: scale(1.018); filter: saturate(1) contrast(1.02); }
.team-film-play { position: absolute; z-index: 3; inset: 0; display: block; color: var(--ink); text-decoration: none; }
.team-film-play .i { position: absolute; right: clamp(20px,3vw,34px); bottom: clamp(20px,3vw,34px); display: grid; place-items: center; width: 62px; height: 62px; padding: 20px; border-radius: 50%; background: #fff; box-shadow: 0 14px 34px rgba(12,10,8,.24); transition: transform .25s var(--ease), background .25s var(--ease); }
.team-film-play:disabled, .industry-video-frame > button:disabled { cursor: not-allowed; opacity: .72; }
.team-film-play, .industry-video-frame > a { text-decoration: none; transition: transform .2s var(--ease), background .2s var(--ease); }
.team-film-play:hover .i, .team-film-play:focus-visible .i { transform: scale(1.08); background: var(--solar); color: #fff; }
.team-film-play:focus-visible { outline: 2px solid var(--solar); outline-offset: -5px; }

.sourcing-team { background: var(--black); color: #fff; }
.sourcing-team-head { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(70px,10vw,170px); align-items: end; }
.sourcing-team-head h2 { max-width: 950px; font-size: clamp(54px,6.8vw,98px); line-height: .91; letter-spacing: -.04em; }
.sourcing-team-head p { max-width: 640px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.58; }
.sourcing-team-roles { display: grid; grid-template-columns: repeat(4,1fr); margin-top: clamp(76px,9vw,128px); border-top: 1px solid rgba(255,255,255,.22); }
.sourcing-team-roles article { min-height: 310px; padding: 28px 30px 30px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.sourcing-team-roles article + article { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.22); }
.sourcing-team-roles span { color: rgba(255,255,255,.4); font-size: 11px; }
.sourcing-team-roles h3 { margin-top: 90px; font-size: 25px; font-weight: 400; }
.sourcing-team-roles p { max-width: 300px; margin-top: 16px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.5; }

.industry-directory { background: #f2f0ee; }
.industry-directory-head, .popular-products-head, .industry-handling-head { display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.industry-directory-head h2, .popular-products-head h2, .industry-handling-head h2 { max-width: 940px; font-size: clamp(48px,6vw,88px); line-height: .93; letter-spacing: -.04em; }
.industry-directory-head p, .popular-products-head p, .industry-handling-head p { max-width: 560px; color: var(--hushed); line-height: 1.55; }
.industry-directory-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 78px; border-top: 1px solid var(--ink); }
.industry-directory-list a { display: grid; grid-template-columns: minmax(210px,.7fr) 1fr 24px; gap: 24px; align-items: center; min-height: 112px; padding: 0 26px 0 0; border-bottom: 1px solid var(--ink); }
.industry-directory-list a:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--ink); }
.industry-directory-list span { font-size: clamp(21px,2vw,30px); }
.industry-directory-list p { color: var(--hushed); font-size: 13px; }
.industry-directory-list .i { width: 20px; height: 20px; transition: transform .25s var(--ease); }
.industry-directory-list a:hover .i { transform: translate(3px,-3px); }

.industry-films { background: #fff; }
.industry-films-head { display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.industry-films-head h2 { max-width: 920px; font-size: clamp(48px,6vw,88px); line-height: .93; letter-spacing: -.04em; }
.industry-films-head p { max-width: 600px; margin-top: 22px; color: var(--hushed); line-height: 1.55; }
.industry-film-controls { display: flex; gap: 8px; }
.industry-film-controls button { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #ebe9e7; }
.industry-film-controls button:first-child .i { transform: rotate(180deg); }
.industry-film-track { display: flex; gap: 18px; margin-top: 64px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.industry-film-track::-webkit-scrollbar { display: none; }
.industry-film-card { position: relative; flex: 0 0 min(31vw,430px); min-width: 320px; aspect-ratio: .78; overflow: hidden; border-radius: 14px; scroll-snap-align: start; color: #fff; background: #d5d1ce var(--film-image) center/cover no-repeat; }
.industry-film-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(12,10,8,.18),rgba(12,10,8,.02) 45%,rgba(12,10,8,.66)); }
.industry-film-card > span, .industry-film-card h3, .industry-film-play { position: absolute; z-index: 2; }
.industry-film-card > span { top: 24px; left: 24px; padding: 7px 10px; border-radius: 5px; background: rgba(255,255,255,.86); color: var(--ink); font-size: var(--type-meta); text-transform: uppercase; }
.industry-film-card h3 { right: 70px; bottom: 24px; left: 24px; font-size: clamp(29px,2.4vw,38px); line-height: 1; }
.industry-film-play { right: 24px; bottom: 24px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--ink); }

.industries-faq { background: #f2f0ee; }
.industries-cta { background: #fff; }
.industries-cta-inner { text-align: center; }
.industries-cta-inner > p { color: var(--hushed); }
.industries-cta-inner h2 { max-width: 1100px; margin: 24px auto 0; font-size: clamp(54px,7vw,104px); line-height: .91; letter-spacing: -.045em; }
.industries-cta-inner .btn { margin-top: 38px; }

/* Detail pages */
.industry-hero { min-height: calc(100svh - var(--nav-h)); padding: clamp(56px,6vw,90px) 0 54px; background: #fff; }
.industry-hero-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr); gap: clamp(54px,8vw,130px); align-items: center; }
.industry-hero-copy > p { display: flex; gap: 12px; color: var(--hushed); font-size: 13px; }
.industry-hero-copy > p b { color: var(--ink); font-weight: 400; }
.industry-hero-copy h1 { max-width: 800px; margin-top: clamp(86px,12vh,150px); font-size: clamp(56px,6.2vw,94px); line-height: .92; letter-spacing: -.04em; }
.industry-hero-copy > div { max-width: 620px; margin-top: 30px; color: var(--hushed); font-size: 18px; line-height: 1.52; }
.industry-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.industry-record { padding: 18px; border-radius: 22px; background: #ebe9e7; box-shadow: 0 28px 60px rgba(12,10,8,.11); }
.industry-record-top { display: flex; justify-content: space-between; padding: 3px 2px 16px; color: var(--hushed); font-size: 11px; text-transform: uppercase; }
.industry-record-top em { font-style: normal; }
.industry-record-media { display: grid; place-items: center; min-height: 360px; border-radius: 12px 12px 0 0; color: rgba(255,255,255,.78); background-color: var(--industry-accent); background-position: center; background-size: cover; box-shadow: inset 0 0 0 999px rgba(12,10,8,.12); }
.industry-record-media span { padding: 8px 10px; border-radius: 5px; background: rgba(12,10,8,.62); font-size: var(--type-meta); letter-spacing: .06em; }
.industry-record-fields { padding: 12px 24px; background: #fff; }
.industry-record-fields p { display: grid; grid-template-columns: .55fr 1.45fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--gray-medium); }
.industry-record-fields span { color: var(--hushed); font-size: 12px; }
.industry-record-fields b { font-size: 13px; font-weight: 500; }
.industry-record-status { display: flex; gap: 10px; align-items: center; padding: 18px 24px; border-radius: 0 0 12px 12px; background: var(--industry-accent); font-size: 13px; }
.industry-record-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }

.industry-intro { background: #fff; border-top: 1px solid var(--gray-medium); }
.industry-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(70px,10vw,170px); }
.industry-intro h2 { max-width: 930px; font-size: clamp(50px,6.3vw,92px); line-height: .92; letter-spacing: -.04em; }
.industry-intro-grid > div p { max-width: 680px; color: var(--hushed); font-size: 18px; line-height: 1.62; }
.industry-intro-grid .text-link { margin-top: 30px; }

.popular-products { background: #f2f0ee; }
.popular-products-head > span { flex: none; padding: 8px 11px; border-radius: 999px; background: var(--industry-accent); font-size: 11px; }
.popular-products-head p { margin-top: 22px; }
.popular-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 66px; }
.popular-product { display: flex; flex-direction: column; min-height: 610px; padding: 14px; border: 1px solid rgba(12,10,8,.12); border-radius: 14px; background: #fff; }
.popular-product-media { min-height: 330px; padding: 16px; border-radius: 9px; background-color: var(--industry-accent); background-position: center; background-size: cover; }
.popular-product-media span { display: inline-flex; padding: 7px 9px; border-radius: 5px; background: rgba(255,255,255,.88); font-size: var(--type-meta); }
.popular-product h3 { margin: 24px 10px 0; font-size: clamp(24px,2.2vw,34px); line-height: 1.03; }
.popular-product > p { margin: 14px 10px 0; color: var(--hushed); font-size: 13px; line-height: 1.5; }
.popular-product-source { display: inline-flex; gap: 7px; align-items: center; width: fit-content; min-height: 40px; margin: auto 10px 0; color: var(--solar-hover); font-size: 12px; }
.popular-product-source.is-pending { color: var(--hushed); }
.popular-product-brief { display: flex; justify-content: space-between; align-items: center; min-height: 48px; margin: 8px 0 0; padding: 0 12px; border-top: 1px solid var(--gray-medium); font-size: 13px; }

.industry-handling { background: #fff; }
.industry-handling-list { margin-top: 70px; border-top: 1px solid var(--ink); }
.industry-handling-list article { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; min-height: 180px; padding: 34px 0; border-bottom: 1px solid var(--ink); }
.industry-handling-list h3 { font-size: clamp(24px,2.5vw,38px); }
.industry-handling-list p { max-width: 760px; color: var(--hushed); font-size: 17px; line-height: 1.58; }

.industry-route { background: var(--black); color: #fff; }
.industry-route-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(70px,10vw,170px); align-items: center; }
.industry-route h2 { max-width: 760px; font-size: clamp(50px,6vw,86px); line-height: .93; letter-spacing: -.04em; }
.industry-route p { max-width: 650px; margin-top: 28px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.58; }
.industry-route .btn { margin-top: 32px; }
.industry-route ol { border-top: 1px solid rgba(255,255,255,.23); }
.industry-route li { display: grid; grid-template-columns: 34px 1fr; gap: 20px; align-items: center; min-height: 105px; border-bottom: 1px solid rgba(255,255,255,.23); }
.industry-route li > .i { width: 26px; height: 26px; color: var(--industry-accent); }
.industry-route li span { display: grid; gap: 4px; }.industry-route li strong { font-size: 21px; font-weight: 400; }.industry-route li small { color: rgba(255,255,255,.55); }

.industry-video { background: #fff; }
.industry-video-frame { position: relative; min-height: min(65vw,760px); padding: clamp(36px,5vw,72px); overflow: hidden; border-radius: 18px; color: #fff; background: var(--industry-accent) var(--industry-video) center/cover no-repeat; box-shadow: inset 0 0 0 999px rgba(12,10,8,.28); }
.industry-video-frame > div { max-width: 850px; }.industry-video-frame span { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.industry-video-frame h2 { margin-top: 28px; font-size: clamp(50px,6vw,88px); line-height: .93; letter-spacing: -.04em; }
.industry-video-frame p { max-width: 600px; margin-top: 22px; color: rgba(255,255,255,.78); }
.industry-video-frame > button, .industry-video-frame > a { position: absolute; right: clamp(34px,5vw,72px); bottom: clamp(34px,5vw,72px); display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: #fff; color: var(--ink); }
.industry-video-frame > button .i, .industry-video-frame > a .i { width: 22px; height: 22px; margin-left: 3px; }

.industry-faq { background: #f2f0ee; }
.industry-more { background: #fff; }
.industry-more-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.industry-more-head h2 { font-size: clamp(44px,5.2vw,76px); line-height: .95; letter-spacing: -.04em; }
.industry-more-head a { display: inline-flex; gap: 8px; align-items: center; min-height: 44px; }
.industry-more-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 58px; border-top: 1px solid var(--ink); }
.industry-more-list a { display: flex; justify-content: space-between; align-items: center; min-height: 86px; padding-right: 22px; border-bottom: 1px solid var(--ink); }
.industry-more-list a:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--ink); }
.industry-more-list span { font-size: 19px; }

@media (max-width: 1180px) {
  .industries-hero-grid, .industry-hero-grid { grid-template-columns: 1fr; }
  .industry-hero-copy h1 { margin-top: 0; margin-bottom: 42px; }
  .industries-hero-copy { max-width: 850px; }
  .sourcing-desk { max-width: 900px; min-height: 640px; }
  .sourcing-story-head, .sourcing-team-head, .industry-intro-grid, .industry-route-grid { grid-template-columns: 1fr; }
  .sourcing-story-grid { grid-template-columns: .72fr 1.28fr; gap: 42px; }
  .sourcing-story-visual { min-height: 580px; }
  .story-sheet { min-height: 508px; }
  .sourcing-team-roles { grid-template-columns: repeat(2,1fr); }
  .sourcing-team-roles article:nth-child(3) { border-left: 0; }
  .industry-record { max-width: 900px; }
  .industry-hero-copy h1 { max-width: 980px; }
  .popular-products-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .industries-hero, .industry-hero { padding-top: 44px; }
  .industries-hero-copy h1, .industry-hero-copy h1 { font-size: clamp(48px,14vw,64px); }
  .industries-hero-copy > p, .industry-hero-copy > div { font-size: 16px; }
  .industries-hero-form { grid-template-columns: 1fr; gap: 4px; }
  .industries-hero-form button { width: 100%; }
  .industries-hero-copy > .text-link { margin-top: 38px; }
  .sourcing-desk { min-height: 560px; margin-top: 16px; padding: 12px; border-radius: 14px; }
  .sourcing-desk-bar { font-size: 9px; }
  .sourcing-desk-stage { min-height: 440px; }
  .sourcing-slip { padding: 28px 22px; }
  .sourcing-slip h2 { font-size: 34px; }
  .sourcing-slip-grid { margin-top: 30px; }
  .sourcing-slip li { grid-template-columns: 36px 1fr; }.sourcing-slip li em { grid-column: 2; }
  .sample-check { grid-template-columns: 1fr; margin-top: 34px; }
  .packout-line { margin-top: 42px; padding: 20px; }
  .industry-name-track { animation: industryNames 24s linear infinite; }
  @keyframes industryNames { to { transform: translateX(-45%); } }
  .sourcing-story-head h2, .sourcing-team-head h2, .industry-directory-head h2, .industry-films-head h2, .industry-intro h2, .popular-products-head h2, .industry-handling-head h2, .industry-route h2, .industry-video-frame h2, .industries-cta-inner h2 { font-size: clamp(46px,13vw,62px); }
  .sourcing-story-grid { grid-template-columns: 1fr; min-height: 0; }
  .sourcing-story-tabs { position: static; display: grid; grid-template-columns: repeat(4,74vw); gap: 8px; overflow-x: auto; border-top: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .sourcing-story-tabs button { min-height: 190px; padding: 24px; border: 1px solid var(--gray-medium); border-radius: 10px; scroll-snap-align: start; }
  .sourcing-story-visual { position: relative; top: auto; min-height: 510px; padding: 12px; border-radius: 14px; }
  .sourcing-story-visual > section { inset: 12px; }.story-sheet { min-height: 486px; padding: 30px 22px; }
  .story-sheet h3 { font-size: 38px; }.release-route { grid-template-columns: 32px 1fr; margin-top: 48px; }.release-route i { display: none; }
  .sample-board { grid-template-columns: 1fr; }.sample-board > div { min-height: 170px; }
  .team-film-frame { aspect-ratio: 9 / 14; min-height: 0; border-radius: 12px; }
  .industry-video-frame { min-height: 620px; border-radius: 12px; }
  .team-film-play .i { right: 18px; bottom: 18px; width: 54px; height: 54px; padding: 17px; }
  .industry-video-frame > button, .industry-video-frame > a { width: 62px; height: 62px; }
  .sourcing-team-roles { grid-template-columns: 1fr; }.sourcing-team-roles article, .sourcing-team-roles article + article { min-height: 230px; padding: 26px 0; border-left: 0; }
  .sourcing-team-roles h3 { margin-top: 54px; }
  .industry-directory-head, .popular-products-head, .industry-handling-head, .industry-films-head, .industry-more-head { display: grid; }
  .popular-products-head > span { justify-self: start; }
  .industry-directory-list, .industry-more-list { grid-template-columns: 1fr; }
  .industry-directory-list a, .industry-directory-list a:nth-child(even) { grid-template-columns: 1fr 24px; min-height: 100px; padding: 20px 0; border-left: 0; }
  .industry-directory-list p { grid-column: 1; }.industry-directory-list .i { grid-column: 2; grid-row: 1 / span 2; }
  .industry-film-controls { display: none; }.industry-film-card { flex-basis: 82vw; min-width: 0; }
  .industry-hero-actions { align-items: flex-start; flex-direction: column; }
  .industry-record { padding: 12px; border-radius: 14px; }.industry-record-media { min-height: 260px; }
  .popular-products-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .popular-product { flex: 0 0 84vw; min-height: 560px; scroll-snap-align: start; }.popular-product-media { min-height: 300px; }
  .industry-handling-list article { grid-template-columns: 1fr; gap: 20px; min-height: 0; }
  .industry-route ol { margin-top: 60px; }
  .industry-more-list a, .industry-more-list a:nth-child(even) { min-height: 72px; padding: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sourcing-slip, .sourcing-story-visual > section, .sourcing-desk-route b::after { transition: none !important; }
  .industry-name-track { animation: none !important; }
}

/* ==========================================================================
   Industry detail template v2 — Beauty approval surface
   ========================================================================== */
.industry-template-v2 { background: #fff; }
.industry-template-v2 main { overflow: clip; }
.beauty-hero { min-height: calc(100svh - var(--nav-h)); padding: clamp(68px,7vw,110px) 0 64px; background: #fff; }
.beauty-hero-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr); gap: clamp(64px,8vw,132px); align-items: center; }
.beauty-breadcrumb { display: flex; gap: 11px; color: var(--hushed); font-size: 13px; }
.beauty-breadcrumb b { color: var(--ink); font-weight: 400; }
.beauty-hero-copy h1 { max-width: 820px; margin-top: clamp(88px,11vh,142px); font-size: clamp(60px,6.4vw,96px); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
.beauty-hero-copy > p:not(.beauty-breadcrumb) { max-width: 650px; margin-top: 30px; color: var(--hushed); font-size: 18px; line-height: 1.56; }
.beauty-hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 36px; }
.beauty-hero-copy > small { display: block; max-width: 590px; margin-top: 56px; color: var(--hushed); font-size: 11px; line-height: 1.5; }
.beauty-hero-record { padding: 18px; border-radius: 22px; background: #ebe9e7; box-shadow: 0 28px 64px rgba(12,10,8,.1); }
.beauty-record-top { display: flex; justify-content: space-between; padding: 4px 3px 17px; color: var(--hushed); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.beauty-record-media { display: grid; place-items: center; min-height: 420px; border-radius: 12px 12px 0 0; background: #cbb7f5 center/cover no-repeat; box-shadow: inset 0 0 0 999px rgba(12,10,8,.14); }
.beauty-record-media span { padding: 8px 10px; border-radius: 5px; background: rgba(12,10,8,.65); color: #fff; font-size: var(--type-meta); letter-spacing: .05em; }
.beauty-hero-record dl { padding: 12px 24px 15px; border-radius: 0 0 12px 12px; background: #fff; }
.beauty-hero-record dl > div { display: grid; grid-template-columns: .6fr 1.4fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--gray-medium); }
.beauty-hero-record dl > div:last-child { border-bottom: 0; }
.beauty-hero-record dt { color: var(--hushed); font-size: 12px; }
.beauty-hero-record dd { font-size: 13px; font-weight: 500; }

.beauty-section-head { display: flex; justify-content: space-between; gap: 80px; align-items: end; }
.beauty-section-head h2 { max-width: 1000px; font-size: clamp(50px,6.3vw,92px); font-weight: 400; line-height: .93; letter-spacing: -.04em; }
.beauty-section-head p { max-width: 700px; margin-top: 24px; color: var(--hushed); font-size: 17px; line-height: 1.56; }
.beauty-section-head > .text-link { flex: none; }

.beauty-products { background: #f2f0ee; }
.winner-library-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}
.winner-library-categories button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--gray-medium);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.winner-library-categories button:hover,
.winner-library-categories button:focus-visible { border-color: var(--solar); }
.winner-library-categories button.is-active {
  border-color: var(--solar);
  background: var(--solar);
  color: #fff;
}
.winner-library-tools > p {
  align-self: center;
  color: var(--hushed);
  font-size: 14px;
}
.beauty-product-tools { display: flex; justify-content: space-between; gap: 30px; margin-top: 70px; padding-bottom: 18px; border-bottom: 1px solid var(--ink); }
.beauty-product-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.beauty-product-filters button { min-height: 42px; padding: 0 14px; border: 1px solid var(--gray-medium); border-radius: 6px; background: transparent; color: var(--hushed); font-size: 13px; }
.beauty-product-filters button.is-active { border-color: var(--solar); background: var(--solar); color: #fff; }
.beauty-product-search { display: flex; flex: 0 1 330px; align-items: center; gap: 10px; min-height: 42px; padding: 0 14px; border: 1px solid var(--gray-medium); border-radius: 6px; background: #fff; }
.beauty-product-search .i { width: 18px; height: 18px; color: var(--hushed); }
.beauty-product-search input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; }
.beauty-product-search:focus-within { border-color: var(--solar); box-shadow: 0 0 0 3px rgba(110,63,243,.12); }
.beauty-product-result { margin-top: 20px; color: var(--hushed); font-size: 12px; }
.beauty-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 34px; }
.beauty-product-empty { grid-column: 1 / -1; padding: 72px 24px; border-top: 1px solid var(--gray-medium); border-bottom: 1px solid var(--gray-medium); color: var(--hushed); text-align: center; }
.beauty-product-card { display: flex; flex-direction: column; min-height: 650px; padding: 13px; border: 1px solid rgba(12,10,8,.13); border-radius: 14px; background: #fff; }
.beauty-product-card[hidden] { display: none; }
.beauty-product-image { display: block; min-height: 390px; padding: 14px; border-radius: 9px; background: #d8c7ff center/cover no-repeat; }
.beauty-product-image span { display: inline-flex; padding: 7px 9px; border-radius: 5px; background: rgba(255,255,255,.9); color: var(--ink); font-size: var(--type-meta); text-transform: uppercase; letter-spacing: .04em; }
.beauty-product-copy { display: flex; flex: 1; flex-direction: column; padding: 24px 10px 7px; }
.beauty-product-copy h3 { font-size: clamp(25px,2.2vw,34px); font-weight: 400; line-height: 1.02; letter-spacing: -.025em; }
.beauty-product-copy h3 a { color: inherit; }
.beauty-product-copy > p { max-width: 430px; margin-top: 14px; color: var(--hushed); font-size: 13px; line-height: 1.5; }
.beauty-product-copy > div { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--gray-medium); }
.beauty-product-copy > div > span { color: var(--hushed); font-size: 11px; }
.beauty-product-copy a { display: inline-flex; gap: 7px; align-items: center; color: var(--solar-hover); font-size: 12px; }
.beauty-product-copy a .i { width: 15px; height: 15px; }
.beauty-product-copy .beauty-product-source { color: var(--ink); }
.beauty-pagination { display: flex; justify-content: center; gap: 8px; align-items: center; margin-top: 54px; }
.beauty-pagination > div { display: flex; gap: 6px; }
.beauty-page-status { display: none; color: var(--hushed); font-size: 12px; font-variant-numeric: tabular-nums; }
.beauty-pagination-ellipsis { display: grid; place-items: center; min-width: 28px; min-height: 42px; color: var(--hushed); font-size: 14px; }
.beauty-pagination button { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 0 13px; border: 1px solid var(--gray-medium); border-radius: 6px; background: #fff; color: var(--ink); font-size: 12px; }
.beauty-pagination button[aria-current="page"] { border-color: var(--solar); background: var(--solar); color: #fff; }
.beauty-pagination button:disabled { cursor: not-allowed; opacity: .38; }

.beauty-advice { background: #fff; }
.beauty-ruled-list { margin-top: 72px; border-top: 1px solid var(--ink); }
.beauty-ruled-list article { display: grid; grid-template-columns: 48px minmax(280px,.8fr) minmax(340px,1.2fr); gap: 34px; align-items: start; min-height: 175px; padding: 34px 0; border-bottom: 1px solid var(--ink); }
.beauty-ruled-list article > span { color: var(--hushed); font-size: 11px; }
.beauty-ruled-list h3 { font-size: clamp(25px,2.5vw,38px); font-weight: 400; line-height: 1.05; }
.beauty-ruled-list p { max-width: 760px; color: var(--hushed); font-size: 17px; line-height: 1.58; }

.beauty-partner { background: var(--black); color: #fff; }
.beauty-partner-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(80px,10vw,170px); }
.beauty-partner h2 { max-width: 780px; font-size: clamp(52px,6.2vw,90px); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.beauty-partner p { max-width: 650px; margin-top: 28px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.58; }
.beauty-partner .btn { margin-top: 36px; }
.beauty-partner ol { border-top: 1px solid rgba(255,255,255,.25); }
.beauty-partner li { display: grid; grid-template-columns: .72fr 1.28fr; gap: 30px; min-height: 122px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.beauty-partner li strong { font-size: 21px; font-weight: 400; }
.beauty-partner li span { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.52; }

.beauty-fulfillment { background: #fff; }
.beauty-fulfillment-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(60px,8vw,120px); margin-top: 74px; align-items: start; }
.beauty-fulfillment-media { display: grid; place-items: center; min-height: 730px; border-radius: 16px; background: #e5e1dd center/cover no-repeat; box-shadow: inset 0 0 0 999px rgba(12,10,8,.12); }
.beauty-fulfillment-media span { padding: 8px 10px; border-radius: 5px; background: rgba(12,10,8,.65); color: #fff; font-size: var(--type-meta); }
.beauty-fulfillment ol { border-top: 1px solid var(--ink); }
.beauty-fulfillment li { display: grid; grid-template-columns: 100px 1fr; gap: 22px; min-height: 138px; padding: 28px 0; border-bottom: 1px solid var(--ink); }
.beauty-fulfillment li b { font-size: 20px; font-weight: 400; }
.beauty-fulfillment li span { color: var(--hushed); line-height: 1.55; }

.beauty-subtypes { background: #f2f0ee; }
.beauty-subtype-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 72px; border-top: 1px solid var(--ink); }
.beauty-subtype-list article { min-height: 196px; padding: 28px 32px 30px 0; border-bottom: 1px solid var(--ink); }
.beauty-subtype-list article:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--ink); }
.beauty-subtype-list span { color: var(--solar-hover); font-size: var(--type-meta); text-transform: uppercase; letter-spacing: .05em; }
.beauty-subtype-list h3 { margin-top: 32px; font-size: clamp(22px,2vw,30px); font-weight: 400; }
.beauty-subtype-list p { max-width: 610px; margin-top: 13px; color: var(--hushed); font-size: 14px; line-height: 1.5; }

.beauty-advantages { background: #fff; }
.beauty-advantages > .container > h2 { max-width: 1000px; font-size: clamp(50px,6.3vw,92px); font-weight: 400; line-height: .93; letter-spacing: -.04em; }
.beauty-advantage-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 78px; border-top: 1px solid var(--ink); }
.beauty-advantage-grid article { min-height: 330px; padding: 30px 28px 30px 0; border-bottom: 1px solid var(--ink); }
.beauty-advantage-grid article + article { padding-left: 28px; border-left: 1px solid var(--ink); }
.beauty-advantage-grid .i { width: 28px; height: 28px; color: var(--solar); }
.beauty-advantage-grid h3 { margin-top: 94px; font-size: 24px; font-weight: 400; line-height: 1.08; }
.beauty-advantage-grid p { margin-top: 17px; color: var(--hushed); font-size: 14px; line-height: 1.52; }

.beauty-how { background: var(--solar); color: #fff; }
.beauty-how-head { display: grid; grid-template-columns: 1fr .7fr; gap: 90px; align-items: end; }
.beauty-how-head h2 { max-width: 940px; font-size: clamp(52px,6.4vw,94px); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.beauty-how-head p { max-width: 590px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.56; }
.beauty-how ol { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 78px; border-top: 1px solid rgba(255,255,255,.4); }
.beauty-how li { min-height: 340px; padding: 28px 32px 34px 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.beauty-how li + li { padding-left: 32px; border-left: 1px solid rgba(255,255,255,.4); }
.beauty-how li > span { color: rgba(255,255,255,.62); font-size: 11px; }
.beauty-how li div { margin-top: 120px; }
.beauty-how h3 { font-size: 26px; font-weight: 400; }
.beauty-how li p { margin-top: 16px; color: rgba(255,255,255,.72); line-height: 1.55; }

.beauty-rules { background: #fff; }
.beauty-rule-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 72px; border-top: 1px solid var(--ink); }
.beauty-rule-list article { min-height: 310px; padding: 34px 34px 34px 0; border-bottom: 1px solid var(--ink); }
.beauty-rule-list article:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--ink); }
.beauty-rule-list h3 { max-width: 540px; font-size: clamp(25px,2.5vw,38px); font-weight: 400; line-height: 1.04; }
.beauty-rule-list p { max-width: 650px; margin-top: 22px; color: var(--hushed); font-size: 15px; line-height: 1.58; }
.beauty-rule-list a { display: inline-flex; gap: 8px; align-items: center; margin-top: 28px; color: var(--solar-hover); font-size: 12px; }

.beauty-faq { background: #f2f0ee; }
.beauty-resources { background: #fff; }
.beauty-resource-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 72px; border-top: 1px solid var(--ink); }
.beauty-resource-grid article { display: flex; min-height: 360px; padding: 30px 32px 34px 0; flex-direction: column; border-bottom: 1px solid var(--ink); }
.beauty-resource-grid article + article { padding-left: 32px; border-left: 1px solid var(--ink); }
.beauty-resource-grid > article > span { color: var(--hushed); font-size: var(--type-meta); text-transform: uppercase; letter-spacing: .05em; }
.beauty-resource-grid h3 { margin-top: 90px; font-size: clamp(28px,2.6vw,40px); font-weight: 400; line-height: 1.02; }
.beauty-resource-grid p { margin-top: 18px; color: var(--hushed); line-height: 1.55; }
.beauty-resource-grid a { display: inline-flex; gap: 8px; align-items: center; margin-top: auto; color: var(--solar-hover); font-size: 13px; }

.beauty-cta { background: #fff; }
.beauty-cta-inner { text-align: center; }
.beauty-cta-inner > p { color: var(--hushed); }
.beauty-cta-inner h2 { max-width: 1180px; margin: 24px auto 0; font-size: clamp(56px,7vw,104px); font-weight: 400; line-height: .91; letter-spacing: -.045em; }
.beauty-cta-inner .btn { margin-top: 40px; }

@media (max-width: 1180px) {
  .beauty-hero-grid { grid-template-columns: 1fr; }
  .beauty-hero-copy h1 { max-width: 1000px; margin-top: 60px; }
  .beauty-hero-record { max-width: 900px; }
  .beauty-product-grid { grid-template-columns: repeat(2,1fr); }
  .beauty-partner-grid, .beauty-how-head { grid-template-columns: 1fr; }
  .beauty-advantage-grid { grid-template-columns: repeat(2,1fr); }
  .beauty-advantage-grid article:nth-child(3) { border-left: 0; }
}

@media (max-width: 760px) {
  .beauty-hero { padding-top: 44px; }
  .beauty-hero-copy h1 { margin-top: 48px; font-size: clamp(48px,13.5vw,62px); }
  .beauty-hero-copy > p:not(.beauty-breadcrumb) { font-size: 16px; }
  .beauty-hero-actions { align-items: flex-start; flex-direction: column; }
  .beauty-hero-copy > small { margin-top: 42px; }
  .beauty-hero-record { padding: 12px; border-radius: 14px; }
  .beauty-record-media { min-height: 280px; }
  .beauty-record-top { gap: 20px; }
  .beauty-section-head { display: grid; gap: 28px; }
  .beauty-section-head h2, .beauty-partner h2, .beauty-advantages > .container > h2, .beauty-how-head h2, .beauty-cta-inner h2 { font-size: clamp(46px,13vw,62px); }
  .beauty-product-tools { align-items: stretch; flex-direction: column; }
  .beauty-product-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .beauty-product-filters button { flex: none; }
  .beauty-product-search { flex-basis: auto; }
  .beauty-product-grid { display: grid; grid-template-columns: 1fr; gap: 14px; overflow: visible; }
  .beauty-product-card { min-height: 0; }
  .beauty-product-image { min-height: 310px; }
  .beauty-product-copy > div { align-items: flex-start; flex-direction: column; }
  .beauty-pagination { justify-content: space-between; }
  .beauty-pagination > div { display: none; }
  .beauty-page-status { display: inline-flex; min-height: 42px; align-items: center; }
  .beauty-ruled-list article { grid-template-columns: 32px 1fr; gap: 16px; min-height: 0; }
  .beauty-ruled-list p { grid-column: 2; font-size: 15px; }
  .beauty-partner li { grid-template-columns: 1fr; gap: 12px; }
  .beauty-fulfillment-grid { grid-template-columns: 1fr; }
  .beauty-fulfillment-media { min-height: 480px; }
  .beauty-fulfillment li { grid-template-columns: 74px 1fr; }
  .beauty-subtype-list, .beauty-rule-list { grid-template-columns: 1fr; }
  .beauty-subtype-list article, .beauty-subtype-list article:nth-child(even), .beauty-rule-list article, .beauty-rule-list article:nth-child(even) { min-height: 0; padding: 28px 0; border-left: 0; }
  .beauty-advantage-grid { grid-template-columns: 1fr; }
  .beauty-advantage-grid article, .beauty-advantage-grid article + article { min-height: 250px; padding: 28px 0; border-left: 0; }
  .beauty-advantage-grid h3 { margin-top: 58px; }
  .beauty-how ol { grid-template-columns: 1fr; }
  .beauty-how li, .beauty-how li + li { min-height: 270px; padding: 26px 0; border-left: 0; }
  .beauty-how li div { margin-top: 70px; }
  .beauty-resource-grid { grid-template-columns: 1fr; }
  .beauty-resource-grid article, .beauty-resource-grid article + article { min-height: 300px; padding: 28px 0; border-left: 0; }
  .beauty-resource-grid h3 { margin-top: 58px; }
}

/* ==========================================================================
   Blog chapters — "view all" entry and the per-topic listing page
   ========================================================================== */
.blog-chapter-head > aside { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.blog-chapter-more { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 18px; border: 1px solid #c9c4bc; border-radius: 999px; color: var(--ink); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.blog-chapter-more:hover { background: #fff; border-color: var(--ink); }
.blog-chapter-more svg { width: 14px; height: 14px; }

.blog-category-page { --blog-cover-ratio: 5 / 3; background: #f4f1eb; color: var(--ink); }
/* Keep the container's horizontal gutter: `padding: 132px 0 0` used to flatten
   it to zero, which pushed the column pages edge to edge at 1440px. */
.blog-category-shell { padding: 132px var(--gutter) 0; }
.blog-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: var(--hushed); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.blog-breadcrumb a { color: inherit; text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--ink); }
.blog-category-hero { max-width: 900px; margin-top: 34px; }
.blog-category-hero h1 { font-size: clamp(46px,6.4vw,82px); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.blog-category-hero > p { max-width: 620px; margin-top: 22px; color: var(--hushed); font-size: 17px; line-height: 1.6; }
.blog-category-count { color: var(--hushed-2); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.blog-category-topics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.blog-topic-chip { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 18px; border: 1px solid #c9c4bc; border-radius: 999px; color: var(--ink); font-size: 13px; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.blog-topic-chip:hover { background: #fff; border-color: var(--ink); }
.blog-topic-chip[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: #f4f1eb; }
.blog-topic-chip span { color: inherit; opacity: .6; font-size: 11px; }

.blog-category-feature { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 56px; align-items: center; margin-top: 74px; padding-top: 44px; border-top: 1px solid #c9c4bc; color: inherit; text-decoration: none; }
.blog-category-feature-media { aspect-ratio: var(--blog-cover-ratio, 5 / 3); overflow: hidden; background: #e9e4dc; }
.blog-category-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-category-feature:hover .blog-category-feature-media img { transform: scale(1.02); }
.blog-category-feature h2 { margin-top: 18px; font-size: clamp(30px,3.2vw,46px); font-weight: 400; line-height: 1.03; letter-spacing: -.03em; }
.blog-category-feature p { max-width: 560px; margin-top: 18px; color: var(--hushed); font-size: 15px; line-height: 1.6; }
.blog-category-feature .blog-article-action { display: inline-flex; gap: 8px; align-items: center; margin-top: 26px; color: var(--solar-hover); font-size: 12px; }

.blog-category-list { margin-top: 88px; }
.blog-category-list-head { display: flex; gap: 24px; align-items: baseline; justify-content: space-between; border-bottom: 1px solid #c9c4bc; padding-bottom: 18px; }
.blog-category-list-head h2 { font-size: clamp(26px,2.8vw,38px); font-weight: 400; letter-spacing: -.03em; }
.blog-category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 46px 28px; margin-top: 38px; }
.blog-category-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.blog-category-card-media { aspect-ratio: var(--blog-cover-ratio, 5 / 3); overflow: hidden; background: #e9e4dc; margin-bottom: 20px; }
.blog-category-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-category-card:hover .blog-category-card-media img { transform: scale(1.02); }
.blog-category-card .blog-article-meta { display: flex; gap: 14px; justify-content: space-between; color: var(--hushed); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.blog-category-card h3 { margin-top: 14px; font-size: 22px; font-weight: 400; line-height: 1.15; letter-spacing: -.02em; }
.blog-category-card p { margin-top: 12px; color: var(--hushed); font-size: 14px; line-height: 1.55; }
.blog-category-empty { margin-top: 40px; color: var(--hushed); }
.blog-category-cta { margin-top: 96px; padding: 56px 0 72px; border-top: 1px solid #c9c4bc; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.blog-category-cta h2 { max-width: 620px; font-size: clamp(26px,3vw,40px); font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }

@media (max-width: 1100px) {
  .blog-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .blog-category-feature { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .blog-chapter-head > aside { align-items: flex-start; }
}
@media (max-width: 680px) {
  .blog-category-shell { padding-top: 96px; }
  .blog-category-grid { grid-template-columns: 1fr; gap: 36px; }
  .blog-category-feature { margin-top: 48px; padding-top: 32px; }
  .blog-category-list { margin-top: 60px; }
  .blog-category-cta { margin-top: 64px; padding: 40px 0 56px; }
}

/* ==========================================================================
   Article pages — blog and guide detail layout with a sticky table of contents
   ========================================================================== */
.article-page { background: #f4f1eb; color: var(--ink); }
.blog-category-card-media img, .blog-category-feature-media img, .blog-article-media img, .blog-feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-shell { max-width: 1200px; margin: 0 auto; padding: 128px 24px 0; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: var(--hushed); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-breadcrumb a { color: inherit; text-decoration: none; }
.article-breadcrumb a:hover { color: var(--ink); }
.article-hero { max-width: 880px; margin-top: 30px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--hushed); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-hero h1 { margin-top: 18px; font-size: clamp(38px,5vw,64px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.article-lede { max-width: 720px; margin-top: 24px; color: var(--hushed); font-size: 19px; line-height: 1.6; }
.article-byline { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 22px; border-top: 1px solid #c9c4bc; }
.article-author { font-size: 13px; }
.article-author span { color: var(--hushed); }
.article-share { display: flex; flex-wrap: wrap; gap: 10px; }
.article-share a { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 16px; border: 1px solid #c9c4bc; border-radius: 999px; color: inherit; font-size: 12px; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.article-share a:hover { background: #fff; border-color: var(--ink); }
.article-cover { max-width: 1200px; margin: 46px auto 0; padding: 0 24px; }
.article-cover img { display: block; width: 100%; aspect-ratio: 5 / 3; object-fit: cover; background: #e9e4dc; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 72px; max-width: 1200px; margin: 64px auto 0; padding: 0 24px; align-items: start; }
.article-body { max-width: 720px; }
.article-body h2 { margin: 56px 0 18px; font-size: clamp(26px,3vw,36px); font-weight: 400; line-height: 1.1; letter-spacing: -.03em; scroll-margin-top: 104px; }
.article-body p { margin: 0 0 22px; font-size: 18px; line-height: 1.75; }
.article-body a { color: var(--solar-hover); }
.article-body ol { margin: 0 0 28px; padding: 0; list-style: none; display: grid; gap: 18px; counter-reset: article-step; }
.article-body ol li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 14px; font-size: 18px; line-height: 1.7; counter-increment: article-step; }
.article-body ol li::before { content: counter(article-step,decimal-leading-zero); padding-top: 7px; color: var(--hushed-2); font-size: 12px; letter-spacing: .04em; }
.article-body ol li strong { display: block; font-weight: 600; }
.article-body ul { margin: 0 0 26px; padding: 0; list-style: none; display: grid; gap: 12px; }
.article-body ul li { position: relative; padding-left: 22px; font-size: 18px; line-height: 1.7; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 10px; height: 1px; background: var(--ink); }
.article-takeaways { margin: 0 0 44px; padding: 28px 30px; border: 1px solid #c9c4bc; background: #fff; }
.article-takeaways h2 { margin: 0 0 16px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.article-takeaways ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.article-takeaways li { position: relative; padding-left: 20px; font-size: 16px; line-height: 1.6; }
.article-takeaways li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--solar-hover); }
.article-table { width: 100%; border-collapse: collapse; margin: 0 0 32px; font-size: 16px; }
.article-table th, .article-table td { padding: 14px 16px; border-bottom: 1px solid #c9c4bc; text-align: left; vertical-align: top; }
.article-table th { color: var(--hushed); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.article-aside { position: sticky; top: 104px; display: grid; gap: 30px; }
.article-toc { border-top: 1px solid #c9c4bc; padding-top: 18px; }
.article-toc p { color: var(--hushed); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-toc ol { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; counter-reset: article-toc; }
.article-toc li { counter-increment: article-toc; }
.article-toc a { display: grid; grid-template-columns: 26px minmax(0,1fr); gap: 10px; color: var(--hushed); font-size: 13px; line-height: 1.45; text-decoration: none; }
.article-toc a::before { content: counter(article-toc,decimal-leading-zero); color: var(--hushed-2); font-size: 11px; }
.article-toc a:hover, .article-toc a[aria-current='true'] { color: var(--ink); }
.article-cta-card { padding: 26px; border: 1px solid #c9c4bc; background: #fff; }
.article-cta-card h2 { font-size: 20px; font-weight: 400; letter-spacing: -.02em; }
.article-cta-card p { margin-top: 12px; color: var(--hushed); font-size: 14px; line-height: 1.6; }
.article-cta-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; min-height: 44px; padding: 0 20px; border-radius: 999px; background: var(--ink); color: #f4f1eb; font-size: 13px; text-decoration: none; }
.article-note { margin-top: 44px; padding-top: 18px; border-top: 1px solid #c9c4bc; color: var(--hushed); font-size: 14px; }
.article-related { max-width: 1200px; margin: 96px auto 0; padding: 0 24px 104px; }
.article-related h2 { font-size: clamp(24px,2.6vw,34px); font-weight: 400; letter-spacing: -.03em; }

@media (max-width: 1000px) {
  .article-layout { grid-template-columns: minmax(0,1fr); gap: 44px; }
  .article-aside { position: static; }
  .article-toc { display: none; }
}
@media (max-width: 680px) {
  .article-shell { padding-top: 96px; }
  .article-hero h1 { font-size: 34px; }
  .article-lede { font-size: 17px; }
  .article-body p, .article-body ol li, .article-body ul li { font-size: 17px; }
  .article-share a { padding: 0 12px; }
}

/* ==========================================================================
   Search + pagination for long resource lists, and phone layout fixes
   ========================================================================== */
/* Column pages share one shell: hero, featured record, Editor's picks, the
   latest list and the closing newsletter/routing row. */
.resource-controls { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin: 34px 0 0; padding-bottom: 18px; border-bottom: 1px solid #c9c4bc; }
.resource-search-field { flex: 1 1 280px; min-width: 0; }
.resource-search-field input { width: 100%; min-height: 46px; padding: 0 16px; border: 1px solid #c9c4bc; border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 15px; }
.resource-search-field input:focus-visible { outline: 2px solid var(--solar-hover); outline-offset: 2px; }
.resource-size-field { display: flex; align-items: center; gap: 10px; color: var(--hushed); font-size: 12px; }
.resource-size-field select { min-height: 42px; padding: 0 12px; border: 1px solid #c9c4bc; border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 13px; }
.resource-result-count { flex: 1 1 100%; margin: 0; color: var(--hushed); font-size: 12px; letter-spacing: .04em; }
.resource-pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 40px 0 8px; }
.resource-pager button { min-width: 44px; min-height: 44px; padding: 0 14px; border: 1px solid #c9c4bc; border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-size: 13px; cursor: pointer; }
.resource-pager button:hover:not(:disabled) { background: #fff; border-color: var(--ink); }
.resource-pager button[aria-current='true'] { background: var(--ink); border-color: var(--ink); color: #f4f1eb; }
.resource-pager button:disabled { opacity: .4; cursor: default; }
.resource-empty { margin: 24px 0 0; color: var(--hushed); font-size: 15px; }
.blog-viewall-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; min-height: 46px; padding: 0 22px; border: 1px solid #c9c4bc; border-radius: 999px; color: var(--ink); font-size: 13px; text-decoration: none; }
.blog-viewall-link:hover { background: #fff; border-color: var(--ink); }

/* Column pages: featured record stands alone; the newsletter moves into the
   closing utility row (newsletter card + "see where the handoffs connect"). */
.section-byline { display: block; margin-top: 18px; color: var(--hushed); font-size: 13px; }
.blog-category-shell .blog-utility-section { margin-top: 88px; padding-bottom: 0; }
/* Featured record + subscribe column (restored for HQ Academy's column shell) */
.section-feature-row { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); gap: 40px; align-items: stretch; margin-top: 74px; }
.section-feature-row .blog-category-feature { margin-top: 0; }
.section-subscribe { display: flex; flex-direction: column; padding: 34px; background: var(--ink); color: #fff; }
.section-subscribe h3 { font-size: clamp(24px,2.4vw,32px); font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }
.section-subscribe p { margin-top: 14px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.6; }
.section-subscribe form { margin-top: auto; padding-top: 26px; display: grid; gap: 12px; }
.section-subscribe input { min-height: 46px; padding: 0 16px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; background: transparent; color: #fff; font: inherit; font-size: 15px; }
.section-subscribe button { min-height: 46px; border: 0; border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; cursor: pointer; }
.section-subscribe .section-subscribe-status { margin: 0; color: #aa8cff; font-size: 12px; }
.section-hero-search { display: flex; gap: 10px; align-items: center; margin-top: 26px; max-width: 420px; }
.section-hero-search input { width: 100%; min-height: 46px; padding: 0 16px; border: 1px solid #c9c4bc; border-radius: 999px; background: #fff; color: var(--ink); font: inherit; font-size: 15px; }
.section-carousel { display: flex; gap: 10px; }
.section-carousel button { min-width: 42px; min-height: 42px; border: 1px solid #c9c4bc; border-radius: 999px; background: transparent; color: var(--ink); font: inherit; cursor: pointer; }
.section-carousel button:hover { background: #fff; border-color: var(--ink); }
.section-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px,1fr); gap: 28px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.section-carousel-track > * { scroll-snap-align: start; }
.section-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.section-tabs button { min-height: 40px; padding: 0 16px; border: 1px solid #c9c4bc; border-radius: 999px; background: transparent; color: inherit; font: inherit; font-size: 13px; cursor: pointer; }
.section-tabs button[aria-current='true'] { background: var(--ink); border-color: var(--ink); color: #f4f1eb; }
.guide-list-date { color: var(--hushed); font-size: 12px; }

@media (max-width: 1000px) {
  .section-feature-row { grid-template-columns: minmax(0,1fr); }
  .section-carousel-track { grid-auto-columns: minmax(260px,80%); }
}
@media (max-width: 680px) {
  .section-subscribe { padding: 26px; }
  .section-carousel-track { grid-auto-columns: minmax(240px,88%); }
}
.guide-list { border-top: 1px solid #c9c4bc; }
.guide-list-item { display: grid; grid-template-columns: 44px 200px minmax(0,1fr) 28px; gap: 22px; align-items: start; padding: 26px 0; border-bottom: 1px solid #c9c4bc; color: inherit; text-decoration: none; }
.guide-list-item:hover .guide-list-arrow { transform: translate(2px,-2px); }
.guide-list-index { color: var(--hushed-2); font-size: 12px; letter-spacing: .06em; padding-top: 6px; }
.guide-list-thumb { display: block; aspect-ratio: 2 / 1; border-radius: var(--r-xl); overflow: hidden; background: var(--gray-light); }
.guide-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.guide-list-item:hover .guide-list-thumb img { transform: scale(1.02); }
.guide-list-copy h3 { margin-top: 12px; font-size: clamp(20px,2.1vw,26px); font-weight: 400; line-height: 1.15; letter-spacing: -.02em; }
.guide-list-copy > .blog-article-meta { margin-top: 4px; }
.guide-list-copy p { max-width: 720px; margin-top: 10px; color: var(--hushed); font-size: 15px; line-height: 1.55; }
.guide-list-arrow { color: var(--solar-hover); font-size: 18px; padding-top: 4px; transition: transform .2s ease; }

@media (max-width: 1000px) {
  .guide-list-item { grid-template-columns: 40px 160px minmax(0,1fr) 24px; gap: 18px; }
}

@media (max-width: 680px) {
  .guide-list-item { grid-template-columns: minmax(0,1fr) 22px; gap: 14px; }
  .guide-list-index { display: none; }
  .guide-list-thumb { grid-column: 1 / -1; grid-row: 1; }
  .guide-list-copy { grid-column: 1; grid-row: 2; }
  .guide-list-arrow { grid-column: 2; grid-row: 2; }
  .guide-list-copy h3 { margin-top: 8px; }
  .guide-list-copy h3 { font-size: 19px; }
}

@media (max-width: 900px) {
  .blog-category-shell { padding-top: 108px; }
  .blog-category-hero h1 { font-size: clamp(38px,9vw,56px); line-height: 1; }
  .blog-category-hero > p { font-size: 16px; }
  .blog-category-topics { gap: 8px; }
  .blog-topic-chip { min-height: 38px; padding: 0 14px; font-size: 12px; }
  .blog-category-list-head { flex-direction: column; gap: 10px; align-items: flex-start; }
  .blog-category-card h3 { font-size: 20px; }
}
@media (max-width: 680px) {
  .blog-category-shell { padding: 92px 18px 0; }
  .blog-category-hero { margin-top: 22px; }
  .blog-category-hero h1 { font-size: clamp(32px,11vw,44px); letter-spacing: -.03em; }
  .blog-category-topics { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .blog-topic-chip { flex: 0 0 auto; }
  .blog-category-feature h2 { font-size: 26px; }
  .blog-category-feature p { font-size: 15px; }
  .blog-category-card { gap: 0; }
  .blog-category-card h3 { font-size: 19px; }
  .resource-controls { gap: 12px; margin-top: 26px; }
  .resource-search-field { flex: 1 1 100%; }
  .resource-search-field input { font-size: 16px; }
  .resource-size-field { width: 100%; justify-content: space-between; }
  .resource-pager button { min-width: 40px; min-height: 40px; padding: 0 10px; }
  .blog-viewall-link { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Leading Indicators column layout — measured from ramp.com/leading-indicators
   at 1808x1167 on 2026-09-17. Used by /resources/hq-academy/.
   ========================================================================== */
.li-page { background: #fff; }
.li-page .container { max-width: 1440px; }
.li-page .i { width: 18px; height: 18px; fill: none; stroke: currentColor; }

/* --- Hero: dark band with wordmark, tagline, topics and featured record --- */
.li-hero { padding: 48px 0 64px; background: var(--ink); color: #fff; }
.li-hero-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px 32px;
  align-items: center;
}
.li-hero-brand {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}
.li-hero-tagline { color: rgba(255,255,255,.6); font-size: 20px; line-height: 26px; }
.li-hero-topics { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.li-topic {
  padding: 4px 0;
  border: 0;
  background: none;
  color: rgba(255,255,255,.6);
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.li-topic:hover { color: #fff; }
.li-topic[aria-current="true"] { color: #fff; }
.li-topic span { margin-left: 6px; color: rgba(255,255,255,.4); font-size: 12px; }

.li-feature {
  display: grid;
  grid-template-columns: minmax(0, 768fr) minmax(0, 512fr);
  gap: 32px;
  margin-top: 48px;
  color: inherit;
  text-decoration: none;
}
.li-feature-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,.08);
}
.li-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.li-feature-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}
.li-feature-copy { display: flex; flex-direction: column; gap: 32px; }
.li-feature-title {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.01em;
}
.li-feature-byline { display: flex; flex-wrap: wrap; gap: 12px; font-size: 16px; }
.li-feature-byline span + span { color: rgba(255,255,255,.6); }
.li-feature-excerpt { color: rgba(255,255,255,.6); font-size: 18px; line-height: 24px; }

/* --- Newsletter: bone card with a centred pill form --- */
.li-newsletter { padding: 64px 0; }
.li-newsletter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 32px;
  border-radius: var(--r-xl);
  background: var(--gray-light);
  text-align: center;
}
.li-newsletter-card h2 {
  font-size: clamp(24px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -.01em;
}
.li-newsletter-card > p {
  max-width: 620px;
  margin: -8px 0 0;
  color: var(--hushed);
  font-size: 16px;
  line-height: 22px;
}
.li-newsletter-form {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 500px;
  padding: 5px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--r-xl);
  background: #fff;
}
.li-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.li-newsletter-form input:focus-visible { outline: 2px solid var(--solar); outline-offset: 2px; }
.li-newsletter-form button {
  flex: none;
  min-height: 51px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--solar);
  color: #fff;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}
.li-newsletter-form button:hover { background: var(--solar-hover); }
.li-newsletter-status { flex: 1 1 100%; margin: 0; padding: 0 18px 6px; color: var(--solar-hover); font-size: 12px; }
.li-newsletter-status:empty { display: none; }
.li-newsletter-note { color: var(--hushed); font-size: 13px; line-height: 19px; }

/* --- Shared section head: 48px heading with controls on the right --- */
.li-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: flex-end;
  justify-content: space-between;
}
.li-section-head h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
}

/* --- Editor's picks: 640px cards in a horizontal track --- */
.li-picks { padding-top: 64px; overflow: hidden; }
.li-arrows { display: flex; gap: 8px; }
.li-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--r-lg);
  background: none;
  color: var(--ink);
  cursor: pointer;
}
.li-arrow:hover { background: var(--gray-light); border-color: var(--ink); }
.li-picks-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 640px);
  gap: 16px;
  margin-top: 32px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.li-pick {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}
.li-pick-media {
  display: block;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-light);
}
.li-pick-media img { width: 100%; height: 100%; object-fit: cover; }
.li-pick-copy { display: flex; flex-direction: column; gap: 20px; padding: 0 24px; }
.li-pick-copy h3 {
  font-size: clamp(24px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -.01em;
}
.li-pick-excerpt { color: var(--hushed); font-size: 16px; line-height: 22px; }
.li-pick-byline { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; font-size: 16px; }
.li-pick-byline span + span { color: var(--hushed); }
.li-pick:hover h3 { color: var(--solar-hover); }

/* --- Latest stories: topic tabs plus thumbnail / copy / date rows --- */
.li-latest { padding: 64px 0 24px; }
.li-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.li-tab {
  padding: 4px 16px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--hushed);
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.li-tab:hover { color: var(--ink); }
.li-tab[aria-current="true"] { background: var(--ink); color: #fff; }
.li-latest-list { margin-top: 32px; }
.li-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-radius: var(--r-xl);
  color: inherit;
  text-decoration: none;
}
.li-row[hidden] { display: none; }
.li-row:hover { background: var(--gray-light); }
.li-row-media {
  display: block;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-light);
}
.li-row-media img { width: 100%; height: 100%; object-fit: cover; }
.li-row-copy { display: flex; flex-direction: column; gap: 8px; }
.li-row-copy h3 { font-size: 20px; font-weight: 400; line-height: 26px; letter-spacing: -.01em; }
.li-row-excerpt { color: var(--hushed); font-size: 16px; line-height: 22px; }
.li-row-date { color: var(--hushed); font-size: 16px; line-height: 22px; text-align: right; white-space: nowrap; }
.li-latest-all { margin-top: 32px; }

/* --- Notes archive pages keep the Blog card grid, so they need no rules here --- */
@media (max-width: 1100px) {
  .li-hero-top { grid-template-columns: minmax(0, 1fr); align-items: flex-start; }
  .li-hero-topics { justify-content: flex-start; }
  .li-feature { grid-template-columns: minmax(0, 1fr); }
  .li-feature-copy { gap: 24px; }
  .li-row { grid-template-columns: 160px minmax(0, 1fr); }
  .li-row-date { grid-column: 2; grid-row: 2; text-align: left; }
}

@media (max-width: 700px) {
  .li-hero { padding: 32px 0 48px; }
  .li-feature { margin-top: 32px; }
  .li-feature-badge { right: 14px; bottom: 14px; padding: 7px 10px; }
  .li-feature-excerpt { font-size: 16px; line-height: 22px; }
  .li-newsletter { padding: 48px 0; }
  .li-newsletter-card { gap: 18px; padding: 40px 20px; }
  .li-newsletter-form { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px; }
  .li-newsletter-form input { padding: 0 14px; text-align: center; }
  .li-picks { padding-top: 48px; }
  .li-picks-track { grid-auto-columns: minmax(240px, 82%); }
  .li-latest { padding-top: 48px; }
  .li-row { grid-template-columns: minmax(0, 1fr); gap: 16px; padding: 12px; }
  .li-row-date { grid-column: 1; grid-row: auto; text-align: left; }
  .li-latest-all .blog-viewall-link { width: 100%; justify-content: center; }
}
