/* Blueprint route tracer */
.blueprint-stage {
  display: grid;
  min-height: 74vh;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
  background: #101315;
  color: #f7f2e8;
}

.blueprint-copy h1 {
  color: #f7f2e8;
}

.blueprint-copy p {
  color: rgba(247, 242, 232, 0.72);
}

.blueprint-wrap {
  display: grid;
  min-height: clamp(390px, 54vw, 620px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 242, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.05) 1px, transparent 1px),
    #0b1115;
  background-size: 28px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.blueprint-svg {
  width: min(100%, 760px);
  height: auto;
  overflow: visible;
}

.blueprint-frame,
.blueprint-module {
  fill: rgba(104, 216, 214, 0.06);
  stroke: rgba(247, 242, 232, 0.24);
  stroke-width: 2;
}

.blueprint-route {
  fill: none;
  stroke: var(--tone);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.blueprint-guide {
  fill: none;
  stroke: rgba(247, 242, 232, 0.18);
  stroke-dasharray: 10 12;
  stroke-width: 2;
}

.blueprint-node {
  fill: #0b1115;
  stroke: var(--tone);
  stroke-width: 5;
  transform-box: fill-box;
  transform-origin: center;
}

.blueprint-callout {
  fill: rgba(247, 242, 232, 0.74);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 840px) {
  .blueprint-stage {
    grid-template-columns: 1fr;
  }
}
