:root {
  color-scheme: dark;
  --ink: #08090a;
  --ink-deep: #030405;
  --ink-raised: #0e1012;
  --paper: #e8e2d3;
  --paper-soft: #b9b4a8;
  --paper-faint: #77756f;
  --gold: #c4aa72;
  --gold-bright: #ead7a3;
  --gold-dim: rgba(196, 170, 114, 0.38);
  --line: rgba(232, 226, 211, 0.14);
  --line-strong: rgba(232, 226, 211, 0.28);
  --danger: #a44e42;
  --success: #b9ca9e;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1320px, calc(100vw - 48px));
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --mx: 0;
  --my: 0;
  --turn: 0deg;
  --season-glow: rgba(196, 170, 114, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--ink-deep);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  font: 700 12px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.atmosphere,
.atmosphere > * {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.atmosphere {
  z-index: 0;
  overflow: hidden;
}

.atmosphere__glow {
  inset: -25%;
  background:
    radial-gradient(circle at calc(68% + var(--mx) * 2.5%) calc(48% + var(--my) * 2.5%), var(--season-glow), transparent 19%),
    radial-gradient(circle at 50% 0%, rgba(232, 226, 211, 0.07), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(96, 111, 115, 0.06), transparent 28%);
  filter: blur(18px);
  transition: background 1s ease;
}

.atmosphere__grid {
  opacity: .23;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 72%);
  transform: translate(calc(var(--mx) * -6px), calc(var(--my) * -6px));
}

.atmosphere__noise {
  opacity: .075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.atmosphere__scan {
  opacity: .12;
  background: linear-gradient(to bottom, transparent 0, rgba(232, 226, 211, .13) 50%, transparent 100%);
  height: 17vh;
  top: -20vh;
  bottom: auto;
  animation: scan 9s linear infinite;
}

.site-header,
main,
.site-footer,
.noscript {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: var(--page);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand__mark {
  width: 26px;
  height: 26px;
  overflow: visible;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 10px rgba(196, 170, 114, .18));
}

.brand__name,
.transmission-status,
.hero__meta,
.eyebrow,
.register__label,
.register__note,
.form-status,
.artifact-panel__coordinates,
.artifact-panel__readout,
.scroll-mark,
.section-index,
.fragment__number,
.classified__ledger,
.site-footer,
.noscript {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.brand__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}

.transmission-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-soft);
  font-size: 9px;
  letter-spacing: .14em;
}

.transmission-status__light {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(234, 215, 163, .55);
  animation: beacon 2.8s ease-out infinite;
}

.hero {
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 138px 0 70px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.hero__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  color: var(--paper-faint);
  font-size: 8px;
}

.hero__rule {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent 80%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  gap: clamp(44px, 6vw, 104px);
  align-items: center;
  padding: clamp(45px, 7vh, 96px) 0 40px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.eyebrow::before {
  content: "[ ";
  color: var(--paper-faint);
}

.eyebrow::after {
  content: " ]";
  color: var(--paper-faint);
}

.title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(232, 226, 211, .05);
}

.title__large {
  display: block;
  font-size: clamp(72px, 10.2vw, 150px);
}

.declaration {
  max-width: 660px;
  margin: clamp(34px, 5vh, 58px) 0 0;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: clamp(29px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.declaration em {
  display: block;
  color: var(--paper);
  font-weight: 400;
}

.lede {
  margin: 24px 0 0;
  color: var(--paper-soft);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
}

.register {
  width: min(100%, 610px);
  margin-top: clamp(34px, 5vh, 58px);
}

.register__label {
  margin: 0 0 11px;
  color: var(--paper-faint);
  font-size: 8px;
}

.register__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  background: rgba(4, 5, 6, .54);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.register__form:focus-within {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(196, 170, 114, .07), 0 20px 70px rgba(0, 0, 0, .22);
}

.register__field {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
}

.register__prompt {
  color: var(--gold);
  font: 700 13px/1 var(--mono);
}

.register__field input {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 16px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font: 600 11px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.register__field input::placeholder {
  color: #706e67;
  opacity: 1;
}

.register__field input[aria-invalid="true"] {
  color: #e3a59b;
}

.register__button {
  min-width: 205px;
  margin: 5px;
  padding: 0 18px;
  border: 0;
  background: var(--paper);
  color: var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  font: 800 9px/1 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s var(--ease-out), color .25s ease;
}

.register__button:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.register__button:focus-visible,
.artifact:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.register__button:disabled {
  cursor: progress;
  opacity: .66;
  transform: none;
}

.register__button-arrow {
  font-size: 14px;
  transition: transform .25s var(--ease-out);
}

.register__button:hover .register__button-arrow {
  transform: translate(2px, -2px);
}

.register__note,
.form-status {
  margin: 9px 0 0;
  color: var(--paper-faint);
  font-size: 7px;
  line-height: 1.5;
  letter-spacing: .09em;
}

.form-status {
  min-height: 1.5em;
  color: var(--success);
}

.form-status[data-state="error"] {
  color: #d88f84;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.artifact-panel {
  position: relative;
  justify-self: center;
  width: min(100%, 590px);
  aspect-ratio: 1;
  padding: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 226, 211, .025), transparent 40%),
    rgba(7, 8, 9, .34);
  box-shadow: inset 0 0 100px rgba(0,0,0,.38), 0 40px 100px rgba(0,0,0,.18);
}

.artifact-panel::before,
.artifact-panel::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--line-strong);
}

.artifact-panel::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.artifact-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.artifact-panel__coordinates {
  position: absolute;
  top: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--paper-faint);
  font-size: 7px;
}

.artifact {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transform: translate(calc(var(--mx) * 8px), calc(var(--my) * 8px));
  transition: transform .35s var(--ease-out), filter .35s ease;
}

.artifact:hover {
  filter: brightness(1.14);
}

.artifact:active {
  transform: translate(calc(var(--mx) * 8px), calc(var(--my) * 8px)) scale(.985);
}

.artifact__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--season-glow), transparent 65%);
  filter: blur(32px);
  opacity: .7;
  transition: background 1s ease, opacity .35s ease;
}

.artifact:hover .artifact__halo {
  opacity: 1;
}

.artifact__svg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--paper-soft);
  stroke-width: 1;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 20px rgba(232, 226, 211, .04));
}

.artifact__outer {
  opacity: .32;
}

.artifact__outer circle:nth-child(2) {
  stroke-dasharray: 2 9;
  animation: orbit 48s linear infinite;
  transform-origin: 260px 260px;
}

.artifact__outer circle:nth-child(3) {
  stroke: var(--gold);
  opacity: .4;
  stroke-dasharray: 1 13;
  animation: orbit-reverse 70s linear infinite;
  transform-origin: 260px 260px;
}

.artifact__ticks {
  opacity: .48;
}

.artifact__inscription {
  fill: var(--paper-faint);
  stroke: none;
  font: 7px/1 var(--mono);
  letter-spacing: .26em;
}

.artifact__rotor {
  opacity: .62;
  transform-origin: 260px 260px;
  transform: rotate(var(--turn));
  transition: transform 1.2s var(--ease-out), stroke 1s ease;
}

.artifact__rotor > circle:first-child {
  stroke: var(--gold);
  stroke-dasharray: 22 6 2 6;
  opacity: .62;
}

.artifact__rotor > circle:last-of-type {
  stroke-dasharray: 1 6;
  opacity: .5;
}

.artifact__sigils {
  stroke: var(--gold-bright);
  opacity: .62;
}

.artifact__core {
  stroke: var(--gold-bright);
}

.artifact__core circle:first-child {
  opacity: .18;
  fill: rgba(196, 170, 114, .06);
}

.artifact__core circle:nth-child(2) {
  opacity: .5;
  stroke-dasharray: 3 5;
}

.artifact__core path {
  opacity: .86;
}

.artifact__spark {
  fill: var(--gold-bright);
  stroke: none;
  transform-origin: 260px 260px;
  animation: spark-orbit 14s linear infinite;
  filter: drop-shadow(0 0 6px var(--gold-bright));
}

.artifact__touch {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  color: var(--paper-faint);
  font: 7px/1 var(--mono);
  letter-spacing: .16em;
  opacity: 0;
  transition: opacity .25s ease, bottom .25s var(--ease-out);
}

.artifact:hover .artifact__touch,
.artifact:focus-visible .artifact__touch {
  bottom: 11%;
  opacity: .82;
}

.artifact-panel__readout {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--paper-faint);
  font-size: 7px;
}

.artifact-panel__readout span:first-child {
  color: var(--gold);
}

.scroll-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-faint);
  font-size: 7px;
}

.scroll-mark__line {
  position: relative;
  width: 82px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-mark__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-110%);
  animation: line-travel 3.2s var(--ease-out) infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .9s var(--ease-out) forwards;
}

.hero__copy > .reveal:nth-child(1) { animation-delay: .08s; }
.hero__copy > .reveal:nth-child(2) { animation-delay: .16s; }
.hero__copy > .reveal:nth-child(3) { animation-delay: .26s; }
.hero__copy > .reveal:nth-child(4) { animation-delay: .34s; }
.hero__copy > .reveal:nth-child(5) { animation-delay: .44s; }
.artifact-panel.reveal { animation-delay: .28s; }

.fragments {
  width: var(--page);
  margin: 0 auto;
  padding: 130px 0 160px;
  border-top: 1px solid var(--line);
}

.section-index {
  margin-bottom: 64px;
  color: var(--paper-faint);
  font-size: 8px;
}

.fragments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fragment {
  min-height: 315px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: rgba(8, 9, 10, .92);
  transition: background .35s ease;
}

.fragment:hover {
  background: rgba(16, 17, 18, .92);
}

.fragment--offset {
  transform: translateY(34px);
}

.fragment__number {
  margin: 0;
  color: var(--gold);
  font-size: 8px;
}

.fragment__text {
  margin: auto 0 44px;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.fragment__redaction {
  display: grid;
  gap: 7px;
}

.fragment__redaction span {
  height: 7px;
  background: linear-gradient(90deg, #222 0 68%, transparent 68%);
}

.fragment__redaction span:nth-child(2) {
  width: 76%;
  background: linear-gradient(90deg, #222 0 54%, transparent 54%);
}

.classified {
  padding: 80px 0 150px;
  background:
    linear-gradient(to bottom, transparent, rgba(255, 255, 255, .018)),
    linear-gradient(90deg, rgba(196, 170, 114, .025), transparent 30%, transparent 70%, rgba(196, 170, 114, .025));
}

.classified__frame {
  position: relative;
  width: var(--page);
  min-height: 500px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  border: 1px solid var(--line-strong);
  background: rgba(5, 6, 7, .56);
  overflow: hidden;
}

.classified__frame::before {
  content: "0000 / 04";
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--paper-faint);
  font: 7px/1 var(--mono);
  letter-spacing: .12em;
}

.classified__stamp {
  position: absolute;
  top: 54px;
  right: -24px;
  padding: 8px 34px;
  border: 2px solid rgba(164, 78, 66, .34);
  color: rgba(190, 96, 82, .38);
  font: 800 24px/1 var(--mono);
  letter-spacing: .12em;
  transform: rotate(8deg);
}

.classified__copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.classified__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--gold-bright);
  font: 700 9px/1 var(--mono);
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 15px;
  transition: transform .25s var(--ease-out);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.classified__ledger {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.classified__ledger > div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.classified__ledger dt,
.classified__ledger dd {
  margin: 0;
  font-size: 8px;
}

.classified__ledger dt {
  color: var(--paper-faint);
}

.classified__ledger dd {
  color: var(--paper-soft);
}

.redacted-word {
  position: relative;
  display: inline-block;
  color: transparent;
  user-select: none;
}

.redacted-word::after {
  content: "";
  position: absolute;
  inset: 1px -2px;
  background: #292a2b;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .015);
}

.redacted-word--long::after {
  right: -34px;
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 28px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--paper-faint);
  font-size: 7px;
}

.site-footer p,
.site-footer a {
  margin: 0;
}

.site-footer p:nth-child(2) {
  color: var(--gold);
}

.site-footer a {
  justify-self: end;
  text-decoration: none;
}

.site-footer__domain {
  justify-self: auto;
  letter-spacing: .16em;
}

.site-footer__domain:hover {
  color: var(--gold-bright);
}

.secret-message {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 24px);
  padding: 13px 18px;
  border: 1px solid var(--gold-dim);
  background: rgba(5, 6, 7, .9);
  color: var(--gold-bright);
  font: 800 9px/1 var(--mono);
  letter-spacing: .16em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity .4s ease, transform .4s var(--ease-out);
}

.secret-message.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.noscript {
  position: fixed;
  z-index: 100;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  background: var(--ink-raised);
  color: var(--paper-soft);
  font-size: 8px;
  text-align: center;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scan {
  to { transform: translateY(130vh); }
}

@keyframes beacon {
  0% { box-shadow: 0 0 0 0 rgba(234, 215, 163, .48); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(234, 215, 163, 0); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes orbit-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes spark-orbit {
  to { transform: rotate(360deg); }
}

@keyframes line-travel {
  0%, 20% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

@media (max-width: 1050px) {
  :root {
    --page: min(920px, calc(100vw - 40px));
  }

  .hero {
    padding-top: 126px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero__copy {
    max-width: 740px;
  }

  .title__large {
    font-size: clamp(78px, 15vw, 136px);
  }

  .artifact-panel {
    width: min(76vw, 620px);
    margin-top: 30px;
  }

  .fragments__grid {
    grid-template-columns: 1fr;
  }

  .fragment,
  .fragment--offset {
    min-height: 230px;
    transform: none;
  }

  .classified__frame {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .classified__ledger {
    width: min(100%, 560px);
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 28px);
  }

  .site-header {
    padding: 20px 0;
  }

  .transmission-status span:last-child {
    display: none;
  }

  .hero {
    padding: 104px 0 48px;
  }

  .hero__layout {
    gap: 36px;
    padding: 44px 0 30px;
  }

  .title__large {
    font-size: clamp(55px, 17vw, 96px);
    letter-spacing: -.06em;
  }

  .declaration {
    font-size: clamp(29px, 9.2vw, 42px);
  }

  .lede br {
    display: none;
  }

  .register__form {
    grid-template-columns: 1fr;
  }

  .register__button {
    min-height: 50px;
    margin-top: 0;
  }

  .artifact-panel {
    width: 100%;
    padding: 26px;
  }

  .artifact-panel__readout span:last-child {
    display: none;
  }

  .artifact__touch {
    display: none;
  }

  .fragments {
    padding: 92px 0 110px;
  }

  .section-index {
    margin-bottom: 38px;
  }

  .fragment {
    min-height: 215px;
    padding: 22px;
  }

  .fragment__text {
    font-size: 29px;
  }

  .classified {
    padding: 36px 0 90px;
  }

  .classified__frame {
    min-height: 0;
    padding: 72px 24px 34px;
  }

  .classified__stamp {
    top: 34px;
    right: -34px;
    font-size: 18px;
  }

  .classified__copy h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .classified__ledger > div {
    grid-template-columns: 88px 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
