:root {
  --ink: #10120f;
  --asphalt: #161a18;
  --coal: #070807;
  --steel: #22282a;
  --steel-2: #111617;
  --paper: #f1eee5;
  --paper-2: #d4d9d3;
  --red: #ec1d2e;
  --yellow: #e9b84a;
  --blue: #294858;
  --green: #71846d;
  --muted: rgba(244, 240, 230, .72);
  --muted-dark: rgba(16, 18, 15, .64);
  --line: rgba(244, 240, 230, .18);
  --line-dark: rgba(16, 18, 15, .16);
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--coal);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 24px;
  color: var(--paper);
  background: var(--coal);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader span {
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

.loader i {
  width: min(280px, 70vw);
  height: 3px;
  overflow: hidden;
  background: rgba(244, 240, 230, .2);
}

.loader i::before {
  content: "";
  display: block;
  width: 48%;
  height: 100%;
  background: var(--red);
  animation: loaderMove 950ms cubic-bezier(.76,0,.24,1) infinite;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.scroll-meter {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: 8px;
  height: 100vh;
  background: rgba(244,240,230,.1);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--red);
}

.cursor-orbit {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 130;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(236, 29, 46, .62);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 220ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease;
}

.cursor-orbit.active {
  width: 56px;
  height: 56px;
  border-color: rgba(240,201,72,.8);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  opacity: .13;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.16), transparent 12%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.12), transparent 12%);
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 44px), var(--max));
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(244,240,230,.14);
  border-radius: 999px;
  background: rgba(7,8,7,.56);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-left: 8px;
  font-weight: 950;
  line-height: .85;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a,
.header-cta {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(244,240,230,.72);
  transition: color 220ms ease;
}

.nav-links a:hover { color: var(--paper); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--red);
  transition: transform 260ms ease, background 260ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #ff3344;
}

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background: var(--coal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .34;
  background:
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(244,240,230,.08) 111px 112px),
    repeating-linear-gradient(0deg, transparent 0 62px, rgba(244,240,230,.05) 63px 64px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
  animation: industrialGrid 14s linear infinite;
  pointer-events: none;
}

.route-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: .65;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 46%, rgba(236,29,46,.2), transparent 28%),
    linear-gradient(90deg, rgba(7,8,7,.98) 0%, rgba(7,8,7,.66) 43%, rgba(7,8,7,.26) 74%, rgba(7,8,7,.8) 100%),
    linear-gradient(0deg, rgba(7,8,7,.98) 0%, transparent 45%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(.85) contrast(1.05);
  transform: scale(1.04);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 44px), var(--max));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 160px 0 130px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.split-title {
  max-width: 1030px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.7rem);
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.split-title span {
  display: block;
}

.hero-text {
  max-width: 630px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.primary-action {
  color: var(--paper);
  background: var(--red);
}

.secondary-action {
  color: var(--paper);
  border: 1px solid rgba(244,240,230,.32);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
}

.secondary-action:hover {
  color: var(--ink);
  background: var(--paper);
}

.dispatch-panel {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  top: 170px;
  z-index: 5;
  width: min(330px, calc(100% - 44px));
  padding: 24px;
  border: 1px solid rgba(244,240,230,.18);
  border-radius: 22px;
  background: rgba(16,18,15,.68);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.dispatch-panel span,
.dispatch-panel p {
  color: var(--muted);
}

.dispatch-panel span {
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dispatch-panel strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--paper);
  font-size: 1.8rem;
  line-height: .96;
  text-transform: uppercase;
}

.dispatch-panel p {
  margin: 0;
  line-height: 1.55;
}

.road-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(236,29,46,.38), transparent 18%, transparent 82%, rgba(236,29,46,.34)),
    linear-gradient(180deg, rgba(7,8,7,.92), rgba(17,22,23,.98));
  border-top: 1px solid rgba(244,240,230,.14);
  border-bottom: 1px solid rgba(236,29,46,.55);
}

.road-ticker::before,
.road-ticker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236,29,46,.72), rgba(244,240,230,.34), transparent);
  pointer-events: none;
}

.road-ticker::before { top: 0; }
.road-ticker::after { bottom: 0; }

.ticker-lane {
  width: max-content;
  display: flex;
  animation: ticker 42s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.road-ticker span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 26px;
  color: rgba(244,240,230,.92);
  font-size: clamp(.86rem, 1.05vw, 1.18rem);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-ticker span::after {
  content: "";
  width: 54px;
  height: 1px;
  margin-left: 30px;
  background: linear-gradient(90deg, var(--red), rgba(240,201,72,.72), transparent);
}

.command-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0, rgba(236,29,46,.2), transparent 34%),
    linear-gradient(180deg, #090b0b, #111617);
  border-top: 0;
  border-bottom: 1px solid rgba(244,240,230,.12);
}

.command-strip::before,
.command-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,240,230,.38), transparent);
  pointer-events: none;
}

.stat-static {
  padding: 0 max(22px, calc((100vw - var(--max)) / 2 + 22px));
  background:
    linear-gradient(90deg, rgba(236,29,46,.1), transparent 20%, transparent 80%, rgba(236,29,46,.08)),
    #070807;
}

.stat-static::before,
.stat-static::after {
  display: none;
}

.command-strip::before {
  top: 12px;
}

.command-strip::after {
  bottom: 12px;
}

.stat-lane {
  display: flex;
  width: max-content;
  animation: ticker 46s linear infinite reverse;
  will-change: transform;
}

.stat-group {
  display: flex;
  flex: 0 0 auto;
}

.stat-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  gap: 1px;
  border: 0;
  background: rgba(244,240,230,.12);
}

.command-strip article {
  position: relative;
  width: clamp(250px, 20vw, 340px);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 24px;
  overflow: hidden;
  border-right: 1px solid rgba(244,240,230,.08);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(244,240,230,.08), transparent 42%),
    rgba(7,8,7,.56);
  transform-style: preserve-3d;
}

.stat-static article {
  width: auto;
  min-height: 72px;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 24px;
  background: #070807;
}

.stat-static article::before,
.stat-static article::after {
  display: none;
}

.command-strip article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  height: auto;
  background: var(--red);
}

.command-strip article::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -96px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(244,240,230,.08);
  border-radius: 50%;
}

.command-strip b {
  position: relative;
  z-index: 1;
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.9rem, 4.4vw, 5.9rem);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.04em;
}

.stat-static b {
  color: var(--paper);
  font-size: clamp(1.35rem, 2.1vw, 2.65rem);
  line-height: .9;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.command-strip span {
  position: relative;
  z-index: 1;
  max-width: 230px;
  color: rgba(244,240,230,.64);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.25;
}

.stat-static span {
  max-width: none;
  color: rgba(244,240,230,.58);
  font-size: .68rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.motion-story,
.fleet-section,
.goods-section,
.why-section,
.contact-section {
  position: relative;
  padding: 120px max(22px, calc((100vw - var(--max)) / 2 + 22px));
}

.motion-story,
.goods-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 8%, rgba(233,184,74,.12), transparent 28%),
    linear-gradient(180deg, var(--steel-2), var(--coal));
}

.section-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 64px;
}

.section-intro h2,
.sticky-copy h2,
.contact-card h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3rem, 8vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--paper);
  background: var(--steel-2);
  transform-style: preserve-3d;
  border: 1px solid rgba(244,240,230,.12);
}

.story-card::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  color: var(--yellow);
  font-weight: 950;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: brightness(.75) saturate(.9);
  transition: transform 900ms cubic-bezier(.16,1,.3,1), filter 900ms ease;
}

.story-card:hover img {
  filter: brightness(.92) saturate(1);
  transform: scale(1.06);
}

.story-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding-top: 90px;
  background: linear-gradient(0deg, rgba(7,8,7,.88), rgba(7,8,7,0));
}

.story-card span,
.story-card p {
  color: var(--muted);
}

.story-card span {
  display: block;
  margin-bottom: 12px;
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 410px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.story-card p {
  max-width: 420px;
  margin: 0;
  line-height: 1.55;
}

.sticky-road {
  position: relative;
  min-height: 170vh;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  padding: 120px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  background:
    radial-gradient(circle at 72% 30%, rgba(236,29,46,.24), transparent 30%),
    linear-gradient(135deg, var(--coal), #101515 58%, #232d27);
}

.sticky-copy,
.route-stage {
  position: sticky;
  top: 130px;
  align-self: start;
}

.sticky-copy p:last-child {
  max-width: 590px;
  color: var(--muted);
  line-height: 1.7;
}

.route-stage {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
}

.india-map-card {
  position: relative;
  width: min(760px, 100%);
  min-height: 720px;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(244,240,230,.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 28%, rgba(236,29,46,.2), transparent 27%),
    radial-gradient(circle at 22% 78%, rgba(240,201,72,.14), transparent 28%),
    linear-gradient(rgba(244,240,230,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,240,230,.055) 1px, transparent 1px),
    linear-gradient(140deg, rgba(244,240,230,.08), rgba(7,8,7,.72));
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
  box-shadow: inset 0 0 90px rgba(0,0,0,.42), 0 30px 80px rgba(0,0,0,.26);
}

.india-map-card::before {
  content: "WESTERN CORRIDOR";
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  color: rgba(244,240,230,.38);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: 0;
}

.india-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(244,240,230,.1), transparent 34%, rgba(236,29,46,.1));
  mix-blend-mode: screen;
}

.india-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 640px;
  display: block;
  object-fit: contain;
}

.india-outline {
  fill: rgba(207,225,238,.13);
  stroke: rgba(244,240,230,.78);
  stroke-width: 1.7;
  vector-effect: non-scaling-stroke;
}

.india-outline-halo {
  fill: rgba(236,29,46,.05);
  stroke: rgba(236,29,46,.28);
  stroke-width: 8;
  vector-effect: non-scaling-stroke;
}

.india-route-glow,
.india-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.india-route-glow {
  stroke: var(--red);
  stroke-width: 16;
  opacity: .52;
  filter: url(#routeGlow);
}

.india-route {
  stroke: var(--yellow);
  stroke-width: 5;
  stroke-dasharray: .045 .025;
  animation: corridorDash 2200ms linear infinite;
}

.route-city-line {
  stroke: rgba(244,240,230,.28);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.city-dot {
  fill: var(--paper);
  stroke: rgba(7,8,7,.72);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.route-city .city-dot {
  fill: var(--red);
  stroke: var(--yellow);
  stroke-width: 2.5;
}

.city-tag-bg {
  fill: rgba(7,8,7,.82);
  stroke: rgba(244,240,230,.2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.route-city .city-tag-bg {
  fill: rgba(236,29,46,.92);
  stroke: rgba(240,201,72,.58);
}

.city-tag {
  fill: var(--paper);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.india-map-card figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper);
  border-top: 1px solid rgba(244,240,230,.18);
  padding-top: 18px;
}

.india-map-card figcaption span {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.india-map-card figcaption strong {
  max-width: 310px;
  text-align: right;
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.fleet-section,
.contact-section {
  background:
    linear-gradient(180deg, #070807, #101314 52%, #070807);
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.fleet-hero {
  min-height: 660px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 46%, rgba(236,29,46,.28), transparent 34%),
    linear-gradient(145deg, rgba(244,240,230,.08), transparent),
    var(--steel-2);
  transform-style: preserve-3d;
  overflow: hidden;
}

.fleet-hero img {
  width: min(94%, 760px);
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  filter: drop-shadow(0 42px 48px rgba(0,0,0,.52));
  animation: truckFloat 5200ms ease-in-out infinite;
}

.fleet-cards {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--line);
}

.fleet-card {
  min-height: 164px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 0;
  color: var(--paper);
  background: var(--steel-2);
  text-align: left;
  transition: background 280ms ease;
}

.fleet-card span {
  color: var(--yellow);
  font-weight: 950;
}

.fleet-card strong {
  display: block;
  font-size: clamp(2rem, 3.8vw, 4.8rem);
  line-height: .86;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.fleet-card em {
  grid-column: 2;
  max-width: 560px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.fleet-card.active,
.fleet-card:hover {
  background: var(--red);
}

.fleet-card.active span,
.fleet-card:hover span {
  color: var(--paper);
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flip-card {
  min-height: 330px;
  perspective: 1200px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 330px;
  transition: transform 850ms cubic-bezier(.16,1,.3,1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:focus-visible .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
}

.flip-face.front {
  align-items: flex-end;
  color: var(--paper);
  background: var(--steel);
}

.flip-face.front::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(7,8,7,.94) 0%, rgba(7,8,7,.48) 46%, rgba(7,8,7,.1) 100%),
    radial-gradient(circle at 24% 18%, rgba(236,29,46,.3), transparent 36%),
    repeating-linear-gradient(90deg, rgba(244,240,230,.05) 0 1px, transparent 1px 42px);
}

.flip-face.front img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.88) contrast(1.04);
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(.16,1,.3,1), filter 900ms ease;
}

.flip-card:hover .flip-face.front img,
.flip-card:focus-visible .flip-face.front img {
  filter: brightness(.95) saturate(1) contrast(1.08);
  transform: scale(1.1);
}

.flip-face.front span {
  position: relative;
  z-index: 2;
  max-width: 100%;
  font-size: clamp(1.55rem, 2.25vw, 2.75rem);
  font-weight: 950;
  line-height: .94;
  letter-spacing: -.035em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 18px 38px rgba(0,0,0,.68);
}

.flip-face.back {
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(7,8,7,.18), transparent),
    var(--red);
  transform: rotateY(180deg);
}

.flip-face.back p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.45;
}

.image-cinema {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.cinema-frame {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--coal);
}

.cinema-frame img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  filter: brightness(.76) saturate(.88);
  transform: scale(1.08);
  transition: transform 1200ms cubic-bezier(.16,1,.3,1), filter 1200ms ease;
}

.cinema-frame.in-view img,
.cinema-frame:hover img {
  filter: brightness(.94) saturate(1);
  transform: scale(1.01);
}

.cinema-frame figcaption {
  position: absolute;
  left: 28px;
  bottom: 26px;
  max-width: 620px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.5rem, 5.6vw, 7rem);
  font-weight: 950;
  line-height: .84;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.cinema-frame:first-child figcaption {
  color: var(--coal);
  text-shadow: 0 2px 16px rgba(255,255,255,.82), 0 0 2px rgba(255,255,255,.92);
}

.why-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(236,29,46,.18), transparent 26%),
    var(--paper-2);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.why-list article {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(241,238,229,.74);
  transform-style: preserve-3d;
  backdrop-filter: blur(14px);
}

.why-list span {
  color: var(--red);
  font-weight: 950;
}

.why-list h3 {
  margin: auto 0 14px;
  max-width: 100%;
  font-size: clamp(1.55rem, 2.2vw, 2.65rem);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.why-list p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.why-scroll-section {
  min-height: 360vh;
  padding: 0;
  overflow: clip;
}

.why-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 116px max(22px, calc((100vw - var(--max)) / 2 + 22px)) 54px;
  overflow: hidden;
}

.why-intro {
  margin-bottom: 28px;
}

.why-intro h2 {
  max-width: 1180px;
  font-size: clamp(3.1rem, 5.7vw, 6.4rem);
}

.why-progress {
  position: relative;
  height: 2px;
  margin-bottom: 20px;
  overflow: hidden;
  background: rgba(7,8,7,.12);
}

.why-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.why-window {
  height: clamp(330px, 49vh, 520px);
  overflow: visible;
}

.why-track {
  display: flex;
  gap: 22px;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.why-panel {
  position: relative;
  flex: 0 0 min(78vw, 1040px);
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(7,8,7,.12);
  background: var(--coal);
  box-shadow: 0 28px 78px rgba(7,8,7,.26);
  transform-style: preserve-3d;
}

.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,8,7,.86) 0%, rgba(7,8,7,.52) 42%, rgba(7,8,7,.14) 72%),
    linear-gradient(0deg, rgba(7,8,7,.72), transparent 48%),
    radial-gradient(circle at 18% 74%, rgba(236,29,46,.26), transparent 32%);
  pointer-events: none;
}

.why-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(244,240,230,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,240,230,.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mix-blend-mode: overlay;
}

.why-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) saturate(.96) contrast(1.06);
  transform: scale(1.04);
  transition: transform 1100ms cubic-bezier(.16,1,.3,1), filter 900ms ease;
}

.why-panel:hover img {
  filter: brightness(1) saturate(1.05) contrast(1.08);
  transform: scale(1.08);
}

.why-panel div {
  position: absolute;
  left: clamp(22px, 3.2vw, 46px);
  bottom: clamp(22px, 3vw, 44px);
  z-index: 3;
  max-width: min(760px, calc(100% - 64px));
  color: var(--paper);
}

.why-panel span {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 15px;
  padding: 8px 11px 7px;
  border: 1px solid rgba(244,240,230,.18);
  border-radius: 999px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  background: rgba(7,8,7,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 28px rgba(0,0,0,.24);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  text-shadow: 0 2px 16px rgba(0,0,0,.72);
}

.why-panel h3 {
  margin: 0 0 14px;
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(2.3rem, 5vw, 6.4rem);
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255,255,255,.08),
    0 24px 52px rgba(0,0,0,.7);
}

.why-panel p {
  max-width: 610px;
  margin: 0;
  color: rgba(244,240,230,.82);
  font-size: clamp(.98rem, 1.25vw, 1.15rem);
  line-height: 1.55;
  text-shadow: 0 12px 32px rgba(0,0,0,.82);
}

.contact-section {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 22px;
}

.contact-card {
  min-height: 580px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(236,29,46,.3), transparent 30%),
    linear-gradient(145deg, rgba(244,240,230,.08), transparent),
    var(--steel-2);
  transform-style: preserve-3d;
}

.contact-card h2 {
  font-size: clamp(3.2rem, 6.4vw, 8rem);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-links a {
  width: fit-content;
  max-width: 100%;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  overflow-wrap: anywhere;
}

.dispatch-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  align-self: stretch;
  border: 1px solid rgba(244,240,230,.12);
  border-radius: 32px;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
    rgba(244,240,230,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(22px) saturate(1.1);
}

.dispatch-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  min-height: 104px;
  align-content: center;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    rgba(14,18,19,.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 10px 26px rgba(0,0,0,.12);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.dispatch-form label:first-child,
.dispatch-form label:nth-child(2) {
  border-radius: 22px;
}

.dispatch-form label:focus-within {
  z-index: 140;
}

.dispatch-form span {
  color: rgba(244,240,230,.66);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dispatch-form input,
.dispatch-form select {
  width: 100%;
  min-height: 42px;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.dispatch-form select {
  color: var(--paper);
}

.dispatch-form option {
  color: var(--ink);
  background: var(--paper);
}

.dispatch-form input[type="date"] {
  color-scheme: dark;
}

.dispatch-form input::placeholder {
  color: rgba(244,240,230,.42);
}

.weight-field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
  gap: 12px;
}

.select-shell {
  position: relative;
  min-width: 0;
}

.select-shell.open {
  z-index: 160;
}

.select-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.select-trigger {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 42px 0 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.select-trigger::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(244,240,230,.72);
  border-bottom: 2px solid rgba(244,240,230,.72);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 240ms ease, border-color 240ms ease;
}

.select-trigger.is-placeholder {
  color: rgba(244,240,230,.48);
}

.select-shell.open .select-trigger::after {
  border-color: rgba(244,240,230,.9);
  transform: translateY(-24%) rotate(225deg);
}

.select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 7px);
  z-index: 180;
  max-height: min(218px, 38vh);
  overflow: auto;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.08)),
    rgba(15,19,20,.82);
  box-shadow: 0 24px 62px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.24);
  backdrop-filter: blur(42px) saturate(1.55);
  -webkit-backdrop-filter: blur(42px) saturate(1.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(.985);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.16,1,.3,1);
}

.select-menu::-webkit-scrollbar {
  width: 6px;
}

.select-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(244,240,230,.28);
}

.select-shell.open .select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.select-option {
  width: 100%;
  min-height: 29px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: rgba(244,240,230,.8);
  background: transparent;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.select-option:hover,
.select-option.is-active {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(236,29,46,.2), rgba(255,122,69,.12)),
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.065)),
    rgba(244,240,230,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 22px rgba(236,29,46,.16);
  transform: translateX(1px);
}

.select-option.is-disabled {
  color: rgba(244,240,230,.36);
  background: transparent;
  pointer-events: none;
}

.weight-field .select-shell {
  min-width: 78px;
  padding-left: 12px;
  border-left: 1px solid rgba(244,240,230,.1);
}

.weight-field .select-menu {
  left: 0;
  right: 0;
}

.weight-field .select-trigger {
  min-height: 40px;
  padding-right: 28px;
}

.dispatch-form > .wide,
.dispatch-form > button {
  grid-column: 1 / -1;
}

.dispatch-form > button {
  min-height: 76px;
  border: 0;
  border-radius: 24px;
  color: var(--paper);
  background: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  color: var(--muted);
  background: var(--coal);
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 18px 52px rgba(236,29,46,.32);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(44px) scale(.985);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.16,1,.3,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes loaderMove {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(240%); }
}

@keyframes ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes corridorDash {
  to { stroke-dashoffset: -.14; }
}

@keyframes truckFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes industrialGrid {
  to { transform: translate3d(-112px, 64px, 0); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .dispatch-panel {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 5;
    margin: -108px 22px 116px auto;
  }

  .story-grid,
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-road,
  .fleet-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .route-stage {
    position: relative;
    top: auto;
  }

  .sticky-road {
    min-height: auto;
  }

  .route-stage {
    min-height: 640px;
  }

  .india-map-card {
    min-height: 620px;
  }

  .india-map {
    height: 550px;
  }

  .flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-panel {
    flex-basis: min(84vw, 920px);
  }
}

@media (max-width: 760px) {
  .cursor-orbit,
  .grain {
    display: none;
  }

  .scroll-meter {
    width: 5px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 9px 10px;
  }

  .brand span {
    display: block;
    font-size: .72rem;
    line-height: .86;
    letter-spacing: -.01em;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta { display: none; }

  .hero-copy {
    width: calc(100% - 28px);
    min-height: 100svh;
    padding: 128px 0 150px;
  }

  .split-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.4vw, 3.35rem);
    line-height: .84;
    letter-spacing: -.04em;
  }

  .eyebrow {
    max-width: 100%;
    font-size: .72rem;
  }

  .hero-text {
    margin-top: 24px;
    max-width: 350px;
    font-size: .96rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .dispatch-panel {
    width: calc(100% - 28px);
    margin: 0 auto 94px;
  }

  .road-ticker span {
    min-height: 58px;
    padding: 0 20px;
  }

  .story-grid,
  .flip-grid,
  .why-list,
  .image-cinema,
  .dispatch-form {
    grid-template-columns: 1fr;
  }

  .command-strip article {
    width: 240px;
    min-height: 160px;
    padding: 24px;
  }

  .stat-static {
    padding: 0 14px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-static article {
    min-height: 62px;
    padding: 12px 14px;
  }

  .stat-static b {
    font-size: clamp(1.45rem, 9vw, 2.4rem);
  }

  .stat-static span {
    white-space: normal;
  }

  .motion-story,
  .fleet-section,
  .goods-section,
  .why-section,
  .contact-section,
  .sticky-road {
    padding: 82px 14px;
  }

  .why-scroll-section {
    min-height: auto;
    overflow: visible;
  }

  .why-sticky {
    position: relative;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .why-intro {
    margin-bottom: 36px;
  }

  .why-progress {
    display: none;
  }

  .why-window {
    height: auto;
    overflow: visible;
  }

  .why-track {
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    transform: none !important;
  }

  .why-panel {
    flex-basis: auto;
    min-height: 430px;
    border-radius: 24px;
  }

  .why-panel h3 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 38px;
  }

  .section-intro h2,
  .sticky-copy h2,
  .contact-card h2 {
    font-size: clamp(2.45rem, 13.5vw, 3.8rem);
    line-height: .88;
    letter-spacing: -.045em;
  }

  .story-card,
  .story-card img,
  .cinema-frame,
  .cinema-frame img {
    min-height: 480px;
  }

  .route-stage {
    min-height: auto;
    padding: 26px 0 0;
  }

  .india-map-card {
    min-height: 560px;
    padding: 16px;
  }

  .india-map {
    height: 500px;
  }

  .city-tag {
    font-size: 10px;
  }

  .india-map-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: start;
  }

  .india-map-card figcaption strong {
    text-align: left;
  }

  .fleet-hero {
    min-height: 360px;
  }

  .fleet-card {
    grid-template-columns: 40px 1fr;
    min-height: 138px;
    gap: 14px;
    padding: 18px;
  }

  .fleet-card strong {
    font-size: clamp(1.65rem, 10vw, 2.7rem);
  }

  .fleet-card em {
    grid-column: 1 / -1;
  }

  .flip-card,
  .flip-inner {
    min-height: 240px;
  }

  .why-list article {
    min-height: 220px;
  }

  .contact-card {
    min-height: auto;
    padding: 24px;
  }

  .dispatch-form label,
  .dispatch-form label:nth-child(2n) {
    border-right: 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 34px 14px 90px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .split-title {
    font-size: clamp(2.45rem, 12.8vw, 3.05rem);
  }

  .dispatch-panel strong {
    font-size: 1.2rem;
  }

  .india-map-card {
    min-height: 500px;
  }

  .india-map {
    height: 440px;
  }
}

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

  .ticker-lane {
    animation: ticker 42s linear infinite !important;
  }

  .stat-lane {
    animation: ticker 52s linear infinite reverse !important;
  }
}
