.node-hero {
  position: relative;
  padding-top: 76px;
  padding-bottom: 78px;
  overflow-x: clip;
}

.node-hero::before {
  position: absolute;
  top: 3%;
  right: 4%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle, rgba(var(--rgb-accent), .16), rgba(var(--rgb-accent), 0) 68%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.node-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.node-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.node-hero-copy .eyebrow {
  box-shadow: inset 0 0 0 1px rgba(var(--rgb-white), .9), var(--shadow-card);
}

.node-hero-copy .eyebrow svg {
  color: var(--color-accent-dark);
}

.node-hero-title {
  max-width: 660px;
  margin-top: 20px;
  font-size: clamp(52px, 5vw, 66px);
}

.node-hero-title .no-break {
  background-image: linear-gradient(transparent 64%, rgba(var(--rgb-accent), .48) 64%, rgba(var(--rgb-accent), .48) 91%, transparent 91%);
  background-repeat: no-repeat;
}

.node-hero-lede {
  max-width: 620px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.node-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.node-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.node-trust svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--color-success);
}

.node-atlas {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(rgba(var(--rgb-text), .065) .55px, transparent .8px),
    linear-gradient(150deg, var(--color-card-start), var(--color-panel));
  background-size: 13px 13px, 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(var(--rgb-white), .92), var(--shadow-panel);
  transform: rotate(-1.5deg) translateY(-5px);
}

.node-atlas::after {
  position: absolute;
  right: -12%;
  bottom: -20%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: var(--radius-pill);
  background: rgba(var(--rgb-accent), .11);
  content: "";
  filter: blur(34px);
  pointer-events: none;
}

.node-atlas-chrome {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: .06em;
}

.node-atlas-dots {
  display: inline-flex;
  gap: 5px;
}

.node-atlas-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel-soft);
}

.node-atlas-state {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding-inline: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-text);
  font-weight: 750;
  letter-spacing: 0;
}

.node-atlas-state i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: var(--radius-pill);
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(var(--rgb-success), .13);
}

.node-atlas-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atlas-band {
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-opacity: .13;
  stroke-width: 94;
}

.atlas-route,
.atlas-route-branch {
  fill: none;
  stroke: var(--color-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-opacity: .72;
  stroke-width: 3;
}

.atlas-route-branch {
  stroke-dasharray: 7 9;
  stroke-opacity: .42;
  stroke-width: 2;
}

.atlas-node {
  fill: var(--color-panel);
  stroke: var(--color-text);
  stroke-width: 3;
}

.atlas-origin {
  fill: var(--color-accent);
  stroke: var(--color-text);
  stroke-width: 3;
}

.atlas-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding-inline: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  box-shadow: 0 5px 12px -7px rgba(var(--rgb-text), .22);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.atlas-label-origin {
  top: 76%;
  left: 7%;
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-panel);
}

.atlas-label-hk {
  top: 67%;
  left: 23%;
}

.atlas-label-tokyo {
  top: 56%;
  left: 39%;
}

.atlas-label-sg {
  top: 46%;
  left: 54%;
}

.atlas-label-la {
  top: 35%;
  left: 67%;
}

.atlas-label-frankfurt {
  top: 26%;
  left: 81%;
}

.atlas-label-london {
  top: 15%;
  left: 93%;
}

.atlas-label-sydney {
  top: 76%;
  left: 69%;
}

.atlas-label-dubai {
  top: 56%;
  left: 91%;
}

.node-atlas-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 14px;
  max-width: 330px;
  color: var(--color-text-muted);
  font-size: 11px;
  text-align: right;
}

.node-facts {
  position: relative;
  padding-top: 8px;
  padding-bottom: 12px;
}

.node-facts-inner {
  display: grid;
  grid-template-columns: .72fr .72fr .9fr 1.66fr;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-panel);
  box-shadow: inset 0 0 0 1px rgba(var(--rgb-white), .9), var(--shadow-panel);
}

.node-fact {
  display: flex;
  min-width: 0;
  min-height: 98px;
  justify-content: center;
  flex-direction: column;
  padding: 20px 26px;
}

.node-fact + .node-fact {
  border-left: 1px solid var(--color-border);
}

.node-fact strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.node-fact span {
  margin-top: 5px;
  color: var(--color-text-muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.route-kind,
.stream-state {
  display: inline-flex;
  max-width: 100%;
  min-height: 27px;
  align-items: center;
  padding-inline: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-panel-soft);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.stream-state {
  background: var(--color-panel);
  color: var(--color-text-muted);
}

.stream-state.is-supported {
  border-color: var(--color-success);
  color: var(--color-success);
}

.node-table-note {
  margin-top: 24px;
}

.route-types {
  background: linear-gradient(180deg, rgba(var(--rgb-accent), .035), rgba(var(--rgb-accent), 0));
}

.route-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.route-type-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-panel);
  box-shadow: inset 0 0 0 1px rgba(var(--rgb-white), .9), var(--shadow-card);
  transform-style: preserve-3d;
}

.route-type-card::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border-right: 1px solid rgba(var(--rgb-accent), .52);
  border-bottom: 1px solid rgba(var(--rgb-accent), .52);
  content: "";
  pointer-events: none;
}

.route-type-featured {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(var(--rgb-accent), .22), 0 25px 54px -22px rgba(var(--rgb-accent), .34), var(--shadow-card);
}

.route-type-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.route-type-heading h3 {
  margin-top: 2px;
  font-size: 23px;
}

.route-type-kicker {
  color: var(--color-accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.route-type-card > p {
  margin-top: 18px;
}

.route-type-card > p + p {
  margin-top: 13px;
}

.route-type-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.route-type-footer strong {
  font-size: 13px;
}

.selection-guide {
  overflow-x: clip;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.usage-card {
  position: relative;
  min-width: 0;
  padding: 30px 30px 30px 88px;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(90deg, rgba(var(--rgb-accent), .08), rgba(var(--rgb-accent), 0) 54%);
}

.usage-card:nth-child(even) {
  transform: translateY(26px);
}

.usage-card:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);
  margin-inline: auto;
  transform: translateY(26px);
}

.usage-icon {
  position: absolute;
  top: 30px;
  left: 28px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius-small);
  background: var(--color-text);
  color: var(--color-accent);
}

.usage-icon svg {
  width: 22px;
  height: 22px;
}

.usage-card h3 {
  font-size: 22px;
}

.usage-card p {
  margin-top: 12px;
}

.route-method {
  background: var(--color-panel-soft);
}

.route-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 62px;
  align-items: start;
}

.route-method-copy h2 {
  margin-top: 18px;
}

.route-method-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.route-checklist {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.route-checklist h3 {
  font-size: 24px;
}

.route-checklist ul {
  display: grid;
  gap: 0;
  margin-top: 20px;
  list-style: none;
}

.route-checklist li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-top: 1px solid var(--color-border);
}

.route-checklist li::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(var(--rgb-accent), .14);
  content: "";
}

.route-checklist strong,
.route-checklist span {
  display: block;
}

.route-checklist span {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.node-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
}

.node-faq-head {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  margin-bottom: 0;
}

.node-faq-head h2 {
  margin-top: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .route-type-card {
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .route-type-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(var(--rgb-white), .9), 0 26px 50px -20px rgba(var(--rgb-text), .18), 0 22px 46px -20px rgba(var(--rgb-accent), .2);
  }
}

@media (max-width: 1060px) {
  .node-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: 34px;
  }

  .node-hero-title {
    font-size: 52px;
  }

  .atlas-label-frankfurt {
    left: 78%;
  }

  .atlas-label-london {
    left: 88%;
  }

  .atlas-label-dubai {
    left: 87%;
  }

  .route-type-grid {
    grid-template-columns: 1fr;
  }

  .route-method-grid {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .node-hero {
    padding-top: 52px;
  }

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

  .node-hero-copy {
    max-width: 720px;
  }

  .node-atlas {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    transform: none;
  }

  .node-facts-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .node-fact + .node-fact {
    border-left: 0;
  }

  .node-fact:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }

  .node-fact:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .route-method-grid,
  .node-faq-layout {
    grid-template-columns: 1fr;
  }

  .route-checklist,
  .node-faq-head {
    position: static;
  }

  .node-faq-head {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .node-hero-title {
    font-size: 40px;
  }

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

  .usage-card:nth-child(even),
  .usage-card:last-child {
    transform: none;
  }

  .usage-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .node-hero {
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .node-hero::before {
    right: -18%;
    width: 90vw;
    max-width: 100%;
  }

  .node-hero-title {
    font-size: 38px;
  }

  .node-hero-lede {
    font-size: 15px;
  }

  .node-atlas {
    aspect-ratio: 3 / 4;
  }

  .node-atlas-map {
    transform: rotate(15deg) scale(1.14);
  }

  .node-atlas-note {
    right: 14px;
    left: 14px;
    max-width: none;
    text-align: left;
  }

  .atlas-label-origin {
    top: 78%;
    left: 15%;
  }

  .atlas-label-hk {
    top: 67%;
    left: 31%;
  }

  .atlas-label-tokyo {
    top: 56%;
    left: 42%;
  }

  .atlas-label-sg {
    top: 46%;
    left: 51%;
  }

  .atlas-label-la {
    top: 36%;
    left: 61%;
  }

  .atlas-label-frankfurt {
    top: 26%;
    left: 67%;
  }

  .atlas-label-london {
    top: 17%;
    left: 71%;
  }

  .atlas-label-sydney {
    top: 70%;
    left: 76%;
  }

  .atlas-label-dubai {
    top: 49%;
    left: 78%;
  }

  .node-facts-inner {
    grid-template-columns: 1fr;
  }

  .node-fact {
    min-height: 82px;
    padding: 16px 20px;
  }

  .node-fact:nth-child(even) {
    border-left: 0;
  }

  .node-fact + .node-fact,
  .node-fact:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .route-type-card {
    padding: 22px;
  }

  .usage-card {
    padding: 24px 20px 24px 72px;
  }

  .usage-icon {
    top: 24px;
    left: 18px;
  }

  .route-method-copy p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .atlas-label {
    padding-inline: 7px;
    font-size: 10px;
  }

  .atlas-label-frankfurt {
    left: 62%;
  }

  .atlas-label-london {
    left: 65%;
  }

  .atlas-label-sydney {
    left: 72%;
  }

  .atlas-label-dubai {
    left: 73%;
  }

  .node-atlas-chrome {
    right: 12px;
    left: 12px;
  }

  .node-atlas-chrome > .mono {
    display: none;
  }
}