:root {
  --navy-deep: #03082d;
  --blue: #0587e8;
  --cyan: #48c8ff;
  --white: #ffffff;
  --muted: #b8c8ef;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--navy-deep);
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow-x: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 77% 13%, rgba(31, 143, 255, 0.27), transparent 31%),
    radial-gradient(circle at 7% 59%, rgba(0, 110, 235, 0.20), transparent 34%),
    linear-gradient(135deg, #03072c 0%, #07145a 42%, #071b73 70%, #042d71 100%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.27;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.ambient-one {
  width: 520px;
  height: 520px;
  top: -340px;
  right: -120px;
  border: 1px solid rgba(72, 200, 255, 0.29);
  box-shadow:
    inset 0 0 80px rgba(72, 200, 255, 0.12),
    0 0 120px rgba(0, 128, 255, 0.18);
}

.ambient-two {
  width: 390px;
  height: 390px;
  left: -230px;
  top: 28%;
  background: rgba(0, 132, 255, 0.15);
  filter: blur(62px);
}

.hero {
  width: min(1280px, calc(100% - 64px));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(24px, 4.2vh, 48px) 0 clamp(22px, 3.8vh, 42px);
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 6.5vw, 104px);
}

.hero-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  position: relative;
  width: clamp(360px, 34vw, 480px);
  max-width: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(91, 195, 255, 0.46);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 26px 74px rgba(0, 7, 50, 0.46),
    0 0 0 8px rgba(46, 155, 255, 0.07),
    0 0 62px rgba(23, 142, 255, 0.18);
  text-decoration: none;
  line-height: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 42%);
}

.brand-logo:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 32px 84px rgba(0, 7, 50, 0.55),
    0 0 0 9px rgba(46, 155, 255, 0.09),
    0 0 72px rgba(23, 142, 255, 0.26);
}

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

.hero-copy {
  width: min(100%, 680px);
  justify-self: end;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3.15rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #8ddfff 60%, #46a9ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.intro {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.value-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  color: #e8f0ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-line i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #10a4ff, #0872e5);
  box-shadow: 0 14px 34px rgba(0, 128, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(0, 128, 255, 0.40);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  color: #e6efff;
}

.button-secondary:hover {
  border-color: rgba(72, 200, 255, 0.65);
}

.progress-block {
  max-width: 580px;
  margin-top: 28px;
}

.progress-copy {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #aebfe7;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.progress-track {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #0c7df5);
  animation: loading 3.4s ease-in-out infinite alternate;
  box-shadow: 0 0 18px rgba(72, 200, 255, 0.75);
}

@keyframes loading {
  from {
    width: 24%;
    transform: translateX(0);
  }

  to {
    width: 70%;
    transform: translateX(30%);
  }
}

.transport-footer {
  position: relative;
  min-height: 92px;
  border-top: 4px solid #0787e7;
  overflow: hidden;
  background: #04154f;
}

.transport-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 55, 0.98) 0%, rgba(3, 12, 55, 0.82) 38%, rgba(3, 12, 55, 0.22) 100%),
    url("assets/logistics-banner.jpg") center 58% / cover no-repeat;
  transform: scale(1.025);
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 64px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.footer-content p {
  margin: 0;
}

@media (min-width: 981px) {
  .page-shell {
    height: 100svh;
    overflow: hidden;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    padding-top: 18px;
    padding-bottom: 18px;
    gap: clamp(42px, 5.5vw, 82px);
  }

  .brand-logo {
    width: clamp(330px, 31vw, 410px);
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(3rem, 4.65vw, 4.25rem);
  }

  .intro {
    margin-top: 14px;
    line-height: 1.52;
  }

  .value-line {
    margin-top: 14px;
  }

  .cta-row {
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
  }

  .progress-block {
    margin-top: 19px;
  }

  .transport-footer,
  .footer-content {
    min-height: 88px;
  }

  .footer-content {
    padding-bottom: 14px;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(300px, 0.85fr) minmax(470px, 1.15fr);
    gap: 44px;
  }

  .brand-logo {
    width: clamp(315px, 33vw, 390px);
  }

  h1 {
    font-size: clamp(3rem, 5.2vw, 4.35rem);
  }
}

@media (max-width: 900px) {
  .hero {
    width: min(100% - 36px, 760px);
    padding: 34px 0 52px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-brand {
    justify-content: center;
  }

  .brand-logo {
    width: min(76vw, 390px);
  }

  .hero-copy {
    width: min(100%, 680px);
    justify-self: center;
  }

  .footer-content {
    width: min(100% - 36px, 760px);
  }
}

@media (max-width: 640px) {
  .hero {
    width: min(100% - 28px, 760px);
    padding: 24px 0 48px;
    gap: 28px;
  }

  .brand-logo {
    width: min(82vw, 330px);
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 4rem);
  }

  .intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .value-line {
    gap: 9px;
    font-size: 0.68rem;
    letter-spacing: 0.10em;
  }

  .cta-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .transport-footer,
  .footer-content {
    min-height: 126px;
  }

  .footer-content {
    width: min(100% - 28px, 760px);
    padding-bottom: 18px;
  }
}

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