@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Morskie Display";
  src:
    url("./assets/fonts/MorskieDisplay-Semibold.woff2?v=2") format("woff2"),
    url("./assets/fonts/MorskieDisplay-Semibold.ttf?v=2") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #082f42;
  --navy: #05354d;
  --navy-deep: #032537;
  --blue: #0a5974;
  --aqua: #44c5c4;
  --aqua-dark: #138f98;
  --ice: #eef8f7;
  --mist: #d9eef1;
  --white: #ffffff;
  --gold: #ddb976;
  --line: rgba(8, 47, 66, 0.17);
  --pad: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--aqua-dark) var(--ice);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ice);
  font-family: "Morskie Display", Arial, sans-serif;
  font-synthesis: none;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.section-marker,
.prototype-note,
.demo-badge,
.route-story__timeline button,
.production__nav button,
.editorial small,
.footer__grid small,
.footer__bottom,
.mobile-menu__actions {
  font-family: "Morskie Display", "Manrope", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  transform: translateY(-140%);
  color: white;
  background: var(--navy);
  border-radius: 30px;
}

.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
}

.site-header {
  position: fixed;
  z-index: 150;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: calc(100% - 36px);
  max-width: 1500px;
  min-height: 72px;
  padding: 7px 10px 7px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(246, 252, 251, 0.54);
  box-shadow: 0 12px 45px rgba(6, 52, 72, 0.07);
  backdrop-filter: blur(18px);
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(248, 252, 251, 0.92);
  box-shadow: 0 14px 50px rgba(6, 52, 72, 0.12);
}

.brand {
  display: grid;
  width: 112px;
  height: 58px;
  place-items: center;
}

.brand img { width: 100px; height: 54px; object-fit: contain; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 34px);
  font-family: "Morskie Display", "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-link { position: relative; transition: color 0.25s ease; }

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--aqua-dark);
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 4px; }

.header-link {
  padding: 13px 15px;
  border-radius: 999px;
  font-family: "Morskie Display", "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-link span { margin-left: 5px; }
.header-link--accent { color: white; background: var(--navy); }
.header-link--accent:hover { background: var(--aqua-dark); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: white;
  transition: transform 0.3s ease;
}

.mobile-menu { display: none; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--aqua-dark);
  font-family: "Morskie Display", "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-marker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.section-marker::after {
  width: 70px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.28;
}

.section-marker span {
  color: var(--aqua-dark);
  font-family: "Morskie Display";
  font-size: 18px;
  letter-spacing: 0;
}

.section-marker--light { color: white; }
.section-marker--light span { color: var(--gold); }

.hero {
  position: relative;
  display: grid;
  min-height: max(680px, 100svh);
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero__media,
.hero__wash { position: absolute; inset: 0; }

.hero__media {
  z-index: -3;
  background: url("./assets/hero-port-2026-poster.webp") center / cover no-repeat;
  animation: heroFadeIn 1.2s var(--ease) both;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.hero__video.is-active { opacity: 1; }

.hero__wash {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(239, 248, 247, 0.72), rgba(239, 248, 247, 0.12) 48%, rgba(3, 37, 55, 0.18)),
    linear-gradient(90deg, rgba(239, 248, 247, 0.55), rgba(239, 248, 247, 0.01) 70%);
}

.hero__content {
  position: relative;
  width: 100%;
  height: max(680px, 100svh);
  text-align: center;
  animation: riseIn 1.2s 0.15s var(--ease) both;
}

.hero h1,
.route-story h2,
.map-section h2,
.production h2,
.quality h2,
.knowledge h2,
.footer h2 {
  margin: 0;
  font-family: "Morskie Display", "Manrope", Arial, sans-serif;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 { font-size: clamp(70px, 8vw, 138px); }

.hero__title,
.hero__closing {
  position: absolute;
  left: 50%;
  display: block;
  width: min(1260px, calc(100% - 80px));
  transform: translateX(-50%);
}

.hero__title { top: clamp(150px, 20vh, 205px); color: var(--navy); }

.hero__closing {
  bottom: clamp(54px, 8vh, 92px);
  color: var(--gold);
  text-shadow: none;
}

.hero__eyebrow {
  position: absolute;
  top: clamp(118px, 15vh, 155px);
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.hero__brand-lockup {
  position: absolute;
  top: 51%;
  left: 50%;
  display: grid;
  width: min(40vw, 560px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  place-items: center;
}

.hero__brand-lockup img {
  width: 100%;
  max-height: 44vh;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(221, 185, 118, 0.2));
}

.hero__meta {
  position: absolute;
  bottom: 34px;
  left: var(--pad);
  display: flex;
  gap: 36px;
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(3, 37, 55, 0.5);
  opacity: 0.72;
}

.route-story {
  position: relative;
  height: 100svh;
  min-height: 680px;
  max-height: none;
  overflow: hidden;
  color: white;
  background: var(--navy-deep);
  isolation: isolate;
}

.route-story__media,
.route-story__shade { position: absolute; inset: 0; }

.route-story__media { z-index: -3; overflow: hidden; }

.route-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: opacity 0.45s ease, transform 1.2s var(--ease);
}

.route-story.is-changing .route-story__media img { opacity: 0.28; transform: scale(1.025); }

.route-story__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 27, 41, 0.86), rgba(3, 37, 55, 0.38) 54%, rgba(3, 37, 55, 0.08)),
    linear-gradient(180deg, rgba(3, 37, 55, 0.3), transparent 42%, rgba(3, 27, 41, 0.78));
}

.route-story__top {
  position: absolute;
  z-index: 2;
  top: 110px;
  right: var(--pad);
  left: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prototype-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.route-story__copy {
  position: absolute;
  z-index: 2;
  bottom: 142px;
  left: var(--pad);
  max-width: min(760px, 62vw);
}

.route-story__copy .eyebrow { color: var(--aqua); }
.route-story h2 { font-size: clamp(70px, 8.4vw, 144px); }

.route-story__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.3vw, 19px);
}

.route-story__copy small {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-story__controls {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 134px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-story__controls button,
.production__arrows button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  background: rgba(3, 37, 55, 0.28);
  cursor: pointer;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.route-story__controls button:hover,
.production__arrows button:hover { color: var(--navy); background: var(--aqua); transform: translateY(-2px); }

.route-story__controls > span {
  min-width: 64px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
}

.route-story__controls b { color: var(--gold); font-family: "Morskie Display"; font-size: 20px; }

.route-story__timeline {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 112px;
  padding: 0 var(--pad);
  grid-template-columns: repeat(3, 1fr);
  background: rgba(2, 25, 38, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.route-story__timeline button {
  position: relative;
  display: grid;
  padding: 24px 26px;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-content: center;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-align: left;
  transition: color 0.3s ease, background 0.3s ease;
}

.route-story__timeline button:last-child { border-right: 0; }

.route-story__timeline button::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--aqua));
  transition: transform 0.45s var(--ease);
}

.route-story__timeline button.is-active {
  color: white;
  background: rgba(68, 197, 196, 0.07);
}

.route-story__timeline button.is-active::before { transform: scaleX(1); }
.route-story__timeline button b { color: var(--gold); font-size: 18px; }
.route-story__timeline button span { display: flex; flex-direction: column; gap: 4px; }
.route-story__timeline button small { color: var(--aqua); font-family: "Morskie Display"; font-size: 8px; font-weight: 600; letter-spacing: 0.15em; }

.map-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 118px var(--pad) 72px;
  grid-template-columns: minmax(300px, 0.66fr) minmax(620px, 1.34fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: center;
  overflow: hidden;
}

.map-section--buyers {
  color: white;
  background:
    radial-gradient(circle at 75% 35%, rgba(68, 197, 196, 0.14), transparent 32%),
    #021f30;
}

.map-section--suppliers {
  background:
    radial-gradient(circle at 24% 22%, rgba(68, 197, 196, 0.17), transparent 28%),
    #edf8f7;
}

.map-section__heading { position: relative; z-index: 3; min-width: 0; }
.map-section__heading .eyebrow { margin-top: 74px; }
.map-section--buyers .map-section__heading .eyebrow { color: var(--aqua); }
.map-section h2 { font-size: clamp(62px, 6.7vw, 118px); }
.map-section--buyers h2 { font-size: clamp(46px, 4.2vw, 76px); }
.map-section h2 em { color: var(--gold); font-style: normal; }
.map-section--suppliers h2 em { color: var(--aqua-dark); }

.map-section__heading > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.map-section--suppliers .map-section__heading > p:not(.eyebrow) { color: rgba(8, 47, 66, 0.64); }

.demo-badge {
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(221, 185, 118, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.map-section--suppliers .demo-badge { color: var(--aqua-dark); border-color: rgba(19, 143, 152, 0.28); }

.map-stage {
  position: relative;
  min-width: 0;
  min-height: 560px;
  isolation: isolate;
}

.map-stage__canvas {
  position: relative;
  min-height: 560px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.map-stage__canvas--far-east {
  min-height: 560px;
  border: 0;
  background: transparent;
}

.geo-map { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.map-section--suppliers .geo-map--far-east {
  inset: 5% 4% 7%;
  width: auto;
  height: auto;
}

.geo-region {
  fill: rgba(68, 197, 196, 0.065);
  stroke: rgba(112, 218, 216, 0.34);
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
}

.geo-region.is-demo { fill: rgba(221, 185, 118, 0.2); cursor: pointer; }
.geo-region.is-demo:hover,
.geo-region.is-demo:focus-visible,
.geo-region.is-preview,
.geo-region.is-active { fill: var(--gold); stroke: white; filter: drop-shadow(0 0 9px rgba(221, 185, 118, 0.5)); }

.geo-map--far-east .geo-region { fill: rgba(19, 143, 152, 0.055); stroke: rgba(19, 143, 152, 0.36); }
.geo-map--far-east .geo-region.is-interactive { cursor: pointer; }
.geo-map--far-east .geo-region.is-preview,
.geo-map--far-east .geo-region.is-active { fill: rgba(19, 143, 152, 0.22); stroke: var(--aqua-dark); }

.map-point { cursor: pointer; }
.map-point circle { fill: var(--gold); stroke: white; stroke-width: 2; vector-effect: non-scaling-stroke; transition: transform 0.25s var(--ease), fill 0.25s ease; transform-box: fill-box; transform-origin: center; }
.map-point .map-point__halo { fill: rgba(221, 185, 118, 0.14); stroke: rgba(221, 185, 118, 0.36); }
.map-point text { fill: var(--ink); font-family: "Morskie Display"; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; paint-order: stroke; stroke: rgba(237, 248, 247, 0.92); stroke-width: 3px; text-transform: uppercase; }
.map-point:hover circle,
.map-point:focus-visible circle,
.map-point.is-preview circle,
.map-point.is-active circle { transform: scale(1.35); fill: var(--aqua-dark); }

.map-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-section--suppliers .map-loading { color: rgba(8, 47, 66, 0.52); }
.map-loading.is-hidden { display: none; }

.map-card {
  position: absolute;
  z-index: 4;
  top: var(--map-card-y, 50%);
  left: var(--map-card-x, 58%);
  width: min(320px, 40%);
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-shadow: 0 2px 18px rgba(2, 31, 48, 0.95);
  transform: translate(26px, -50%);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.map-card[data-side="left"] { transform: translate(calc(-100% - 26px), -50%); }
.map-card.is-visible { opacity: 1; visibility: visible; }

.map-card__meta {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.map-card__meta > span {
  color: var(--gold);
  font-family: "Morskie Display";
  font-size: 15px;
}

.map-card small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-card h3 {
  margin: 10px 0 14px;
  font-family: "Morskie Display";
  font-size: clamp(28px, 2.5vw, 43px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.map-card p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 12px; }

.map-card__status {
  margin-top: 18px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.map-card__coords {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card--light {
  color: var(--ink);
  text-shadow: 0 1px 18px rgba(237, 248, 247, 0.98);
}

.map-card--light small { color: rgba(8, 47, 66, 0.48); }
.map-card--light p { color: rgba(8, 47, 66, 0.68); }
.map-card--light .map-card__status { color: var(--aqua-dark); }
.map-card--light .map-card__coords { color: rgba(8, 47, 66, 0.5); }

.production {
  display: grid;
  min-height: 100svh;
  padding: 120px var(--pad);
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: center;
  background: #f7fbfa;
}

.production__intro,
.production__copy { min-width: 0; }

.production__intro .eyebrow { margin-top: 70px; }
.production__copy > span { color: var(--aqua-dark); font-family: "Morskie Display"; font-size: 18px; }
.production h2 { margin-top: 24px; font-size: clamp(58px, 6.2vw, 108px); }
.production h2 em { color: var(--aqua-dark); font-style: normal; }

.production__copy > p {
  max-width: 550px;
  min-height: 72px;
  margin: 28px 0 0;
  color: rgba(8, 47, 66, 0.66);
  font-size: 15px;
}

.production__nav { margin-top: 46px; border-top: 1px solid var(--line); }

.production__nav button {
  position: relative;
  display: grid;
  width: 100%;
  padding: 15px 0;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: rgba(8, 47, 66, 0.46);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-align: left;
  transition: color 0.25s ease, padding 0.3s var(--ease);
}

.production__nav button::after { content: "→"; opacity: 0; transform: translateX(-8px); transition: 0.25s var(--ease); }
.production__nav button:hover,
.production__nav button.is-active { padding-left: 10px; color: var(--ink); }
.production__nav button.is-active::after { opacity: 1; transform: none; color: var(--aqua-dark); }
.production__nav button b { color: var(--aqua-dark); font-size: 15px; }

.production__visual {
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  justify-self: end;
  background: var(--mist);
  box-shadow: 0 30px 80px rgba(8, 47, 66, 0.12);
}

.production__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.8s var(--ease), filter 0.4s ease;
}

.production__visual.is-changing > img { opacity: 0.35; transform: scale(1.03); }

.production__visual--documents > img { opacity: 0.16; filter: blur(2px) saturate(0.4); }
.production__visual--custom::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, transparent 54%, rgba(3, 37, 55, 0.48));
}

.document-placeholder { display: none; }

.production__visual--documents .document-placeholder {
  position: absolute;
  z-index: 2;
  inset: 12%;
  display: block;
}

.document-placeholder span {
  position: absolute;
  width: 58%;
  height: 76%;
  border: 1px solid rgba(8, 47, 66, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(8, 47, 66, 0.12);
}

.document-placeholder span:nth-child(1) { top: 2%; left: 5%; transform: rotate(-7deg); }
.document-placeholder span:nth-child(2) { top: 9%; right: 3%; transform: rotate(6deg); }
.document-placeholder span:nth-child(3) { top: 12%; left: 21%; }

.document-placeholder img {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 37%;
  width: 27%;
  filter: none;
}

.production__visual figcaption {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: white;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 10px rgba(3, 37, 55, 0.7);
  text-transform: uppercase;
}

.production__visual--documents figcaption { color: var(--ink); text-shadow: none; }

.production__arrows {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 8px;
}

.production__visual--documents .production__arrows button { color: var(--ink); border-color: rgba(8, 47, 66, 0.3); background: rgba(255, 255, 255, 0.62); }

.quality {
  position: relative;
  min-height: 100svh;
  padding: 118px var(--pad) 90px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(68, 197, 196, 0.13), transparent 29%),
    var(--navy-deep);
}

.quality__top { position: relative; z-index: 2; }
.quality__top .eyebrow { margin-top: 80px; color: var(--aqua); }
.quality__top h2 { max-width: 1250px; font-size: clamp(62px, 8vw, 138px); }
.quality__top h2 em { color: var(--gold); font-style: normal; }

.quality__top > p:last-child {
  max-width: 600px;
  margin: 30px 0 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.quality__route {
  position: relative;
  display: grid;
  max-width: 880px;
  height: 1px;
  margin: 60px auto 0;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(90deg, var(--aqua), rgba(255, 255, 255, 0.22), var(--gold));
}

.quality__route i { position: relative; }
.quality__route i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  transform: translate(-50%, -50%);
  border: 2px solid var(--aqua);
  border-radius: 50%;
  background: var(--navy-deep);
}

.quality__route i:last-child::before { border-color: var(--gold); }

.quality__grid {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quality__grid article {
  min-height: 240px;
  padding: 28px 50px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quality__grid article + article { padding-left: 50px; }
.quality__grid article:last-child { border-right: 0; }
.quality__grid span { color: var(--aqua); font-family: "Morskie Display"; font-size: 24px; }

.quality__grid h3 {
  margin: 46px 0 10px;
  font-family: "Morskie Display";
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.quality__grid p { max-width: 340px; margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; }

.knowledge { padding: 128px var(--pad); background: var(--ice); }
.knowledge__heading { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 80px; align-items: end; }
.knowledge__heading > * { min-width: 0; }
.knowledge h2 { margin-top: 72px; font-size: clamp(62px, 8vw, 132px); }
.knowledge h2 em { color: var(--aqua-dark); font-style: normal; }
.knowledge__heading > p { max-width: 460px; margin: 0 0 16px; color: rgba(8, 47, 66, 0.65); font-size: 17px; }

.editorial {
  display: grid;
  margin-top: 90px;
  grid-template-columns: minmax(420px, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(38px, 5vw, 82px);
}

.editorial__feature > a { display: block; }
.editorial__image { position: relative; aspect-ratio: 1.45; overflow: hidden; background: var(--mist); }
.editorial__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.editorial__feature a:hover .editorial__image img { transform: scale(1.025); }

.editorial__image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: white;
  background: rgba(3, 37, 55, 0.7);
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.editorial__feature-copy { padding-top: 26px; }
.editorial small { color: rgba(8, 47, 66, 0.46); font-size: 8px; letter-spacing: 0.14em; }

.editorial__feature h3 {
  max-width: 760px;
  margin: 13px 0 16px;
  font-family: "Morskie Display";
  font-size: clamp(34px, 3.6vw, 60px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.editorial__feature p { max-width: 620px; margin: 0; color: rgba(8, 47, 66, 0.62); font-size: 13px; }
.editorial__feature b { display: inline-block; margin-top: 22px; color: var(--aqua-dark); font-family: "Morskie Display"; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }

.editorial__list { border-top: 1px solid var(--line); }

.editorial__list a {
  display: grid;
  min-height: 178px;
  padding: 28px 0;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.25s ease;
}

.editorial__list a:hover { padding-right: 16px; padding-left: 16px; background: rgba(255, 255, 255, 0.62); }
.editorial__list a > span { color: var(--aqua-dark); font-family: "Morskie Display"; font-size: 22px; }

.editorial__list h3 {
  margin: 10px 0 0;
  font-family: "Morskie Display";
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.editorial__list a > b {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: 0.3s var(--ease);
}

.editorial__list a:hover > b { transform: rotate(45deg); color: white; background: var(--aqua-dark); }

.footer { padding: 120px var(--pad) 30px; color: white; background: #021d2b; }
.footer .eyebrow { color: var(--gold); }
.footer h2 { margin-top: 70px; font-size: clamp(72px, 10vw, 170px); }
.footer h2 em { color: var(--aqua); font-style: normal; }

.footer__mail {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 70px;
  padding: 22px 0;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Morskie Display";
  font-size: clamp(24px, 4vw, 64px);
  text-transform: uppercase;
}

.footer__mail span { display: grid; width: 70px; height: 70px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50%; place-items: center; }
.footer__grid { display: grid; margin-top: 90px; grid-template-columns: repeat(4, 1fr); gap: 50px; }
.footer__grid > div { display: flex; align-items: flex-start; flex-direction: column; }
.footer__grid small { margin-bottom: 22px; color: var(--aqua); font-size: 9px; letter-spacing: 0.17em; }
.footer__grid a,
.footer__grid p { margin: 0 0 8px; color: rgba(255, 255, 255, 0.72); font-size: 14px; }
.footer__grid a:hover { color: white; }

.footer__bottom {
  display: grid;
  margin-top: 100px;
  padding-top: 28px;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.footer__bottom img { width: 64px; }
.footer__bottom a { justify-self: end; }

[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.demo-toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 14px 20px;
  transform: translateY(140%);
  color: white;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(3, 37, 55, 0.22);
  font-size: 12px;
  transition: transform 0.45s var(--ease);
}

.demo-toast.is-visible { transform: none; }

@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

@media (max-width: 1260px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .menu-button { display: block; margin-left: 6px; }
  .mobile-menu {
    position: fixed;
    z-index: 140;
    inset: 0;
    display: flex;
    padding: 130px var(--pad) 50px;
    transform: translateY(-105%);
    color: white;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.55s var(--ease);
  }
  .mobile-menu.is-open { transform: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { padding: 5px 0; font-family: "Morskie Display"; font-size: clamp(32px, 6vw, 66px); line-height: 1.06; text-transform: uppercase; }
  .mobile-menu__actions { display: flex; gap: 24px; font-size: 11px; letter-spacing: 0.1em; }
  .menu-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .map-section { grid-template-columns: minmax(280px, 0.58fr) minmax(540px, 1.42fr); gap: 44px; }
  .map-card { width: min(310px, 44%); }
}

@media (max-width: 980px) {
  .map-section { grid-template-columns: 1fr; }
  .map-section__heading { max-width: 780px; }
  .map-section__heading .eyebrow { margin-top: 54px; }
  .map-stage { min-height: 620px; }
  .production { grid-template-columns: 1fr; }
  .production__visual { justify-self: center; }
  .editorial { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --pad: 24px; }

  .site-header { top: 10px; width: calc(100% - 20px); min-height: 64px; padding-left: 10px; }
  .brand { width: 82px; height: 50px; }
  .brand img { width: 76px; height: 48px; }
  .header-link:not(.header-link--accent) { display: none; }
  .header-link--accent { padding: 11px 13px; font-size: 9px; }
  .menu-button { width: 44px; height: 44px; }

  .hero { min-height: 820px; }
  .hero__media { background-position: 58% center; }
  .hero__video { object-position: 58% center; }
  .hero__wash { background: linear-gradient(180deg, rgba(239, 248, 247, 0.82), rgba(239, 248, 247, 0.18) 68%, rgba(3, 37, 55, 0.3)); }
  .hero__content { height: max(820px, 100svh); }
  .hero h1 { font-size: clamp(44px, 13vw, 68px); }
  .hero__title { top: 155px; width: calc(100% - 32px); }
  .hero__closing { bottom: 82px; width: calc(100% - 32px); font-size: 0.82em; }
  .hero__eyebrow { top: 118px; font-size: 9px; }
  .hero__brand-lockup { top: 51%; width: min(82vw, 390px); }
  .hero__brand-lockup img { max-height: 38vh; }
  .hero__meta { display: none; }

  .route-story { height: max(860px, 100svh); min-height: 860px; max-height: none; }
  .route-story__media img { object-position: 58% center; }
  .route-story__shade { background: linear-gradient(180deg, rgba(3, 37, 55, 0.2), rgba(3, 27, 41, 0.9) 62%); }
  .route-story__top { top: 100px; }
  .route-story__copy { bottom: 206px; max-width: calc(100% - 48px); }
  .route-story h2 { font-size: clamp(58px, 17vw, 92px); }
  .route-story__copy > p:not(.eyebrow) { max-width: 92%; }
  .route-story__controls { right: 24px; bottom: 122px; }
  .route-story__timeline { height: 104px; padding: 0; }
  .route-story__timeline button { padding: 18px 10px; grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .route-story__timeline button b { font-size: 15px; }
  .route-story__timeline button small { display: none; }

  .map-section { min-height: 0; padding: 100px 24px 70px; }
  .map-section__heading,
  .map-stage { width: 100%; max-width: 100%; }
  .map-section h2 { font-size: clamp(58px, 15vw, 90px); }
  .map-section--buyers h2 { font-size: clamp(46px, 12vw, 68px); }
  .map-stage { min-height: 0; }
  .map-stage__canvas { min-height: 470px; }
  .map-card,
  .map-card[data-side="left"] {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.35s var(--ease), margin 0.35s var(--ease), opacity 0.25s ease, visibility 0.25s ease;
  }
  .map-card.is-visible { max-height: 270px; margin-top: 24px; }
  .geo-map { padding: 10px; }

  .production { min-height: 0; padding: 100px 24px; gap: 55px; }
  .production__intro,
  .production__copy,
  .production__visual { width: 100%; max-width: 100%; }
  .production__intro .eyebrow { margin-top: 60px; }
  .production h2 { font-size: clamp(54px, 15vw, 86px); }
  .production__copy > p { min-height: 0; }

  .quality { min-height: 0; padding: 100px 24px 80px; }
  .quality__top .eyebrow { margin-top: 70px; }
  .quality__top h2 { font-size: clamp(55px, 14.5vw, 92px); }
  .quality__top > p:last-child { margin-left: 0; }
  .quality__grid { grid-template-columns: 1fr; }
  .quality__grid article,
  .quality__grid article + article { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .quality__grid h3 { margin-top: 24px; }

  .knowledge { padding: 100px 24px; }
  .knowledge__heading { grid-template-columns: 1fr; gap: 36px; }
  .knowledge h2 { margin-top: 64px; font-size: clamp(58px, 16vw, 90px); }
  .editorial { margin-top: 60px; }
  .editorial__list a { min-height: 160px; grid-template-columns: 42px 1fr; gap: 14px; }
  .editorial__list a > b { display: none; }

  .footer { padding-top: 100px; }
  .footer h2 { margin-top: 60px; font-size: clamp(66px, 18vw, 105px); }
  .footer__mail { gap: 20px; font-size: clamp(20px, 6vw, 34px); }
  .footer__mail span { width: 52px; height: 52px; flex: 0 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 50px 20px; }
  .footer__bottom { grid-template-columns: 1fr auto; }
  .footer__bottom span { display: none; }
}

@media (max-width: 460px) {
  .header-link--accent { display: none; }
  .site-header { grid-template-columns: 82px 1fr auto; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 58px); }
  .hero__title { top: 150px; }
  .hero__closing { bottom: 78px; }
  .route-story__copy { bottom: 224px; }
  .route-story__controls { bottom: 118px; }
  .route-story__timeline button { font-size: 7px; }
  .map-section h2,
  .production h2,
  .knowledge h2 { font-size: clamp(42px, 11.2vw, 52px); }
  .map-section--buyers h2 { font-size: clamp(38px, 10.2vw, 46px); }
  .map-stage__canvas { min-height: 390px; }
  .production__nav button { font-size: 8px; }
  .footer__mail { min-width: 0; gap: 12px; font-size: clamp(16px, 4.6vw, 20px); }
  .footer__mail span { width: 44px; height: 44px; }
  .footer__grid { grid-template-columns: 1fr; }
  .mobile-menu__actions { flex-direction: column; }
}

@media (max-height: 900px) and (min-width: 981px) {
  .route-story__top { top: 96px; }
  .route-story__copy { bottom: 118px; }
  .route-story h2 { font-size: clamp(58px, 7vw, 104px); }
  .route-story__copy > p:not(.eyebrow) { margin-top: 16px; }
  .route-story__copy small { margin-top: 13px; }
  .route-story__timeline { height: 92px; }
  .route-story__controls { bottom: 102px; }
  .map-section { padding-top: 100px; padding-bottom: 50px; }
  .map-stage { min-height: 450px; }
  .map-stage__canvas { min-height: 450px; }
  .production { min-height: 100svh; padding-top: 92px; padding-bottom: 34px; gap: clamp(42px, 6vw, 90px); }
  .production__intro .eyebrow { margin-top: 30px; }
  .production h2 { margin-top: 14px; font-size: clamp(54px, 5vw, 82px); }
  .production__copy > p { min-height: 48px; margin-top: 14px; font-size: 13px; }
  .production__nav { margin-top: 18px; }
  .production__nav button { padding-top: 8px; padding-bottom: 8px; }
  .production__visual { width: min(100%, 62vh, 620px); }

  .quality { min-height: 100svh; padding-top: 92px; padding-bottom: 36px; }
  .quality__top .eyebrow { margin-top: 32px; }
  .quality__top h2 { font-size: clamp(58px, 6vw, 88px); }
  .quality__top > p:last-child { margin-top: 14px; font-size: 14px; }
  .quality__route { margin-top: 22px; }
  .quality__grid { margin-top: 26px; }
  .quality__grid article { min-height: 166px; padding-top: 20px; }
  .quality__grid h3 { margin-top: 20px; font-size: 24px; }
  .quality__grid p { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__video { display: none; }
}
