:root {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #f6ead2;
  background: #050607;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html,
body,
#app {
  margin: 0;
  min-height: 100%;
  background: #050607;
}
button {
  font: inherit;
}
button:focus-visible {
  outline: 3px solid #f4c45d;
  outline-offset: 3px;
}
.hero-screen,
.office-shell,
.archive-screen {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #080a0c;
}
.hero-image,
.office-scene,
.archive-room {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
}
.hero-image {
  background-image: url("./assets/ronald-trumpet-loading.jpg");
}
.office-scene,
.archive-room {
  background-image: url("./assets/ronald-trumpet-loading.jpg");
}
.hero-shade,
.office-vignette,
.archive-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 12, 0.95) 0%,
      rgba(5, 8, 12, 0.58) 34%,
      rgba(5, 8, 12, 0.12) 66%,
      rgba(5, 8, 12, 0.55) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 3, 5, 0.7),
      transparent 45%,
      rgba(2, 3, 5, 0.25)
    );
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 90vw);
  padding: 10vh 0 8vh 7vw;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.26em;
  color: #d9b769;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.84;
  margin: 0;
  letter-spacing: -0.055em;
  text-shadow: 0 8px 34px #000;
}
.hero-copy h1 span {
  display: block;
  color: #e6ba55;
}
.hero-copy p {
  font-family: Georgia, serif;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
  max-width: 520px;
  color: #f1e5cf;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.menu-primary,
.menu-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 20px;
  background: linear-gradient(#e3b958, #9c6d1d);
  color: #1f1505;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
  cursor: pointer;
}
.menu-secondary {
  background: rgba(9, 14, 19, 0.82);
  color: #f1dfb4;
  border-color: #9f8350;
}
.mode-drawer {
  margin-top: 22px;
  max-width: 520px;
  color: #dbcba9;
}
.mode-drawer summary {
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mode-drawer button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  margin-top: 7px;
  border: 1px solid #7b6742;
  background: rgba(8, 11, 15, 0.82);
  color: #efe3c7;
  cursor: pointer;
}
.hero-caption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #c9b889;
}
.command-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 13, 0.97),
    rgba(7, 12, 18, 0.88)
  );
  border-bottom: 1px solid #8f7241;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.brand-button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #c79d4f;
  background: linear-gradient(#243249, #0e1621);
  color: #f4c965;
  font-family: Georgia, serif;
  font-weight: 900;
}
.day-chip {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}
.day-chip small,
.attention small {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #af9a71;
}
.day-chip b,
.attention b {
  font-size: 24px;
  color: #f5d27c;
}
.day-chip span {
  font-size: 10px;
  color: #8e99a8;
}
.hud-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(95px, 1fr));
  gap: 8px;
  min-width: 0;
}
.hud-stat {
  position: relative;
  padding: 6px 10px 11px;
  border: 1px solid #4d5864;
  background: rgba(19, 27, 36, 0.88);
  border-radius: 6px;
  min-width: 0;
}
.hud-stat span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #aeb7bf;
}
.hud-stat b {
  font-size: 20px;
}
.hud-stat i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: var(--v);
  background: linear-gradient(90deg, #7b9c4d, #d5b44d);
  display: block;
}
.attention {
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-left: 1px solid #5d513b;
  padding-left: 14px;
}
.attention span {
  font-size: 9px;
  color: #a99a7c;
}
.icon-button {
  background: #161d25;
  color: #c9cfd4;
  border: 1px solid #49515b;
  padding: 9px 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.brief-rail {
  position: absolute;
  z-index: 4;
  left: 18px;
  top: 86px;
  width: 190px;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 17, 0.95),
    rgba(8, 12, 17, 0.78)
  );
  border: 1px solid #806a43;
  box-shadow: 0 16px 38px #0008;
}
.rail-title {
  padding: 10px 12px;
  border-bottom: 1px solid #594a31;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #c5aa72;
}
.adviser-card {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 9px;
  text-align: left;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid #29323c;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.adviser-card:hover {
  background: #ffffff08;
}
.portrait-disc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(#cda85b, #6b4c1a);
  color: #15100a;
  font-weight: 900;
}
.adviser-card b,
.adviser-card small,
.adviser-card em {
  display: block;
}
.adviser-card b {
  font-size: 12px;
}
.adviser-card small {
  font-size: 9px;
  color: #c3a968;
  letter-spacing: 0.09em;
}
.adviser-card em {
  font-family: Georgia, serif;
  font-size: 10px;
  color: #bbc2c9;
  margin-top: 3px;
  line-height: 1.2;
}
.stage {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 69px);
  padding: 46px 4vw 105px 225px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.briefing-folder,
.executive-file,
.newspaper-sheet,
.retrospective {
  width: min(780px, 78vw);
  background: linear-gradient(180deg, #f0e1bd, #dfcca0);
  color: #211b12;
  box-shadow: 0 24px 60px #000a;
  border: 1px solid #ad986c;
  position: relative;
}
.briefing-folder {
  padding: 50px 56px 44px;
  transform: rotate(-0.35deg);
  border-top: 18px solid #ae8a49;
}
.folder-tab {
  position: absolute;
  left: 0;
  top: -44px;
  background: #ae8a49;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.briefing-mark {
  font-size: 10px;
  display: inline-block;
  border: 2px solid #843035;
  color: #843035;
  padding: 5px 8px;
  transform: rotate(-2deg);
  font-weight: 900;
}
.briefing-folder h2,
.executive-file h2,
.retrospective h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}
.briefing-folder h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  margin: 18px 0;
}
.briefing-folder > p {
  font:
    18px/1.5 Georgia,
    serif;
}
.overnight {
  padding: 10px 12px;
  margin: 10px 0;
  border-left: 4px solid #813033;
  background: #d7c293;
}
.overnight b,
.overnight span {
  display: block;
}
.big-stamp,
.fold-button,
.end-actions button {
  background: linear-gradient(#9f3438, #702024);
  border: 0;
  border-bottom: 5px solid #431014;
  color: #fff0da;
  padding: 14px 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.executive-file {
  padding: 32px 42px 38px;
  transform: rotate(0.2deg);
  background: linear-gradient(#f4e7c6, #e4d1a5);
}
.paperclip-real {
  position: absolute;
  right: 48px;
  top: -17px;
  width: 21px;
  height: 56px;
  border: 4px solid #8e918b;
  border-radius: 12px;
  transform: rotate(13deg);
}
.file-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 4px double #2d2b27;
  padding-bottom: 12px;
}
.file-header small,
.file-header strong,
.file-header span {
  display: block;
}
.file-header small {
  font-size: 9px;
  letter-spacing: 0.14em;
}
.file-header strong {
  font:
    700 14px Georgia,
    serif;
}
.file-header span {
  font-size: 9px;
  margin-top: 4px;
}
.file-header > b {
  align-self: flex-start;
  border: 3px solid #98383a;
  color: #98383a;
  padding: 7px 9px;
  transform: rotate(4deg);
}
.executive-file h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
  margin: 22px 0 12px;
}
.briefing-copy {
  font:
    17px/1.5 Georgia,
    serif;
}
.consult-notes {
  margin: 14px 0;
}
.consult-notes p {
  margin: 7px 0;
  padding: 9px 11px;
  background: #fff0a8;
  border-left: 4px solid #b1841d;
  font:
    italic 13px/1.4 Georgia,
    serif;
}
.consult-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px dashed #99865f;
  border-bottom: 1px dashed #99865f;
  margin: 16px 0;
}
.consult-strip button {
  border: 0;
  border-bottom: 2px solid #2b4f7b;
  background: transparent;
  padding: 5px 7px;
  color: #244266;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.decision-stack {
  display: grid;
  gap: 9px;
}
.decision {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 11px 13px;
  background: #f7efd9;
  border: 1px solid #b9a57c;
  border-left: 7px solid #264f7a;
  box-shadow: 0 3px 0 #aa9873;
  cursor: pointer;
}
.decision.danger {
  border-left-color: #973337;
}
.decision:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.decision-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #263d59;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.decision-copy b,
.decision-copy em {
  display: block;
}
.decision-copy b {
  font-size: 14px;
}
.decision-copy em {
  font:
    italic 12px Georgia,
    serif;
  color: #625742;
  margin-top: 2px;
}
.decision > strong {
  font-size: 12px;
  color: #8b2c2f;
}
.interrupt-layer {
  position: fixed;
  z-index: 20;
  inset: 0;
  background: #020408bb;
  display: grid;
  place-items: center;
  padding: 24px;
}
.phone-object {
  position: absolute;
  font-size: 120px;
  transform: rotate(-13deg) translate(-250px, -120px);
  filter: drop-shadow(0 15px 20px #000);
}
.interrupt-card {
  width: min(520px, 92vw);
  background: #eee0bb;
  color: #211a10;
  border: 8px double #8f292e;
  padding: 28px 32px;
  box-shadow: 0 30px 80px #000;
}
.interrupt-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #8d292d;
  font-weight: 900;
}
.interrupt-card h2 {
  font:
    900 38px/1 Georgia,
    serif;
  margin: 12px 0;
}
.interrupt-card p {
  font:
    17px/1.45 Georgia,
    serif;
}
.interrupt-card button {
  background: #8f292d;
  color: white;
  border: 0;
  padding: 12px 16px;
  font-weight: 900;
}
.paper-stage {
  width: min(1060px, 84vw);
  position: relative;
  display: flex;
  justify-content: center;
}
.newspaper-prop {
  position: absolute;
  right: -120px;
  bottom: 20px;
  width: 360px;
  height: 420px;
  background: url("./assets/ronald-trumpet-loading.jpg") center/cover no-repeat;
  opacity: 0.28;
  transform: rotate(4deg);
  filter: grayscale(1);
}
.newspaper-sheet {
  padding: 24px 30px 30px;
  background: #ece5d2;
  font-family: "Times New Roman", serif;
  transform: rotate(-0.2deg);
}
.newspaper-sheet header {
  text-align: center;
  border-top: 5px solid #171717;
}
.paper-meta {
  font:
    700 9px Arial,
    sans-serif;
  letter-spacing: 0.13em;
  padding: 6px;
}
.newspaper-sheet h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 0;
  letter-spacing: -0.05em;
}
.paper-rule {
  border-top: 4px double #171717;
  margin-top: 5px;
}
.lead-story {
  padding: 14px 8px;
  border-bottom: 2px solid #222;
}
.lead-story h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.92;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.lead-story p {
  font-size: 18px;
  font-style: italic;
}
.columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  margin-top: 8px;
}
.columns article,
.columns aside {
  padding: 10px 12px;
  border-right: 1px solid #444;
}
.columns > *:last-child {
  border-right: 0;
}
.columns h3 {
  font-size: 20px;
  line-height: 1;
  margin: 0 0 7px;
}
.columns p {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}
.columns aside {
  font-family: Georgia, serif;
}
.correction-box {
  margin-top: 12px;
  padding: 9px;
  border-top: 3px double #222;
  border-bottom: 3px double #222;
  font:
    700 10px Arial,
    sans-serif;
}
.fold-button {
  display: block;
  margin: 18px auto 0;
}
.retrospective {
  padding: 34px 40px;
  background: linear-gradient(#efe0ba, #dcc699);
}
.ret-mark {
  display: inline-block;
  border: 3px solid #8d2a2f;
  color: #8d2a2f;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 900;
  transform: rotate(-2deg);
}
.retrospective h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  margin: 18px 0;
}
.retrospective > p {
  font:
    18px/1.5 Georgia,
    serif;
}
.final-reveal {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  background: #d1b97f;
  border: 5px double #6e5123;
  padding: 16px;
  margin: 22px 0;
}
.final-reveal img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid #7f5d28;
}
.final-reveal small {
  font-weight: 900;
  letter-spacing: 0.12em;
}
.final-reveal h2 {
  font:
    900 28px/1 Georgia,
    serif;
  margin: 7px 0;
}
.run-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.run-grid > div {
  border-top: 2px solid #5c5038;
  padding-top: 8px;
}
.run-grid h3 {
  font-size: 11px;
  letter-spacing: 0.14em;
}
.run-grid p {
  margin: 5px 0;
  font-size: 12px;
}
.end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.desk-actions {
  position: absolute;
  z-index: 6;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}
.desk-actions button {
  background: rgba(8, 12, 18, 0.88);
  border: 1px solid #6f5b3a;
  color: #e7d4aa;
  padding: 9px 11px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.help-layer {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: #020407cc;
  display: grid;
  place-items: center;
  padding: 20px;
}
.help-card {
  width: min(560px, 92vw);
  background: #efe2bf;
  color: #211b12;
  padding: 28px;
  border: 5px double #302b22;
}
.help-card button {
  float: right;
  border: 0;
  background: transparent;
  font-size: 30px;
}
.help-card h2 {
  font:
    900 32px/1 Georgia,
    serif;
}
.help-card p {
  font:
    16px/1.5 Georgia,
    serif;
}
.archive-room {
  background-image: url("./assets/ronald-trumpet-loading.jpg");
  filter: saturate(0.4) brightness(0.55);
}
.archive-screen header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 55px;
}
.archive-screen header small {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #bca371;
}
.archive-screen header h1 {
  font:
    900 clamp(44px, 6vw, 72px) Georgia,
    serif;
  margin: 8px 0;
}
.archive-back {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 20px;
  background: #0d141c;
  color: #e2cca0;
  border: 1px solid #7e6843;
  padding: 10px;
}
.archive-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 28px;
}
.archive-portrait {
  text-align: center;
}
.gold-frame {
  aspect-ratio: 0.78;
  background: #17191d;
  border: 14px ridge #aa803a;
  box-shadow: 0 20px 45px #0009;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gold-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.shadow-dog {
  width: 65%;
  height: 72%;
  background: radial-gradient(
    circle at 50% 27%,
    #d0c3a8 0 8%,
    #7f725d 9% 23%,
    #23201c 24% 100%
  );
  clip-path: polygon(
    20% 10%,
    35% 0,
    43% 18%,
    57% 18%,
    65% 0,
    80% 10%,
    77% 42%,
    90% 100%,
    10% 100%,
    23% 42%
  );
}
.sealed {
  font:
    900 20px Georgia,
    serif;
  color: #6e614e;
  border: 3px solid #6e614e;
  padding: 10px;
  transform: rotate(-8deg);
}
.archive-portrait h3 {
  margin: 13px 0 4px;
  font:
    700 18px Georgia,
    serif;
}
.archive-portrait p {
  margin: 0;
  color: #b8aa8d;
  font:
    italic 12px Georgia,
    serif;
}
.archive-ledger {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 16px;
  color: #c5b184;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.unstable .office-scene {
  filter: saturate(0.9) contrast(1.05);
}
.unstable .stage {
  animation: verySmallShake 4s infinite;
}
@keyframes verySmallShake {
  0%,
  96%,
  100% {
    transform: none;
  }
  97% {
    transform: translateX(-1px);
  }
  98% {
    transform: translateX(1px);
  }
}
@media (max-width: 980px) {
  .command-bar {
    grid-template-columns: auto auto 1fr auto;
  }
  .hud-metrics {
    grid-column: 1/-1;
    order: 2;
  }
  .brief-rail {
    display: none;
  }
  .stage {
    padding: 32px 3vw 90px;
  }
  .briefing-folder,
  .executive-file,
  .newspaper-sheet,
  .retrospective {
    width: min(900px, 94vw);
  }
  .paper-stage {
    width: 94vw;
  }
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hero-copy {
    padding: 11vh 6vw 10vh;
  }
  .hero-copy h1 {
    font-size: 62px;
  }
  .command-bar {
    gap: 7px;
    padding: 8px;
  }
  .brand-button {
    width: 42px;
    height: 42px;
  }
  .day-chip span,
  .icon-button {
    display: none;
  }
  .hud-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .stage {
    padding-top: 24px;
  }
  .briefing-folder,
  .executive-file,
  .newspaper-sheet,
  .retrospective {
    padding: 25px 22px;
  }
  .folder-tab {
    font-size: 9px;
  }
  .consult-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .decision {
    grid-template-columns: 30px 1fr auto;
  }
  .columns {
    grid-template-columns: 1fr;
  }
  .columns article,
  .columns aside {
    border-right: 0;
    border-bottom: 1px solid #444;
  }
  .final-reveal {
    grid-template-columns: 1fr;
  }
  .run-grid {
    grid-template-columns: 1fr;
  }
  .archive-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 14px;
  }
  .archive-portrait h3 {
    font-size: 14px;
  }
  .desk-actions {
    left: 8px;
    right: 8px;
    justify-content: space-between;
  }
  .newspaper-prop {
    display: none;
  }
}
.decision-result {
  width: min(720px, 78vw);
  background: linear-gradient(#f4e7c6, #e2cfa4);
  color: #211b12;
  padding: 42px 48px;
  border: 1px solid #ad986c;
  border-top: 14px solid #264f7a;
  box-shadow: 0 24px 60px #000a;
  position: relative;
}
.decision-result small {
  display: block;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #5b4b30;
}
.decision-result h2 {
  margin: 12px 0;
  font: 900 clamp(34px, 5vw, 58px) / 0.95 Georgia, serif;
}
.decision-result p {
  font: 18px/1.55 Georgia, serif;
}
.result-narrative {
  margin: 22px 0 14px;
  padding: 18px 20px;
  background: #fff9e9;
  border-left: 5px solid #264f7a;
}
.result-narrative > b,
.result-ledger > b {
  display: block;
  margin-bottom: 6px;
  color: #264f7a;
  font: 900 11px/1.2 Arial, sans-serif;
  letter-spacing: 0.14em;
}
.result-narrative p {
  margin: 0;
}
.result-ledger {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  padding: 10px 0;
  border-top: 1px dashed #8e7b56;
  border-bottom: 1px dashed #8e7b56;
  font: 700 13px/1.4 Arial, sans-serif;
}
.result-ledger > b {
  margin: 0;
  flex: 0 0 auto;
}
.result-stamp {
  position: absolute;
  right: 28px;
  top: 24px;
  border: 4px solid #8d292d;
  color: #8d292d;
  padding: 8px 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(5deg);
}
.phone-choice-stack {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}
.phone-object {
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.interrupt-card {
  position: relative;
  z-index: 1;
}
.phone-choice-stack button {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  background: #8f292d;
  border: 1px solid #5d1519;
  box-shadow: 0 3px 0 #4b1114;
}
.phone-choice-stack button span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0dbad;
  color: #671a1e;
}
.phone-choice-stack button small {
  color: #f2cf9e;
}
.phone-reply blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 5px solid #8f292d;
  background: #d9c494;
  font: italic 18px/1.45 Georgia, serif;
}
.phone-reply .your-response {
  font: 900 12px/1.4 Inter, sans-serif;
  letter-spacing: 0.08em;
}
.phone-outcome {
  padding: 12px;
  background: #f7efd9;
  border: 1px solid #b9a57c;
  font-weight: 700 !important;
}
.phone-object.answered {
  transform: rotate(9deg) translate(-250px, -120px);
}
.overnight small,
.lead-story small,
.columns article > small {
  display: block;
  margin-bottom: 6px;
  color: #7f292d;
  font: 900 9px/1.2 Arial, sans-serif;
  letter-spacing: 0.14em;
}
.columns {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.columns article {
  min-height: 150px;
  border-bottom: 1px solid #555;
}
.news-consequence {
  background: #e0d4b8;
}
.news-phone {
  background: #ead5d1;
}
.market-desk {
  margin-top: 12px;
  padding: 12px;
  border: 3px double #222;
  font-family: Georgia, serif;
}
.market-desk > b {
  display: block;
  margin-bottom: 8px;
  font: 900 10px Arial, sans-serif;
  letter-spacing: 0.14em;
}
.market-desk > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.market-desk span,
.market-desk i {
  display: block;
}
.market-desk span {
  font-size: 13px;
}
.market-desk i {
  color: #6c5b3e;
  font-size: 11px;
}
.run-grid p span {
  display: block;
  margin: 2px 0 8px 22px;
  color: #5d5037;
  font: 11px/1.35 Georgia, serif;
}
.archive-screen {
  overflow: auto;
}
.archive-screen header {
  max-width: 850px;
  margin: 0 auto;
  padding-inline: 24px;
}
.archive-screen header p {
  color: #d8c7a5;
  font: 16px/1.5 Georgia, serif;
}
.ending-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 34px auto;
  padding: 0 28px;
}
.ending-card {
  min-height: 225px;
  padding: 20px;
  background: linear-gradient(#e9d9b4, #cdbb91);
  color: #211b12;
  border: 5px double #8b6a32;
  box-shadow: 0 15px 35px #0008;
}
.ending-card.locked {
  background: linear-gradient(#252a31, #12161b);
  color: #c9b996;
  border-color: #67593f;
}
.ending-card small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.ending-card h2 {
  margin: 12px 0 8px;
  font: 900 25px/1 Georgia, serif;
}
.ending-card p {
  font: 14px/1.45 Georgia, serif;
}
.ending-reveal {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #756440;
  font: 12px/1.4 Georgia, serif;
}
.ending-reveal b {
  display: block;
  margin-bottom: 4px;
  color: #81262b;
  font: 900 9px Arial, sans-serif;
  letter-spacing: 0.13em;
}
@media (max-width: 640px) {
  .decision-result {
    width: 94vw;
    padding: 34px 24px 26px;
  }
  .result-stamp {
    right: 18px;
    top: 14px;
    font-size: 10px;
  }
  .market-desk > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .ending-grid {
    grid-template-columns: 1fr;
    padding: 0 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
