/* Local decorative document scene, retained from approved Aurora. */
.object-scene {
  position: relative;
  width: 340px;
  height: 255px;
  flex-shrink: 0;
  perspective: 800px;
  align-self: center;
  margin-right: 60px;
  animation: object-entrance 0.75s var(--ease);
}
.object-glow {
  position: absolute;
  width: 240px;
  height: 140px;
  border-radius: 50%;
  background: #bcec8d29;
  filter: blur(30px);
  top: 95px;
  left: 30px;
}
.folder-back {
  position: absolute;
  left: 45px;
  top: 55px;
  width: 212px;
  height: 153px;
  background: linear-gradient(140deg, #9ce9c0, #348987);
  border-radius: 16px;
  transform: rotate(-9deg) skewY(1deg);
  box-shadow:
    inset 0 2px #fff9,
    0 18px 30px #001f283b;
}
.folder-back:before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 95px;
  height: 35px;
  border-radius: 12px 16px 0 0;
  background: linear-gradient(120deg, #bbeec9, #6abbab);
}
.paper-object {
  position: absolute;
  top: 10px;
  left: 85px;
  width: 160px;
  height: 198px;
  background: linear-gradient(125deg, #fffef1, #dcead9);
  border-radius: 9px;
  transform: rotate(9deg);
  box-shadow:
    1px 2px 2px #fff8 inset,
    0 12px 22px #073c3638;
  padding: 21px;
  color: #214a42;
  transition: transform 0.4s var(--ease);
}
.paper-object .paper-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 700;
}
.paper-object .paper-logo svg {
  width: 14px;
  height: 14px;
}
.paper-object .paper-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
  margin: 20px 0 9px;
}
.paper-lines {
  height: 3px;
  width: 70%;
  background: #a8c2b0;
  box-shadow:
    0 9px #bccdbf,
    0 18px #c9d7ca;
  border-radius: 2px;
}
.paper-object strong {
  display: block;
  font-size: 19px;
  margin-top: 32px;
  letter-spacing: normal;
}
.folder-front {
  position: absolute;
  left: 42px;
  top: 120px;
  width: 229px;
  height: 109px;
  border-radius: 14px 18px 19px 18px;
  background: linear-gradient(135deg, #b4edb775, #65b8a9ba);
  border: 1px solid #d5ffd580;
  transform: rotate(-9deg) skewX(-5deg);
  box-shadow:
    inset 0 2px 1px #fff5,
    0 18px 20px #032a3429;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: end;
  padding: 18px;
  color: #ecffdc;
  font-size: 10px;
  font-weight: 550;
}
.coin-object {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #f2ffd1, #adcd65 60%, #6d974d);
  border: 4px solid #daf1a2;
  box-shadow:
    inset 0 0 0 2px #98b660,
    5px 7px 0 #638248,
    10px 18px 22px #042a313f;
  color: #416143;
  font-size: 31px;
  font-weight: 500;
  display: grid;
  place-items: center;
  transform: rotate(-18deg);
  animation: coin-enter 0.8s var(--ease);
}
.object-scene:hover .paper-object {
  transform: translateY(-13px) rotate(4deg);
}
/* Original module compositions share materials, lighting and motion, not artwork. */
.module-scene {
  position: relative;
  width: 340px;
  height: 270px;
  flex: 0 0 340px;
  margin-right: 25px;
  animation: object-entrance 0.65s var(--ease);
}
.module-scene > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: none;
}
.module-scene .scene-float {
  transition: translate 0.55s var(--ease);
}
.module-scene .scene-satellite {
  transition:
    translate 0.65s var(--ease),
    rotate 0.65s var(--ease);
}
.module-heading:hover .scene-float,
.module-heading:focus-within .scene-float {
  translate: 0 -7px;
}
.module-heading:hover .scene-satellite,
.module-heading:focus-within .scene-satellite {
  translate: 0 -12px;
}
.scene-clock-hand {
  transform-origin: 132px 122px;
  transition: rotate 0.8s var(--ease);
}
.module-heading:hover .scene-clock-hand {
  rotate: 28deg;
}
.module-heading:hover .paper-object,
.module-heading:focus-within .paper-object {
  transform: translateY(-10px) rotate(4deg);
}
.module-heading--compact .module-scene {
  width: 120px;
  height: 95px;
  flex-basis: 120px;
  margin: 0 12px 0 auto;
}
.module-heading--compact .object-scene {
  display: none;
}
@keyframes object-entrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes coin-enter {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(-35deg);
  }
  to {
    opacity: 1;
    transform: rotate(-18deg);
  }
}
@media (max-width: 1000px) {
  .module-scene {
    width: 280px;
    height: 222px;
    flex-basis: 280px;
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  .module-scene {
    position: absolute;
    right: 0;
    bottom: -12px;
    width: 210px;
    height: 167px;
  }
  .module-heading .object-scene {
    position: absolute;
    right: 0;
    bottom: -45px;
    margin: 0;
    transform: scale(0.55);
    transform-origin: right center;
  }
  .module-heading--compact .module-scene {
    position: relative;
    right: auto;
    bottom: auto;
    width: 80px;
    height: 64px;
    flex-basis: 80px;
    margin: 0;
  }
  .module-heading--compact .page-title h1 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .module-scene,
  .object-scene,
  .coin-object {
    animation: none;
  }
  .module-scene .scene-float,
  .module-scene .scene-satellite,
  .scene-clock-hand {
    transition: none;
    translate: none !important;
    rotate: none !important;
  }
  .module-heading:hover .paper-object,
  .module-heading:focus-within .paper-object {
    transform: rotate(9deg);
  }
}
