.nodes-hero {
  overflow: clip;
  border-bottom: 1px solid var(--color-line);
}

.nodes-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  min-height: 590px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.nodes-hero-copy {
  min-width: 0;
}

.nodes-hero-copy h1 {
  max-width: 9em;
  margin-top: 20px;
}

.nodes-hero-lead {
  max-width: 40em;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.85;
}

.nodes-hero-actions {
  margin-top: 26px;
}

.nodes-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.nodes-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.nodes-trust svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 1.8;
  color: var(--color-accent);
}

.nodes-route-art {
  min-width: 0;
}

.route-paper {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background-color: var(--color-panel-soft);
  background-image:
    radial-gradient(var(--color-dot) 1px, transparent 1.3px),
    linear-gradient(145deg, var(--color-panel), var(--color-panel-soft));
  background-size: 27px 27px, auto;
  box-shadow: var(--shadow-card);
}

.route-paper::after {
  position: absolute;
  right: 10%;
  bottom: 9%;
  left: 10%;
  height: 14%;
  border-radius: var(--radius-pill);
  background: var(--color-ink-10);
  filter: blur(18px);
  content: "";
}

.route-paper svg {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 430px;
  color: var(--color-text);
}

.route-shadow {
  fill: none;
  stroke: var(--color-ink-16);
  stroke-width: 38;
  stroke-linecap: round;
  transform: translateY(18px);
}

.route-line {
  fill: none;
  stroke-width: 34;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-line-amber {
  stroke: var(--color-amber);
}

.route-line-coral {
  stroke: var(--color-coral);
}

.route-line-teal {
  stroke: var(--color-accent);
}

.route-highlight {
  fill: none;
  stroke: var(--color-panel);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: .75;
}

.route-node circle:first-child {
  fill: var(--color-text);
}

.route-node-core {
  fill: var(--color-panel-soft);
}

.route-label {
  fill: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.region-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  font-size: 12px;
  font-weight: 800;
}

.region-chip-apac {
  top: 16%;
  left: 8%;
}

.region-chip-na {
  top: 10%;
  left: 43%;
}

.region-chip-eu {
  right: 8%;
  bottom: 27%;
}

.region-chip-more {
  bottom: 9%;
  left: 31%;
}

.coverage-ledger {
  display: grid;
  grid-template-columns: .8fr 1.4fr .8fr;
  gap: 16px;
}

.coverage-fact {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.coverage-fact-wide {
  background: var(--color-panel-warm);
}

.coverage-value {
  display: block;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.coverage-value-text {
  font-family: var(--font-display);
  font-size: 31px;
}

.coverage-fact h3 {
  font-size: 21px;
}

.coverage-fact p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.nodes-directory {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-panel-warm);
}

.nodes-table td {
  min-width: 145px;
}

.nodes-table td:last-child {
  min-width: 190px;
  color: var(--color-muted);
}

.route-kind {
  display: inline-flex;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  padding: 3px 10px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--color-accent-12);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.table-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.route-type-layout {
  display: grid;
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 16px;
}

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

.route-type-main {
  background: var(--color-panel-warm);
}

.route-type-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.route-type-index {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.route-type-head svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--color-accent);
  stroke-width: 1.7;
}

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

.route-type-card p {
  color: var(--color-muted);
  font-size: 14px;
}

.route-type-card p:last-child {
  margin-bottom: 0;
}

.cost-note {
  margin-top: 16px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-panel-soft);
  box-shadow: var(--shadow-card);
}

.cost-note h3 {
  font-size: 22px;
}

.cost-note p {
  color: var(--color-muted);
}

.cost-note p:last-child {
  margin-bottom: 0;
}

.selection-section {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-panel-soft);
}

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

.selection-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}

.selection-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.selection-card-wide {
  grid-column: 1 / -1;
}

.selection-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-small);
  background: var(--color-accent-12);
  color: var(--color-accent);
}

.selection-mark svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

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

.selection-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.selection-card p + p {
  margin-top: 14px;
}

.route-workflow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}

.route-workflow li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding-bottom: 28px;
  counter-increment: route-step;
}

.route-workflow li::before {
  position: relative;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-accent);
  content: counter(route-step);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
}

.route-workflow li::after {
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 21px;
  width: 1px;
  background: var(--color-line);
  content: "";
}

.route-workflow li:last-child {
  padding-bottom: 0;
}

.route-workflow li:last-child::after {
  display: none;
}

.route-workflow h3 {
  margin-bottom: 7px;
  font-size: 21px;
}

.route-workflow p {
  max-width: 58em;
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.practical-card {
  padding: 25px;
}

.practical-card-wide {
  grid-column: span 2;
  background: var(--color-panel-warm);
}

.practical-card h3 {
  font-size: 20px;
}

.practical-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .nodes-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .nodes-hero-copy h1 {
    max-width: none;
  }

  .route-paper {
    min-height: 400px;
  }

  .coverage-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-fact-wide {
    grid-column: span 2;
  }

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

  .route-type-main {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .nodes-hero-grid {
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .nodes-hero-lead {
    font-size: 15px;
  }

  .route-paper {
    min-height: 300px;
  }

  .route-paper svg {
    min-height: 300px;
  }

  .route-label,
  .region-chip {
    display: none;
  }

  .coverage-ledger,
  .route-type-layout,
  .selection-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .coverage-fact-wide,
  .route-type-main,
  .selection-card-wide,
  .practical-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .nodes-trust {
    display: grid;
  }

  .route-paper {
    min-height: 245px;
  }

  .route-paper svg {
    min-height: 245px;
  }

  .coverage-fact,
  .route-type-card,
  .cost-note,
  .selection-card,
  .practical-card {
    padding: 21px;
  }

  .coverage-value {
    font-size: 34px;
  }

  .coverage-value-text {
    font-size: 27px;
  }

  .selection-card {
    grid-template-columns: 1fr;
  }

  .route-workflow li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .route-workflow li::before {
    width: 38px;
    height: 38px;
  }

  .route-workflow li::after {
    top: 38px;
    left: 18px;
  }
}