.artifact-stage {
  position: relative;
  min-height: 600px;
  isolation: isolate;
  border: 3px solid var(--white);
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.82) 0 5%, transparent 5.3%),
    linear-gradient(135deg, var(--acid) 0%, #79ff77 42%, #65dfff 100%);
  box-shadow: 10px 10px 0 var(--blue);
}

.orbit {
  position: absolute;
  z-index: -3;
  border: 2px solid rgba(9, 10, 13, 0.24);
  border-radius: 50%;
}

.orbit-one {
  top: 0;
  right: 14px;
  width: 510px;
  height: 510px;
}

.orbit-two {
  top: 80px;
  right: 94px;
  width: 350px;
  height: 350px;
}

.artifact-shadow {
  position: absolute;
  z-index: -2;
  width: 300px;
  height: 410px;
  border: 2px solid var(--forest-dark);
  background: var(--paper-warm);
}

.artifact-shadow-one {
  top: 50px;
  right: 86px;
  transform: rotate(7deg);
}

.artifact-shadow-two {
  top: 32px;
  right: 110px;
  transform: rotate(-4deg);
  background: var(--white);
}

.tdf-file {
  position: absolute;
  z-index: 2;
  top: 64px;
  right: 88px;
  width: 314px;
  min-height: 428px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  transform: rotate(2deg);
  border: 2px solid var(--forest-dark);
  border-radius: 0 24px 0 0;
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.file-topline,
.file-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.file-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--forest-dark);
  font-family: var(--sans);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.file-rings {
  position: relative;
  height: 142px;
  margin-top: 22px;
}

.file-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(217, 255, 103, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.file-rings span:nth-child(1) { width: 128px; height: 128px; }
.file-rings span:nth-child(2) { width: 94px; height: 94px; }
.file-rings span:nth-child(3) { width: 60px; height: 60px; }
.file-rings span:nth-child(4) { width: 20px; height: 20px; background: var(--orange); border: 0; }

.file-title {
  margin-top: auto;
}

.file-title span {
  display: block;
  margin-bottom: 6px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.file-title strong {
  display: block;
  font-family: var(--sans);
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.file-meta {
  gap: 10px;
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.68);
}

.player-window {
  position: absolute;
  z-index: 4;
  right: -56px;
  bottom: 0;
  width: 530px;
  overflow: hidden;
  border: 2px solid var(--forest-dark);
  border-radius: 0;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(9, 10, 13, 0.28);
}

.window-chrome {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 13px;
  border-bottom: 2px solid var(--forest-dark);
  background: #e8e5dc;
  color: #56605c;
  font-size: 9px;
  font-weight: 800;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fa6b50;
}

.window-dots i:nth-child(2) { background: #f4c64c; }
.window-dots i:nth-child(3) { background: #64b878; }
.window-status { justify-self: end; color: #227553; }

.window-body {
  min-height: 290px;
  display: grid;
  grid-template-columns: 180px 1fr;
}

.document-tree {
  padding: 22px 15px;
  border-right: 1px solid var(--line);
  background: #f6f3eb;
}

.tree-heading {
  margin-bottom: 18px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tree-item {
  display: flex;
  gap: 10px;
  margin: 0 0 4px;
  padding: 8px;
  color: #53605a;
  font-size: 9px;
}

.tree-item span {
  color: #a0a8a4;
  font-family: var(--mono);
}

.tree-item.active {
  background: var(--acid);
  color: var(--forest-dark);
  font-weight: 800;
}

.tree-rule {
  margin: 18px 8px;
  border-top: 1px solid var(--line);
}

.tree-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px;
  color: #64706b;
  font-size: 8px;
}

.tree-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.document-page {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--forest-dark);
  color: var(--white);
}

.moon-mark {
  position: absolute;
  top: 68px;
  right: 42px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: var(--yellow);
}

.moon-mark::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 68px;
  height: 136px;
  border-radius: 0 80px 80px 0;
  background: var(--orange);
  content: "";
}

.page-kicker {
  position: relative;
  z-index: 1;
  max-width: 140px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-page h2 {
  position: relative;
  z-index: 1;
  margin-top: 96px;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-copy {
  position: relative;
  z-index: 1;
  max-width: 205px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.annotation-pin {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--forest-dark);
  font-size: 8px;
  font-weight: 900;
}

.hero-rule {
  border-top: 2px solid var(--forest-dark);
  border-bottom: 2px solid var(--forest-dark);
  background: var(--acid);
  color: var(--forest-dark);
}

.hero-rule-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-rule-inner span {
  color: rgba(9, 10, 13, 0.62);
}

.hero-rule-inner strong {
  color: var(--forest-dark);
}
