:root {
  --bg: #0d1419;
  --bg-soft: #162127;
  --ink: #ecdfce;
  --muted: #9bb0b6;
  --line: rgba(236, 223, 206, 0.1);
  --card: rgba(14, 31, 38, 0.72);
  --card-strong: rgba(18, 37, 45, 0.9);
  --accent: #da7b45;
  --accent-deep: #f0a06b;
  --accent-soft: rgba(218, 123, 69, 0.16);
  --teal: #1d8a8a;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  --img-port: url("https://images.pexels.com/photos/22719124/pexels-photo-22719124.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --img-containers: url("https://images.pexels.com/photos/19492667/pexels-photo-19492667.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --img-warehouse: url("https://images.pexels.com/photos/11155557/pexels-photo-11155557.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(218, 123, 69, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(29, 138, 138, 0.14), transparent 18%),
    linear-gradient(180deg, #0b1115 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(236, 223, 206, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 223, 206, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 88%);
}

.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.65;
}

.ambient-a {
  top: 40px;
  right: 60px;
  width: 280px;
  height: 280px;
  background: rgba(218, 123, 69, 0.14);
}

.ambient-b {
  bottom: 60px;
  left: 40px;
  width: 220px;
  height: 220px;
  background: rgba(29, 138, 138, 0.12);
}

.site-shell {
  position: relative;
  width: min(1200px, calc(100vw - 32px));
  margin: 18px auto 40px;
  z-index: 1;
}

.site-header,
.hero,
.band,
.section,
.page-hero {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(10, 23, 30, 0.82);
  position: sticky;
  top: 12px;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(218, 123, 69, 0.98), rgba(29, 138, 138, 0.92));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a,
.nav-cta,
.button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-nav a {
  color: var(--muted);
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(236, 223, 206, 0.08);
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 36px rgba(145, 71, 34, 0.2);
}

.hero,
.page-hero,
.section,
.band {
  margin-top: 18px;
  position: relative;
  overflow: hidden;
}

.hero::after,
.page-hero::after,
.section::after,
.band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 123, 69, 0.12), transparent 68%);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(218, 123, 69, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(13, 25, 31, 0.98), rgba(18, 33, 40, 0.94));
}

.page-hero {
  padding: 34px 30px;
  background:
    radial-gradient(circle at 88% 20%, rgba(29, 138, 138, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(13, 25, 31, 0.96), rgba(18, 33, 40, 0.92));
}

.hero-copy,
.section-head {
  position: relative;
  z-index: 1;
}

.eyebrow,
.mini-label,
.band span,
.process-step span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow,
.mini-label,
.band span,
.process-step span {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 0.93;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 7vw, 6rem);
  margin-top: 14px;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-top: 12px;
}

.hero-text,
.page-hero .hero-text,
.showcase-card p,
.page-card p,
.info-card p,
.service-panel p,
.process-step p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  align-self: center;
}

.hero-copy h1,
.page-hero h1 {
  width: fit-content;
  padding: 10px 16px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(236, 223, 206, 0.06), rgba(236, 223, 206, 0.02));
  border: 1px solid rgba(236, 223, 206, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-text {
  max-width: 46ch;
  font-size: 1rem;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button-secondary {
  color: var(--ink);
  background: rgba(236, 223, 206, 0.06);
  border: 1px solid var(--line);
}

.button:hover,
.nav-cta:hover,
.site-nav a:hover {
  transform: translateY(-1px);
}

.hero-stage,
.showcase-card,
.page-card,
.info-card,
.service-panel,
.flow-scene {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
}

.hero-stage:hover,
.showcase-card:hover,
.page-card:hover,
.info-card:hover,
.service-panel:hover,
.flow-scene:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
  border-color: rgba(218, 123, 69, 0.22);
}

.hero-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.22), rgba(7, 16, 21, 0.42)),
    var(--img-port) center/cover no-repeat,
    radial-gradient(circle at 82% 14%, rgba(218, 123, 69, 0.22), transparent 15%),
    radial-gradient(circle at 14% 82%, rgba(29, 138, 138, 0.14), transparent 16%),
    linear-gradient(160deg, rgba(12, 42, 51, 0.98), rgba(10, 20, 28, 0.98));
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.68), rgba(7, 16, 21, 0.35)),
    linear-gradient(90deg, rgba(7, 16, 21, 0.65), transparent 55%);
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(236, 223, 206, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 223, 206, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, transparent 47%, rgba(236, 223, 206, 0.04) 50%, transparent 53%);
  background-size: 56px 56px, 56px 56px, 140px 140px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 100%);
  z-index: 1;
}

.stage-orb,
.stage-node,
.stage-path,
.floating-card,
.floating-chip,
.cargo-stack,
.route-caption {
  position: absolute;
  z-index: 2;
}

.stage-orb {
  border-radius: 50%;
  filter: blur(4px);
}

.stage-orb-a {
  width: 190px;
  height: 190px;
  top: -30px;
  right: -10px;
  background: rgba(218, 123, 69, 0.36);
}

.stage-orb-b {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -30px;
  background: rgba(236, 223, 206, 0.08);
}

.stage-path {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 223, 206, 0.12), rgba(236, 223, 206, 0.88));
}

.stage-path-a {
  top: 168px;
  left: 88px;
  width: 224px;
  transform: rotate(-16deg);
}

.stage-path-b {
  top: 256px;
  left: 178px;
  width: 170px;
  transform: rotate(12deg);
}

.stage-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f7efe2;
  box-shadow: 0 0 0 8px rgba(247, 239, 226, 0.1);
}

.stage-node-a {
  top: 150px;
  left: 78px;
}

.stage-node-b {
  top: 222px;
  left: 236px;
}

.stage-node-c {
  top: 278px;
  left: 332px;
}

.floating-card {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(236, 223, 206, 0.12), rgba(236, 223, 206, 0.05));
  color: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(236, 223, 206, 0.12);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 0.92rem;
}

.floating-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.5;
}

.floating-card-a {
  top: 26px;
  left: 24px;
}

.floating-card-b {
  right: 22px;
  bottom: 26px;
}

.floating-chip {
  min-width: 48px;
  min-height: 48px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  border: 1px solid rgba(236, 223, 206, 0.12);
  background: rgba(236, 223, 206, 0.08);
}

.cargo-stack {
  display: grid;
  gap: 6px;
}

.cargo-stack span {
  display: block;
  width: 58px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(218, 123, 69, 0.9), rgba(240, 160, 107, 0.9));
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.cargo-stack-a {
  right: 28px;
  top: 24px;
}

.cargo-stack-b {
  left: 34px;
  bottom: 88px;
}

.cargo-stack-b span {
  width: 46px;
  background: linear-gradient(135deg, rgba(29, 138, 138, 0.92), rgba(73, 166, 166, 0.88));
}

.route-caption {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(236, 223, 206, 0.58);
}

.route-caption-a {
  left: 108px;
  top: 116px;
}

.route-caption-b {
  right: 66px;
  bottom: 94px;
}

.chip-a {
  left: 26px;
  bottom: 32px;
}

.chip-b {
  right: 30px;
  top: 188px;
}

.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(13, 27, 34, 0.92), rgba(13, 31, 39, 0.84));
}

.band article {
  display: grid;
  gap: 8px;
}

.band strong {
  font-size: 1rem;
}

.section {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(13, 25, 31, 0.9), rgba(16, 30, 36, 0.78));
}

.showcase-grid,
.links-grid,
.info-grid,
.services-grid,
.compliance-grid,
.contact-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.showcase-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.showcase-card,
.page-card,
.info-card,
.service-panel {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.showcase-card::before,
.page-card::before,
.info-card::before,
.service-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 123, 69, 0.09), transparent 68%);
  pointer-events: none;
}

.showcase-card-large,
.info-card-wide {
  min-height: 240px;
}

.showcase-card-large {
  grid-row: span 2;
  display: grid;
  align-content: end;
}

.showcase-card-map,
.info-card-map {
  background:
    linear-gradient(rgba(236, 223, 206, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 223, 206, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 36, 43, 0.96), rgba(14, 31, 38, 0.84));
  background-size: 28px 28px, 28px 28px, auto;
}

.showcase-card h3,
.page-card h3,
.info-card h3,
.service-panel h3,
.process-step h3 {
  margin-top: 14px;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 1.04;
}

.page-card {
  text-decoration: none;
  color: var(--ink);
}

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

.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card-wide {
  grid-column: span 2;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compliance-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compliance-grid .info-card-wide {
  grid-column: span 3;
  min-height: 180px;
}

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

.contact-grid .info-card-wide {
  grid-column: span 2;
}

.flow-layout {
  margin-top: 18px;
}

.flow-scene {
  position: relative;
  min-height: 360px;
  margin-top: 26px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(218, 123, 69, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(10, 24, 31, 0.98), rgba(14, 31, 38, 0.84));
}

.flow-track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: calc(50% - 1px);
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 138, 138, 0.34), rgba(218, 123, 69, 0.68));
}

.flow-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 8px rgba(218, 123, 69, 0.08);
}

.flow-dot-a {
  left: 18%;
  top: calc(50% - 9px);
}

.flow-dot-b {
  left: calc(50% - 9px);
  top: calc(50% - 9px);
}

.flow-dot-c {
  right: 18%;
  top: calc(50% - 9px);
}

.process-step {
  position: absolute;
  width: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card-strong);
}

.service-panel {
  min-height: 220px;
  display: grid;
  align-content: end;
}

.service-graphic {
  position: absolute;
  inset: 20px 20px auto auto;
  opacity: 0.88;
}

.service-graphic span {
  display: block;
}

.service-graphic-boxes {
  display: grid;
  gap: 6px;
}

.service-graphic-boxes span {
  width: 44px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(218, 123, 69, 0.92), rgba(240, 160, 107, 0.88));
}

.service-graphic-route {
  width: 88px;
  height: 52px;
}

.service-graphic-route::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(236, 223, 206, 0.16), rgba(236, 223, 206, 0.9));
}

.service-graphic-route span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f7efe2;
  box-shadow: 0 0 0 6px rgba(247, 239, 226, 0.08);
}

.service-graphic-route span:nth-child(1) {
  left: 6px;
  top: 20px;
}

.service-graphic-route span:nth-child(2) {
  left: 38px;
  top: 20px;
}

.service-graphic-route span:nth-child(3) {
  right: 6px;
  top: 20px;
}

.service-graphic-shipment {
  width: 72px;
  display: grid;
  gap: 8px;
}

.service-graphic-shipment span {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 138, 138, 0.92), rgba(218, 123, 69, 0.9));
}

.service-panel:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.22), rgba(7, 16, 21, 0.42)),
    var(--img-containers) center/cover no-repeat,
    linear-gradient(180deg, rgba(236, 223, 206, 0.02), rgba(236, 223, 206, 0.01)),
    linear-gradient(135deg, rgba(14, 31, 38, 0.94), rgba(14, 31, 38, 0.94));
}

.service-panel:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.28), rgba(7, 16, 21, 0.5)),
    var(--img-port) center/cover no-repeat,
    radial-gradient(circle at 80% 24%, rgba(29, 138, 138, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(14, 31, 38, 0.94), rgba(14, 31, 38, 0.94));
}

.service-panel:nth-child(3),
.service-panel:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.28), rgba(7, 16, 21, 0.5)),
    var(--img-warehouse) center/cover no-repeat,
    radial-gradient(circle at 82% 18%, rgba(218, 123, 69, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(14, 31, 38, 0.94), rgba(14, 31, 38, 0.94));
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.56), rgba(7, 16, 21, 0.86));
  pointer-events: none;
}

.service-panel > * {
  position: relative;
  z-index: 1;
}

.process-step-a {
  left: 24px;
  top: 24px;
}

.process-step-b {
  left: calc(50% - 115px);
  bottom: 24px;
}

.process-step-c {
  right: 24px;
  top: 24px;
}

.inline-link {
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero,
  .showcase-grid,
  .links-grid,
  .info-grid,
  .services-grid,
  .contact-grid,
  .band {
    grid-template-columns: 1fr 1fr;
  }

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

  .showcase-card-large,
  .info-card-wide,
  .contact-grid .info-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .band,
  .showcase-grid,
  .links-grid,
  .info-grid,
  .services-grid,
  .compliance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-large,
  .info-card-wide,
  .compliance-grid .info-card-wide,
  .contact-grid .info-card-wide {
    grid-column: span 1;
  }

  .flow-scene {
    min-height: 540px;
  }

  .flow-track {
    left: calc(50% - 1px);
    right: auto;
    top: 12%;
    bottom: 12%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(29, 138, 138, 0.34), rgba(218, 123, 69, 0.68));
  }

  .flow-dot-a,
  .flow-dot-b,
  .flow-dot-c {
    left: calc(50% - 9px);
    right: auto;
  }

  .flow-dot-a {
    top: 22%;
  }

  .flow-dot-b {
    top: 50%;
  }

  .flow-dot-c {
    top: 78%;
  }

  .process-step {
    width: calc(100% - 48px);
    left: 24px;
  }

  .process-step-a {
    top: 20px;
  }

  .process-step-b {
    top: calc(50% - 68px);
    bottom: auto;
  }

  .process-step-c {
    top: auto;
    bottom: 20px;
    right: auto;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100vw - 18px, 1200px);
    margin: 8px auto 28px;
  }

  .site-header,
  .hero,
  .band,
  .section,
  .page-hero {
    border-radius: 22px;
  }

  .site-header,
  .hero,
  .page-hero,
  .section,
  .band,
  .showcase-card,
  .page-card,
  .info-card,
  .service-panel,
  .flow-scene,
  .process-step {
    padding: 18px;
  }

  .brand-text em {
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
    max-width: none;
  }

  .hero-text,
  .page-hero .hero-text,
  .showcase-card p,
  .page-card p,
  .info-card p,
  .service-panel p,
  .process-step p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    padding: 0 12px;
  }

  .hero-stage {
    min-height: 300px;
  }

  .hero-copy h1,
  .page-hero h1 {
    padding: 8px 12px 12px;
    border-radius: 16px;
  }

  .floating-card {
    min-width: 132px;
    padding: 12px 14px;
  }

  .floating-card-a {
    top: 16px;
    left: 16px;
  }

  .floating-card-b {
    right: 16px;
    bottom: 16px;
  }

  .stage-node-a {
    top: 108px;
    left: 36px;
  }

  .stage-node-b {
    top: 158px;
    left: 152px;
  }

  .stage-node-c {
    top: 214px;
    left: 244px;
  }

  .stage-path-a {
    top: 120px;
    left: 44px;
    width: 156px;
  }

  .stage-path-b {
    top: 188px;
    left: 150px;
    width: 104px;
  }

  .chip-b {
    top: 126px;
    right: 18px;
  }

  .cargo-stack-a {
    right: 16px;
    top: 16px;
  }

  .cargo-stack-b {
    left: 18px;
    bottom: 58px;
  }

  .route-caption {
    display: none;
  }
}
