:root {
  color-scheme: light;
  font-family: "Avenir Next", "PingFang SC", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17191c;
  background: #f5f7f9;
  --background: #f5f7f9;
  --surface: #ffffff;
  --ocean: #e8f6fa;
  --ocean-line: #acdce7;
  --sand: #efd38f;
  --shore: #af7d34;
  --ink: #17191c;
  --muted: #68717b;
  --line: #d9e0e5;
  --blue: #168db5;
  --green: #238f7b;
  --coral: #df6259;
  --violet: #7669b8;
  --story-height: clamp(680px, 86svh, 780px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: var(--page-progress, 0%);
  height: 2px;
  background: var(--blue);
  content: "";
  pointer-events: none;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.header-nav a {
  padding: 9px 0 6px;
  color: #40474f;
}

.header-link {
  border-bottom: 1px solid #929aa3;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 680px;
  height: 100svh;
  height: 100vh;
  overflow: hidden;
  align-items: center;
  padding: 104px 7vw 78px;
  border-bottom: 1px solid var(--line);
  background: var(--ocean);
}

#voyageCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(560px, 44vw);
  animation: hero-enter 760ms cubic-bezier(.2, .8, .2, 1) both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 88px;
  font-weight: 700;
  line-height: .96;
}

.hero-line {
  width: min(520px, 100%);
  margin: 28px 0 0;
  color: #3e464e;
  font-size: 20px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.download-grid {
  display: grid;
  width: min(570px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid currentColor;
  border-radius: 7px;
}

.hero-downloads {
  margin-top: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
}

.download-option {
  position: relative;
  display: grid;
  min-height: 58px;
  place-content: center;
  padding: 10px 14px;
  border-left: 1px solid currentColor;
  text-align: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.download-option:first-child {
  border-left: 0;
}

.download-option strong {
  font-size: 12px;
  font-weight: 720;
}

.download-option span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.hero-downloads .download-option:hover,
.hero-downloads .download-option.is-recommended {
  color: #ffffff;
  background: var(--ink);
}

.hero-downloads .download-option:hover span,
.hero-downloads .download-option.is-recommended span {
  color: #c9ced3;
}

.download-option:hover {
  transform: translateY(-2px);
}

.hero-voyage {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 47%;
  transform: translate(
    var(--route-shift-x, 0),
    var(--route-shift-y, 0)
  );
  pointer-events: none;
}

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

.hero-route-rail,
.hero-route-base,
.hero-route {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-route-rail {
  stroke: rgba(255, 255, 255, .94);
  stroke-width: 31;
  filter: drop-shadow(3px 4px 0 rgba(64, 103, 112, .2));
}

.hero-route-base {
  stroke-width: 21;
}

.hero-route-base-main {
  stroke: #b4dfe9;
  stroke-width: 22;
}

.hero-route-base-success {
  stroke: #b8ded2;
}

.hero-route-base-failure {
  stroke: #f0c5c1;
}

.hero-route {
  stroke-width: 21;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(1px 2px 0 rgba(54, 92, 101, .12));
}

.hero-route-main {
  stroke: #65b5cd;
  stroke-width: 22;
}

.hero-route-success {
  stroke: #67b99e;
}

.hero-route-failure {
  stroke: #e68a83;
}

.hero-channel-mark {
  color: var(--blue);
  opacity: .85;
}

.hero-channel-mark path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero-channel-mark circle {
  fill: #ffffff;
  stroke: color-mix(in srgb, currentColor 64%, transparent);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.mark-success {
  color: var(--green);
}

.mark-failure {
  color: var(--coral);
}

.hero-map-node circle:first-child {
  fill: #fffdf8;
  stroke: currentColor;
  stroke-width: 5;
  filter: drop-shadow(2px 3px 0 rgba(64, 103, 112, .2));
  vector-effect: non-scaling-stroke;
}

.hero-map-node circle:nth-child(2) {
  fill: currentColor;
}

.node-goal,
.node-branch {
  color: var(--blue);
}

.node-proof,
.node-experience {
  color: var(--green);
}

.node-failed {
  color: var(--coral);
  opacity: 0;
}

.hero-map-node path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero-reef {
  filter: drop-shadow(3px 4px 0 rgba(64, 103, 112, .22));
}

.hero-reef-outline {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 10;
  stroke-linejoin: round;
}

.hero-reef-rock {
  fill: #dd8c81;
  stroke: #28505d;
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.hero-reef-facet {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-impact {
  opacity: 0;
  fill: none;
  stroke: var(--coral);
  stroke-width: 4;
  stroke-linecap: round;
}

.hero-celebration {
  opacity: 0;
  pointer-events: none;
}

.celebration-ray {
  stroke: #f3bd4f;
  stroke-width: 3;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.celebration-ray:nth-child(3n + 2) {
  stroke: var(--green);
}

.celebration-ray:nth-child(3n) {
  stroke: var(--blue);
}

.celebration-piece {
  transform-box: fill-box;
  transform-origin: center;
}

.piece-gold {
  fill: #f3bd4f;
}

.piece-green {
  fill: var(--green);
}

.piece-blue {
  fill: var(--blue);
}

.piece-coral {
  fill: var(--coral);
}

.arrival-ring {
  opacity: 0;
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.arrival-ring-late {
  stroke: #ffffff;
}

.hero-vessel {
  filter: drop-shadow(3px 5px 0 rgba(64, 103, 112, .22));
}

.hero-vessel path {
  vector-effect: non-scaling-stroke;
}

.hero-vessel-bob {
  animation: hero-boat-bob 1.9s ease-in-out infinite;
}

.vessel-sticker {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vessel-wake {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
}

.vessel-mast {
  fill: none;
  stroke: #176f89;
  stroke-width: 2;
  stroke-linecap: round;
}

.vessel-sail {
  fill: #f3bd4f;
  stroke: #af7d34;
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.vessel-hull {
  fill: var(--blue);
  stroke: #176f89;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.route-note {
  color: var(--ink);
  opacity: .38;
  transition: opacity 220ms ease;
}

.route-note.is-current {
  opacity: 1;
}

.route-note-leader {
  fill: none;
  stroke: #52656d;
  stroke-width: 1.25;
  stroke-dasharray: 4 5;
  opacity: .48;
  transition:
    opacity 220ms ease,
    stroke 220ms ease;
  vector-effect: non-scaling-stroke;
}

.route-note.is-current .route-note-leader {
  stroke: var(--blue);
  opacity: 1;
}

.route-note text {
  letter-spacing: 0;
}

.route-note-number {
  fill: var(--blue);
  font: 10px ui-monospace, "SFMono-Regular", monospace;
}

.route-note-title {
  fill: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

.route-note-copy {
  fill: var(--muted);
  font-size: 11px;
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 11px;
}

.hero-status span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(35, 143, 123, .12);
}

.story-section {
  height: var(--story-height);
  min-height: 680px;
}

.workflow,
.evidence {
  position: relative;
  display: grid;
  padding: 92px 8vw;
  align-items: center;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: 8vw;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.local-copy h2,
.final-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: 48px;
  font-weight: 620;
  line-height: 1.12;
}

.section-intro {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.flow-list {
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-list::before,
.flow-list::after {
  position: absolute;
  top: 0;
  left: 23px;
  width: 1px;
  content: "";
}

.flow-list::before {
  bottom: 0;
  background: var(--line);
}

.flow-list::after {
  height: calc(var(--workflow-progress, 0) * 100%);
  background: var(--blue);
}

.flow-list li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 126px;
  padding: 27px 0;
  align-items: center;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.flow-list > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: var(--background);
  font: 11px ui-monospace, "SFMono-Regular", monospace;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.flow-list li.is-active > span {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.flow-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.flow-list p,
.local-copy > p,
.evidence-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.local-band {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 38px 3vw;
  align-items: center;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
  gap: 3vw;
  color: #f7f8fa;
  background: #171a1e;
}

.local-band::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 540px;
  height: 540px;
  border: 1px solid #37434a;
  border-radius: 50%;
  content: "";
  opacity: .55;
}

.product-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: 1px solid #3a4148;
  border-radius: 8px;
  background: #202a30;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.product-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  content: "";
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.product-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 5px;
  color: #eef2f4;
  background: rgba(23, 26, 30, .82);
  font-size: 9px;
}

.local-copy {
  position: relative;
  z-index: 2;
}

.local-copy h2 {
  font-size: 40px;
}

.local-copy .eyebrow {
  color: #99a1aa;
}

.local-copy > p {
  max-width: 520px;
  margin-top: 24px;
  color: #b9c0c7;
  font-size: 15px;
}

.local-copy code {
  color: #ffffff;
  font: 13px ui-monospace, "SFMono-Regular", monospace;
}

.fact-line {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 0;
  color: #e5e8ea;
  font-size: 11px;
}

.fact-line span {
  padding: 0 13px;
  border-left: 1px solid #4b5158;
}

.fact-line span:first-child {
  padding-left: 0;
  border-left: 0;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid #777f88;
  color: #ffffff;
  font-size: 12px;
}

.evidence {
  background: #ffffff;
}

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

.evidence-lines > div {
  display: grid;
  min-height: 116px;
  padding: 24px 0;
  align-items: center;
  grid-template-columns: 92px 128px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease;
}

.route-sample {
  position: relative;
  display: block;
  width: 74px;
  height: 4px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(var(--line-progress, .22));
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(.2, .8, .2, 1);
}

.visible .route-sample {
  --line-progress: 1;
}

.route-sample::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 9px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: inherit;
  transform: translate(50%, -50%);
  content: "";
}

.route-sample.failed {
  height: 0;
  border-top: 2px dashed var(--coral);
  background: none;
}

.route-sample.failed::after {
  background: var(--coral);
}

.route-sample.conflict {
  background: var(--violet);
}

.evidence-lines strong {
  font-size: 13px;
}

.final-cta {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  padding: 70px 24px 126px;
  color: #f8fafb;
  text-align: center;
  background: #171a1e;
}

.final-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .62;
}

.final-route path,
.final-route circle {
  vector-effect: non-scaling-stroke;
}

.final-route-shadow {
  fill: none;
  stroke: #343a40;
  stroke-width: 14;
}

.final-route-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 13 16;
  animation: final-route-move 2.667s linear infinite;
}

.final-route circle {
  fill: #171a1e;
  stroke: var(--green);
  stroke-width: 4;
}

.final-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(940px, 100%);
  justify-items: center;
}

.final-copy .eyebrow {
  color: #9ba3ab;
}

.final-copy h2 {
  max-width: 880px;
  font-size: 62px;
}

.final-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b9c0c7;
  font-size: 15px;
  line-height: 1.65;
}

.final-downloads {
  width: min(760px, 100%);
  margin-top: 38px;
  color: #dce2e6;
}

.final-downloads .download-option {
  min-height: 88px;
  border-color: #3a4148;
}

.final-downloads .download-option:hover,
.final-downloads .download-option.is-recommended {
  color: #171a1e;
  background: #f8fafb;
}

.final-downloads .download-option span {
  color: #9ba3ab;
}

.final-downloads .download-option:hover span,
.final-downloads .download-option.is-recommended span {
  color: #5d6670;
}

.final-meta {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 0;
  left: 36px;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #ffffff;
  font-size: 11px;
}

.final-meta .footer-links {
  display: flex;
  gap: 20px;
}

.final-meta a {
  padding: 10px 0;
  color: #ffffff;
}

footer {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--background);
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

footer a {
  padding: 10px 0;
}

.document-page {
  background: var(--surface);
}

.document-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.document {
  width: min(760px, calc(100% - 40px));
  min-height: calc(100svh - 156px);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.document h1 {
  font-size: 72px;
}

.document-lead {
  max-width: 650px;
  margin: 28px 0 72px;
  color: #3f454c;
  font-size: 20px;
  line-height: 1.6;
}

.document section {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.document section:last-child {
  border-bottom: 1px solid var(--line);
}

.document section h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 680;
}

.document section p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.document code {
  color: var(--ink);
  font: 12px ui-monospace, "SFMono-Regular", monospace;
}

.document-updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.reveal {
  opacity: .66;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(.2, .8, .2, 1),
    transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-boat-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes final-route-move {
  to {
    stroke-dashoffset: -58;
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    width: min(500px, 48vw);
  }

  h1 {
    font-size: 76px;
  }

  .hero-line {
    font-size: 18px;
  }

  .hero-voyage {
    left: 46%;
  }

  .workflow,
  .evidence {
    gap: 5vw;
  }

  .local-band {
    grid-template-columns: minmax(0, 2.4fr) minmax(260px, 1fr);
    gap: 3vw;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 62px;
    padding: 0 18px;
  }

  .header-nav > a:not(.header-link) {
    display: none;
  }

  .hero {
    min-height: 560px;
    height: 100svh;
    height: 100vh;
    padding: 104px 20px 74px;
    align-items: end;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: 56px;
  }

  .hero-line {
    max-width: 480px;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-downloads {
    width: min(100%, 430px);
    margin-top: 24px;
  }

  .hero-voyage {
    top: 58px;
    right: 5%;
    bottom: 50%;
    left: 5%;
    opacity: 1;
  }

  .hero-vessel > g {
    transform: translate(0, -8px) scale(3.3);
  }

  .hero-map-node circle:first-child {
    stroke-width: 3;
  }

  .hero-route-rail {
    stroke-width: 23;
  }

  .hero-route {
    stroke-width: 16;
  }

  .hero-route-base {
    stroke-width: 16;
  }

  .hero-route-main {
    stroke-width: 17;
  }

  .hero-route-base-main {
    stroke-width: 17;
  }

  .route-note {
    display: none;
  }

  .hero-status {
    right: 20px;
    bottom: 18px;
    left: 20px;
    justify-content: flex-start;
  }

  .hero-status span:nth-child(n + 2) {
    display: none;
  }

  .story-section {
    height: auto;
    min-height: 680px;
  }

  .workflow,
  .evidence {
    padding: 72px 20px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading h2,
  .local-copy h2 {
    font-size: 38px;
  }

  .flow-list li {
    min-height: 110px;
  }

  .local-band {
    padding: 66px 20px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-visual {
    width: min(100%, 760px);
    justify-self: center;
  }

  .local-copy {
    order: -1;
  }

  .evidence-lines > div {
    min-height: 106px;
    grid-template-columns: 80px 1fr;
  }

  .evidence-lines p {
    grid-column: 2;
  }

  .final-cta {
    min-height: 680px;
    padding-bottom: 112px;
  }

  .final-copy h2 {
    font-size: 46px;
  }

  .final-downloads {
    max-width: 430px;
    grid-template-columns: 1fr;
  }

  .final-downloads .download-option {
    min-height: 70px;
    border-top: 1px solid #3a4148;
    border-left: 0;
  }

  .final-downloads .download-option:first-child {
    border-top: 0;
  }

  .document {
    padding: 64px 0 90px;
  }

  .document h1 {
    font-size: 54px;
  }

  .document-lead {
    margin-bottom: 50px;
    font-size: 17px;
  }

  .document section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  footer {
    padding: 0 20px;
  }

  .final-meta {
    right: 20px;
    left: 20px;
  }
}

@media (min-width: 560px) and (max-width: 900px) and (max-height: 600px) {
  .hero {
    min-height: 360px;
    padding-top: 76px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-line {
    max-width: 520px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-downloads {
    width: min(100%, 540px);
    margin-top: 18px;
  }

  .download-option {
    min-height: 52px;
  }

  .download-option span {
    margin-top: 1px;
  }

  .hero-voyage {
    top: 22px;
    right: -2%;
    bottom: 12%;
    left: 56%;
    opacity: .86;
  }

  .hero-status {
    bottom: 9px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 0;
    padding-bottom: 36px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    min-width: 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-line {
    font-size: 14px;
  }

  .hero-voyage {
    right: 4%;
    bottom: 50%;
    left: 4%;
  }

  .hero-status {
    display: none;
  }

  .section-heading h2,
  .local-copy h2 {
    font-size: 34px;
  }

  .final-copy h2 {
    font-size: 40px;
  }

  .hero-downloads {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-downloads .download-option {
    min-width: 0;
    padding: 8px 4px;
  }

  .fact-line {
    display: grid;
    gap: 7px;
  }

  .fact-line span {
    padding: 0;
    border-left: 0;
  }

  .final-meta {
    min-height: 66px;
    gap: 12px;
    font-size: 10px;
  }

  .final-meta .footer-links {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .hero-route,
  .hero-vessel,
  .hero-vessel-bob,
  .hero-channel-mark,
  .node-experience,
  .route-note,
  .hero-celebration,
  .final-route-line {
    animation: none;
  }

  .hero-route {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .route-note {
    opacity: .72;
  }

  .hero-celebration {
    display: none;
  }

  .route-sample {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-visual {
    transform: none;
    transition: none;
  }
}
