/* Refinements to the user-approved ring composition. */
.current-tools .scene-reset {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #ffffff29;
  background: #ffffff04;
  color: #e0e7fa;
  border-radius: 50%;
  font: 18px/1 var(--font);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.current-tools .scene-reset:hover {
  background: #ffffff15;
  border-color: #ffffff70;
}
.current-tools .scene-reset:focus-visible {
  outline: 2px solid #a2b6ff;
  outline-offset: 4px;
}
.field-release:disabled {
  opacity: 0.35;
  cursor: default;
}
.current-stage.no-webgl .current-tools {
  display: none;
}
.current-fallback img {
  opacity: 1;
}
.current-stage:after {
  background:
    linear-gradient(90deg, #10111760, transparent 57%),
    linear-gradient(0deg, #10111780, transparent 38%);
}
.hub-summary {
  max-width: 560px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.85;
  color: #ccd3e6;
  letter-spacing: 0;
}
.capability-shortcuts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
  margin-top: 35px;
}
.capability-shortcuts > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d2d7e2;
  padding: 14px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #47516a;
}
.capability-shortcuts > a:hover {
  color: #193dbb;
}
.capability-shortcuts > a > span:last-child {
  font-size: 17px;
}
.project-architecture-preview {
  background: #fff;
  box-shadow: inset 0 0 0 1px #dce1ed;
}
.project-architecture-preview > img {
  object-fit: contain !important;
  padding: 45px 15px 20px;
  filter: none !important;
}
.project-architecture-preview .image-note {
  color: #687796;
  top: 20px;
  bottom: auto;
}
.project-architecture-preview .project-open {
  background: #111c38;
  color: #fff;
}
@media (max-width: 800px) {
  .current-tools .scene-reset {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
  .current-tools {
    gap: 8px;
  }
  .gesture-hint {
    max-width: 165px;
    font-size: 7px !important;
    line-height: 1.7;
  }
  .hub-summary {
    font-size: 12px;
    line-height: 1.8;
    max-width: 290px;
    margin-top: 19px;
  }
  .capability-shortcuts {
    gap: 0 21px;
    margin-top: 25px;
  }
  .capability-shortcuts > a {
    font-size: 12px;
    padding: 15px 0;
  }
  .project-architecture-preview > img {
    padding: 43px 7px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scene-reset {
    transition: none;
  }
}
