/* ============================================================
   M EXPRESS CARGO — v3 · white chrome, dark stage
   ============================================================ */

@font-face {
  font-family: 'Archivo Var';
  src: url('/assets/fonts/archivo-latin-wdth-normal.woff2') format('woff2-variations');
  font-weight: 100 900; font-stretch: 62.5% 125%; font-display: swap;
}
@font-face {
  font-family: 'Inter Var';
  src: url('/assets/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900; font-display: swap;
}
@font-face { font-family: 'Plex Mono'; src: url('/assets/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Plex Mono'; src: url('/assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Plex Mono'; src: url('/assets/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --void: #05060B;
  --space: #0A0E1C;
  --paper: #F4F5F8;
  --white: #FFFFFF;
  --ink: #0A0C12;
  --ink-2: #262A35;
  --gray: #83879A;
  --gray-2: #B9BDCB;
  --line-l: #E2E3EA;
  --line-d: rgba(255,255,255,.14);
  --navy: #0D206F;
  --red: #E5202A;          /* brand fill / large display */
  --red-ink: #C41520;      /* small text on light grounds - 5.5:1 on paper */
  --red-bright: #FF3B45;   /* small text on dark grounds  - 5.8:1 on void  */
  --dot-blue: #8FA2FF;

  --f-disp: 'Archivo Var', system-ui, sans-serif;
  --f-body: 'Inter Var', system-ui, sans-serif;
  --f-mono: 'Plex Mono', ui-monospace, 'SF Mono', monospace;

  --gutter: clamp(20px, 3.4vw, 56px);
  --w-max: 1500px;
  --topbar-h: 34px;
  --header-h: 78px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
  --ease: cubic-bezier(.23,.75,.26,.99);
  --ease-swift: cubic-bezier(.72,0,.16,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--f-body); font-size: 16.5px; line-height: 1.65;
  background: var(--void); color: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img, svg, canvas, video { 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; }
::selection { background: var(--red); color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip {
  position: fixed; top: 8px; left: 8px; z-index: 300; transform: translateY(-160%);
  background: var(--red); color: #fff; padding: 12px 18px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .18s var(--ease);
}
.skip:focus { transform: translateY(0); }
*:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 3px;
}
.light-sec *:focus-visible, .statement *:focus-visible { outline-color: var(--red-ink); }
.pnote { margin: 7px 0 14px; font-size: 11.8px; line-height: 1.45; color: var(--gray-2); max-width: 62ch; }
.container { width: 100%; max-width: calc(var(--w-max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- type ---------- */
.mono { font-family: var(--f-mono); font-weight: 500; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.mono.dim { color: var(--gray); }
.light-sec .mono.dim { color: #63687A; }
.display {
  font-family: var(--f-disp); font-stretch: 121%; font-weight: 860;
  text-transform: uppercase; line-height: .95; letter-spacing: -.005em;
  text-wrap: balance;
}
h1.display { font-size: clamp(40px, 7.2vw, 124px); }
h2.display { font-size: clamp(32px, 5vw, 80px); }
h3 { font-family: var(--f-disp); font-stretch: 116%; font-weight: 800; font-size: clamp(19px, 2vw, 26px); text-transform: uppercase; line-height: 1.08; }
.light-sec { background: var(--paper); color: var(--ink); }

.sec-mark { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(24px, 3vw, 44px); }
.sec-mark .idx { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; color: var(--red-ink); font-weight: 600; white-space: nowrap; }
.sec-mark .lbl { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.sec-mark .rule { flex: 1; height: 1px; background: currentColor; opacity: .14; }

/* ---------- buttons ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-weight: 500; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 999px; line-height: 1;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.pill:hover { transform: translateY(-2px); }
.pill .aro { transition: transform .35s var(--ease); }
.pill:hover .aro { transform: translateX(4px); }
.pill.solid { background: var(--white); color: var(--ink); }
.pill.red { background: var(--red); color: #fff; }
.pill.red:hover { background: var(--red-bright); }
.pill.line { border-color: var(--line-d); color: var(--white); }
.pill.line:hover { border-color: rgba(255,255,255,.55); }
.light-sec .pill.solid, .pill.ink { background: var(--ink); color: #fff; }
.light-sec .pill.solid:hover, .pill.ink:hover { background: #2A2E3A; }
.light-sec .pill.line, .hdr .pill.line, .mmenu .pill.line { border-color: #C9CBD4; color: var(--ink); }
.light-sec .pill.line:hover, .hdr .pill.line:hover, .mmenu .pill.line:hover { border-color: var(--ink); }
.pill.sm { padding: 11px 18px; font-size: 11.5px; }

/* ---------- topbar (navy brand strip) ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: var(--topbar-h); display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.topbar .tick-wrap { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.topbar .tick { display: flex; gap: 56px; width: max-content; color: rgba(255,255,255,.82); }
.topbar .tick > * { flex: 0 0 auto; }
.topbar .tick i { font-style: normal; color: var(--red-bright); }
.topbar.anim .tick { animation: tick 40s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 28px)); } }
.topbar .top-links { display: flex; gap: 2px; flex: 0 0 auto; padding-right: var(--gutter); padding-left: 16px; background: var(--navy); }
.topbar .top-links a { color: rgba(255,255,255,.85); padding: 6px 10px; transition: color .25s; white-space: nowrap; }
.topbar .top-links a:hover { color: #fff; }
.topbar .top-links .sep { color: rgba(255,255,255,.3); align-self: center; }

/* ---------- header: SOLID WHITE, original logo ---------- */
.hdr {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 110;
  height: var(--header-h); display: flex; align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line-l);
  transition: box-shadow .35s;
}
.hdr.scrolled { box-shadow: 0 10px 30px -18px rgba(10,12,18,.25); }
.hdr .container { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); max-width: none; }
.hdr .brand { flex: 0 0 auto; display: flex; align-items: center; }
.hdr .brand img { flex: 0 0 auto; }
.hdr .brand img { height: clamp(34px, 4.4vw, 46px); width: auto; max-width: none; }
.hdr nav.main { display: flex; gap: 4px; margin-left: auto; }
.hdr nav.main a {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  padding: 10px 14px; color: #5A5E6C; position: relative; transition: color .25s;
}
.hdr nav.main a::before {
  content: "▸"; color: var(--red); margin-right: 7px; opacity: 0; transform: translateX(-4px); display: inline-block;
  transition: opacity .25s, transform .25s;
}
.hdr nav.main a:hover, .hdr nav.main a.active { color: var(--ink); }
.hdr nav.main a:hover::before, .hdr nav.main a.active::before { opacity: 1; transform: none; }
.hdr .cta-zone { display: flex; align-items: center; gap: 10px; }

/* burger */
.burger { display: none; width: 46px; height: 46px; position: relative; z-index: 140; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); transition: transform .45s var(--ease-swift), opacity .3s; }
.burger span:nth-child(1) { top: 18px; } .burger span:nth-child(2) { top: 23px; } .burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile menu — white, below header so the burger stays usable */
.mmenu {
  position: fixed; inset: 0; z-index: 105; background: var(--white); color: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--chrome-h) + 20px) var(--gutter) 48px;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path .6s var(--ease-swift), visibility 0s .6s;
}
body.menu-open .mmenu { clip-path: inset(0); visibility: visible; transition: clip-path .6s var(--ease-swift); }
.mmenu nav a {
  display: flex; align-items: baseline; gap: 16px; padding: 12px 0;
  font-family: var(--f-disp); font-stretch: 121%; font-weight: 860; text-transform: uppercase;
  font-size: clamp(32px, 8.4vw, 54px); line-height: 1; color: var(--ink);
  border-bottom: 1px solid var(--line-l);
}
.mmenu nav a i { font-family: var(--f-mono); font-style: normal; font-size: 11px; letter-spacing: .12em; color: var(--red); }
.mmenu nav a.active { color: var(--red); }
.mmenu .mfoot { margin-top: 34px; display: grid; gap: 16px; }
.mmenu .mfoot .row { display: flex; flex-wrap: wrap; gap: 10px; }
.mmenu .mfoot .mono.dim { color: #63687A; }
.mmenu .mfoot .mono.dim a { color: var(--ink-2); }

/* ---------- HERO (dark stage under white chrome) ---------- */
.hero {
  position: relative; min-height: calc(100svh - var(--chrome-h)); margin-top: var(--chrome-h);
  overflow: hidden; overflow: clip;
  display: flex; align-items: center;
  background:
    radial-gradient(90% 70% at 78% 30%, rgba(28,40,110,.34), transparent 60%),
    radial-gradient(60% 46% at 70% 78%, rgba(229,32,42,.12), transparent 65%),
    var(--void);
  padding: clamp(26px, 3.4vh, 58px) 0 clamp(46px, 5.6vh, 84px);
}
#hero3d { position: absolute; inset: 0; }
#hero3d canvas { width: 100%; height: 100%; }
.hero-fallback { position: absolute; inset: 0; display: none; }
.hero-fallback img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
html.no-webgl #hero3d { display: none; }
html.no-webgl .hero-fallback { display: block; }

.hero .content { position: relative; z-index: 4; width: 100%; }
.hero .kick { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero .kick .dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 99px; background: var(--red); box-shadow: 0 0 12px var(--red-bright); animation: blink 2.4s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
/* the hero headline also answers to viewport HEIGHT, so the proof strip and
   the scroll cue stay above the fold on short laptop screens */
.hero h1.display { font-size: min(clamp(40px, 7.2vw, 124px), 16.5vh); }
.hero h1 .row { display: block; overflow: clip; padding-block: .04em; margin-block: -.04em; }
.hero h1 .row > span { display: inline-block; }
html.js-anim .hero h1 .row > span { transform: translateY(114%); }
.hero h1 .thin { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.85); }
.hero .sub { margin-top: clamp(14px, 2vh, 22px); max-width: 44ch; color: var(--gray-2); font-size: clamp(15.5px, 1.3vw, 18px); }
.hero .cta-row { display: flex; gap: 12px; margin-top: clamp(18px, 2.4vh, 28px); flex-wrap: wrap; }
.hero .hud {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 26px; z-index: 3; pointer-events: none;
  width: min(100% - 2 * var(--gutter), var(--w-max));
  display: flex; gap: clamp(16px, 2.6vw, 40px); align-items: center; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray);
}
.hero .hud .hud-item b { color: var(--gray-2); font-weight: 500; }
.hero .hud .scroll-cue { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-2); margin-left: auto; }
.hero .hud .scroll-cue .bar { width: 1px; height: 26px; background: linear-gradient(180deg, var(--red), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-height: 880px) and (min-width: 761px) {
  /* short laptops and landscape tablets: compress the hero so the proof strip stays in view */
  .hero { padding-top: clamp(18px, 2.4vh, 38px); padding-bottom: 28px; }
  .hero .kick { margin-bottom: 14px; }
  .planner { padding: 12px 16px 12px; margin-top: clamp(12px, 1.8vh, 20px); }
  .pnote { display: none; }
  .hero .sub { margin-top: 10px; }
  .hero .cta-row { margin-top: 12px; }
  .hero .hud { bottom: 18px; }
}
@media (max-height: 660px) { .hero .hud { display: none; } .hero { padding-bottom: 46px; } }
/* desktop: a true two-column hero. Text lives in the left ~60% of the container,
   the India map lives entirely in the right 40% (never behind the text), and the
   proof strip sits in normal flow below the content so it can never overlap. */
@media (min-width: 1121px) {
  .hero { flex-direction: column; justify-content: center; }
  .hero .content { padding-right: 40%; }
  .hero h1.display { font-size: min(clamp(40px, 5.3vw, 80px), 14vh); }
  .hero .hud { position: relative; bottom: auto; left: auto; transform: none; margin: clamp(20px, 2.6vh, 36px) auto 0; }
}
/* short desktop/laptop viewports: tighten the vertical rhythm so the whole hero,
   including the proof strip, fits within the first screen */
@media (min-width: 1121px) and (max-height: 940px) {
  .hero { padding-top: 14px; padding-bottom: 16px; }
  .hero .kick { margin-bottom: 10px; }
  .hero .sub { margin-top: 8px; }
  .hero .cta-row { margin-top: 10px; }
  .planner { margin-top: 10px; }
  .hero .hud { margin-top: 12px; }
}
/* the map only drops into its own band when hero3d says the hero is portrait */
html.hero-band .hero { min-height: auto; padding-bottom: clamp(300px, 44vh, 460px); }
.city-tag {
  position: absolute; z-index: 3; pointer-events: none;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-2); background: rgba(10,14,28,.78); border: 1px solid rgba(255,255,255,.16);
  padding: 3px 8px; border-radius: 3px; transform: translate(12px, -50%); white-space: nowrap;
}
.city-tag.hq { color: #fff; border-color: rgba(229,32,42,.6); background: rgba(70,10,14,.6); }
.city-tag.hq i { font-style: normal; color: var(--red-bright); }

/* ---------- hero route planner ---------- */
.planner {
  position: relative; z-index: 5; margin-top: clamp(20px, 3vh, 34px);
  width: min(520px, 100%);
  background: rgba(10,14,28,.72); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px;
  padding: 18px 18px 16px;
}
.planner .ptitle { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.planner .ptitle .mono { color: #fff; }
.planner .ptitle .live { width: 6px; height: 6px; border-radius: 99px; background: var(--red); box-shadow: 0 0 10px var(--red-bright); animation: blink 2.4s infinite; }
.planner .fields { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.planner .swapb { width: 34px; height: 34px; border-radius: 99px; border: 1px solid rgba(255,255,255,.2); color: #fff; display: grid; place-items: center; font-size: 13px; transition: background .25s, transform .35s var(--ease); }
.planner .swapb:hover { background: rgba(255,255,255,.12); transform: rotate(180deg); }
.planner label { display: block; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); margin-bottom: 5px; }
.planner select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23D6D9E2' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid rgba(255,255,255,.44); border-radius: 9px; color: #fff;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .04em;
  padding: 11px 30px 11px 12px; cursor: pointer;
}
.planner select:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 2px; }
.planner select:focus { border-color: var(--red-bright); }
.planner select option { background: #0A0E1C; color: #fff; }
.planner .readout { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.12); }
.planner .ro { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.planner .ro b { display: block; font-size: 16px; letter-spacing: .02em; color: #fff; margin-top: 4px; font-weight: 500; }
.planner .ro b.mode { color: var(--red-bright); }
.planner .go-quote { margin-left: auto; }
@media (max-width: 640px) {
  .planner { padding: 15px 14px 14px; }
  .planner .fields { grid-template-columns: 1fr; gap: 8px; }
  .planner .swapb { justify-self: start; transform: rotate(90deg); }
  .planner .swapb:hover { transform: rotate(270deg); }
  .planner .readout { gap: 14px; }
  .planner .go-quote { margin-left: 0; width: 100%; justify-content: center; }
}

/* ---------- descent ---------- */
.descent {
  position: relative; min-height: clamp(300px, 46vh, 460px);
  display: grid; place-items: center; padding: clamp(48px, 7vh, 90px) var(--gutter);
  background: linear-gradient(180deg, var(--void) 0%, #101A3C 26%, #24418F 52%, #8AA8EA 76%, #EAEEF7 92%, var(--paper) 100%);
}
.descent .dsc { display: grid; justify-items: center; gap: clamp(20px, 3vh, 34px); text-align: center; }
.descent .dsc-line {
  font-family: var(--f-disp); font-stretch: 118%; font-weight: 840; text-transform: uppercase;
  font-size: clamp(26px, 4.6vw, 62px); line-height: 1.02; color: #fff; letter-spacing: -.005em;
  text-shadow: 0 2px 24px rgba(6,10,24,.45);
}
.descent .dsc-line em { font-style: normal; color: #FF6068; }
.descent .dsc-modes {
  display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); flex-wrap: wrap; justify-content: center;
  font-family: var(--f-mono); font-size: clamp(10.5px, 1.05vw, 12.5px); letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
}
.descent .dsc-modes i { width: 5px; height: 5px; border-radius: 99px; background: var(--red); flex: 0 0 auto; }
.descent .alt-line {
  margin-inline: auto; width: fit-content; max-width: 92vw;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; display: flex; gap: 16px; align-items: center;
  background: rgba(10,14,28,.55); padding: 10px 18px; border-radius: 99px; backdrop-filter: blur(4px);
  text-align: center;
}
.descent .alt-line .rule { width: 44px; height: 1px; background: rgba(255,255,255,.5); flex: 0 0 auto; }

/* ---------- statement ---------- */
.statement { padding: clamp(58px, 6.6vw, 106px) 0 clamp(70px, 8vw, 120px); }
.statement .grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(36px, 4.6vw, 84px); align-items: start; }
.statement .reveal-words .w { color: #79808F; transition: color .35s linear; }
.statement .reveal-words .w.on { color: var(--ink); }
.statement .reveal-words .w.accent.on { color: var(--red); }
.statement .side p { color: #434857; margin-bottom: 20px; font-size: clamp(17.5px, 1.35vw, 20.5px); line-height: 1.68; }
.statement .side p strong { color: var(--ink); font-weight: 640; }
.statement .side .pill { margin-top: 10px; }
.stat-stack { margin-top: clamp(34px, 4vw, 62px); border-top: 1px solid var(--line-l); }
.stat-row { display: grid; grid-template-columns: clamp(110px, 13vw, 210px) minmax(0, 1fr); align-items: center; gap: clamp(22px, 4vw, 64px); padding: clamp(24px, 3vw, 40px) 0; border-bottom: 1px solid var(--line-l); }
.stat-row .num { font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; font-size: clamp(58px, 7.4vw, 132px); line-height: .86; letter-spacing: -.015em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-row .num sup { font-size: .38em; color: var(--red); font-weight: 860; vertical-align: super; }
.stat-row .cap { text-align: left; }
.stat-row .cap .mono { color: var(--red-ink); font-size: clamp(10.5px, 1vw, 12px); letter-spacing: .16em; text-transform: uppercase; display: block; }
.stat-row .cap .d { margin-top: 10px; color: #2C3040; font-size: clamp(17px, 1.55vw, 23px); line-height: 1.45; max-width: 36ch; font-weight: 480; }

/* ---------- pinned multimodal sequence ---------- */
.yard-wrap { position: relative; height: 640vh; background: var(--paper); }
.yard {
  position: sticky; top: var(--chrome-h);
  height: calc(100vh - var(--chrome-h)); height: calc(100svh - var(--chrome-h));
  overflow: hidden; overflow: clip;
  --rw: min(74vw, 132svh);          /* truck frame = 17 m */
  --ppm: calc(var(--rw) / 17);      /* pixels per metre */
  --ground: 20%;
  --cx: 62%;                        /* stage centre — keeps the caption column clear */
  --dock: 62%;                      /* where the aircraft's cargo door lands */
}
@media (max-width: 1120px) { .yard { --rw: min(96vw, 108svh); --ground: 28%; --cx: 50%; --dock: 54%; } }
@media (max-width: 640px)  { .yard { --rw: min(118vw, 66svh); --ground: 36%; --cx: 50%; --dock: 52%; } }
.yard .stage { position: absolute; inset: 0; }
.yard .ground-line { position: absolute; left: 0; right: 0; bottom: var(--ground); height: 1px; background: #D6D8E0; }
.yard .rail-line {
  position: absolute; left: -12vw; right: -12vw; bottom: calc(var(--ground) - 3px); height: 4px; z-index: 2; opacity: 0;
  background: repeating-linear-gradient(90deg, #B9BFCC 0 30px, #E1E4EC 30px 52px); border-radius: 2px;
}
.yard .ghost {
  position: absolute; left: 0; right: 0; bottom: 6%; text-align: center;
  font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; text-transform: uppercase;
  font-size: clamp(26px, 8.8vw, 178px); line-height: 1; letter-spacing: .005em;
  color: transparent; -webkit-text-stroke: 1.8px #C9CDDA; white-space: nowrap; z-index: 1; opacity: 0;
}
.yard .road-line {
  position: absolute; left: -14vw; right: -14vw; bottom: calc(var(--ground) - 4px); height: 5px; z-index: 2; opacity: 0;
  background: repeating-linear-gradient(90deg, #C6CBD8 0 52px, transparent 52px 104px);
  border-radius: 3px;
}
.yard .apron {
  position: absolute; left: -10vw; right: -10vw; bottom: calc(var(--ground) - 2px); height: 3px; z-index: 1; opacity: 0;
  background: linear-gradient(90deg, transparent, #C9CEDA 12%, #C9CEDA 88%, transparent);
}
.yard .obj { position: absolute; bottom: var(--ground); will-change: transform; z-index: 3; }
.yard .obj img { width: 100%; height: auto; display: block; }
.yard .cable { position: absolute; width: 2px; height: 140vh; background: #2A2C33; opacity: .55; z-index: 3; bottom: var(--ground); }

/* container 40 ft = 12.19 m, centred on stage */
#y-box { width: calc(var(--ppm) * 12.19); left: var(--cx); margin-left: calc(var(--ppm) * -6.095); z-index: 5; }
#y-spreader { width: calc(var(--ppm) * 12.40); left: var(--cx); margin-left: calc(var(--ppm) * -6.20); z-index: 6; }
#y-cable-l { left: calc(var(--cx) - var(--ppm) * 4.60); }
#y-cable-r { left: calc(var(--cx) + var(--ppm) * 4.60); }

/* yard stack: two 20 ft boxes under the pick */
#y-stackA, #y-stackB { width: calc(var(--ppm) * 6.06); z-index: 2; }
#y-stackA { left: var(--cx); margin-left: calc(var(--ppm) * -6.12); }
#y-stackB { left: var(--cx); margin-left: calc(var(--ppm) * .06); }

/* truck: container rides x 3.50-15.69 m, so centre the rig on 9.595 m */
#y-truck { width: var(--rw); left: var(--cx); margin-left: calc(var(--ppm) * -9.595); z-index: 3; }
/* train: loco 21 m + wagon 15 m; container centre lands at 28.295 m */
#y-train { width: calc(var(--ppm) * 36); left: var(--cx); margin-left: calc(var(--ppm) * -28.295); z-index: 3; display: flex; align-items: flex-end; }
#y-train img.loco { width: 58.333%; }
#y-train img.wag  { width: 41.667%; }

/* ── air side ─────────────────────────────────────────────
   aircraft frame 28.00 x 7.70 m, door centre 10.15 m from its
   left edge, sill 3.62 m · loader 11.40 m, docked on the door  */
#y-plane {
  width: calc(var(--ppm) * 28); left: var(--dock);
  margin-left: calc(var(--ppm) * -10.15);
  bottom: calc(var(--ground) - var(--ppm) * .15); z-index: 2;
}
#y-lbase { width: calc(var(--ppm) * 11.4); left: var(--dock); margin-left: calc(var(--ppm) * -5.70); z-index: 4; }
#y-lsci {
  width: calc(var(--ppm) * 6.10); left: var(--dock); margin-left: calc(var(--ppm) * -3.70);
  bottom: calc(var(--ground) + var(--ppm) * 1.35); z-index: 4;
  transform-origin: 50% 100%;
}
#y-ldeck { width: calc(var(--ppm) * 9.90); left: var(--dock); margin-left: calc(var(--ppm) * -5.15);
  bottom: calc(var(--ground) + var(--ppm) * 2.01); z-index: 5; }
#y-uld { width: calc(var(--ppm) * 3.30); left: var(--dock); margin-left: calc(var(--ppm) * -1.65);
  bottom: calc(var(--ground) + var(--ppm) * 2.575); z-index: 6; transform-origin: 50% 100%; }

.yard .hud-tag {
  position: absolute; right: var(--gutter); z-index: 7;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: #4C505E; background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  border: 1px solid #D9DBE3; padding: 7px 12px; border-radius: 4px; display: flex; gap: 10px; align-items: center; opacity: 0;
}
.yard .hud-tag i { font-style: normal; color: var(--red-ink); }
#hud-hoist { top: clamp(24px, 5vh, 56px); }
#hud-lock { top: calc(clamp(24px, 5vh, 56px) + 44px); }
@media (max-width: 760px) { .yard .hud-tag { display: none; } }

.yard .cap-line { position: absolute; left: var(--gutter); top: clamp(24px, 5vh, 58px); z-index: 7; max-width: min(430px, 31vw); opacity: 0; }
.yard .cap-line.low { top: auto; bottom: clamp(14px, 3.2vh, 34px); max-width: min(520px, 52vw); }
@media (max-width: 1120px) { .yard .cap-line { top: auto; bottom: clamp(12px, 3vh, 30px); max-width: min(520px, 78vw); } }
.yard .cap-line .mono { color: var(--red-ink); display: block; margin-bottom: 10px; }
.yard .cap-line .t { display: block; font-family: var(--f-disp); font-stretch: 118%; font-weight: 830; text-transform: uppercase; font-size: clamp(19px, 2.3vw, 33px); line-height: 1.05; color: var(--ink); }
.yard .cap-line .sub { display: block; margin-top: 12px; font-family: var(--f-mono); font-size: clamp(9.5px, 1vw, 11px); letter-spacing: .14em; text-transform: uppercase; color: #5B6070; }
/* ---------- static journey panel: used for reduced-motion AND on phones ----------
   On phones the 640vh scroll scene is replaced by this readable panel and the heavy
   vehicle art is display:none, so it never downloads (see pinned.js). ---------- */
html.reduced .yard-wrap, html.static-journey .yard-wrap { height: auto; }
html.reduced .yard, html.static-journey .yard {
  position: relative; height: auto; overflow: visible;
  padding: 0 0 clamp(46px, 6vw, 88px);
}
html.reduced .yard .stage, html.static-journey .yard .stage { position: relative; inset: auto; height: auto; }
html.reduced .yard .stage > *:not(.caps), html.static-journey .yard .stage > *:not(.caps) { display: none !important; }
html.reduced .yard-wrap > h2.sr-only, html.static-journey .yard-wrap > h2.sr-only {
  position: static; width: auto; height: auto; clip: auto; margin: 0 auto clamp(28px, 3.4vw, 48px);
  overflow: visible; white-space: normal; max-width: calc(var(--w-max) + 2 * var(--gutter));
  padding-inline: var(--gutter);
  font-family: var(--f-disp); font-stretch: 119%; font-weight: 860; text-transform: uppercase;
  font-size: clamp(24px, 3.2vw, 46px); line-height: 1.02; color: var(--ink);
}
html.reduced .yard .caps, html.static-journey .yard .caps {
  position: relative; display: grid; gap: clamp(20px, 2.6vw, 38px);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: calc(var(--w-max) + 2 * var(--gutter)); margin-inline: auto;
  padding-inline: var(--gutter);
}
html.reduced .yard .cap-line, html.static-journey .yard .cap-line,
html.reduced .yard .cap-line.low, html.static-journey .yard .cap-line.low {
  position: static; opacity: 1; max-width: none;
  border-top: 1px solid var(--line-l); padding-top: 18px;
}
html.reduced .yard .cap-line .t, html.static-journey .yard .cap-line .t { font-size: clamp(17px, 1.6vw, 23px); }

/* ---------- services (dark) ---------- */
.svc-sec { background: var(--void); color: #fff; padding: clamp(90px, 10vw, 150px) 0; position: relative; overflow: hidden; overflow: clip; }
.svc-sec .bg-ghost {
  position: absolute; top: 4%; left: 0; white-space: nowrap; z-index: 0; pointer-events: none;
  font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; font-size: clamp(64px, 21vw, 340px);
  text-transform: uppercase; line-height: 1; color: rgba(255,255,255,.028);
}
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px, 5vw, 70px); position: relative; z-index: 1; }
.svc-head h2 .row { white-space: nowrap; }
.svc-list { position: relative; z-index: 1; border-top: 1px solid var(--line-d); }
.svc-row {
  display: grid; grid-template-columns: 88px minmax(0, .96fr) minmax(0, 1fr) clamp(230px, 25vw, 372px) 50px;
  gap: clamp(18px, 2.4vw, 40px); align-items: center;
  padding: clamp(24px, 2.8vw, 38px) 0; border-bottom: 1px solid var(--line-d); position: relative;
  transition: background .35s;
}
.svc-row:hover { background: rgba(255,255,255,.025); }
.svc-row .no { font-family: var(--f-mono); font-size: 12px; color: var(--gray); letter-spacing: .1em; white-space: nowrap; }
.svc-row .no i { font-style: normal; color: var(--red); }
.svc-row .ttl { font-family: var(--f-disp); font-stretch: 116%; font-weight: 840; text-transform: uppercase; font-size: clamp(21px, 1.95vw, 34px); line-height: 1.04; letter-spacing: -.004em; text-wrap: balance; }
.svc-row .ttl .tag { display: inline-block; vertical-align: middle; margin: 0 0 0 12px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: var(--red-bright); border: 1px solid rgba(229,32,42,.45); padding: 4px 9px; border-radius: 99px; transform: translateY(-2px); white-space: nowrap; }
.svc-row .desc { color: var(--gray-2); font-size: 15px; line-height: 1.62; max-width: 46ch; }
.svc-row .desc .mono { display: block; margin-top: 10px; color: var(--gray); font-size: 10.5px; line-height: 1.5; }
.svc-row .ph { border-radius: 10px; overflow: hidden; overflow: clip; aspect-ratio: 16/10; position: relative; }
.svc-row .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.94); }
.svc-row:hover .ph img { transform: scale(1.06); }
.svc-row .go {
  width: 46px; height: 46px; border: 1px solid var(--line-d); border-radius: 99px;
  display: grid; place-items: center; font-family: var(--f-mono); font-size: 16px; color: #fff;
  transition: background .3s, border-color .3s, transform .4s var(--ease);
}
.svc-row:hover .go { background: var(--red); border-color: var(--red); transform: rotate(-45deg); }

/* ---------- network (light) ---------- */
.net-sec { padding: clamp(70px, 7.5vw, 118px) 0; }
.net-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(32px, 4.4vw, 72px); align-items: center; }
.imap-wrap { position: relative; width: 100%; max-width: 620px; margin-inline: auto; }
.imap-wrap svg { width: 100%; height: auto; }
.imap-wrap .st { fill: #E7E9F0; stroke: #fff; stroke-width: .6; }
.imap-wrap .pin { fill: var(--red); pointer-events: none; }
.imap-wrap .pinhit { fill: transparent; cursor: pointer; }
.imap-wrap .pin-ring { fill: none; stroke: var(--red); stroke-width: 1; opacity: 0; pointer-events: none; }
.imap-wrap .hq-ring { animation: ring 2.4s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ring { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(2.6); opacity: 0; } }
.imap-tip {
  position: absolute; pointer-events: none; z-index: 5; opacity: 0; transform: translate(-50%, -150%);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: #fff; padding: 5px 10px; border-radius: 4px; white-space: nowrap;
  transition: opacity .2s;
}
.region-ledger { border-top: 1px solid var(--line-l); }
.region-li { display: grid; grid-template-columns: 104px minmax(0, 1fr) 92px; gap: clamp(14px, 1.6vw, 24px); padding: 18px 4px; border-bottom: 1px solid var(--line-l); align-items: center; transition: background .3s; }
.region-li:hover { background: #fff; }
.region-li .rn { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--red-ink); font-weight: 600; }
.region-li .rc { color: #4C505E; font-size: 13.6px; line-height: 1.65; }
.region-li .rq { font-family: var(--f-disp); font-stretch: 120%; font-weight: 870; font-size: 30px; line-height: 1; color: var(--ink); text-align: right; }
.region-li .rq i { font-style: normal; font-family: var(--f-mono); font-size: 10px; color: #5B6070; display: block; text-align: right; letter-spacing: .08em; margin-top: 4px; white-space: nowrap; }

/* ---------- direct band ---------- */
.direct-sec { background: var(--red); color: #fff; padding: clamp(60px, 7vw, 100px) 0; position: relative; overflow: hidden; overflow: clip; }
.direct-sec .container { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(24px, 4vw, 72px); align-items: center; position: relative; z-index: 1; padding-bottom: clamp(26px, 4vw, 62px); }
.direct-sec .b07 { font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; font-size: clamp(56px, 8.4vw, 150px); line-height: .82; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.7); white-space: nowrap; }
.direct-sec h2 { font-family: var(--f-disp); font-stretch: 119%; font-weight: 860; text-transform: uppercase; font-size: clamp(26px, 3.6vw, 54px); line-height: .98; }
.direct-sec p { margin-top: 14px; color: #fff; max-width: 58ch; font-size: 15.5px; }
.direct-sec .marq { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; text-transform: uppercase; font-size: clamp(26px, 6.4vw, 104px); color: rgba(0,0,0,.09); line-height: 1; pointer-events: none; }

/* ---------- sectors + clients ---------- */
.sect-sec { padding: clamp(62px, 7vw, 104px) 0 clamp(42px, 5vw, 66px); }
.sector-strip { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line-l); border-radius: 12px; overflow: hidden; overflow: clip; background: #fff; }
.sector-cell { padding: clamp(20px, 2.4vw, 34px); border-right: 1px solid var(--line-l); transition: background .3s; }
.sector-cell:last-child { border-right: 0; }
.sector-cell:hover { background: var(--paper); }
.sector-cell .sx { font-family: var(--f-mono); font-size: 11px; color: var(--red-ink); letter-spacing: .1em; }
.sector-cell .sn { font-family: var(--f-disp); font-stretch: 116%; font-weight: 820; text-transform: uppercase; font-size: clamp(15px, 1.4vw, 21px); margin-top: 12px; min-height: 2.1em; }
.sector-cell .sd { margin-top: 6px; font-size: 12.5px; color: #5B6070; line-height: 1.55; }
@media (max-width: 1120px) {
  .sector-strip { grid-template-columns: 1fr 1fr; }
  .sector-cell { border-bottom: 1px solid var(--line-l); }
  .sector-cell:nth-child(2n) { border-right: 0; }
  .sector-cell:last-child { grid-column: span 2; border-bottom: 0; }
  .sector-cell .sn { min-height: 0; }
}
@media (max-width: 640px) {
  .sector-strip { grid-template-columns: 1fr; }
  .sector-cell, .sector-cell:nth-child(2n) { border-right: 0; }
  .sector-cell:last-child { grid-column: auto; }
}

.clients-sec { padding: 0 0 clamp(80px, 9vw, 130px); }
.marquee { overflow: hidden; overflow: clip; position: relative; --gap: 14px; }
.marquee .fadeL, .marquee .fadeR { position: absolute; top: 0; bottom: 0; width: 10vw; z-index: 2; pointer-events: none; }
.marquee .fadeL { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.marquee .fadeR { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.marquee-track { display: flex; gap: var(--gap); width: max-content; animation: marq var(--spd, 48s) linear infinite; padding: 4px 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee.rev .marquee-track { animation-direction: reverse; }
@keyframes marq { to { transform: translateX(calc(-50% - var(--gap)/2)); } }
.cl-chip { flex: 0 0 auto; width: 186px; height: 88px; background: #fff; border: 1px solid var(--line-l); border-radius: 10px; display: grid; place-items: center; padding: 14px; }
.cl-chip img { max-height: 52px; max-width: 148px; object-fit: contain; }

.partners-strip { border-top: 1px solid var(--line-l); background: #fff; }
.partners-strip .inner { display: flex; align-items: center; justify-content: center; gap: clamp(26px, 4.4vw, 76px); padding: 30px var(--gutter); flex-wrap: wrap; }
.partners-strip img { height: 52px; width: auto; max-width: 210px; object-fit: contain; transition: transform .3s; }
.partners-strip img[alt*="Indian Railways"] { height: 68px; }
.partners-strip img[alt*="Air India"] { height: 54px; }
.partners-strip img[alt*="SpiceJet"] { height: 44px; }
.partners-strip img[alt*="IndiGo"] { height: 38px; }
.partners-strip img[alt*="Akasa"] { height: 50px; }
.partners-strip img:hover { transform: scale(1.06); }

.partners-strip .lbl { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #63687A; }

/* ---------- CTA ---------- */
.cta-sec { background: var(--void); position: relative; overflow: hidden; overflow: clip; padding: clamp(72px, 8vw, 112px) 0 clamp(58px, 6.4vw, 88px); text-align: center; }
.cta-sec::before { content: ""; position: absolute; inset: -30%; background: radial-gradient(42% 40% at 50% 62%, rgba(229,32,42,.16), transparent 65%); pointer-events: none; }
.cta-sec .mono.dim { display: block; margin-bottom: 22px; }
.cta-sec h2 { position: relative; }
.cta-sec .row { position: relative; display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta-sec .lines { position: relative; margin-top: 30px; display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; color: var(--gray); text-transform: uppercase; }
.cta-sec .lines a { color: var(--gray-2); transition: color .25s; }
.cta-sec .lines a:hover { color: #fff; }

/* ---------- footer ---------- */
.ftr { background: #030409; border-top: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden; overflow: clip; }
.ftr .grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .62fr) minmax(0, .78fr) minmax(0, 1.05fr); gap: clamp(24px, 3.2vw, 52px); padding: clamp(52px, 6vw, 78px) 0 44px; position: relative; z-index: 1; }
.ftr .logo-card { display: inline-block; background: #fff; border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; }
.ftr .logo-card img { height: 44px; width: auto; }
.ftr .fb p { color: var(--gray); font-size: 13.5px; max-width: 38ch; line-height: 1.7; }
.ftr .modes { display: flex; gap: 8px; margin-top: 20px; }
.ftr .modes span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; border: 1px solid var(--line-d); padding: 5px 10px; border-radius: 99px; color: var(--gray-2); }
.ftr .fc .t { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 600; }
.ftr .fc ul { display: grid; gap: 9px; }
.ftr .fc a, .ftr .fc li { color: var(--gray); font-size: 13.8px; transition: color .25s; }
.ftr .fc a:hover { color: #fff; }
.ftr .addr { color: var(--gray); font-size: 13.2px; line-height: 1.75; }
.ftr .addr strong { color: var(--gray-2); font-weight: 550; }
.ftr .base { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0 clamp(74px, 7.4vw, 122px); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #9AA0B4; position: relative; z-index: 1; }
.ftr .mega {
  position: absolute; bottom: -.04em; left: 0; right: 0; text-align: center; white-space: nowrap;
  font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; text-transform: uppercase;
  font-size: clamp(22px, 6.6vw, 134px); line-height: 1; letter-spacing: .005em;
  color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,.20); pointer-events: none;
}

/* ---------- inner page hero ---------- */
.page-hero { position: relative; background: var(--void); margin-top: var(--chrome-h); padding: clamp(46px, 6vw, 88px) 0 clamp(40px, 4.6vw, 74px); overflow: hidden; overflow: clip; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 82% 10%, rgba(28,40,110,.35), transparent 60%); pointer-events: none; }
.page-hero .crumbs { display: flex; gap: 10px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 26px; position: relative; z-index: 1; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero h1 { position: relative; z-index: 1; }
.page-hero h1 .row { display: block; overflow: clip; padding-block: .04em; margin-block: -.04em; }
.page-hero h1 .row > span { display: inline-block; }
html.js-anim .page-hero h1 .row > span { transform: translateY(114%); }
.page-hero .lead { position: relative; z-index: 1; margin-top: 24px; color: var(--gray-2); max-width: 60ch; font-size: clamp(15.5px, 1.4vw, 18px); }
.page-hero .hchips { position: relative; z-index: 1; display: flex; gap: 10px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- split feature ---------- */
.feature-sec { padding: clamp(64px, 7vw, 112px) 0; }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 90px); align-items: center; }
.feat.rev .media { order: 2; }
.feat .media { position: relative; border-radius: 14px; overflow: hidden; overflow: clip; aspect-ratio: 4/4.4; }
.feat .media.wide { aspect-ratio: 4/3; }
.feat .media img { width: 100%; height: 100%; object-fit: cover; }
.feat .media .m-tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; background: rgba(5,6,11,.72); color: #fff; padding: 7px 12px; border-radius: 4px; backdrop-filter: blur(6px); }
.feat .media .m-tag i { font-style: normal; color: var(--red-bright); }
.feat h2 { font-family: var(--f-disp); font-stretch: 119%; font-weight: 860; text-transform: uppercase; font-size: clamp(28px, 3.6vw, 52px); line-height: .98; margin: 14px 0 18px; }
.feat p.intro { color: #4C505E; font-size: 16px; }
.checks { margin-top: 24px; display: grid; border-top: 1px solid var(--line-l); }
.checks li { display: flex; gap: 14px; padding: 13px 2px; border-bottom: 1px solid var(--line-l); font-size: 14.6px; color: var(--ink-2); line-height: 1.55; align-items: baseline; }
.checks li::before { content: "▸"; color: var(--red-ink); font-family: var(--f-mono); font-size: 12px; flex: 0 0 auto; }
.chiprow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 8px 14px; border-radius: 99px; border: 1px solid #CFD1DA; color: var(--ink-2); background: #fff; }
.awb-note { margin-top: 26px; border: 1px solid var(--line-l); background: #fff; border-left: 3px solid var(--red); border-radius: 8px; padding: 18px 20px; display: flex; gap: 16px; align-items: center; }
.awb-note .b { font-family: var(--f-disp); font-stretch: 120%; font-weight: 870; font-size: 22px; color: var(--red); }
.awb-note .x { font-size: 13.8px; color: #4C505E; line-height: 1.6; }
.awb-note .x strong { color: var(--ink); }

/* ---------- about ---------- */
.quote-band { background: var(--paper); padding: clamp(70px, 8vw, 120px) 0; }
.quote-card { border-left: 3px solid var(--red); padding-left: clamp(24px, 3vw, 48px); }
.quote-card blockquote { font-family: var(--f-disp); font-stretch: 113%; font-weight: 780; font-size: clamp(22px, 3vw, 42px); line-height: 1.16; color: var(--ink); max-width: 26ch; }
.quote-card blockquote em { font-style: normal; color: var(--red); }
.quote-card .who { margin-top: 22px; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #63687A; }
.quote-card .who b { color: var(--ink); font-weight: 600; }
.vm-band { background: var(--void); color: #fff; padding: clamp(80px, 9vw, 130px) 0; }
.vm-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: 12px; overflow: hidden; overflow: clip; }
.vm-cell { background: var(--void); padding: clamp(28px, 4vw, 56px); position: relative; overflow: hidden; overflow: clip; }
.vm-cell::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 90% 0%, rgba(229,32,42,.1), transparent 60%); pointer-events: none; }
.vm-cell.m::after { background: radial-gradient(70% 90% at 90% 0%, rgba(46,71,196,.16), transparent 60%); }
.vm-cell h3 { color: var(--red-bright); margin-bottom: 16px; }
.vm-cell.m h3 { color: var(--dot-blue); }
.vm-cell p { position: relative; z-index: 1; color: var(--gray-2); font-size: clamp(15.5px, 1.5vw, 19px); line-height: 1.65; }
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gcard { border: 1px solid var(--line-l); background: #fff; border-radius: 10px; padding: 24px; }
.gcard .gx { font-family: var(--f-mono); font-size: 11px; color: var(--red-ink); letter-spacing: .1em; }
.gcard .gt { font-family: var(--f-disp); font-stretch: 116%; font-weight: 830; text-transform: uppercase; font-size: 16.5px; margin: 12px 0 8px; color: var(--ink); }
.gcard .gd { font-size: 13.4px; color: #5B6070; line-height: 1.6; }
.safety-strip { border: 1px solid var(--line-l); border-radius: 12px; background: #fff; display: grid; grid-template-columns: auto 1fr 1fr 1fr; gap: clamp(18px, 3vw, 44px); padding: clamp(24px, 3vw, 40px); align-items: center; }
.safety-strip .st { font-family: var(--f-disp); font-stretch: 118%; font-weight: 860; text-transform: uppercase; font-size: clamp(18px, 2vw, 26px); color: var(--ink); max-width: 9ch; line-height: 1.05; }
.safety-strip .sp { border-left: 2px solid var(--red); padding-left: 14px; font-size: 13.4px; color: #4C505E; line-height: 1.6; }
.safety-strip .sp b { display: block; color: var(--ink); font-weight: 640; margin-bottom: 4px; }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-c { border: 1px solid var(--line-l); background: #fff; border-radius: 10px; padding: 24px; }
.step-c .sx { font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; font-size: 40px; color: transparent; -webkit-text-stroke: 1.5px #6E7BA6; line-height: 1; }
.step-c .st2 { font-family: var(--f-disp); font-stretch: 116%; font-weight: 830; text-transform: uppercase; font-size: 15.5px; margin: 14px 0 8px; color: var(--ink); }
.step-c .sd2 { font-size: 13px; color: #5B6070; line-height: 1.6; }

/* ---------- contact ---------- */
.contact-wrap { padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 9vw, 130px); }
.c-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }
.c-card { background: #fff; border: 1px solid var(--line-l); border-radius: 12px; padding: clamp(24px, 3vw, 38px); }
.c-li { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 16px; padding: 15px 0; border-top: 1px solid var(--line-l); font-size: 15px; }
.c-li:first-of-type { border-top: 0; padding-top: 0; }
.c-li .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #63687A; padding-top: 4px; }
.c-li .v { color: var(--ink); line-height: 1.6; min-width: 0; overflow-wrap: anywhere; }
.c-li .v a:hover { color: var(--red); }
.c-li .v .s { display: block; font-size: 12.5px; color: #63687A; }
.persons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.person { border: 1px solid var(--line-l); border-radius: 10px; padding: 20px; background: var(--paper); }
.person .pa { width: 44px; height: 44px; border-radius: 99px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--f-disp); font-weight: 860; font-size: 16px; margin-bottom: 12px; }
.person .pn { font-family: var(--f-disp); font-stretch: 116%; font-weight: 830; text-transform: uppercase; font-size: 15px; color: var(--ink); }
.person .pr { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #63687A; margin: 4px 0 10px; }
.person a { display: block; font-size: 13.2px; color: var(--ink-2); padding: 1.5px 0; }
.person a:hover { color: var(--red); }
.book-card { border-radius: 12px; background: var(--void); color: #fff; padding: clamp(24px, 3vw, 38px); position: relative; overflow: hidden; overflow: clip; }
.book-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 100% at 100% 0%, rgba(229,32,42,.25), transparent 60%); pointer-events: none; }
.book-card h3 { position: relative; z-index: 1; }
.book-card p { position: relative; z-index: 1; color: var(--gray-2); font-size: 14px; margin: 10px 0 22px; }
.book-card .rowp { position: relative; z-index: 1; display: flex; gap: 10px; flex-wrap: wrap; }
.map-embed { border-radius: 12px; overflow: hidden; overflow: clip; border: 1px solid var(--line-l); background: #E9EBF2; }
.map-embed iframe { width: 100%; height: clamp(280px, 42vw, 380px); border: 0; display: block; filter: grayscale(.2); }
.map-under { display: flex; justify-content: space-between; gap: 10px; padding: 12px 16px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #63687A; background: #fff; border-top: 1px solid var(--line-l); flex-wrap: wrap; }
.map-under a { color: var(--ink); }
.map-under a:hover { color: var(--red); }
.portal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.portal-c { border: 1px solid var(--line-l); border-radius: 10px; padding: 20px; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: border-color .3s, transform .35s var(--ease); }
.portal-c:hover { border-color: var(--ink); transform: translateY(-3px); }
.portal-c .pt { display: block; font-family: var(--f-disp); font-stretch: 116%; font-weight: 830; text-transform: uppercase; font-size: 15px; color: var(--ink); }
.portal-c .ps { display: block; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #63687A; margin-top: 5px; }
.portal-c .aro { color: var(--red); font-family: var(--f-mono); flex: 0 0 auto; }
.branches { margin-top: 26px; border: 1px solid var(--line-l); border-radius: 12px; background: #fff; padding: clamp(22px, 3vw, 34px); }
.branches .bgrid { display: grid; gap: 16px; }
.branches .brow { display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: baseline; }
.branches .brow .rn { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: var(--red-ink); font-weight: 600; text-transform: uppercase; }
.branches .cchips { display: flex; flex-wrap: wrap; gap: 7px; }
.branches .cchips span { font-family: var(--f-mono); font-size: 11px; letter-spacing: .04em; padding: 6px 11px; border: 1px solid var(--line-l); border-radius: 99px; color: var(--ink-2); background: var(--paper); }
.branches .note { margin-top: 16px; font-size: 12.5px; color: #63687A; }

/* ---------- 404 ---------- */
.err { min-height: calc(100svh - var(--chrome-h)); margin-top: var(--chrome-h); display: grid; place-items: center; text-align: center; padding: var(--gutter); background: var(--void); }
.err .code { font-family: var(--f-disp); font-stretch: 121%; font-weight: 880; font-size: clamp(120px, 24vw, 300px); line-height: .9; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.22); }

/* ---------- cursor / grain ---------- */
.cursor { position: fixed; z-index: 200; top: 0; left: 0; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.65); border-radius: 99px; pointer-events: none; mix-blend-mode: difference; transform: translate(-50%,-50%); transition: width .25s, height .25s, opacity .3s; opacity: 0; }
.cursor.on { opacity: 1; }
.cursor.grow { width: 56px; height: 56px; }
.cursor::after { content: ""; position: absolute; inset: 0; margin: auto; width: 3px; height: 3px; background: #fff; border-radius: 99px; }
@media (pointer: coarse) { .cursor { display: none; } }
.grain { position: fixed; inset: -100px; z-index: 90; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- reveals ---------- */
[data-rv] { opacity: 1; transform: none; }
html.js-anim [data-rv] { opacity: 0; transform: translateY(26px); }
.lines-rv .row { display: block; overflow: clip; padding-block: .04em; margin-block: -.04em; }
.lines-rv .row > span { display: inline-block; }
html.js-anim .lines-rv .row > span { transform: translateY(114%); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .topbar .tick,
  .hero .kick .dot, .planner .ptitle .live, .hero .hud .scroll-cue .bar,
  .imap-wrap .hq-ring { animation: none !important; }
  .imap-wrap .hq-ring { opacity: 0; }
  .marquee-track { flex-wrap: wrap; width: auto; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .hdr nav.main { display: none; }
  /* without the nav, the controls have to claim the right edge themselves */
  .hdr .cta-zone { margin-left: auto; }
  .burger { margin-left: 6px; }
  .mmenu { justify-content: flex-start; }
  .mmenu nav { margin-top: auto; }
  .mmenu .mfoot { margin-bottom: auto; }
  .burger { display: block; margin-left: auto; }
  .hdr .cta-zone .pill.line { display: none; }
  .topbar .top-links { display: none; }
  /* stacked rows: the index needs its own measure or it collides with the title,
     and the photo should own the full row rather than half of it */
  .svc-row {
    grid-template-columns: max-content minmax(0, 1fr) 46px;
    grid-template-areas: "no ttl go" "ph ph ph" "desc desc desc";
    row-gap: 20px; column-gap: 16px; align-items: center;
  }
  .svc-row .no { grid-area: no; } .svc-row .ttl { grid-area: ttl; }
  .svc-row .go { grid-area: go; align-self: center; } .svc-row .desc { grid-area: desc; max-width: none; }
  .svc-row .ph { grid-area: ph; max-width: none; width: 100%; }
  .net-grid { grid-template-columns: 1fr; }
  /* stacked: the map shares the copy's left edge instead of floating centred */
  .imap-wrap { max-width: min(560px, 100%); margin-inline: 0; }
  .statement .grid { grid-template-columns: 1fr; }
  .feat { grid-template-columns: 1fr; }
  .feat.rev .media { order: 0; }
  .feat .media { aspect-ratio: 16/10; }
  .c-grid { grid-template-columns: 1fr; }
  .ftr .grid { grid-template-columns: 1fr 1fr; }
  .grid-cards { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .safety-strip { grid-template-columns: 1fr; }
  .direct-sec .container { grid-template-columns: 1fr; }
  .vm-two { grid-template-columns: 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .hdr .cta-zone .pill { padding: 9px 11px; font-size: 10px; letter-spacing: .07em; }
  .burger { width: 40px; height: 40px; }
  .burger span { left: 9px; right: 9px; }
  /* the map gets its own visible band under the planner */
  .hero { min-height: auto; padding-bottom: clamp(300px, 44vh, 460px); }
  .hero .cta-row .pill { flex: 1 1 auto; justify-content: center; }
  .hdr .brand img { height: 38px; }
  .hdr .cta-zone .pill { padding: 10px 14px; font-size: 10.5px; }
  .hero h1.display { font-size: clamp(29px, 8.8vw, 44px); }
  .page-hero h1.display { font-size: clamp(30px, 8.8vw, 46px); }
  h2.display { font-size: clamp(26px, 7.6vw, 34px); }
  .stat-row { grid-template-columns: 1fr; gap: 6px; }
  .stat-row .cap { text-align: left; }
  .grid-cards, .steps-grid, .persons, .portal-cards, .ftr .grid { grid-template-columns: 1fr; }
  .cl-chip { width: 150px; height: 74px; }
  .region-li { grid-template-columns: 84px minmax(0, 1fr) auto; }
  .branches .brow { grid-template-columns: 1fr; gap: 8px; }
  .svc-row .ttl .tag { display: block; width: fit-content; margin: 8px 0 0; transform: none; }
}

/* very small phones: the chrome still has to hold a logo, a CTA and a menu */
@media (max-width: 400px) {
  .hdr .brand img { height: 30px; }
  .c-li { grid-template-columns: 1fr; gap: 6px; }
  .region-li { grid-template-columns: 1fr auto; gap: 10px; }
  .region-li .rn { grid-column: 1 / -1; }
  .hdr .cta-zone .pill { padding: 8px 9px; font-size: 9px; letter-spacing: .04em; }
  .hdr .cta-zone .pill .aro { display: none; }
  .burger { width: 36px; height: 36px; }
  .burger span { left: 7px; right: 7px; }
}

/* ---------- FAQ ---------- */
.faq-sec { padding: clamp(56px, 6.5vw, 100px) 0 clamp(70px, 8vw, 120px); }
.faq-wrap { border-top: 1px solid var(--line-l); max-width: 92ch; }
.faq-i { border-bottom: 1px solid var(--line-l); }
.faq-i summary {
  list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: 18px;
  padding: clamp(18px, 2vw, 26px) 0; position: relative; padding-right: 44px;
}
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i summary h3 {
  font-family: var(--f-disp); font-stretch: 116%; font-weight: 820; text-transform: none;
  font-size: clamp(17px, 1.55vw, 22px); line-height: 1.28; color: var(--ink); margin: 0;
}
.faq-i summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-mono); font-size: 20px; color: var(--red-ink); transition: transform .3s var(--ease);
}
.faq-i[open] summary::after { content: "\2212"; }
.faq-i summary:hover h3 { color: var(--red-ink); }
.faq-a { padding: 0 44px clamp(20px, 2.2vw, 28px) 0; }
.faq-a p { color: #3D4250; font-size: clamp(15px, 1.25vw, 17px); line-height: 1.68; margin: 0; max-width: 78ch; }
@media (max-width: 640px) { .faq-a { padding-right: 0; } }
