/* A real-time invention exhibit, inspired by the supplied engineering viewer. */
:root {
  --atlas-paper: #f1f0eb;
  --atlas-rule: #d4d5cd;
  --atlas-accent: #7b5039;
}
.site-header {
  height: 84px;
}
.atlas {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: min(1100px, max(850px, calc(100svh - 84px)));
  overflow: hidden;
  background: var(--atlas-paper);
  border-top: 1px solid var(--atlas-rule);
  border-bottom: 1px solid var(--atlas-rule);
}
.atlas-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding: 43px 48px 0;
  pointer-events: none;
}
.atlas-heading a {
  pointer-events: auto;
}
.atlas-intro .eyebrow {
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.atlas-intro h1 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.1vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
  margin: 0;
}
.atlas-intro > p:not(.eyebrow) {
  max-width: 450px;
  font-size: 1rem;
  line-height: 1.65;
  color: #65665e;
  margin: 19px 0 14px;
}
.atlas-product-link {
  display: inline-flex;
  gap: 24px;
  text-decoration: none;
  border-bottom: 1px solid #9b9c91;
  padding-bottom: 4px;
  font-size: 0.875rem;
}
.atlas-product-link:hover {
  border-color: var(--ink);
}
.atlas-exhibit {
  width: 241px;
  padding-top: 4px;
}
.atlas-kicker {
  font-size: 0.75rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b6d63;
}
.atlas-exhibit > .atlas-kicker {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--atlas-rule);
  padding-bottom: 11px;
  margin: 0 0 15px;
}
.atlas-exhibit h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 5px;
}
.atlas-exhibit > p:not(.atlas-kicker) {
  margin: 0 0 8px;
  color: #696a63;
  font-size: 0.875rem;
}
.atlas-exhibit > a {
  font-size: 0.8125rem;
  text-decoration: none;
  display: inline-flex;
  gap: 20px;
  border-bottom: 1px solid #abaca3;
}
.atlas-mode-switch {
  position: absolute;
  z-index: 4;
  right: 48px;
  top: 230px;
  display: flex;
  border: 1px solid var(--atlas-rule);
  border-radius: 3px;
  background: #f1f0ebde;
  padding: 4px;
  gap: 3px;
}
.atlas button {
  font-family: var(--sans);
}
.atlas-mode-switch button {
  border: 0;
  padding: 8px 12px;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #64665e;
  border-radius: 2px;
  background: transparent;
}
.atlas-mode-switch button[aria-pressed="true"] {
  background: #252c27;
  color: white;
}
.atlas button:disabled,
.atlas input:disabled {
  cursor: wait;
  opacity: 0.45;
}
.atlas-scene {
  position: relative;
  flex: 1;
  min-height: 360px;
  margin-top: 20px;
}
#atlas-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: grab;
  touch-action: pan-y;
  transition: opacity 0.65s ease;
  outline-offset: -5px;
}
#atlas-canvas:active {
  cursor: grabbing;
}
.atlas[data-ready="true"] #atlas-canvas {
  opacity: 1;
}
.atlas:not([data-ready="true"]) #atlas-canvas {
  pointer-events: none;
}
#atlas-canvas {
  position: absolute;
  inset: 0;
}
.atlas-fallback {
  position: absolute;
  inset: 15px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.atlas-fallback img {
  height: calc(100% - 34px);
  width: auto;
  object-fit: contain;
  opacity: 0.68;
  mix-blend-mode: multiply;
}
.atlas-fallback p {
  font-size: 0.875rem;
  color: #67685f;
  margin: 10px 18px 0;
  text-align: center;
}
.atlas[data-ready="true"] .atlas-fallback {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.atlas-scene-corner {
  position: absolute;
  bottom: 15px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #999b90;
}
.atlas-scene::before,
.atlas-scene::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 38%;
  width: 9px;
  height: 68px;
  border-block: 1px solid #bbbdb2;
  pointer-events: none;
}
.atlas-scene::before {
  left: 24px;
  border-left: 1px solid #bbbdb2;
}
.atlas-scene::after {
  right: 24px;
  border-right: 1px solid #bbbdb2;
}
.atlas-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.atlas-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 6px;
  background: #faf9f0ec;
  color: #34392f;
  border: 1px solid #bfc1b5;
  border-radius: 3px;
  font-size: 0.75rem;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: 0 2px 10px #252c270a;
  transform: translate(-50%, -115%);
  pointer-events: auto;
}
.atlas-label > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #30382e;
  color: white;
  font-size: 0.75rem;
}
.atlas-label:hover,
.atlas-label[aria-pressed="true"] {
  border-color: #7a6549;
  background: #fffdf6;
}
.atlas-part-card {
  position: absolute;
  z-index: 5;
  right: 48px;
  bottom: 182px;
  width: 265px;
  padding: 20px;
  border: 1px solid #bfc1b5;
  border-radius: 3px;
  background: #faf9f4f2;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px #1d231410;
}
.atlas-part-card > button {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 1.3rem;
  padding: 2px 8px;
  color: #55594c;
}
.atlas-part-card h3 {
  font: 400 1.8rem/1.15 var(--serif);
  margin: 12px 0 9px;
}
.atlas-part-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #66695e;
  margin: 0;
}
.atlas-toolbar {
  position: relative;
  z-index: 4;
  margin: 0 48px;
  display: grid;
  grid-template-columns: 1fr minmax(230px, 0.95fr) 1fr;
  align-items: center;
  gap: 60px;
  padding: 22px 0;
  border-top: 1px solid var(--atlas-rule);
}
.atlas-playback {
  display: flex;
  align-items: center;
  gap: 13px;
}
.atlas-icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  color: #fff;
  background: #2c352c;
  border: 1px solid #2c352c;
  font-size: 0.75rem;
}
.atlas-playback > div > span {
  font-size: 0.875rem;
}
.atlas-playback p {
  color: #777b70;
  font-size: 0.75rem;
  margin: 3px 0 0;
}
.atlas-explosion > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.atlas-explosion label {
  font-size: 0.875rem;
}
.atlas-explosion output {
  font-size: 0.75rem;
  color: #5e6758;
  font-variant-numeric: tabular-nums;
  min-width: 34px;
  text-align: right;
}
.atlas-explosion input {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  accent-color: #424c3c;
  height: 20px;
  cursor: ew-resize;
}
.atlas-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.atlas-tools button {
  background: none;
  border: 0;
  color: #5f6658;
  padding: 9px 0;
  font-size: 0.8125rem;
  white-space: nowrap;
}
.atlas-tools button[aria-pressed="true"] {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #252c27;
}
.atlas-zoom {
  display: flex;
  border: 1px solid #c2c5b9;
  border-radius: 3px;
}
.atlas-zoom button {
  font-size: 1.125rem;
  width: 34px;
  padding: 4px 0;
  line-height: 1.4;
}
.atlas-zoom button + button {
  border-left: 1px solid #c2c5b9;
}
.atlas-caption {
  position: relative;
  z-index: 4;
  margin: 0 48px 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7b7e71;
  font-size: 0.75rem;
  line-height: 1.5;
}
.atlas-caption a {
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid #c2c5b9;
}
.atlas-noscript {
  position: absolute;
  z-index: 6;
  bottom: 145px;
  background: var(--atlas-paper);
  margin: 0;
  padding: 10px 48px;
  font-size: 0.875rem;
}
.atlas + .proof-strip {
  border-top: 0;
}
@media (min-width: 1600px) {
  .atlas-heading {
    padding-inline: 64px;
  }
  .atlas-mode-switch {
    right: 64px;
  }
}
@media (max-width: 1100px) {
  .atlas-heading {
    padding: 36px 32px 0;
  }
  .atlas-intro h1 {
    font-size: 4.2rem;
  }
  .atlas-intro > p:not(.eyebrow) {
    max-width: 390px;
  }
  .atlas-mode-switch {
    right: 32px;
    top: 222px;
  }
  .atlas-toolbar {
    margin-inline: 32px;
    gap: 27px;
    grid-template-columns: 1fr 1fr auto;
  }
  .atlas-tools {
    gap: 13px;
  }
  .atlas-tools #atlas-label-toggle {
    display: none;
  }
  .atlas-caption {
    margin-inline: 32px;
  }
  .atlas-part-card {
    right: 32px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 78px;
  }
  .atlas {
    min-height: 0;
  }
  .atlas-heading {
    padding: 32px 24px 0;
  }
  .atlas-intro h1 {
    font-size: clamp(3.3rem, 8vw, 4.1rem);
  }
  .atlas-intro > p:not(.eyebrow) {
    max-width: 365px;
    font-size: 1rem;
  }
  .atlas-exhibit {
    width: 184px;
    padding-top: 3px;
  }
  .atlas-exhibit > .atlas-kicker {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 3px;
  }
  .atlas-exhibit h2 {
    font-size: 1.85rem;
  }
  .atlas-mode-switch {
    position: relative;
    top: auto;
    right: auto;
    align-self: flex-end;
    margin: 24px 24px 0;
  }
  .atlas-scene {
    flex: none;
    height: 400px;
    min-height: 0;
    margin-top: 8px;
  }
  .atlas-toolbar {
    margin-inline: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
    padding-top: 16px;
  }
  .atlas-explosion {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .atlas-tools {
    gap: 16px;
  }
  .atlas-caption {
    margin: 0 24px 18px;
    display: block;
    max-width: 590px;
  }
  .atlas-caption a {
    display: inline-block;
    margin-top: 5px;
  }
  .atlas-part-card {
    bottom: 220px;
    right: 24px;
    width: 240px;
  }
  .atlas-scene-corner {
    left: 24px;
    right: 24px;
    font-size: 0.75rem;
  }
  .atlas-scene::before {
    left: 11px;
  }
  .atlas-scene::after {
    right: 11px;
  }
}
@media (max-width: 540px) {
  .site-header {
    height: 73px;
  }
  .atlas {
    min-height: 0;
  }
  .atlas-heading {
    display: block;
    padding: 29px 22px 0;
  }
  .atlas-intro h1 {
    font-size: clamp(3rem, 12.4vw, 3.9rem);
  }
  .atlas-intro .eyebrow {
    margin-bottom: 13px;
  }
  .atlas-intro > p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 370px;
    margin: 16px 0 10px;
  }
  .desktop-break {
    display: none;
  }
  .atlas-exhibit {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    column-gap: 12px;
    margin-top: 27px;
    padding-top: 16px;
    border-top: 1px solid var(--atlas-rule);
  }
  .atlas-exhibit > .atlas-kicker {
    grid-column: 1 / -1;
    flex-direction: row;
    border: 0;
    padding: 0;
    margin-bottom: 9px;
  }
  .atlas-exhibit h2 {
    font-size: 1.85rem;
  }
  .atlas-exhibit > p:not(.atlas-kicker) {
    grid-column: 1;
    font-size: 0.8125rem;
    margin-bottom: 0;
  }
  .atlas-exhibit > a {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
    gap: 12px;
    font-size: 0.75rem;
  }
  .atlas-mode-switch {
    align-self: flex-start;
    margin: 24px 22px 0;
  }
  .atlas-mode-switch button {
    padding: 8px 12px;
  }
  .atlas-scene {
    height: clamp(310px, 85vw, 410px);
  }
  .atlas-toolbar {
    margin-inline: 22px;
    gap: 11px;
  }
  .atlas-tools #atlas-reset {
    font-size: 0.75rem;
  }
  .atlas-playback {
    gap: 9px;
  }
  .atlas-playback > div > span {
    font-size: 0.8125rem;
  }
  .atlas-playback p {
    max-width: 145px;
    line-height: 1.4;
    font-size: 0.75rem;
  }
  .atlas-icon-button {
    width: 35px;
    height: 35px;
  }
  .atlas-scene-corner {
    bottom: 8px;
    font-size: 0.75rem;
  }
  .atlas-scene-corner span:last-child {
    display: none;
  }
  .atlas-part-card {
    right: 22px;
    bottom: 224px;
    padding: 15px;
    width: 220px;
  }
  .atlas-caption {
    margin-inline: 22px;
    font-size: 0.75rem;
  }
  .atlas-label {
    font-size: 0.75rem;
    padding: 4px 7px 4px 4px;
  }
  .atlas-label > span {
    width: 20px;
    height: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #atlas-canvas,
  .atlas-fallback {
    transition: none;
  }
}
