/* About page: same tokens as the homepage, with a more editorial project-story rhythm. */

.about-hero {
  position: relative;
  min-height: 560px;
  height: min(650px, 68vh);
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.about-hero-media,
.about-hero-media picture,
.about-hero-media img,
.about-hero-scrim,
.about-hero-grid {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  filter: saturate(.86) contrast(1.06);
  animation: hero-image-in 1.3s var(--ease) both;
}

.about-hero-scrim {
  background: linear-gradient(90deg, rgba(7, 36, 74, .96) 0%, rgba(8, 46, 95, .84) 37%, rgba(8, 46, 95, .35) 77%, rgba(8, 46, 95, .2) 100%), linear-gradient(0deg, rgba(4, 22, 45, .67), transparent 56%);
}

.about-hero-grid {
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 52px;
  padding-bottom: 75px;
}

.about-hero-copy {
  max-width: 700px;
}

.about-hero-copy h1 {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.about-hero-sub {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, .91);
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 500;
  letter-spacing: -.025em;
}

.about-hero-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.9;
}

.about-hero-index {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  margin-top: 35px;
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: right;
}

.about-hero-index i {
  display: block;
  width: 45px;
  height: 1px;
  background: var(--orange);
}

.about-hero-index strong {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.7;
}

.about-hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.about-hero-bottom small {
  margin-left: auto;
  color: rgba(255, 255, 255, .38);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  color: #91a3b7;
  font-family: var(--font-sans);
  font-size: 11px;
}

.breadcrumb a {
  color: var(--blue);
  transition: color .25s ease;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span:first-of-type {
  color: var(--orange);
}

/* Overview */
.overview-section {
  background: var(--paper);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(0, 1.09fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.overview-copy {
  max-width: 540px;
}

.overview-copy h2 {
  margin-bottom: 23px;
}

.overview-note {
  max-width: 500px;
  margin: -5px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.overview-route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
  color: #91a8be;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.overview-route i {
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.overview-media {
  position: relative;
  padding: 0 0 39px 39px;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: var(--blue-deep);
}

.about-image-frame picture,
.about-image-frame img {
  width: 100%;
  height: 100%;
}

.about-image-frame img {
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.overview-media:hover .about-image-frame img {
  transform: scale(1.035);
}

.about-image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  content: "";
  pointer-events: none;
}

.overview-media .image-grid-mark {
  z-index: 1;
}

.overview-media .image-caption {
  z-index: 1;
}

.overview-media-label {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 210px;
  padding: 15px 16px;
  color: var(--paper);
  background: var(--blue-deep);
}

.overview-media-label strong {
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .12em;
}

.overview-media-label span {
  color: rgba(255, 255, 255, .57);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* Key numbers */
.about-key-numbers {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.about-key-numbers::after {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(125, 188, 251, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(125, 188, 251, .025), 0 0 0 136px rgba(125, 188, 251, .025);
  content: "";
  pointer-events: none;
}

.key-numbers-heading,
.key-numbers-grid,
.about-data-note {
  position: relative;
  z-index: 1;
}

.key-numbers-heading {
  padding-top: clamp(70px, 7vw, 102px);
}

.key-numbers-heading h2 {
  max-width: 720px;
  margin-bottom: 53px;
  color: var(--paper);
  font-size: clamp(31px, 3.4vw, 50px);
}

.about-key-numbers .section-kicker-dark {
  color: rgba(255, 255, 255, .62);
}

.key-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 65px;
}

.about-number {
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.about-number:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-number .number-index {
  color: rgba(255, 255, 255, .45);
}

.about-number > div {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: .9;
}

.about-number strong {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: -.09em;
}

.about-number b {
  padding-bottom: 6px;
  color: var(--orange-soft);
  font-size: 19px;
  font-weight: 700;
}

.about-number p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.about-data-note {
  padding-bottom: 18px;
  color: rgba(255, 255, 255, .33);
  font-size: 10px;
  text-align: right;
}

/* Location */
.location-section {
  overflow: hidden;
  background: var(--mist-blue);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.location-map {
  position: relative;
  min-height: 525px;
  padding: 25px 26px 19px;
  border: 1px solid #d2e2f0;
  background: rgba(255, 255, 255, .48);
}

.location-map::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
}

.location-map-svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 11px auto 3px;
  overflow: visible;
}

.location-canal {
  fill: none;
  stroke: #b7d1e9;
  stroke-width: 15;
  opacity: .32;
}

.location-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  stroke-dasharray: 4 7;
  animation: route-dash 22s linear infinite;
}

.route-blue {
  stroke: #2f87df;
}

.route-orange {
  stroke: url(#location-route);
}

.location-label circle {
  fill: var(--blue);
  stroke: var(--paper);
  stroke-width: 3;
  filter: drop-shadow(0 2px 4px rgba(18, 86, 160, .22));
}

.location-label text,
.location-water-label {
  fill: var(--blue-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
}

.location-water-label {
  fill: #7b9cbb;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .08em;
}

.location-core circle:first-child {
  fill: var(--orange);
  stroke-width: 4;
}

.location-core circle:nth-child(2) {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1;
  opacity: .55;
  animation: node-pulse-about 2.7s ease-out infinite;
}

.location-core text {
  fill: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.location-copy h2 {
  margin-bottom: 22px;
}

.location-copy .section-lead {
  margin-bottom: 29px;
}

.location-points {
  border-top: 1px solid #d5e4f0;
}

.location-points article {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid #d5e4f0;
}

.location-points article > span {
  padding-top: 2px;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.location-points h3 {
  margin: 0 0 4px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
}

.location-points p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

@keyframes node-pulse-about {
  0%, 100% { opacity: .55; transform: scale(1); transform-origin: 318px 280px; }
  50% { opacity: .12; transform: scale(1.22); transform-origin: 318px 280px; }
}

/* Journey */
.journey-section {
  overflow: hidden;
  background: var(--paper);
}

.journey-heading {
  margin-bottom: 65px;
}

.journey-heading > p {
  max-width: 310px;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-top: 54px;
}

.journey-track::before,
.journey-progress {
  position: absolute;
  z-index: 0;
  top: 19px;
  right: 9.5%;
  left: 9.5%;
  height: 1px;
  content: "";
}

.journey-track::before {
  background: var(--line-strong);
}

.journey-progress {
  right: auto;
  width: 81%;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.35s .15s var(--ease);
}

.journey-track.is-visible .journey-progress {
  transform: scaleX(1);
}

.journey-item {
  position: relative;
  z-index: 1;
}

.journey-date {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--blue-deep);
  font-family: var(--font-sans);
}

.journey-date strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.journey-date span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.journey-marker {
  position: relative;
  width: 13px;
  height: 13px;
  margin: 11px 0 22px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.journey-card {
  min-height: 314px;
  padding: 0 12px 22px 0;
}

.journey-image {
  position: relative;
  height: 105px;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--mist-blue);
}

.journey-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 46, 89, .45), transparent 55%);
  content: "";
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.journey-item:hover .journey-image img {
  transform: scale(1.05);
}

.journey-code {
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.journey-card h3 {
  margin: 10px 0 7px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

/* Smart & automated port */
.smart-about-section {
  background: var(--mist);
}

.smart-about-visual {
  position: relative;
  min-height: 655px;
  overflow: hidden;
  background: var(--blue-deep);
}

.smart-about-visual > picture,
.smart-about-visual > picture > img,
.smart-about-overlay,
.smart-about-grid {
  position: absolute;
  inset: 0;
}

.smart-about-visual > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.08);
  transition: transform .9s var(--ease);
}

.smart-about-visual:hover > picture > img {
  transform: scale(1.03);
}

.smart-about-overlay {
  background: linear-gradient(90deg, rgba(5, 29, 59, .93) 0%, rgba(5, 29, 59, .66) 52%, rgba(5, 29, 59, .26) 100%), linear-gradient(0deg, rgba(5, 29, 59, .86), transparent 63%);
}

.smart-about-grid {
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.smart-about-heading {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 74px 0 0 clamp(28px, 5vw, 72px);
}

.smart-about-heading h2 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(37px, 4.4vw, 65px);
}

.smart-about-heading h2 span:last-child {
  color: #85c3fc;
}

.smart-about-caption {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 72px);
  bottom: 161px;
  left: clamp(28px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .56);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.smart-about-caption span:last-child {
  color: var(--orange-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.smart-about-cards {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 72px);
  bottom: 38px;
  left: clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.smart-about-cards article {
  min-height: 104px;
  padding: 18px 17px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.smart-about-cards article:not(:first-child) {
  padding-left: 17px;
}

.smart-about-cards article:last-child {
  border-right: 0;
}

.smart-about-cards span,
.smart-about-cards strong,
.smart-about-cards small {
  display: block;
}

.smart-about-cards span {
  margin-bottom: 10px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.smart-about-cards strong {
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.smart-about-cards small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  line-height: 1.5;
}

/* Port / rail / park */
.orientation-section {
  min-height: 690px;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.orientation-background,
.orientation-background picture,
.orientation-background img,
.orientation-background > div {
  position: absolute;
  inset: 0;
}

.orientation-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(.7) contrast(1.06);
}

.orientation-background > div {
  background: linear-gradient(90deg, rgba(5, 29, 59, .97), rgba(5, 29, 59, .77) 55%, rgba(5, 29, 59, .58)), linear-gradient(0deg, rgba(5, 29, 59, .86), transparent 62%);
}

.orientation-inner {
  position: relative;
  z-index: 1;
}

.orientation-heading {
  max-width: 700px;
}

.orientation-heading h2 {
  margin-bottom: 21px;
  color: var(--paper);
}

.orientation-heading > p:last-child {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, .61);
  font-size: 14px;
  line-height: 1.9;
}

.orientation-flow {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  max-width: 950px;
  margin-top: 83px;
  padding: 31px 0;
  border-top: 1px solid rgba(255, 255, 255, .27);
  border-bottom: 1px solid rgba(255, 255, 255, .27);
}

.orientation-flow article {
  min-height: 143px;
  padding-right: 26px;
}

.orientation-flow article:nth-of-type(3) {
  padding-right: 0;
  padding-left: 26px;
}

.orientation-flow article:nth-of-type(2) {
  padding-inline: 26px;
}

.orientation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  margin-bottom: 17px;
  border: 1px solid rgba(125, 188, 251, .53);
  border-radius: 50%;
  color: #8ac4fb;
  background: rgba(11, 46, 89, .55);
}

.orientation-icon .icon {
  width: 23px;
  height: 23px;
}

.orientation-flow small,
.orientation-flow h3,
.orientation-flow p {
  display: block;
}

.orientation-flow small {
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.orientation-flow h3 {
  margin: 7px 0 3px;
  color: var(--paper);
  font-size: 21px;
  font-weight: 800;
}

.orientation-flow p {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  line-height: 1.6;
}

.orientation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--orange-soft);
  border: 1px solid rgba(233, 104, 50, .55);
  border-radius: 50%;
}

.orientation-arrow .icon {
  width: 16px;
  height: 16px;
}

.orientation-mantra {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 27px;
  color: rgba(255, 255, 255, .77);
  font-size: 13px;
  font-weight: 600;
}

.orientation-mantra i {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

/* Port-industry integration */
.integration-section {
  background: var(--paper);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(250px, .94fr);
  align-items: center;
  column-gap: clamp(50px, 9vw, 150px);
  row-gap: 54px;
}

.integration-intro h2 {
  margin-bottom: 21px;
}

.integration-intro .section-lead {
  max-width: 540px;
}

.integration-more-link {
  margin-top: -5px;
}

.integration-statement {
  padding: 24px 0 23px 31px;
  border-left: 1px solid var(--line-strong);
}

.integration-number {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
}

.integration-number strong {
  color: var(--blue-deep);
  font-family: var(--font-sans);
  font-size: clamp(67px, 7.5vw, 106px);
  font-weight: 800;
  letter-spacing: -.11em;
}

.integration-number span {
  padding-bottom: 10px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
}

.integration-statement p {
  margin: 14px 0 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.integration-statement small {
  color: #9aaabd;
  font-size: 10px;
}

.integration-pillars {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.integration-pillars article {
  position: relative;
  min-height: 170px;
  padding: 22px 21px;
  border: 1px solid var(--line);
  background: var(--mist);
  transition: border-color .3s ease, background-color .3s ease, transform .3s var(--ease);
}

.integration-pillars article:hover {
  border-color: rgba(38, 132, 232, .42);
  background: var(--mist-blue);
  transform: translateY(-4px);
}

.integration-pillars article > span {
  position: absolute;
  top: 22px;
  right: 21px;
  color: #9aacc0;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.integration-pillars .icon {
  width: 23px;
  height: 23px;
  margin-bottom: 19px;
  color: var(--blue);
}

.integration-pillars h3 {
  margin: 0 0 5px;
  color: var(--blue-deep);
  font-size: 17px;
  font-weight: 800;
}

.integration-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

/* Brand breathing space */
.about-panorama {
  position: relative;
  min-height: clamp(380px, 34vw, 510px);
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.about-panorama-background,
.about-panorama-background picture,
.about-panorama-background img,
.about-panorama-background > div {
  position: absolute;
  inset: 0;
}

.about-panorama-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.72) contrast(1.08);
}

.about-panorama-background > div {
  background: linear-gradient(90deg, rgba(5, 29, 59, .9), rgba(5, 29, 59, .38)), linear-gradient(0deg, rgba(5, 29, 59, .66), transparent 60%);
}

.panorama-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  text-align: center;
}

.panorama-content > p {
  margin: 0 0 20px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.panorama-content h2 {
  margin: 0 0 15px;
  color: var(--paper);
  font-size: clamp(36px, 5.2vw, 72px);
}

.panorama-content > span {
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
}

/* Explore more */
.explore-section {
  background: var(--mist-blue);
}

.explore-heading {
  margin-bottom: 48px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px 24px 22px;
  border: 1px solid #d6e4f0;
  background: var(--paper);
  transition: border-color .3s ease, box-shadow .35s var(--ease), transform .35s var(--ease);
}

.explore-card:hover {
  border-color: rgba(38, 132, 232, .44);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.explore-card > span {
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.explore-card > div {
  margin-top: auto;
}

.explore-card small {
  color: #8ea4bb;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.explore-card h3 {
  margin: 9px 0 7px;
  color: var(--blue-deep);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.explore-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.explore-card > .icon {
  position: absolute;
  right: 23px;
  bottom: 23px;
  width: 22px;
  height: 22px;
  color: var(--blue);
  transition: color .25s ease, transform .3s var(--ease);
}

.explore-card:hover > .icon {
  color: var(--orange);
  transform: translateX(4px);
}

/* About CTA */
.about-cta {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.about-cta-background,
.about-cta-background picture,
.about-cta-background img,
.about-cta-background > div:not(.image-slot) {
  position: absolute;
  inset: 0;
}

.about-cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.78) contrast(1.1);
}

.about-cta-background > div:not(.image-slot) {
  background: linear-gradient(90deg, rgba(5, 29, 59, .94), rgba(5, 29, 59, .5) 62%, rgba(5, 29, 59, .32)), linear-gradient(0deg, rgba(5, 29, 59, .65), transparent 60%);
}

.about-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
}

.about-cta-content h2 {
  margin-bottom: 29px;
  color: var(--paper);
  font-size: clamp(43px, 5vw, 72px);
}

.about-cta-content h2 span:last-child {
  color: #84c2fc;
}

/* About responsive */
@media (max-width: 1180px) {
  .overview-grid,
  .location-layout,
  .integration-layout {
    gap: 58px;
  }

  .orientation-flow {
    max-width: 850px;
  }

  .journey-card {
    padding-right: 8px;
  }

  .journey-card h3 {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .about-hero {
    height: 590px;
  }

  .about-hero-index {
    display: none;
  }

  .overview-grid,
  .location-layout,
  .integration-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .overview-copy,
  .location-copy,
  .integration-intro {
    max-width: 700px;
  }

  .overview-media {
    max-width: 730px;
  }

  .location-map {
    max-width: 730px;
  }

  .journey-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }

  .journey-track::before,
  .journey-progress {
    right: 13%;
    left: 13%;
    width: 74%;
  }

  .journey-item:nth-child(4),
  .journey-item:nth-child(5) {
    margin-top: 18px;
  }

  .smart-about-visual {
    min-height: 610px;
  }

  .orientation-flow {
    margin-top: 65px;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    max-width: 730px;
  }

  .explore-card {
    min-height: 195px;
  }
}

@media (max-width: 680px) {
  .about-hero {
    min-height: 480px;
    height: 530px;
  }

  .about-hero-media img {
    object-position: 62% center;
  }

  .about-hero-scrim {
    background: linear-gradient(180deg, rgba(7, 36, 74, .67) 0%, rgba(8, 46, 95, .48) 30%, rgba(8, 46, 95, .92) 100%);
  }

  .about-hero-inner {
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 67px;
  }

  .about-hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(45px, 14vw, 65px);
  }

  .about-hero-sub {
    max-width: 330px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .about-hero-lead {
    max-width: 340px;
    font-size: 11px;
    line-height: 1.8;
  }

  .about-hero-bottom {
    bottom: 18px;
    font-size: 8px;
  }

  .about-hero-bottom small {
    display: none;
  }

  .breadcrumb .container {
    min-height: 48px;
    font-size: 10px;
  }

  .section {
    padding-block: 78px;
  }

  .overview-grid,
  .location-layout,
  .integration-layout {
    gap: 44px;
  }

  .overview-copy h2,
  .location-copy h2,
  .integration-intro h2 {
    font-size: clamp(34px, 10.2vw, 48px);
  }

  .overview-copy .section-lead,
  .location-copy .section-lead,
  .integration-intro .section-lead {
    font-size: 13px;
  }

  .overview-note {
    font-size: 11px;
  }

  .overview-route {
    gap: 6px;
    margin-top: 27px;
    font-size: 7px;
  }

  .overview-route i {
    width: 11px;
  }

  .overview-media {
    padding: 0 0 29px 24px;
  }

  .overview-media-label {
    width: 165px;
    padding: 11px 12px;
  }

  .overview-media-label strong {
    font-size: 10px;
  }

  .overview-media-label span {
    font-size: 7px;
  }

  .key-numbers-heading {
    padding-top: 68px;
  }

  .key-numbers-heading h2 {
    margin-bottom: 38px;
    font-size: 31px;
  }

  .key-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
    padding-bottom: 42px;
  }

  .about-number {
    padding: 0 15px;
  }

  .about-number:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .about-number strong {
    font-size: 44px;
  }

  .about-number b {
    padding-bottom: 4px;
    font-size: 14px;
  }

  .about-number p {
    margin-top: 9px;
    font-size: 10px;
  }

  .about-data-note {
    padding-bottom: 13px;
    font-size: 8px;
    text-align: left;
  }

  .location-map {
    min-height: 390px;
    padding: 18px 13px 13px;
  }

  .location-map-svg {
    margin-top: 8px;
  }

  .location-map .map-meta,
  .location-map .map-legend {
    font-size: 7px;
  }

  .location-label text,
  .location-water-label {
    font-size: 9px;
  }

  .location-core text {
    font-size: 11px;
  }

  .location-points article {
    grid-template-columns: 29px 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .location-points h3 {
    font-size: 14px;
  }

  .location-points p {
    font-size: 11px;
  }

  .journey-heading {
    margin-bottom: 42px;
  }

  .journey-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 0 28px;
  }

  .journey-track::before,
  .journey-progress {
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 35px;
    width: 1px;
    height: auto;
  }

  .journey-progress {
    transform: scaleY(0);
    transform-origin: top center;
  }

  .journey-track.is-visible .journey-progress {
    transform: scaleY(1);
  }

  .journey-item,
  .journey-item:nth-child(4),
  .journey-item:nth-child(5) {
    display: grid;
    grid-template-columns: 43px 1fr;
    column-gap: 17px;
    margin: 0;
    padding-bottom: 34px;
  }

  .journey-date {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 4px;
    text-align: right;
  }

  .journey-date strong,
  .journey-date span {
    display: block;
  }

  .journey-date strong {
    font-size: 18px;
  }

  .journey-date span {
    margin-top: 2px;
  }

  .journey-marker {
    grid-column: 2;
    grid-row: 1;
    width: 13px;
    height: 13px;
    margin: 5px 0 14px -23px;
  }

  .journey-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 0;
    padding: 0 0 0 0;
  }

  .journey-image {
    height: 135px;
    margin-bottom: 14px;
  }

  .journey-card h3 {
    font-size: 16px;
  }

  .journey-card p {
    font-size: 11px;
  }

  .smart-about-visual {
    min-height: 650px;
  }

  .smart-about-overlay {
    background: linear-gradient(180deg, rgba(5, 29, 59, .48), rgba(5, 29, 59, .94) 78%);
  }

  .smart-about-heading {
    padding: 37px 22px 0;
  }

  .smart-about-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .smart-about-caption {
    right: 22px;
    bottom: 197px;
    left: 22px;
    font-size: 8px;
  }

  .smart-about-caption span:last-child {
    font-size: 7px;
  }

  .smart-about-cards {
    right: 22px;
    bottom: 22px;
    left: 22px;
    grid-template-columns: repeat(2, 1fr);
  }

  .smart-about-cards article,
  .smart-about-cards article:not(:first-child) {
    min-height: 87px;
    padding: 12px 12px 8px 0;
    border-right: 1px solid rgba(255, 255, 255, .22);
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .smart-about-cards article:nth-child(even) {
    padding-left: 12px;
    border-right: 0;
  }

  .smart-about-cards article:nth-child(n+3) {
    border-bottom: 0;
  }

  .smart-about-cards span {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .smart-about-cards strong {
    font-size: 12px;
  }

  .smart-about-cards small {
    font-size: 8px;
  }

  .orientation-section {
    min-height: 780px;
  }

  .orientation-background > div {
    background: linear-gradient(180deg, rgba(5, 29, 59, .84), rgba(5, 29, 59, .96));
  }

  .orientation-flow {
    display: grid;
    grid-template-columns: 1fr 32px 1fr 32px 1fr;
    gap: 0;
    margin-top: 51px;
    padding: 24px 0;
  }

  .orientation-flow article,
  .orientation-flow article:nth-of-type(2),
  .orientation-flow article:nth-of-type(3) {
    min-height: 190px;
    padding: 0 8px 0 0;
  }

  .orientation-flow article:nth-of-type(2) {
    padding-inline: 8px;
  }

  .orientation-flow article:nth-of-type(3) {
    padding-right: 0;
    padding-left: 8px;
  }

  .orientation-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .orientation-icon .icon {
    width: 18px;
    height: 18px;
  }

  .orientation-flow small {
    font-size: 7px;
    letter-spacing: .1em;
  }

  .orientation-flow h3 {
    font-size: 16px;
  }

  .orientation-flow p {
    font-size: 9px;
    line-height: 1.55;
  }

  .orientation-arrow {
    width: 25px;
    height: 25px;
  }

  .orientation-arrow .icon {
    width: 12px;
    height: 12px;
  }

  .orientation-mantra {
    gap: 9px;
    font-size: 10px;
  }

  .orientation-mantra i {
    width: 13px;
  }

  .integration-layout {
    row-gap: 36px;
  }

  .integration-statement {
    padding: 17px 0 18px 21px;
  }

  .integration-number strong {
    font-size: 72px;
  }

  .integration-number span {
    padding-bottom: 7px;
    font-size: 16px;
  }

  .integration-statement p {
    margin-top: 10px;
    font-size: 12px;
  }

  .integration-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 0;
    border-top: 0;
  }

  .integration-pillars article {
    min-height: 132px;
    padding: 18px;
  }

  .integration-pillars article > span {
    top: 18px;
    right: 18px;
  }

  .integration-pillars .icon {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
  }

  .integration-pillars h3 {
    font-size: 15px;
  }

  .integration-pillars p {
    font-size: 10px;
  }

  .about-panorama {
    min-height: 330px;
  }

  .panorama-content h2 {
    font-size: clamp(33px, 9vw, 45px);
  }

  .panorama-content > span {
    font-size: 8px;
  }

  .explore-heading {
    margin-bottom: 36px;
  }

  .explore-card {
    min-height: 210px;
    padding: 20px;
  }

  .explore-card h3 {
    font-size: 21px;
  }

  .explore-card > .icon {
    right: 19px;
    bottom: 19px;
  }

  .about-cta,
  .about-cta-content {
    min-height: 440px;
  }

  .about-cta-background > div:not(.image-slot) {
    background: linear-gradient(180deg, rgba(5, 29, 59, .82), rgba(5, 29, 59, .96));
  }

  .about-cta-content h2 {
    margin-bottom: 25px;
    font-size: clamp(39px, 11.2vw, 54px);
  }
}
