/* =========================================================================
   BPIPL — variant 9 "Cool Modern" (LIGHT)
   A light-mode restyle of V6. The world is still the first thing you see and
   the three divisions the first thing you read — but the field is now a cool,
   engineered light panel (white + very-light blue-grey) with brand red as the
   single sharp accent. An instrument / tech precision, not a washed-out dark
   theme. Type is Swiss (Nimbus Sans / Nimbus Sans Narrow) with a technical
   mono (Hack) for data. All fonts self-hosted. No external requests anywhere.
   ========================================================================= */

@font-face {
  font-family: "BPI Narrow";
  src: url("fonts/nsn-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "BPI Narrow";
  src: url("fonts/nsn-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "BPI Sans";
  src: url("fonts/ns-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "BPI Sans";
  src: url("fonts/ns-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "BPI Mono";
  src: url("fonts/hack-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------------------- tokens */
:root {
  --display: "BPI Narrow", "Liberation Sans Narrow", "Helvetica Neue", Helvetica, sans-serif;
  --sans: "BPI Sans", "Nimbus Sans", "Helvetica Neue", Helvetica, sans-serif;
  --mono: "BPI Mono", "DejaVu Sans Mono", ui-monospace, monospace;

  --red: #E30016;              /* brand red — exact, from the visiting card */
  --red-lift: #c30012;         /* deeper crimson — reads as text/stroke on the light-cool field */

  --ink: #f4f6f9;              /* page — cool off-white */
  --field: #e9eef4;            /* the map field — a faint cool blue-grey wash (a distinct panel) */
  --surface: #ffffff;          /* card face */
  --surface-2: #e8ecf3;        /* cool-grey panel step */
  --line: rgba(16, 21, 28, 0.12);
  --line-soft: rgba(16, 21, 28, 0.07);

  --text: #10151c;             /* cool near-black ink */
  --muted: #4f5d69;            /* cool mid grey — body / secondary */
  --dim: #74818e;              /* cool grey — micro-labels */

  --land: #b9c1cc;             /* the dot-matrix land — cool mid-grey */
  --steel: #7a8798;            /* national / india pins — cool slate */

  --gut: clamp(20px, 5vw, 72px);
  --maxw: 1320px;

  --hero-h: clamp(640px, 92svh, 960px);

  /* map framing — the stage is sized to the map's own aspect (2160:804),
     then positioned so that (--focus-fx,--focus-fy) of the map lands on
     (--focus-x,--focus-y) of the field. India sits at fx .715 / fy .385. */
  --map-ar: 2.68657;
  --stage-w: max(120vw, calc(var(--hero-h) * 3.05));
  --focus-fx: 0.715;
  --focus-fy: 0.385;
  --focus-x: 67%;
  --focus-y: 44%;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--red-lift);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------ typography */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--red);
  flex: none;
  box-shadow: 0 0 8px rgba(227, 0, 22, 0.35);
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.lede { color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.13rem); line-height: 1.65; }

.rule-red { width: 44px; height: 3px; background: var(--red); border: 0; margin: 0 0 26px; }

/* ---------------------------------------------------------------- header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(to bottom, rgba(244, 246, 249, 0.92), rgba(244, 246, 249, 0.6) 65%, rgba(244, 246, 249, 0));
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand { color: var(--text); display: flex; align-items: center; gap: 14px; }
.brand svg { width: 104px; height: auto; }
.brand:hover { color: #000; }
.brand__sep { width: 1px; height: 22px; background: var(--line); }
.brand__sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.3;
  max-width: 160px;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
.nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
}
.nav__cta {
  border: 1px solid var(--line);
  padding: 9px 16px !important;
  color: var(--text) !important;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav__cta:hover { border-color: var(--red); background: rgba(227, 0, 22, 0.08); }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  height: var(--hero-h);
  margin-top: -74px;           /* the sticky header floats over the field */
  padding-top: 74px;
  display: flex;
  align-items: flex-end;
  background: var(--field);
  isolation: isolate;
  overflow: hidden;
}
.hero__field { position: absolute; inset: 0; overflow: hidden; z-index: 0; }

/* the map stage — map.js svg and the route overlay share this box exactly,
   so their viewBoxes (both 0 0 2160 804) register pixel-for-pixel. */
.mapstage {
  position: absolute;
  width: var(--stage-w);
  height: calc(var(--stage-w) / var(--map-ar));
  left: calc(var(--focus-x) - var(--stage-w) * var(--focus-fx));
  top: calc(var(--focus-y) - (var(--stage-w) / var(--map-ar)) * var(--focus-fy));
  -webkit-mask-image: radial-gradient(115% 105% at var(--focus-fx) var(--focus-fy), #000 32%, rgba(0, 0, 0, 0.5) 66%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(115% 105% at var(--focus-fx) var(--focus-fy), #000 32%, rgba(0, 0, 0, 0.5) 66%, rgba(0, 0, 0, 0) 100%);
}
.bpipl-map, .bpipl-map__svg, .routes { position: absolute; inset: 0; width: 100%; height: 100%; }
.routes { pointer-events: none; overflow: visible; }

/* atmosphere — reworked for the light-cool field: a faint cool wash across
   the map with a soft red bloom at the Delhi hub. Multiply (not screen) so it
   adds gentle depth on light instead of washing out. */
.hero__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(44% 50% at var(--focus-x) var(--focus-y), rgba(227, 0, 22, 0.09), rgba(227, 0, 22, 0) 60%),
    radial-gradient(72% 72% at 50% 38%, rgba(96, 120, 160, 0.10), rgba(96, 120, 160, 0) 70%);
  mix-blend-mode: multiply;
}
/* soft cool edge-fade (not a dark vignette) — the map settles into the page */
.hero__vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(130% 100% at 55% 38%, rgba(233, 238, 244, 0) 40%, rgba(224, 231, 240, 0.75) 100%),
    linear-gradient(to right, var(--ink) 0%, rgba(244, 246, 249, 0.85) 22%, rgba(244, 246, 249, 0.14) 50%, rgba(244, 246, 249, 0) 68%),
    linear-gradient(to bottom, rgba(244, 246, 249, 0.5) 0%, rgba(244, 246, 249, 0) 26%, rgba(244, 246, 249, 0) 46%, var(--ink) 99%);
}
.grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: var(--grain);
  opacity: 0.045;
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-bottom: clamp(44px, 7vh, 84px);
}
.hero__content .wrap { max-width: var(--maxw); }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.9rem, 6.1vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 22px 0 24px;
  max-width: 13ch;
  text-wrap: balance;
}
.hero .lede { max-width: 46ch; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 14px 22px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 10px 34px -16px rgba(227, 0, 22, 0.55);
}
.cta:hover { transform: translateY(-2px); background: #f50018; box-shadow: 0 16px 40px -16px rgba(227, 0, 22, 0.7); }
.cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.cta:hover svg { transform: translateX(4px); }

/* sourcing-lane key, bottom-right of the field */
.lanes {
  position: absolute;
  right: var(--gut);
  bottom: clamp(100px, 13vh, 154px);
  z-index: 4;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 2.1;
}
.lanes b {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.2em;
}
.lanes span { display: block; }
.lanes i {
  font-style: normal;
  color: var(--red-lift);
  margin-left: 8px;
}

/* --------------------------------------------------------------- the map */
/* Styling only — via the hooks documented in /assets/map.js.
   No borders are drawn anywhere. The land is physical coastline dots.
   Re-treated for the light-cool field: quiet cool land dots, red pins with
   a soft red halo, crimson arcs. */
.bpipl-map__dot { fill: var(--land); }
.bpipl-map__pin-group { cursor: default; }

.bpipl-map__pin {
  fill: var(--red);
  filter: drop-shadow(0 0 3px rgba(227, 0, 22, 0.45));
}
.bpipl-map__halo { fill: rgba(227, 0, 22, 0.18); }

/* the three sourcing offices read as cool slate; India reads red */
[data-city="Dubai"] .bpipl-map__pin,
[data-city="Hong Kong"] .bpipl-map__pin,
[data-city="Shenzhen"] .bpipl-map__pin {
  fill: var(--steel);
  filter: drop-shadow(0 0 3px rgba(90, 105, 120, 0.5));
}
[data-city="Dubai"] .bpipl-map__halo,
[data-city="Hong Kong"] .bpipl-map__halo,
[data-city="Shenzhen"] .bpipl-map__halo {
  fill: rgba(122, 135, 152, 0.20);
}

.bpipl-map__pin--hq {
  fill: var(--red);
  stroke: var(--field);          /* a thin field-coloured rim separates the dot from its halo */
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 3px rgba(227, 0, 22, 0.5));
}
.bpipl-map__halo--hq { fill: rgba(227, 0, 22, 0.22); }

.bpipl-map__label {
  fill: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  paint-order: stroke;
  stroke: var(--field);          /* light halo behind the dark label so it reads over the dots */
  stroke-width: 5px;
  stroke-linejoin: round;
}
.bpipl-map__pin-group--hq .bpipl-map__label { fill: var(--text); }
.bpipl-map__pin-group:hover .bpipl-map__label,
.bpipl-map__pin-group:focus-visible .bpipl-map__label { fill: var(--text); }
.bpipl-map__pin-group:focus-visible { outline: none; }
.bpipl-map__pin-group:focus-visible .bpipl-map__pin { stroke: var(--text); stroke-width: 2; }

/* Ghaziabad/New Delhi and Shenzhen/Hong Kong sit ~1 map-unit apart, so their
   pins genuinely overlap at world scale. map.js de-collides the labels for us
   — nothing to do here but keep them legible against the dots (above). */

/* route arcs (decorative — lines between two pins, never a boundary) */
.route { fill: none; stroke: rgba(227, 0, 22, 0.30); stroke-width: 1.4; }
.route-pulse {
  fill: none;
  stroke: var(--red-lift);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-dasharray: 34 966;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 3px rgba(227, 0, 22, 0.5));
  opacity: 0.9;
}

/* ------------------------------------------------------------- divisions */
.divisions {
  position: relative;
  z-index: 5;
  margin-top: 0;   /* was -78px — it overlapped the hero CTA. Hero padding is compressed instead. */
  padding-bottom: clamp(64px, 9vw, 110px);
}
.divisions__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.divisions__head p {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  --accent: var(--red);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px 26px 24px;
  background: linear-gradient(168deg, var(--surface-2), var(--surface) 62%);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(16, 21, 28, 0.05), 0 10px 30px -20px rgba(16, 21, 28, 0.28);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% -10%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 62%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.card--live:hover,
.card--live:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 2px 4px rgba(16, 21, 28, 0.06), 0 22px 46px -24px rgba(16, 21, 28, 0.4);
}
.card--live:hover::before, .card--live:focus-visible::before { opacity: 1; }
.card--live:hover::after, .card--live:focus-visible::after { opacity: 1; }

.card__idx {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}
.card__audience {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 18px;
}
.card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 10px 0 6px;
}
.card__tag { color: var(--text); font-size: 0.95rem; opacity: 0.82; }
.card__sum {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 34ch;
}
.card__go {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.card__go svg { width: 13px; height: 13px; transition: transform 0.3s ease; }
.card--live:hover .card__go svg { transform: translate(3px, -3px); }

/* Kodak — no URL, no information. Disabled by design; nothing invented. */
.card--soon {
  background: transparent;
  border-style: dashed;
  border-color: var(--line);
  box-shadow: none;
  color: var(--dim);
  cursor: default;
}
.card--soon::before { background: var(--line); opacity: 1; }
.card__name--soon { color: var(--dim); }
.chip {
  align-self: flex-start;
  margin-top: 18px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.card__placeholder {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  gap: 9px;
}
.card__placeholder span {
  display: block;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
}
.card__placeholder span:last-child { width: 55%; }

/* ------------------------------------------------------------- sections */
.band { padding: clamp(64px, 8vw, 108px) 0; border-top: 1px solid var(--line-soft); }
.band--field { background: linear-gradient(to bottom, var(--ink), #e6ebf2); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
}
.split p + p { margin-top: 18px; }
.split .lede { max-width: 62ch; }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 72px);
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.stat--text b {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.25;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

/* footprint / office index */
.offices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 40px;
}
.office {
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--line-soft);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 150px;
}
.office__city {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.office__city::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--steel);
  flex: none;
}
.office--india .office__city::before { background: var(--red); box-shadow: 0 0 8px rgba(227, 0, 22, 0.6); }
.office__hq {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--red-lift);
  border: 1px solid rgba(227, 0, 22, 0.45);
  padding: 3px 7px;
}
.office__meta { font-size: 0.88rem; color: var(--muted); }
.office__addr { font-size: 0.86rem; font-style: normal; color: var(--muted); line-height: 1.55; margin-top: 6px; }
.office__addr a:hover { color: var(--text); text-decoration: underline; }
.office__geo {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--dim);
}

/* the map used as a section (contact page) */
.mapsection {
  position: relative;
  height: clamp(380px, 52svh, 560px);
  background: var(--field);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  isolation: isolate;
  --focus-x: 50%;
  --focus-y: 50%;
  --stage-w: 2400px;
}
.mapsection .hero__vignette {
  background: radial-gradient(120% 110% at 50% 45%, rgba(233, 238, 244, 0) 42%, rgba(224, 231, 240, 0.85) 100%);
}

/* pending / unconfirmed data — visible on purpose */
.pending {
  border: 1px dashed rgba(227, 0, 22, 0.4);
  background: rgba(227, 0, 22, 0.04);
  padding: 20px 22px;
  display: grid;
  gap: 6px;
}
.pending__k {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-lift);
}
.pending__v { color: var(--muted); font-size: 0.95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

/* bulk-enquiries contact block */
.enq {
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--red);
  background: var(--surface);
  padding: 22px 24px;
  display: grid;
  gap: 4px;
}
.enq__k {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-lift);
}
.enq__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.enq__lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.enq__lines a {
  font-size: 1.02rem;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.enq__lines a:hover, .enq__lines a:focus-visible { color: var(--red); border-bottom-color: var(--red); }

/* group headings within the offices section (India / International) */
.office-group {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 40px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.office-group + .offices, .office-group + .lede + .offices { margin-top: 18px; }
/* international presence — no address, so lighter cards */
.offices--intl .office { min-height: 96px; }

/* page head (about / contact) */
.pagehead {
  position: relative;
  padding: clamp(72px, 11vw, 130px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(70% 120% at 78% 0%, rgba(227, 0, 22, 0.08), transparent 62%),
    var(--ink);
  overflow: hidden;
}
/* the same matrix the map is made of, at rest */
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--land) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(90% 120% at 88% 12%, #000 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 78%);
  mask-image: radial-gradient(90% 120% at 88% 12%, #000 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 78%);
  opacity: 0.55;
  pointer-events: none;
}
.pagehead .wrap { position: relative; z-index: 1; }
.pagehead h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin: 20px 0 22px;
  max-width: 16ch;
}
.pagehead .lede { max-width: 56ch; }

/* group index (about) */
.group-list { border-top: 1px solid var(--line-soft); margin-top: 44px; }
.group-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 220px) minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease;
}
.group-row--live:hover { background: rgba(16, 21, 28, 0.03); }
.group-row__n { font-family: var(--mono); font-size: 0.68rem; color: var(--dim); letter-spacing: 0.16em; }
.group-row__name { font-family: var(--display); font-weight: 700; font-size: 1.7rem; line-height: 1.1; }
.group-row__desc { color: var(--muted); font-size: 0.95rem; }
.group-row__link {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.group-row__link svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
.group-row--live:hover .group-row__link svg { transform: translate(3px, -3px); }
.group-row--soon { color: var(--dim); }
.group-row--soon .group-row__name { color: var(--dim); }
.group-row__soon {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: right;
}

/* ---------------------------------------------------------------- footer */
.ftr {
  border-top: 1px solid var(--line);
  background: #e7ebf1;           /* a cool base-plate panel, a step down from the page */
  padding: clamp(48px, 6vw, 72px) 0 34px;
}
.ftr__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.ftr__brand { color: var(--text); }
.ftr__brand svg { width: 118px; height: auto; }
.ftr__tag {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.ftr h4 {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
  margin-bottom: 16px;
}
.ftr li { margin-bottom: 10px; }
.ftr li a { color: var(--muted); font-size: 0.93rem; transition: color 0.25s ease; }
.ftr li a:hover { color: var(--text); }
.ftr li span { color: var(--dim); font-size: 0.93rem; }
.ftr__bot {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--dim);
}

/* ---------------------------------------------------------------- motion */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes halo {
  0%   { transform: scale(0.5); opacity: 0.75; }
  70%  { opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
@keyframes lane {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1000; }
}
@keyframes breathe {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1; }
}

.hero__content .eyebrow,
.hero__content h1,
.hero__content .lede,
.hero__content .cta,
.lanes {
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}
.hero__content .eyebrow { animation-delay: 0.05s; }
.hero__content h1 { animation-delay: 0.14s; }
.hero__content .lede { animation-delay: 0.26s; }
.hero__content .cta { animation-delay: 0.36s; }
.lanes { animation-delay: 0.6s; }

.bpipl-map__halo {
  transform-box: fill-box;
  transform-origin: center;
  animation: halo 4s ease-out infinite;
}
.bpipl-map__pins > g:nth-child(1) .bpipl-map__halo { animation-delay: 0s; }
.bpipl-map__pins > g:nth-child(2) .bpipl-map__halo { animation-delay: 1.4s; }
.bpipl-map__pins > g:nth-child(3) .bpipl-map__halo { animation-delay: 2.6s; }
.bpipl-map__pins > g:nth-child(4) .bpipl-map__halo { animation-delay: 0.7s; }
.bpipl-map__pins > g:nth-child(5) .bpipl-map__halo { animation-delay: 2s; }
.bpipl-map__pins > g:nth-child(6) .bpipl-map__halo { animation-delay: 3.2s; }

.route-pulse { animation: lane 6.5s linear infinite; }
.route-pulse--1 { animation-delay: 2.2s; }
.route-pulse--2 { animation-delay: 4.4s; }
.hero__glow { animation: breathe 14s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  /* static, legible fallbacks for anything the animation was carrying */
  .bpipl-map__halo { opacity: 0.5; }
  .route-pulse { display: none; }
  .route { stroke: rgba(227, 0, 22, 0.5); stroke-dasharray: 5 7; }
}

/* ------------------------------------------------------------ responsive */
@media (max-width: 1099px) {
  :root {
    --hero-h: clamp(600px, 82svh, 780px);
    --stage-w: max(150vw, calc(var(--hero-h) * 2.9));
    --focus-x: 58%;
    --focus-y: 40%;
  }
  .cards { grid-template-columns: 1fr 1fr; }
  .card--soon { grid-column: span 2; min-height: 200px; }
  .card__placeholder { max-width: 300px; }
  .split { grid-template-columns: 1fr; }
  .group-row { grid-template-columns: 44px minmax(0, 180px) minmax(0, 1fr); }
  .group-row__link, .group-row__soon { grid-column: 2 / -1; justify-content: flex-start; text-align: left; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .ftr__brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 699px) {
  :root {
    --stage-w: 1500px;          /* frames the Gulf → South China Sea corridor */
    --focus-x: 47%;
    --focus-y: 50%;
  }
  .hero {
    height: auto;
    display: block;
    padding-top: 0;
    margin-top: -74px;
  }
  .hero__field {
    position: relative;
    height: clamp(300px, 44svh, 400px);
    padding-top: 74px;
  }
  .mapstage {
    -webkit-mask-image: radial-gradient(130% 120% at 47% 46%, #000 40%, rgba(0, 0, 0, 0.45) 74%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(130% 120% at 47% 46%, #000 40%, rgba(0, 0, 0, 0.45) 74%, rgba(0, 0, 0, 0) 100%);
  }
  .hero__vignette {
    background:
      linear-gradient(to bottom, rgba(244, 246, 249, 0.8) 0%, rgba(244, 246, 249, 0) 30%, rgba(244, 246, 249, 0) 55%, var(--ink) 100%);
  }
  .hero__content {
    padding: 12px 0 44px;
    background: var(--ink);
  }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); max-width: 15ch; }
  .lanes {
    position: static;
    text-align: left;
    padding: 0 var(--gut);
    margin-bottom: 26px;
    line-height: 1.9;
  }
  .lanes span { display: inline; }
  .lanes span::after { content: " · "; color: var(--dim); }
  .lanes span:last-child::after { content: ""; }
  .lanes i { display: none; }
  .bpipl-map__label { font-size: 17px; stroke-width: 6px; }

  .divisions { margin-top: 0; padding-top: 8px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card--soon { grid-column: auto; }
  .card__sum { max-width: none; }
  .divisions__head { flex-direction: column; align-items: flex-start; gap: 8px; }

  .offices { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; gap: 32px; }
  .ftr__brand { grid-column: auto; }
  /* the section map is inset inside .wrap, so it gets a wider lon window than
     the full-bleed hero to keep the Hong Kong label off the right edge */
  .mapsection { height: 320px; --stage-w: 1250px; --focus-x: 44%; --focus-y: 52%; }
}

@media (max-width: 420px) {
  .hdr__in { height: 66px; }
  .brand svg { width: 88px; }
  .brand__sep, .brand__sub { display: none; }
  .nav { gap: 14px; }
  .nav a { font-size: 0.66rem; }
  .nav__cta { padding: 8px 12px !important; }
}


/* =========================================================================
   V9 — the "Cool Modern" home branch (mirrors V6's additive block, scoped to
   .v6-home plus the .v6map__* map classes). Everything here is additive; it
   does not alter the base rules the other pages rely on. Same three deltas as
   V6 (hero compression, trade-NETWORK map, card motif backgrounds) — only the
   colour tone is converted from the dark field to the light-cool field.
   ========================================================================= */

/* ---- 1. hero compression (desktop) ------------------------------------- */
.v6-home {
  /* Symmetric full-world frame: the node span Dallas(96.8°W) ↔ Hong Kong(114°E)
     is centred on its midpoint (~8.6°E) so both ends sit an equal margin in
     from the edges, with the headline moved to the bottom (below the network). */
  --map-ar: 2.68657;
  --stage-w: max(1760px, 132vw);
  --focus-fx: 0.524;      /* map longitude ~8.6°E — midpoint of the node span */
  --focus-fy: 0.40;       /* anchor a bit above India so the NORTHERN nodes
                             (Amsterdam 52°N, Dallas 33°N) drop clear of the header */
  --focus-x: 50%;         /* …anchored to the horizontal centre of the field */
  --focus-y: 58%;         /* push the whole network DOWN — USA/Amsterdam were
                             clipped against the top; this gives them headroom */
}
.v6-home .hero {
  --hero-h: clamp(408px, 50svh, 500px);
  align-items: flex-end;  /* headline drops to the bottom; the map fills above it */
}
.v6-home .hero__content {
  padding-top: 0;
  padding-bottom: clamp(14px, 3vh, 30px);
}
.v6-home .hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 16px 0 18px;
}
.v6-home .hero .lede { max-width: 42ch; }
.v6-home .hero .cta { margin-top: 24px; }
/* soft symmetric edge-fade — no side blackout, so the western nodes read */
.v6-home .mapstage {
  -webkit-mask-image: radial-gradient(150% 135% at 50% var(--focus-fy), #000 58%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(150% 135% at 50% var(--focus-fy), #000 58%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0) 100%);
}
/* gentle top lighten, clear middle (the whole network reads), a soft light
   scrim at the bottom where the dark headline sits — legibility without hiding
   any node, and no dark scrim over the light field. */
.v6-home .hero__vignette {
  background:
    radial-gradient(115% 82% at 50% 30%, rgba(233,238,244,0) 56%, rgba(224,231,240,0.55) 100%),
    linear-gradient(to bottom, rgba(244,246,249,0.28) 0%, rgba(244,246,249,0) 20%, rgba(244,246,249,0) 40%, rgba(244,246,249,0.72) 74%, var(--ink) 100%);
}
/* headline now sits at the hero's base, so no negative pull — it would overlap
   the lede. Divisions follow the hero cleanly. */
.v6-home .divisions { margin-top: 0; }
.v6-home .divisions__head { margin-bottom: 20px; }
.v6-home .card { min-height: 274px; }

/* ---- 2. the trade-network map (v9 light re-treatment) ------------------ */
.v6map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.v6map__dot { fill: var(--land); }
.v6map__node { cursor: default; }
.v6map__node:focus-visible { outline: none; }

/* arcs: static base + animated dash-flow highlight (inbound to the hub) */
.v6map__arc {
  fill: none;
  stroke: rgba(227, 0, 22, 0.28);
  stroke-width: 1.3;
}
.v6map__flow {
  fill: none;
  stroke: var(--red-lift);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 7 93;          /* one travelling dash over pathLength 100 */
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 3px rgba(227, 0, 22, 0.45));
  opacity: 0.9;
  animation: v6flow 5.2s linear infinite;
}
.v6map__flow--1 { animation-delay: 0.8s; }
.v6map__flow--2 { animation-delay: 1.7s; }
.v6map__flow--3 { animation-delay: 2.5s; }
.v6map__flow--4 { animation-delay: 3.3s; }
.v6map__flow--5 { animation-delay: 4.1s; }
@keyframes v6flow { to { stroke-dashoffset: -100; } }

/* national (India) nodes — small, quiet cool-slate dots, no arcs */
.v6map__pin--natl { fill: var(--steel); opacity: 0.55; }
.v6map__node--hub .v6map__pin--natl { fill: var(--red); opacity: 1; }
.v6map__hubring {
  fill: none;
  stroke: rgba(227, 0, 22, 0.70);
  stroke-width: 1.4;
}

/* international nodes — highlighted focal points with a soft red halo */
.v6map__pin--intl {
  fill: var(--red);
  filter: drop-shadow(0 0 3px rgba(227, 0, 22, 0.5));
}
.v6map__halo {
  fill: rgba(227, 0, 22, 0.18);
  transform-box: fill-box;
  transform-origin: center;
  animation: v6halo 4.4s ease-out infinite;
}
.v6map__intl > g:nth-child(1) .v6map__halo { animation-delay: 0s; }
.v6map__intl > g:nth-child(2) .v6map__halo { animation-delay: 0.7s; }
.v6map__intl > g:nth-child(3) .v6map__halo { animation-delay: 1.5s; }
.v6map__intl > g:nth-child(4) .v6map__halo { animation-delay: 2.2s; }
.v6map__intl > g:nth-child(5) .v6map__halo { animation-delay: 3s; }
.v6map__intl > g:nth-child(6) .v6map__halo { animation-delay: 3.7s; }
@keyframes v6halo {
  0%   { transform: scale(0.5); opacity: 0.7; }
  70%  { opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}
/* keyboard focus + hover: firm up the node without printing any text */
.v6map__node--intl:hover .v6map__pin--intl,
.v6map__node--intl:focus-visible .v6map__pin--intl { stroke: var(--text); stroke-width: 2; }
.v6map__node--natl:hover .v6map__pin--natl,
.v6map__node--natl:focus-visible .v6map__pin--natl { opacity: 1; }

/* ---- 3. division-card SVG motif backgrounds ---------------------------- */
.card__motif {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 78%;
  height: auto;
  color: var(--accent);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  /* fade toward the top-left where the heading sits, protecting legibility */
  -webkit-mask-image: linear-gradient(310deg, #000 0%, rgba(0,0,0,0.55) 46%, rgba(0,0,0,0) 82%);
  mask-image: linear-gradient(310deg, #000 0%, rgba(0,0,0,0.55) 46%, rgba(0,0,0,0) 82%);
}
/* Kodak's camera/film motif — recoloured from Kodak-yellow to a muted ochre
   that sits inside the cool-light theme (the card stays fully disabled). */
.card--camera .card__motif { color: #b0791e; opacity: 0.30; }
.card--live:hover .card__motif,
.card--live:focus-visible .card__motif { opacity: 0.18; }
/* keep all real card content above the motif and the photo layer */
.card > *:not(.card__motif):not(.card__photo) { position: relative; z-index: 2; }

/* ---- photo backgrounds on the division cards -------------------------------
   Each card carries a real image (PartsLogic = laptop parts, EzyRefurb = a
   refurbished laptop, Kodak = a cool field until the real logo lands). On the
   light-cool cards the scrim is INVERTED — a light/cool wash so the DARK text
   stays legible over the photo. Photos referenced by absolute /v6/img paths
   (same server) — no CDN, no re-download. */
.card__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;                 /* quiet by default; lifts on reveal + hover */
  transform: scale(1.05);
  transform-origin: 70% 40%;
  transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
  pointer-events: none;
}
/* the legibility scrim — INVERTED to light, heaviest at the top-left where the
   heading and summary sit, so dark text reads over the photo. */
.card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244,246,249,0.94) 0%, rgba(244,246,249,0.66) 46%, rgba(238,242,247,0.12) 100%),
    linear-gradient(to top, rgba(244,246,249,0.9) 0%, rgba(244,246,249,0.1) 52%, rgba(244,246,249,0) 78%);
}
.card--pcb .card__photo    { background-image: url(/assets/img/parts.jpg); }
.card--laptop .card__photo { background-image: url(/assets/img/refurb.jpg); background-position: 60% 45%; }
.card--camera .card__photo {
  background-image:
    radial-gradient(120% 100% at 78% 22%, rgba(176,122,30,0.12), rgba(176,122,30,0) 60%),
    linear-gradient(160deg, rgba(210,220,232,0.5), rgba(244,246,249,0) 55%);
}
/* the photo replaces the line-art motif on the two live cards */
.card--pcb .card__motif, .card--laptop .card__motif { display: none; }

/* photo comes forward (brighter + settles) once the card is revealed or hovered */
.card.is-visible .card__photo { opacity: 0.72; transform: scale(1); }
.card--live:hover .card__photo,
.card--live:focus-visible .card__photo { opacity: 0.92; transform: scale(1.02); }

/* =========================================================================
   IMAGE-FORWARD division cards (Gurmeet 2026-07-16): show the branded product
   image as the MAIN element — not faded behind text. Just the bold division
   name + a website link, over a scrim at the base. All three cards (parts,
   refurbished laptops, Kodak accessories) carry their real creative.
   ========================================================================= */
.card--live, .card--soon { min-height: 400px; padding: 0; }
.card__photo,
.card.is-visible .card__photo { opacity: 1; transform: scale(1); }
.card--live:hover .card__photo,
.card--live:focus-visible .card__photo { opacity: 1; transform: scale(1.06); }
.card__motif { display: none; }
.card--camera .card__photo {
  background-image: url(/assets/img/kodak.jpg);
  background-position: 58% 42%;
}
/* dark scrim, heaviest at the base where the label sits */
.card__photo::after {
  background: linear-gradient(to top,
    rgba(7,10,15,0.93) 0%, rgba(7,10,15,0.6) 24%, rgba(7,10,15,0.14) 48%, rgba(7,10,15,0) 70%);
}
/* everything except the photo sits above it, padded, with the label at the base */
.card > *:not(.card__photo) { position: relative; z-index: 3; padding-inline: 26px; }
.card__idx { position: absolute; top: 20px; left: 26px; padding: 0;
  color: rgba(255,255,255,0.9); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.card__audience, .card__tag, .card__sum, .card__placeholder { display: none; }
.card__name, .card__name--soon {
  color: #fff; margin-top: auto; margin-bottom: 4px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.55);
  font-size: clamp(2rem, 2.9vw, 2.6rem);
}
.card__go { color: #fff; margin-top: 4px; padding: 0 0 24px; }
.card__go svg { color: #fff; }
.card--soon .chip {
  align-self: flex-start; color: #fff; margin: 0 0 24px;
  border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12);
}
/* the accent hairline at the top of each card stays as the division colour */
.card--pcb::before { background: #eab308; }
.card--laptop::before { background: #38bdf8; }
.card--camera::before { background: #FFB400; opacity: 1; }

/* ---- scroll reveal --------------------------------------------------------
   Opt-in via .js-reveal (added by the inline script). If JS never runs the
   cards stay fully visible — a blank card wall at the expo is the one failure
   mode worth engineering out. */
.js-reveal .card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.js-reveal .card.is-visible { opacity: 1; transform: none; }
.js-reveal .cards > *:nth-child(2).is-visible { transition-delay: 0.08s; }
.js-reveal .cards > *:nth-child(3).is-visible { transition-delay: 0.16s; }

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

/* ---- reduced motion: kill ALL v9 map animation, keep static legible state --- */
@media (prefers-reduced-motion: reduce) {
  .v6map__flow { display: none; }
  .v6map__arc { stroke: rgba(227, 0, 22, 0.42); }
  .v6map__halo { opacity: 0.42; animation: none; }
}

/* ---- responsive: v9 hero + map on tablet/phone ------------------------- */
@media (max-width: 1099px) {
  .v6-home {
    /* 150vw fits the full node span (Dallas ↔ Hong Kong) with a steady ~6%
       margin. The old max(1500px,…) floor zoomed portrait tablets in too far
       and pushed Dallas + Hong Kong off the frame — dropped so the whole
       network reads here too. */
    --stage-w: 150vw;
    --focus-x: 50%;
    --focus-y: 46%;
  }
  .v6-home .hero { --hero-h: clamp(360px, 46svh, 460px); }
  .v6-home .divisions { margin-top: 0; }
}

@media (max-width: 699px) {
  /* phone: the map becomes its OWN self-contained band above the headline.
     Desktop crops to a wide symmetric world; a phone can't — so instead we
     zoom the whole map OUT until the entire trade network fits edge-to-edge:
     the node span Dallas(96.8°W) ↔ Hong Kong(114°E) ≈ 211° of longitude,
     centred on its midpoint (~8.6°E, --focus-fx .524). Every international
     node, the Delhi hub and all the arcs read at once. Vertically we centre on
     the network's own midpoint (arcs peak ~y143, Penang ~y435 → mid ~0.36) and
     push it just below the floating header. */
  .v6-home {
    --stage-w: 150vw;        /* fits the exact node span with a steady ~6% margin at any phone width */
    --focus-fx: 0.524;       /* node-span midpoint longitude ~8.6°E */
    --focus-fy: 0.36;        /* network vertical midpoint (arc peak ↔ Penang) */
    --focus-x: 50%;          /* …centred horizontally */
    --focus-y: 56%;          /* nudged down, clear of the sticky header */
  }
  .v6-home .hero {
    height: auto;
    display: block;
    padding-top: 0;
    margin-top: -74px;
  }
  .v6-home .hero__field {
    position: relative;
    height: clamp(250px, 40svh, 300px);
    padding-top: 74px;
  }
  /* soft, mostly-round vignette-mask that keeps the whole network but lets the
     band dissolve into the page on every edge (no hard rectangle) */
  .v6-home .mapstage {
    -webkit-mask-image: radial-gradient(140% 132% at 50% 50%, #000 52%, rgba(0,0,0,0.45) 80%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(140% 132% at 50% 50%, #000 52%, rgba(0,0,0,0.45) 80%, rgba(0,0,0,0) 100%);
  }
  .v6-home .hero__vignette {
    background: linear-gradient(to bottom, rgba(244,246,249,0.72) 0%, rgba(244,246,249,0) 30%, rgba(244,246,249,0) 56%, var(--ink) 100%);
  }
  .v6-home .hero__content {
    padding: 14px 0 40px;
    background: var(--ink);
  }
  .v6-home .hero h1 { font-size: clamp(2.3rem, 10.5vw, 3rem); }
  .v6-home .divisions { margin-top: 0; padding-top: 6px; }

  /* the whole map is now zoomed far out, so the nodes/arcs would render tiny.
     Scale their geometry back up (viewBox units) so the network stays legible
     on a phone — nodes read as clear dots, arcs as clear lines. Desktop is
     untouched: these overrides live only inside this phone media query. */
  .v6-home .v6map__arc  { stroke-width: 3; }
  .v6-home .v6map__flow { stroke-width: 3.6; }
  .v6-home .v6map__pin--intl { r: 11; }
  .v6-home .v6map__halo { r: 30; }
  .v6-home .v6map__pin--natl { r: 6; opacity: 0.6; }
  .v6-home .v6map__node--hub .v6map__pin--natl { r: 7.5; }
  .v6-home .v6map__hubring { r: 18; stroke-width: 2.6; }
  .v6-home .v6map__dot { r: 2.4; }
}
