:root {
  --ink: #0c1f1c;
  --ink-2: #173a35;
  --deep: #062b29;
  --petrol: #0b6b61;
  --mint: #d9ff71;
  --signal: #ffb84d;
  --paper: #f4f2e7;
  --paper-2: #e7f2e8;
  --line: rgba(12, 31, 28, 0.15);
  --line-light: rgba(255, 255, 255, 0.18);
  --white: #fffdf3;
  --muted: #64736e;
  --shadow: 0 28px 90px rgba(6, 43, 41, 0.16);
  --max: 1180px;
  --side: clamp(20px, 5vw, 74px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(12, 31, 28, 0.055) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(12, 31, 28, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #edf5ea 0%, #fbf4dc 52%, #e8f2ec 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 43, 41, 0.09), transparent 18%, transparent 82%, rgba(6, 43, 41, 0.09)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent 45%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  background: rgba(6, 43, 41, 0.12);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--signal), #56c7b3);
}

.identity-rail {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-rows: 1fr auto;
  width: 56px;
  height: 100svh;
  padding: 28px 0;
  color: var(--white);
  background: var(--deep);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0;
}

.identity-rail span,
.identity-rail strong {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: center;
  text-transform: uppercase;
}

.identity-rail span {
  font-size: 0.73rem;
  font-weight: 800;
}

.identity-rail strong {
  padding-top: 26px;
  color: var(--mint);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

main {
  position: relative;
}

.hero-shell {
  position: relative;
  min-height: 100svh;
  margin-left: 56px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transform: translateY(calc(var(--scene-shift, 0) * -28px)) scale(1.02);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 30, 28, 0.9) 0%, rgba(6, 30, 28, 0.72) 34%, rgba(6, 30, 28, 0.28) 69%, rgba(6, 30, 28, 0.76) 100%),
    linear-gradient(180deg, rgba(6, 30, 28, 0.14), rgba(6, 30, 28, 0.92));
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 12vw 100%,
    linear-gradient(180deg, transparent 0 93%, rgba(217, 255, 113, 0.12) 93% 94%, transparent 94%);
  mix-blend-mode: screen;
}

.route-drawing {
  position: absolute;
  right: -8vw;
  top: 5svh;
  width: min(76vw, 980px);
  height: auto;
  z-index: 0;
  opacity: 0.62;
  pointer-events: none;
}

.route-drawing path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-drawing path:nth-child(2) {
  stroke: #7bd6c9;
  opacity: 0.72;
}

.route-drawing path:nth-child(3) {
  stroke: var(--signal);
  opacity: 0.72;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  align-items: end;
  gap: clamp(32px, 5vw, 76px);
  min-height: calc(100svh - 74px);
  width: min(var(--max), calc(100% - (var(--side) * 2)));
  margin: 0 auto;
  padding: clamp(120px, 15vh, 170px) 0 110px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.hero-copy .kicker,
.roadways-section .kicker,
.petrochem-section .kicker,
.contact-section .kicker {
  color: var(--mint);
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
}

.lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 253, 243, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}

.lead.dark {
  color: rgba(255, 253, 243, 0.76);
}

.hero-ledger {
  align-self: end;
  display: grid;
  align-content: stretch;
  gap: 0;
  min-height: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(6, 43, 41, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hero-ledger div {
  padding: 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-ledger span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 253, 243, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-ledger strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-shell [data-animate],
body.motion-ready .hero-shell [data-animate] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy h1 span {
    animation: heroLineIn 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy h1 span:nth-child(2) {
    animation-delay: 80ms;
  }

  .hero-copy h1 span:nth-child(3) {
    animation-delay: 160ms;
  }

  .hero-copy h1 span:nth-child(4) {
    animation-delay: 240ms;
  }

  .hero-copy h1 span:nth-child(5) {
    animation-delay: 320ms;
  }

  .hero-ledger > div {
    animation: heroPanelIn 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-ledger > div:nth-child(2) {
    animation-delay: 120ms;
  }

  .hero-ledger > div:nth-child(3) {
    animation-delay: 240ms;
  }
}

@keyframes heroLineIn {
  from {
    opacity: 1;
    transform: translateY(0.72em) rotateX(-22deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 1;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy h1 span,
.hero-ledger > div {
  animation: none !important;
}

.ticker-strip {
  position: absolute;
  left: 56px;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 0;
  overflow: hidden;
  color: var(--deep);
  background: var(--mint);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  scrollbar-width: none;
}

.ticker-strip::-webkit-scrollbar {
  display: none;
}

.ticker-strip span {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 18px clamp(22px, 4vw, 46px);
  border-right: 1px solid rgba(6, 43, 41, 0.28);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-dock {
  position: sticky;
  top: 14px;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 60;
  display: flex;
  gap: 6px;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 7px;
  overflow-x: auto;
  color: var(--ink);
  background: rgba(255, 253, 243, 0.78);
  border: 1px solid rgba(12, 31, 28, 0.14);
  border-radius: 8px;
  transform: none;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(6, 43, 41, 0.12);
}

.section-dock a {
  flex: 1 0 auto;
  padding: 11px 14px;
  border-radius: 6px;
  color: rgba(12, 31, 28, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.section-dock a:hover,
.section-dock a.is-active {
  color: var(--ink);
  background: var(--mint);
}

.section-dock a:hover {
  transform: translateY(-1px);
}

.section {
  position: relative;
  margin-left: 56px;
  padding: clamp(86px, 10vw, 138px) var(--side);
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-index {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(42px, 5vw, 76px);
  color: var(--ink);
}

.section-index::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.section-index span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--mint);
  background: var(--deep);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-index strong {
  order: 3;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-index.light,
.section-index.dark {
  color: var(--white);
}

.section-index.light::after,
.section-index.dark::after {
  background: var(--line-light);
}

.section-index.light span,
.section-index.dark span {
  color: var(--deep);
  background: var(--mint);
}

.section-index.light strong,
.section-index.dark strong {
  color: rgba(255, 253, 243, 0.65);
}

.wide-grid,
.split-layout,
.repos-layout,
.petro-layout,
.clients-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.section-title,
.wide-grid > div:first-child,
.split-layout > div:first-child,
.repos-layout > div:first-child,
.clients-grid > div:first-child,
.contact-grid > div:first-child {
  position: sticky;
  top: 118px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  max-width: 74ch;
}

.content-stack {
  display: grid;
  gap: 18px;
  color: #31433e;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}

.content-stack p {
  margin: 0;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(52px, 6vw, 86px);
}

.strategy-grid article {
  min-height: 270px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background: linear-gradient(145deg, var(--deep), #13584f);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.strategy-grid article:nth-child(2) {
  color: var(--ink);
  background: linear-gradient(145deg, var(--mint), #f6e88a);
}

.strategy-grid span {
  display: block;
  margin-bottom: 30px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.strategy-grid p {
  margin: 0;
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  line-height: 1.42;
}

.values-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.values-track div {
  min-height: 190px;
  padding: 22px 18px;
  background: rgba(255, 253, 243, 0.68);
  transition: transform 220ms ease, background 220ms ease;
}

.values-track div:hover {
  transform: translateY(-6px);
  background: var(--white);
}

.values-track strong {
  display: block;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.values-track span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.division-board {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr;
  gap: 16px;
  margin-top: 20px;
}

.division-board article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 43, 41, 0.08);
}

.division-board article:nth-child(2) {
  transform: translateY(34px);
  color: var(--white);
  background: var(--deep);
}

.division-board article:nth-child(2) h3,
.division-board article:nth-child(2) p {
  color: var(--white);
}

.division-board small {
  display: block;
  margin-bottom: 22px;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.division-board article:nth-child(2) small {
  color: var(--mint);
}

.division-board p {
  margin: 18px 0 0;
  color: #42534f;
}

.roadways-section,
.petrochem-section,
.contact-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(217, 255, 113, 0.08) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #062b29, #0b3a35);
}

.roadways-section h2,
.roadways-section h3,
.petrochem-section h2,
.petrochem-section h3,
.contact-section h2 {
  color: var(--white);
}

.roadways-section p,
.petrochem-section p,
.contact-section p {
  color: rgba(255, 253, 243, 0.76);
}

.fleet-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.fleet-ledger div {
  min-height: 176px;
  padding: clamp(22px, 4vw, 36px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.fleet-ledger span {
  display: block;
  color: var(--mint);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.fleet-ledger small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 253, 243, 0.7);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.roadway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 78px);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.roadway-grid article {
  min-height: 290px;
  padding: 28px 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms ease, transform 220ms ease;
}

.roadway-grid article:hover {
  transform: translateY(-8px);
  background: rgba(217, 255, 113, 0.08);
}

.roadway-grid p {
  margin: 18px 0 0;
}

.roadways-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: clamp(48px, 6vw, 78px);
}

.media-panel {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #123b36;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.media-panel.video-panel {
  grid-row: span 2;
}

.media-panel img,
.media-panel video,
.petro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.media-panel:hover img,
.media-panel:hover video,
.petro-image:hover img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.04);
}

.media-panel figcaption,
.repos-media figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(6, 43, 41, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.fuel-retail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  margin-top: clamp(58px, 7vw, 92px);
}

.fuel-retail h3 {
  font-size: clamp(1.65rem, 3vw, 3.2rem);
}

.retail-table {
  border-top: 1px solid var(--line-light);
}

.retail-table div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.retail-table strong {
  color: var(--white);
  line-height: 1.35;
}

.retail-table span {
  color: rgba(255, 253, 243, 0.72);
}

.volume-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.volume-panel div {
  padding: 24px 20px;
  border-right: 1px solid var(--line-light);
}

.volume-panel span {
  display: block;
  color: rgba(255, 253, 243, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.volume-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--mint);
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.network-note {
  margin-top: 18px;
  padding: 28px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
}

.network-note p {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  font-weight: 750;
}

.repos-section {
  background:
    linear-gradient(135deg, rgba(11, 107, 97, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(12, 31, 28, 0.06) 1px, transparent 1px) 0 0 / 78px 78px,
    var(--paper);
}

.repos-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.repos-feature-grid article {
  min-height: 160px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.repos-feature-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.repos-feature-grid strong {
  display: block;
  font-size: 1rem;
  line-height: 1.42;
}

.repos-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.repos-fit span {
  padding: 10px 12px;
  color: var(--deep);
  background: #dff5e8;
  border: 1px solid rgba(11, 107, 97, 0.2);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.repos-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.repos-media figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.repos-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.petro-layout {
  align-items: center;
}

.petro-image {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.petro-products {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 76px);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.petro-products article {
  min-height: 230px;
  padding: 22px 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.petro-products span {
  display: block;
  color: var(--mint);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.petro-products p {
  margin: 18px 0 0;
  font-size: 0.88rem;
}

.custom-panel {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
}

.custom-panel h3 {
  color: var(--ink);
}

.custom-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-panel span {
  padding: 11px 13px;
  background: rgba(6, 43, 41, 0.1);
  border: 1px solid rgba(6, 43, 41, 0.22);
  border-radius: 6px;
  font-weight: 900;
}

.clients-section {
  background: linear-gradient(180deg, #f8f6ea, #e7f2e8);
}

.name-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.name-wall span {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(6, 43, 41, 0.06);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

blockquote {
  margin: 0;
  padding: 28px;
  background: var(--deep);
  border-radius: 8px;
  color: var(--white);
}

blockquote p {
  margin: 0;
  color: rgba(255, 253, 243, 0.82);
}

blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--mint);
  font-style: normal;
  font-weight: 900;
}

.dr-clients {
  margin-top: 16px;
}

.contact-grid address {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.contact-grid address a,
.contact-grid address span {
  display: block;
  min-width: 0;
  padding: 14px 0;
  color: rgba(255, 253, 243, 0.78);
  border-bottom: 1px solid var(--line-light);
  overflow-wrap: anywhere;
}

.contact-grid address a {
  color: var(--mint);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  text-decoration: none;
}

body.motion-ready [data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .values-track,
  .roadway-grid,
  .petro-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .petro-products article {
    min-height: 190px;
  }
}

@media (max-width: 920px) {
  .identity-rail {
    display: none;
  }

  .hero-shell,
  .section {
    margin-left: 0;
  }

  .ticker-strip {
    left: 0;
  }

  .hero-grid,
  .wide-grid,
  .split-layout,
  .repos-layout,
  .petro-layout,
  .clients-grid,
  .contact-grid,
  .fuel-retail,
  .custom-panel {
    grid-template-columns: 1fr;
  }

  .section-title,
  .wide-grid > div:first-child,
  .split-layout > div:first-child,
  .repos-layout > div:first-child,
  .clients-grid > div:first-child,
  .contact-grid > div:first-child {
    position: static;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .hero-ledger {
    min-height: auto;
  }

  .roadways-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .media-panel,
  .media-panel.video-panel,
  .petro-image,
  .repos-media figure {
    min-height: clamp(260px, 64vw, 520px);
  }

  .media-panel.video-panel {
    grid-row: auto;
  }

  .division-board,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .division-board article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --side: 18px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-dock {
    top: 8px;
    width: calc(100% - 20px);
    justify-content: flex-start;
  }

  .section-dock a {
    flex: 0 0 auto;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12.8vw, 3.45rem);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-grid {
    width: calc(100% - 36px);
    gap: 26px;
  }

  .lead {
    font-size: 1rem;
  }

  .route-drawing {
    width: 155vw;
    right: -54vw;
    top: 18svh;
  }

  .ticker-strip {
    overflow-x: auto;
  }

  .ticker-strip span {
    flex: 0 0 auto;
    padding: 14px 22px;
  }

  .section-index {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .strategy-grid,
  .values-track,
  .roadway-grid,
  .fleet-ledger,
  .repos-feature-grid,
  .repos-media,
  .volume-panel,
  .petro-products {
    grid-template-columns: 1fr;
  }

  .retail-table div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .volume-panel div,
  .fleet-ledger div {
    border-right: 0;
  }
}

/* Final content-first layout pass. */
.hero-shell {
  min-height: 82svh;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: calc(82svh - 58px);
  padding: clamp(96px, 12svh, 136px) 0 76px;
}

.hero-copy {
  max-width: 800px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.3rem, 5.6vw, 5.7rem);
}

.route-drawing {
  top: -4svh;
  right: -7vw;
  width: min(58vw, 780px);
  opacity: 0.84;
}

.roadways-media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-panel,
.repos-media figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
}

.media-panel img,
.repos-media img {
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.media-panel figcaption,
.repos-media figcaption {
  position: static;
  grid-row: 2;
  min-height: 0;
  padding: 13px 15px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: var(--white);
  background: rgba(6, 43, 41, 0.96);
  backdrop-filter: none;
  font-size: 0.85rem;
  line-height: 1.42;
}

.repos-media figure {
  aspect-ratio: 4 / 3;
}

.repos-media figcaption {
  color: var(--ink);
  background: rgba(255, 253, 243, 0.96);
  border-top-color: var(--line);
}

.testimonial-grid cite {
  display: block;
  margin-top: 14px;
  color: #07584f;
}

.contact-section {
  padding-top: clamp(56px, 5vw, 78px);
  padding-bottom: clamp(60px, 5vw, 82px);
}

.contact-section .section-index {
  margin-bottom: 24px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.contact-grid > div:first-child {
  position: static;
}

.contact-grid h2 {
  max-width: 430px;
  font-size: clamp(1.8rem, 2.55vw, 2.7rem);
}

@media (max-width: 720px) {
  .hero-shell {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 104px 0 86px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .route-drawing {
    top: -1svh;
    right: -28vw;
    width: 132vw;
    opacity: 0.72;
  }

  .roadways-media {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid h2 {
    max-width: 100%;
  }
}

/* Client review polish pass: tighter rhythm, stable media, cleaner reference sections. */
:root {
  --india-saffron: #ff9933;
  --india-green: #138808;
}

.hero-shell {
  min-height: 86svh;
}

.hero-grid {
  min-height: calc(86svh - 64px);
  align-items: center;
  padding: clamp(74px, 10vh, 112px) 0 92px;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 6.6vw, 6.25rem);
  line-height: 0.95;
}

.hero-copy .lead {
  max-width: 590px;
  margin-top: 18px;
}

.hero-ledger {
  align-self: center;
  max-width: 390px;
  justify-self: end;
}

.route-drawing {
  top: 3svh;
  right: -4vw;
  width: min(64vw, 840px);
  opacity: 0.76;
}

.route-drawing path:nth-child(1) {
  stroke: var(--india-saffron);
}

.route-drawing path:nth-child(2) {
  stroke: var(--india-green);
  opacity: 0.88;
}

.route-drawing path:nth-child(3) {
  stroke: rgba(255, 255, 255, 0.92);
  opacity: 0.82;
}

.section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.section-index {
  margin-bottom: clamp(24px, 3.6vw, 44px);
}

.wide-grid,
.split-layout,
.repos-layout,
.petro-layout,
.clients-grid,
.contact-grid,
.fuel-retail {
  gap: clamp(28px, 4.5vw, 58px);
}

.section-title,
.wide-grid > div:first-child,
.split-layout > div:first-child,
.repos-layout > div:first-child,
.clients-grid > div:first-child,
.contact-grid > div:first-child {
  top: 96px;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.25vw, 3.85rem);
  line-height: 1.04;
}

.contact-grid h2,
.fuel-retail h3 {
  max-width: 560px;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.content-stack {
  gap: 14px;
  font-size: 1.02rem;
}

.strategy-grid {
  margin-top: clamp(34px, 4.4vw, 58px);
}

.strategy-grid article {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
}

.values-track div {
  min-height: 158px;
}

.division-board article {
  min-height: 235px;
}

.roadway-grid {
  margin-top: clamp(34px, 4.6vw, 58px);
}

.roadway-grid article {
  min-height: 235px;
}

.roadways-media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 16px;
  margin-top: clamp(34px, 4.6vw, 58px);
}

.media-panel,
.media-panel.video-panel {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.media-panel.video-panel video {
  object-fit: contain;
  background: #061f1d;
}

.fuel-retail {
  margin-top: clamp(42px, 5vw, 68px);
}

.retail-table {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.retail-table div {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  padding: 0;
}

.retail-table strong,
.retail-table span {
  min-width: 0;
  padding: 18px 20px;
  overflow-wrap: anywhere;
}

.retail-table strong {
  border-right: 1px solid var(--line-light);
}

.volume-panel {
  margin-top: 18px;
}

.petro-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: transparent;
}

.petro-image img {
  height: 100%;
}

.custom-panel {
  color: var(--ink);
  background: linear-gradient(135deg, #d9ff71, #f4e88c);
  border: 1px solid rgba(6, 43, 41, 0.22);
}

.custom-panel h3,
.custom-panel span {
  color: var(--ink);
}

.clients-section h2 {
  max-width: 560px;
  font-size: clamp(2rem, 2.85vw, 3.35rem);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.logo-card {
  display: grid;
  align-content: space-between;
  min-height: 122px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 253, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 43, 41, 0.07);
}

.logo-card img {
  width: auto;
  max-width: 130px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.logo-card span {
  display: block;
  margin-top: 16px;
  color: #41514d;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-card.text-logo strong {
  display: block;
  color: var(--petrol);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.05;
}

.contact-section {
  background: linear-gradient(180deg, #062b29, #082420);
}

.contact-grid address {
  gap: 0;
  background: rgba(6, 31, 29, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-grid address a,
.contact-grid address span {
  padding: 13px 0;
}

.contact-grid address a {
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
}

@media (max-width: 1180px) {
  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-shell {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-ledger {
    justify-self: stretch;
    max-width: none;
  }

  .roadways-media,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .media-panel,
  .media-panel.video-panel {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(3.1rem, 16vw, 4.35rem);
  }

  h2,
  .contact-grid h2,
  .fuel-retail h3 {
    font-size: clamp(1.85rem, 9.4vw, 2.8rem);
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-ledger {
    width: var(--mobile-content);
    max-width: var(--mobile-content);
  }

  .hero-ledger strong {
    width: auto;
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section-index {
    margin-bottom: 18px;
  }

  .wide-grid,
  .split-layout,
  .repos-layout,
  .petro-layout,
  .clients-grid,
  .contact-grid,
  .fuel-retail,
  .strategy-grid,
  .values-track,
  .division-board,
  .roadway-grid,
  .roadways-media,
  .volume-panel,
  .network-note,
  .petro-products,
  .custom-panel,
  .testimonial-grid,
  .dr-clients,
  .logo-wall {
    width: var(--mobile-content);
    max-width: var(--mobile-content);
    min-height: 0;
    margin-left: var(--gutter);
    margin-right: auto;
    padding: 0;
    gap: 22px;
  }

  .section-title,
  .wide-grid > div:first-child,
  .split-layout > div:first-child,
  .repos-layout > div:first-child,
  .clients-grid > div:first-child,
  .contact-grid > div:first-child {
    position: static !important;
    top: auto !important;
  }
}
