:root {
  --teal: #05a7ba;
  --teal-dark: #047486;
  --green: #12b46b;
  --ink: #0b1720;
  --graphite: #22313a;
  --paper: #f6fbfb;
  --white: #ffffff;
  --amber: #f1a51b;
  --line: rgba(5, 167, 186, 0.22);
  --shadow: 0 24px 70px rgba(11, 23, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(5, 167, 186, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 167, 186, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
  transition: opacity 700ms ease, visibility 700ms ease;
  animation: preloaderExit 700ms ease 1800ms forwards;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.loader-mark {
  width: 130px;
  height: 58px;
  position: relative;
  overflow: hidden;
}

.loader-mark span {
  position: absolute;
  left: -70px;
  width: 78px;
  height: 10px;
  border-radius: 20px;
  background: var(--teal);
  animation: loaderDash 950ms cubic-bezier(.7, 0, .3, 1) infinite;
}

.loader-mark span:nth-child(1) { top: 4px; }
.loader-mark span:nth-child(2) { top: 24px; animation-delay: 120ms; background: var(--white); }
.loader-mark span:nth-child(3) { top: 44px; animation-delay: 240ms; background: var(--green); }

.preloader p {
  margin: 0;
  letter-spacing: 0;
  font-size: 13px;
  text-transform: uppercase;
}

#motion-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px clamp(18px, 5vw, 68px);
  transition: padding 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(246, 251, 251, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(11, 23, 32, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(230px, 24vw, 330px);
  flex: 0 1 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.site-header.is-scrolled .nav-links {
  color: var(--graphite);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  padding: 170px clamp(18px, 6vw, 88px) 170px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 19, .46), rgba(8, 14, 19, .5) 44%, rgba(8, 14, 19, .82)),
    linear-gradient(90deg, rgba(5, 167, 186, .26), transparent 42%, rgba(0, 0, 0, .08));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08) brightness(.9);
  transform: scale(1.06);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(5, 167, 186, .22), transparent);
  filter: blur(8px);
  animation: scan 5.5s ease-in-out infinite;
}

.hero-content {
  max-width: 930px;
  text-align: center;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 20px;
  color: var(--white);
  background: rgba(5, 167, 186, .84);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(5, 167, 186, .24);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: .95;
  max-width: 820px;
}

.hero h1 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--white);
  text-shadow: 0 18px 52px rgba(0, 0, 0, .38);
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.hero-text,
.section-heading p,
.contact p {
  color: #46545c;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-text {
  max-width: 690px;
  margin-inline: auto;
}

.hero .hero-text {
  color: rgba(255, 255, 255, .84);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(5, 167, 186, .28);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(12px);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  max-width: 1180px;
  gap: 12px;
  margin: 105px auto 0;
  padding: 0 clamp(18px, 6vw, 88px);
  position: relative;
  z-index: 5;
}

.metric-band div {
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(5, 167, 186, .16);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(11, 23, 32, .1);
}

.metric-band strong {
  display: block;
  color: var(--teal);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.metric-band span {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
}

.route-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 6vw, 88px);
  bottom: 100px;
  width: min(24vw, 300px);
  min-width: 280px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  background: rgba(11, 23, 32, .78);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.route-head,
.route-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.route-head b {
  color: var(--amber);
}

.route-map {
  position: relative;
  height: 150px;
  margin: 18px 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 8px;
  overflow: hidden;
}

.node,
.route-line,
.truck-dot {
  position: absolute;
  display: block;
}

.node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(5, 167, 186, .18);
}

.n1 { left: 12%; top: 70%; }
.n2 { left: 35%; top: 42%; }
.n3 { left: 63%; top: 56%; }
.n4 { left: 84%; top: 24%; }

.route-line {
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform-origin: left;
  animation: routePulse 2.8s ease-in-out infinite;
}

.l1 { left: 15%; top: 66%; width: 110px; transform: rotate(-31deg); }
.l2 { left: 38%; top: 45%; width: 100px; transform: rotate(18deg); animation-delay: 250ms; }
.l3 { left: 66%; top: 52%; width: 108px; transform: rotate(-43deg); animation-delay: 500ms; }

.truck-dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--amber);
  box-shadow: 0 0 22px rgba(241, 165, 27, .65);
  animation: driveRoute 5.4s cubic-bezier(.66, 0, .34, 1) infinite;
}

.hero-service-strip {
  position: absolute;
  left: 50%;
  bottom: -70px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
}

.hero-service-strip.reveal {
  transform: translateX(-50%) translateY(28px);
}

.hero-service-strip.reveal.is-visible {
  transform: translateX(-50%) translateY(0);
}

.hero-service-strip article {
  min-height: 150px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 23, 32, .18);
  border-top: 4px solid var(--teal);
}

.hero-service-strip b {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
}

.hero-service-strip h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-service-strip p {
  margin: 0;
  color: #516069;
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 120px clamp(18px, 6vw, 88px) 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .64fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.compact {
  display: block;
  max-width: 850px;
}

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

.service-card {
  min-height: 292px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(5, 167, 186, .18);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 50px rgba(11, 23, 32, .08);
  transform-style: preserve-3d;
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p,
.timeline-item span {
  color: #516069;
  line-height: 1.58;
}

.operation {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, .86fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.operation .section-kicker {
  color: #50d1dc;
}

.ops-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.warehouse {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 1.06;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(5, 167, 186, .32), transparent 30%),
    linear-gradient(150deg, #16313a, #0e1f27 60%, #061016);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  box-shadow: inset 0 0 90px rgba(5, 167, 186, .2), 0 36px 80px rgba(0, 0, 0, .28);
}

.warehouse::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 38%;
  border: 2px solid rgba(255,255,255,.18);
  transform: perspective(380px) rotateX(64deg);
}

.rack {
  position: absolute;
  width: 20%;
  height: 46%;
  top: 16%;
  border: 2px solid rgba(80, 209, 220, .55);
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.12) 8px, transparent 8px, transparent 35px);
}

.r1 { left: 10%; }
.r2 { left: 40%; }
.r3 { right: 10%; }

.package {
  position: absolute;
  width: 54px;
  height: 42px;
  border-radius: 4px;
  background: #d7a056;
  box-shadow: inset 0 -10px rgba(0,0,0,.14);
  animation: packageFloat 3.8s ease-in-out infinite;
}

.p1 { left: 16%; bottom: 18%; }
.p2 { left: 47%; bottom: 24%; animation-delay: 300ms; }
.p3 { right: 18%; bottom: 16%; animation-delay: 650ms; }

.forklift {
  position: absolute;
  left: 12%;
  bottom: 11%;
  width: 92px;
  height: 42px;
  border-radius: 10px 20px 8px 8px;
  background: var(--amber);
  animation: forkliftMove 6.2s ease-in-out infinite;
}

.forklift::before,
.forklift::after {
  content: "";
  position: absolute;
}

.forklift::before {
  right: -28px;
  bottom: 4px;
  width: 36px;
  height: 4px;
  background: var(--white);
}

.forklift::after {
  left: 8px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 52px 0 0 var(--ink);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.timeline-item b {
  color: var(--amber);
}

.partners {
  overflow: hidden;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.partner-logos article {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(5, 167, 186, .18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11, 23, 32, .08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-logos article:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 167, 186, .42);
  box-shadow: 0 26px 70px rgba(11, 23, 32, .13);
}

.partner-logos img {
  display: block;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 23, 32, .13);
  border-radius: 8px;
  padding: 14px 15px;
  outline: 0;
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(5, 167, 186, .12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: var(--white);
  background: var(--ink);
}

.site-footer span {
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 6px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderDash {
  to { left: 130px; }
}

@keyframes preloaderExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.06) translateX(0); }
  to { transform: scale(1.11) translateX(18px); }
}

@keyframes scan {
  0%, 100% { transform: translateX(-40vw); opacity: .15; }
  50% { transform: translateX(32vw); opacity: .9; }
}

@keyframes routePulse {
  0%, 100% { filter: brightness(1); opacity: .58; }
  50% { filter: brightness(1.8); opacity: 1; }
}

@keyframes driveRoute {
  0% { left: 11%; top: 68%; transform: rotate(-22deg); }
  34% { left: 34%; top: 39%; transform: rotate(-22deg); }
  66% { left: 62%; top: 53%; transform: rotate(20deg); }
  100% { left: 83%; top: 21%; transform: rotate(-35deg); }
}

@keyframes forkliftMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(235%); }
}

@keyframes packageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

  .section-heading,
  .operation,
  .contact {
    grid-template-columns: 1fr;
  }

  .route-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin-top: 10px;
  }

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

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

  .hero-service-strip {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
    margin-top: 18px;
  }

  .hero-service-strip.reveal,
  .hero-service-strip.reveal.is-visible {
    transform: none;
  }
}

@media (max-width: 680px) {
  body {
    background-size: 38px 38px;
  }

  .site-header {
    padding-inline: 14px;
    gap: 10px;
  }

  .brand {
    width: min(58vw, 220px);
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 62px;
    gap: 24px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(8, 14, 19, .76), rgba(8, 14, 19, .68) 46%, rgba(8, 14, 19, .92)),
      linear-gradient(90deg, rgba(5, 167, 186, .18), transparent);
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: .96;
    max-width: 13ch;
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-text,
  .section-heading p,
  .contact p {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 220px;
    margin-inline: auto;
    margin-top: 28px;
  }

  .btn {
    min-height: 54px;
    padding-inline: 18px;
  }

  .metric-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logos article {
    min-height: 124px;
  }

  .metric-band {
    margin-top: 0;
    padding-top: 18px;
    gap: 10px;
  }

  .metric-band div {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    padding: 16px 18px;
  }

  .metric-band span {
    margin-top: 0;
  }

  .route-panel {
    width: 100%;
    padding: 18px;
  }

  .route-map {
    height: 188px;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-service-strip article {
    min-height: 126px;
    padding: 18px;
  }

  .section {
    padding-block: 72px;
  }

  .service-card {
    min-height: 230px;
  }

  .service-card .icon {
    margin-bottom: 34px;
  }

  .ops-visual {
    min-height: 360px;
  }

  .timeline-item {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand {
    width: min(58vw, 210px);
  }

  .header-cta {
    padding-inline: 10px;
  }

  .hero {
    padding-inline: 22px;
  }

  .section {
    padding-inline: 22px;
  }
}

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