@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow/barlow-latin-300-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow/barlow-latin-400-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow/barlow-latin-600-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow/barlow-latin-700-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: light;
  --font-brand: "Barlow", Arial, Helvetica, sans-serif;
  --blue-950: #071457;
  --blue-900: #0a1a72;
  --blue-700: #0971ce;
  --blue-100: #e6f1fb;
  --green-600: #72b234;
  --green-100: #eef7e8;
  --amber-500: #d99428;
  --ink: #122033;
  --muted: #526171;
  --line: #d8e1ea;
  --mist: #f3f7fa;
  --white: #ffffff;
  --shadow: 0 18px 40px rgb(7 20 87 / 0.13);
  font-family: var(--font-brand);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  background: var(--white);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-brand);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
}

.hero--page h1 {
  font-size: 34px;
  line-height: 1.1;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 16px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 600;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 14px 24px;
  border-bottom: 1px solid rgb(216 225 234 / 0.85);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  max-width: 42vw;
  text-decoration: none;
}

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

.brand--footer {
  width: 172px;
  max-width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  background: var(--white);
}

.site-nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #25364a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  background: var(--green-600);
  color: #061120;
}

.button--primary:hover {
  background: #85c84a;
}

.button--secondary {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--white);
}

.button--secondary:hover {
  background: var(--blue-700);
}

.button--ghost {
  border-color: rgb(255 255 255 / 0.72);
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
}

.button--ghost:hover {
  background: rgb(255 255 255 / 0.2);
}

.button--nav {
  min-height: 40px;
  padding: 11px 14px;
  background: var(--blue-900);
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero--home {
  min-height: min(500px, calc(100svh - 96px));
}

.hero--page {
  min-height: min(420px, calc(100svh - 128px));
}

.hero__media,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  background-image: url("/assets/freight-containers-port.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgb(7 20 87 / 0.92) 0%, rgb(7 20 87 / 0.76) 42%, rgb(7 20 87 / 0.22) 100%),
    linear-gradient(180deg, rgb(7 20 87 / 0.16), rgb(7 20 87 / 0.62));
}

.hero__inner,
.container {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.hero__inner {
  padding-top: 56px;
  padding-bottom: 48px;
}

.hero__content {
  max-width: 760px;
}

.hero__eyebrow,
.section-kicker,
.service-card__tag {
  margin-bottom: 12px;
  color: var(--green-600);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.hero__body {
  max-width: 660px;
  margin-bottom: 24px;
  color: rgb(255 255 255 / 0.9);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 6px;
  background: rgb(7 20 87 / 0.36);
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
  line-height: 1.4;
}

.mode-tile-band {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
  background: var(--white);
}

.mode-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: 0 22px 42px rgb(18 32 51 / 0.14);
  transform: translateY(-28px);
}

.mode-tile {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 190px;
  padding: 22px;
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mode-tile:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgb(7 20 87 / 0.24);
}

.mode-tile img {
  display: block;
  width: 70px;
  height: 70px;
  padding-bottom: 10px;
  border-bottom: 4px solid currentColor;
}

.mode-tile strong {
  display: block;
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.mode-tile small {
  display: block;
  color: rgb(255 255 255 / 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.mode-tile--primary {
  background: var(--blue-900);
}

.mode-tile--info {
  background: var(--blue-700);
}

.mode-tile--success {
  background: var(--green-600);
  color: #061120;
}

.mode-tile--success small {
  color: rgb(6 17 32 / 0.78);
}

.mode-tile--default {
  background: var(--line);
  color: var(--muted);
}

.mode-tile--default small {
  color: #5a6570;
}

.section-band {
  padding: 72px 0;
}

.section-band--white {
  background: var(--white);
}

.section-band--mist {
  background: var(--mist);
}

.section-band--deep {
  background: var(--blue-950);
  color: var(--white);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:last-child,
.split-content p,
.contact-panel p,
.legal-copy p,
.site-footer p {
  color: var(--muted);
}

.intro-grid,
.split-content,
.trust-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.feature-list,
.values-grid,
.process-grid,
.audience-grid,
.service-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.feature-list,
.values-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.service-grid--compact {
  margin-top: 8px;
}

.feature-list article,
.values-grid article,
.process-grid article,
.audience-grid article,
.service-card,
.contact-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgb(18 32 51 / 0.06);
}

.section-band--mist .service-card,
.section-band--mist .process-grid article {
  background: rgb(255 255 255 / 0.86);
}

.feature-list p,
.values-grid p,
.process-grid p,
.audience-grid p,
.service-card p {
  color: var(--muted);
}

.service-card__tag {
  color: var(--blue-700);
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-card__head .service-card__tag {
  margin-bottom: 0;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.service-card__icon img {
  width: 26px;
  height: 26px;
}

.service-card__icon--primary {
  background: var(--blue-900);
}

.service-card__icon--info {
  background: var(--blue-700);
}

.service-card__icon--success {
  background: var(--green-600);
}

.service-card__icon--default {
  background: var(--muted);
}

.text-link {
  color: var(--blue-700);
  font-weight: 600;
}

.text-link:hover {
  color: var(--blue-900);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--green-100);
  color: #315d18;
  font-weight: 700;
}

.trust-strip p {
  color: rgb(255 255 255 / 0.76);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group--full,
.contact-form .button {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #bcc9d6;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.contact-panel {
  align-self: start;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.coming-soon-copy {
  max-width: 660px;
}

.app-preview {
  overflow: hidden;
  border: 1px solid rgb(10 26 114 / 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(10 26 114 / 0.95), rgb(9 113 206 / 0.9)),
    var(--blue-900);
  box-shadow: var(--shadow);
}

.app-preview__bar {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
}

.app-preview__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.72);
}

.app-preview__panel {
  margin: 18px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.app-preview__panel h3 {
  margin-bottom: 18px;
}

.app-preview__row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.app-preview__row strong {
  color: var(--blue-950);
  font-weight: 600;
  text-align: right;
}

.app-preview__progress {
  height: 10px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--blue-100);
}

.app-preview__progress span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--green-600);
}

.faq-list {
  max-width: 880px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  color: var(--blue-950);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.legal-copy {
  max-width: 840px;
}

.legal-copy h2 {
  margin-top: 34px;
}

.legal-alert {
  padding: 16px;
  border: 1px solid #efc577;
  border-radius: 8px;
  background: #fff7e8;
  color: #5b3908;
  font-weight: 600;
}

.site-footer {
  padding: 48px 0;
  background: #071120;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr;
  gap: 36px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgb(255 255 255 / 0.82);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .brand {
  margin-bottom: 16px;
  color: var(--white);
}

@media (min-width: 760px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 56px;
  }

  .hero--page h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

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

@media (max-width: 1040px) {
  .mode-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-list,
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
  }

  .site-nav {
    order: 3;
    flex: 0 0 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 3px;
  }

  .brand {
    width: 156px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .button--nav {
    margin-left: auto;
  }

  .hero__inner,
  .container {
    width: min(100% - 32px, 1120px);
  }

  .hero__inner {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .hero__body {
    font-size: 16px;
  }

  .section-band {
    padding: 54px 0;
  }

  .mode-tile-grid {
    width: 100%;
    grid-template-columns: 1fr;
    transform: none;
    box-shadow: none;
  }

  .mode-tile-band {
    padding: 0;
  }

  .mode-tile {
    min-height: 0;
    padding: 16px;
  }

  .intro-grid,
  .split-content,
  .trust-strip,
  .audience-grid,
  .coming-soon-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 0;
  }

  .site-nav a {
    padding-right: 9px;
    padding-left: 9px;
  }

  .button {
    width: 100%;
  }

  .button--nav {
    width: auto;
  }

  .hero-points {
    display: none;
  }
}
