.atlas-section {
  overflow: clip;
  background: #e7ecee;
  color: #14222d;
}

.atlas-section .section-index { color: #294e75; }
.atlas-section .section-lead { color: #4b5a63; }

.atlas-live {
  --atlas-ink: #102333;
  --atlas-blue: #173f74;
  --atlas-sea: #4f7061;
  --atlas-signal: #9aaa3d;
  --atlas-paper: #f2f5f4;
  position: relative;
  isolation: isolate;
  margin-top: 42px;
  border: 1px solid #aeb9bd;
  background: #dce3e5;
  box-shadow: 0 24px 70px rgb(16 35 51 / 12%);
}

.atlas-live::before,
.atlas-live::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--atlas-blue);
  opacity: .08;
}

.atlas-live::before { top: 0; right: 17%; width: 1px; height: 100%; }
.atlas-live::after { top: 57%; left: 0; width: 100%; height: 1px; }

.atlas-live__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid #aeb9bd;
  background: rgb(242 245 244 / 92%);
}

.atlas-live__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #3d4c55;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.atlas-live__label::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--atlas-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(23 63 116 / 12%);
}

.atlas-live__modes { display: flex; gap: 6px; }

.atlas-mode {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #9da9ad;
  border-radius: 0;
  background: transparent;
  color: var(--atlas-ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.atlas-mode[aria-pressed="true"] {
  border-color: var(--atlas-blue);
  background: var(--atlas-blue);
  color: #fff;
}

.atlas-live__shell { display: grid; }

.atlas-live__intro {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid #aeb9bd;
  background: #cfd8db;
}

.atlas-live__portrait {
  position: relative;
  min-height: 154px;
  margin: 0;
  background: var(--atlas-ink);
}

.atlas-live__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 52% center;
}

.atlas-live__portrait::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 42%;
  height: 35%;
  border-right: 6px solid var(--atlas-signal);
  border-bottom: 6px solid var(--atlas-signal);
  pointer-events: none;
}

.atlas-live__intro-copy { align-self: end; }
.atlas-live__intro-copy .micro-label { color: var(--atlas-blue); }
.atlas-live__intro-copy h3 {
  margin: 5px 0 9px;
  font-family: var(--serif);
  font-size: clamp(25px, 7vw, 36px);
  font-weight: 400;
  line-height: 1;
}
.atlas-live__intro-copy p { margin: 0; color: #4a5961; font-size: 13px; }

.atlas-live__map {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 22px 0 18px;
  background: var(--atlas-paper);
  touch-action: pan-y;
}

.atlas-live__map:focus-visible { outline-offset: -5px; }

.atlas-live__routes,
.atlas-live__hub { display: none; }

.atlas-live__nodes {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 7px 18px 20px;
  scroll-padding-inline: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.atlas-node {
  --node-color: var(--atlas-blue);
  position: relative;
  flex: 0 0 132px;
  display: grid;
  min-height: 132px;
  place-content: center;
  scroll-snap-align: center;
  padding: 18px 12px;
  border: 1px solid #9ba9ae;
  border-radius: 50%;
  background: #f8faf9;
  color: var(--atlas-ink);
  box-shadow: 0 10px 20px rgb(16 35 51 / 8%);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, transform .25s ease, opacity .25s ease;
}

.atlas-node::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--node-color);
  border-radius: inherit;
  opacity: .35;
}

.atlas-node[data-node="technology"],
.atlas-node[data-node="travel"] { --node-color: var(--atlas-sea); }
.atlas-node[data-node="innovation"],
.atlas-node[data-node="hospitality"] { --node-color: #718127; }

.atlas-node__index {
  display: block;
  margin-bottom: 8px;
  color: var(--node-color);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.atlas-node strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
}

.atlas-node[aria-pressed="true"] {
  border-color: var(--atlas-blue);
  background: var(--atlas-ink);
  color: #fff;
  box-shadow: 0 14px 28px rgb(16 35 51 / 22%);
}

.atlas-node[aria-pressed="true"]::after { border-color: var(--atlas-signal); opacity: .8; }
.atlas-node:not(.is-in-time) { opacity: .68; }

.atlas-live__mobile-hint {
  margin: 0;
  padding: 0 18px;
  color: #5a686f;
  font-size: 11px;
}

.atlas-story {
  display: grid;
  align-content: start;
  gap: 15px;
  min-width: 0;
  padding: 22px 18px 26px;
  border-top: 1px solid #aeb9bd;
  background: #eef2f1;
}

.atlas-story__media { margin: 0; }
.atlas-story__media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #dce3e5;
  filter: saturate(.85) contrast(.97);
}
.atlas-story__media figcaption { margin-top: 7px; color: #59666c; font-size: 10px; line-height: 1.35; }
.atlas-story__kicker { margin: 0; color: var(--atlas-blue); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.atlas-story h3 { margin: -3px 0 0; font-family: var(--serif); font-size: clamp(25px, 7vw, 35px); font-weight: 400; line-height: 1; }
.atlas-story__copy { margin: 0; color: #42515a; font-size: 13px; }
.atlas-story__keywords { display: flex; flex-wrap: wrap; gap: 6px; }
.atlas-story__keywords span {
  padding: 5px 8px;
  border: 1px solid #aeb9bd;
  background: #f8faf9;
  color: #33454f;
  font-size: 10px;
  line-height: 1.15;
}

.atlas-time {
  padding: 20px 18px 22px;
  border-top: 1px solid #aeb9bd;
  background: #d3dcde;
}

.atlas-time__heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
  color: #46565e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atlas-time__heading span:last-child { color: var(--atlas-blue); }

.atlas-time__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 5px 0 9px;
  scrollbar-width: thin;
}

.atlas-stage {
  position: relative;
  flex: 1 0 132px;
  min-height: 54px;
  padding: 27px 10px 7px;
  border: 0;
  border-top: 2px solid #9ba8ac;
  background: transparent;
  color: #44545c;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  text-align: left;
}

.atlas-stage::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 1px solid #7e8d92;
  border-radius: 50%;
  background: #d3dcde;
}

.atlas-stage[aria-current="step"] { border-top-color: var(--atlas-blue); color: var(--atlas-blue); font-weight: 700; }
.atlas-stage[aria-current="step"]::before { border-color: var(--atlas-blue); background: var(--atlas-signal); box-shadow: 0 0 0 4px rgb(154 170 61 / 20%); }

.atlas-live__instruction {
  margin: 0;
  padding: 0 18px 18px;
  background: #d3dcde;
  color: #45545b;
  font-size: 11px;
}

.atlas-context--live { margin-top: 22px; }
.atlas-context--live .atlas-legend i.node { width: 12px; height: 12px; border: 1px solid var(--atlas-blue); border-radius: 50%; background: transparent; }

@media (min-width: 760px) {
  .atlas-live__shell { grid-template-columns: 205px minmax(0, 1fr); }
  .atlas-live__intro { grid-template-columns: 1fr; align-content: stretch; border-right: 1px solid #aeb9bd; border-bottom: 0; }
  .atlas-live__portrait { min-height: 322px; }
  .atlas-live__intro-copy h3 { font-size: 31px; }
  .atlas-live__map { min-height: 510px; padding: 0; perspective: 900px; }
  .atlas-live__routes {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    transform: translate3d(var(--atlas-pan-x, 0), var(--atlas-pan-y, 0), 0) rotateX(var(--atlas-tilt-y, 0deg)) rotateY(var(--atlas-tilt-x, 0deg));
    transform-origin: center;
    transition: transform .25s ease;
  }
  .atlas-route {
    fill: none;
    stroke: #85949a;
    stroke-width: 1.35;
    stroke-dasharray: 3 7;
    opacity: .35;
    vector-effect: non-scaling-stroke;
    transition: opacity .35s ease, stroke .35s ease, stroke-width .35s ease;
  }
  .atlas-route--main { stroke-dasharray: none; stroke-width: 2.1; }
  .atlas-route.is-in-time { stroke: var(--atlas-blue); opacity: .8; }
  .atlas-route.is-selected { stroke: var(--atlas-signal); stroke-width: 3.4; opacity: 1; }
  .atlas-live__nodes { display: block; overflow: visible; padding: 0; }
  .atlas-node {
    position: absolute;
    z-index: 4;
    top: var(--node-y);
    left: var(--node-x);
    width: clamp(92px, 11vw, 116px);
    min-height: clamp(92px, 11vw, 116px);
    padding: 13px 9px;
    transform: translate(calc(-50% + var(--node-shift-x, 0px)), calc(-50% + var(--node-shift-y, 0px)));
  }
  .atlas-node:hover { transform: translate(calc(-50% + var(--node-shift-x, 0px)), calc(-50% + var(--node-shift-y, 0px))) scale(1.045); }
  .atlas-node strong { font-size: clamp(14px, 1.55vw, 18px); }
  .atlas-live__hub {
    position: absolute;
    z-index: 3;
    top: 51%;
    left: 50%;
    display: grid;
    width: clamp(150px, 20vw, 205px);
    min-height: clamp(118px, 15vw, 150px);
    place-content: center;
    padding: 22px;
    border: 7px solid var(--atlas-paper);
    background: var(--atlas-ink);
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 17px 35px rgb(16 35 51 / 18%);
  }
  .atlas-live__hub::before {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -1;
    border: 1px solid var(--atlas-signal);
    transform: rotate(-3deg);
  }
  .atlas-live__hub small { color: #bdc9cc; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
  .atlas-live__hub strong { margin-top: 7px; font-family: var(--serif); font-size: clamp(17px, 2vw, 23px); font-weight: 400; line-height: 1.05; }
  .atlas-live__mobile-hint { display: none; }
  .atlas-story { grid-column: 1 / -1; grid-template-columns: minmax(180px, 260px) minmax(0, 1fr); border-top: 1px solid #aeb9bd; }
  .atlas-story__media { grid-row: 1 / span 5; }
  .atlas-story__media img { aspect-ratio: auto; }
  .atlas-story h3 { font-size: 32px; }
}

@media (min-width: 1180px) {
  .atlas-live__shell { grid-template-columns: 228px minmax(0, 1fr) 286px; }
  .atlas-live__intro { min-height: 590px; }
  .atlas-live__portrait { min-height: 402px; }
  .atlas-live__map { min-height: 590px; }
  .atlas-story { grid-column: auto; grid-template-columns: 1fr; border-top: 0; border-left: 1px solid #aeb9bd; }
  .atlas-story__media { grid-row: auto; }
  .atlas-story__media img { aspect-ratio: auto; }
  .atlas-story h3 { font-size: 30px; }
  .atlas-time { padding-inline: 28px; }
  .atlas-stage { flex-basis: 0; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 760px) {
  .atlas-live__routes { transform: none !important; }
  .atlas-node,
  .atlas-node:hover { transform: translate(-50%, -50%) !important; }
}

@media (max-width: 759px) {
  .atlas-section { padding-top: 58px; }
  .atlas-live { margin-inline: -16px; border-right: 0; border-left: 0; }
  .atlas-live__toolbar { align-items: flex-start; }
  .atlas-live__modes { width: 100%; }
  .atlas-mode { flex: 1; }
  .atlas-node:not(.is-in-time) { opacity: .75; }
  .atlas-time__heading { display: block; }
  .atlas-time__heading span { display: block; }
  .atlas-time__heading span:last-child { margin-top: 3px; }
}
