:root {
  --ink: #08111f;
  --ink-2: #11243b;
  --ocean: #17466c;
  --steel: #5c6f80;
  --mist: #eef4f7;
  --paper: #fbfcfd;
  --white: #ffffff;
  --teal: #10a79b;
  --teal-dark: #05766f;
  --amber: #f2b84b;
  --coral: #df6b55;
  --line: rgba(8, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.16);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: #07101d;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a,
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
  height: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  color: rgba(8, 17, 31, 0.74);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 20px;
  font-weight: 760;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(16, 167, 155, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 14px 36px rgba(5, 118, 111, 0.26);
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button--small {
  min-height: 42px;
  padding: 12px 16px;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.button--light:hover,
.button--light:focus-visible {
  background: #eff8f7;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 68svh, 690px);
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.02);
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.96) 0%, rgba(8, 17, 31, 0.76) 38%, rgba(8, 17, 31, 0.24) 74%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.46));
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: 54px;
  padding: 56px 0 48px;
}

.hero__copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-weight: 850;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.85rem, 6.1vw, 5.1rem);
}

.hero__lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-status {
  width: min(100%, 380px);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 16, 29, 0.58);
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.hero-status__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-status__head strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dffbf7;
  font-size: 0.82rem;
}

.hero-status__head strong::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  box-shadow: 0 0 0 6px rgba(16, 167, 155, 0.16);
}

.route-line {
  display: grid;
  grid-template-columns: 16px 1fr 16px;
  align-items: center;
  gap: 8px;
  margin: 26px 0;
}

.route-line span {
  display: block;
  height: 16px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  background: rgba(16, 167, 155, 0.24);
}

.route-line span:nth-child(2) {
  height: 2px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

.hero-status ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-status li,
.contact-list a {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.hero-status svg,
.contact-list svg,
.service-card svg,
.values-grid svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal);
}

.hero-status li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.proof-band {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  min-height: 132px;
  padding: 30px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.section {
  padding: clamp(76px, 9vw, 118px) 0;
}

.section--light {
  background: linear-gradient(180deg, var(--paper), var(--mist));
}

.section-grid,
.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.section-copy,
.contact-copy,
.mission-panel {
  position: sticky;
  top: 116px;
}

.section h2,
.cta-band h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
}

.section p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-card,
.values-grid article,
.timeline article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.06);
}

.service-card {
  min-height: 235px;
  padding: 26px;
}

.service-card--wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.service-card h3,
.values-grid h3,
.timeline h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.service-card p,
.values-grid p,
.timeline p {
  margin: 0;
}

.process {
  background: var(--white);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 26px;
}

.timeline article::after {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(16, 167, 155, 0.26);
  border-radius: 50%;
  content: "";
}

.timeline span {
  color: var(--teal);
  font-weight: 850;
}

.section--split {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.94), rgba(8, 17, 31, 0.88)),
    url("assets/hero-logistics-modern.png") center / cover;
  color: var(--white);
}

.section--split h2,
.section--split p {
  color: var(--white);
}

.section--split .mission-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.values-grid article {
  min-height: 210px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 24px;
  box-shadow: none;
}

.values-grid h3 {
  color: var(--white);
}

.values-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--ocean) 58%, var(--ink));
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band .eyebrow {
  color: #b7fbf3;
}

.contact {
  background: var(--paper);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  color: var(--ink-2);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 17, 31, 0.16);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

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

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--teal-dark);
}

.form-note.is-error {
  color: #a53f32;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 38px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.footer-brand img {
  width: 146px;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 18px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

@media (max-width: 980px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar a:nth-child(3) {
    display: none;
  }

  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-links {
    position: fixed;
    top: 115px;
    right: 20px;
    left: 20px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-status {
    justify-self: start;
  }

  .proof-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .contact-copy,
  .mission-panel {
    position: static;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 68px;
    gap: 16px;
  }

  .brand img {
    width: 142px;
  }

  .nav-links {
    top: 78px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: min(620px, calc(100svh - 86px));
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(8, 17, 31, 0.95) 0%, rgba(8, 17, 31, 0.82) 62%, rgba(8, 17, 31, 0.48) 100%),
      linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.2));
  }

  .hero__content {
    padding: 44px 0 38px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.2vw, 2.55rem);
    line-height: 1.08;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  .hero__copy,
  .hero__lead,
  .hero__actions {
    max-width: min(100%, 362px);
  }

  .hero-status {
    display: none;
  }

  .hero__actions,
  .cta-band__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-grid,
  .service-grid,
  .timeline,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: 108px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .timeline article,
  .values-grid article {
    min-height: auto;
  }

  .cta-band__inner {
    min-height: 270px;
    justify-content: center;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}
