:root {
  color-scheme: dark;
  --bg: #07090d;
  --panel: #101722;
  --panel-2: #162233;
  --text: #edf4ff;
  --muted: #9fb0c8;
  --signal: #72d7ff;
  --gold: #d9b86c;
  --danger: #ff7a90;
  --focus: #f4d35e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #142033 0%, var(--bg) 52%, #020306 100%);
  color: var(--text);
  font: 18px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--signal); }
a:focus, button:focus { outline: 3px solid var(--focus); outline-offset: 3px; }
.wrap { width: min(880px, calc(100% - 28px)); margin: 0 auto; padding: 48px 0; }
.skip { position: absolute; left: -999px; top: 1rem; background: var(--focus); color: #000; padding: .5rem .75rem; }
.skip:focus { left: 1rem; z-index: 10; }
.hero, .scene, table {
  background: linear-gradient(180deg, rgba(16,23,34,.94), rgba(8,12,18,.96));
  border: 1px solid rgba(114,215,255,.22);
  box-shadow: 0 24px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 44px);
}
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 8vw, 5rem); line-height: .95; margin: .2em 0 .3em; }
h2 { margin-top: 2rem; color: var(--gold); }
.lede, .location { color: var(--muted); font-size: 1.1rem; }
.story-text { margin: 2rem 0; }
.story-text p { margin: 0 0 1.1rem; }
.choices { display: grid; gap: .8rem; margin-top: 2rem; }
button, .choice {
  border: 1px solid rgba(114,215,255,.28);
  border-radius: 14px;
  background: var(--panel-2);
  color: var(--text);
  padding: 1rem 1.1rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
button:hover, .choice:hover { border-color: var(--signal); background: #1d2d43; }
.primary { display: inline-block; margin-top: 1rem; text-align: center; font-weight: 700; }
.choice-num { color: var(--gold); font-weight: 800; margin-right: .4rem; }
.save-box { margin-top: 2rem; padding: 1rem; border: 1px dashed rgba(159,176,200,.5); color: var(--muted); border-radius: 12px; }
code { color: var(--gold); }
table { width: 100%; border-collapse: collapse; padding: 0; overflow: hidden; }
th, td { border-bottom: 1px solid rgba(255,255,255,.1); padding: .7rem; text-align: left; }
.ending { border-left: 4px solid var(--gold); padding-left: 1rem; }
@media (max-width: 600px) { body { font-size: 17px; } .wrap { padding: 20px 0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }


.muted { color: var(--muted); }
.notice { border-left: 4px solid var(--gold); padding: .75rem 1rem; background: rgba(217,184,108,.09); }
.stack { display: grid; gap: .85rem; }
.stack label { color: var(--gold); font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(114,215,255,.28);
  border-radius: 12px;
  background: #09111c;
  color: var(--text);
  padding: .9rem 1rem;
  font: inherit;
}
textarea { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9rem; line-height: 1.45; }
.admin-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
.metric { border: 1px solid rgba(114,215,255,.2); border-radius: 16px; padding: 1rem; background: rgba(114,215,255,.06); }
.metric span { display: block; color: var(--muted); font-size: .85rem; }
.metric strong { display: block; font-size: 2rem; color: var(--gold); }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.validation-output { white-space: pre-wrap; overflow: auto; border: 1px solid rgba(217,184,108,.35); border-radius: 14px; padding: 1rem; background: rgba(0,0,0,.25); color: var(--text); }
.auth-panel { max-width: 620px; margin: 0 auto; }


.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .48;
  background:
    linear-gradient(rgba(114,215,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,215,255,.028) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(114,215,255,.18), transparent 28%),
    radial-gradient(circle at 82% 5%, rgba(217,184,108,.12), transparent 24%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.site-header {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(114,215,255,.45);
  border-radius: 999px;
  color: var(--signal);
  box-shadow: 0 0 22px rgba(114,215,255,.18);
}
.site-header nav { display: flex; gap: .6rem; flex-wrap: wrap; }
.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(159,176,200,.18);
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(16,23,34,.5);
}
.site-header nav a:hover { color: var(--text); border-color: rgba(114,215,255,.45); }
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1rem 0 1.25rem;
}
.status-row span, .relay-card {
  border: 1px solid rgba(114,215,255,.22);
  border-radius: 999px;
  background: rgba(114,215,255,.07);
  color: var(--muted);
  padding: .42rem .7rem;
  font-size: .9rem;
}
.relay-card {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  margin: 1.4rem 0 .4rem;
  color: var(--text);
}
.relay-card strong { color: var(--gold); }
.relay-card span { display: block; color: var(--muted); margin-top: .25rem; }
.hero, .scene { position: relative; overflow: hidden; }
.hero::after, .scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 35%, rgba(114,215,255,.06) 48%, transparent 62% 100%);
  transform: translateX(-30%);
}


/* Launch art direction pass */
:root {
  --ink: #05070b;
  --cream: #f5efe2;
  --paper: #e4d8bf;
  --copper: #b9824a;
  --deep-blue: #091522;
  --signal-soft: rgba(114, 215, 255, .16);
}
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(114,215,255,.16), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(217,184,108,.11), transparent 28%),
    linear-gradient(180deg, #08101a 0%, #030509 72%, #010204 100%);
  color: var(--cream);
}
.wrap { width: min(1120px, calc(100% - 28px)); }
.site-header { padding-top: 22px; }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.brand-mark { font-family: system-ui, sans-serif; background: rgba(114,215,255,.045); }
.launch {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .74fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 6vw, 72px);
  min-height: 620px;
}
.launch h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.065em;
  font-size: clamp(4rem, 12vw, 8.8rem);
  color: var(--cream);
  text-shadow: 0 0 36px rgba(114,215,255,.12);
}
.launch .lede {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #c8d2df;
}
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.big-cta {
  min-width: 210px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), #f1d78c 42%, var(--copper));
  color: #120d06;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 18px 48px rgba(217,184,108,.18);
}
.big-cta:hover { background: linear-gradient(135deg, #f4d990, #ffe8a8 42%, #c89152); color: #090602; }
.ghost-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
}
.ghost-link:hover { color: var(--signal); }
.issue-card {
  position: relative;
  min-height: 460px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217,184,108,.32);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17,25,37,.86), rgba(5,8,13,.96)),
    radial-gradient(circle at 50% 0%, rgba(114,215,255,.24), transparent 44%);
  box-shadow: 0 34px 90px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.035);
  overflow: hidden;
}
.issue-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(114,215,255,.13);
  border-radius: 18px;
  pointer-events: none;
}
.issue-card::after {
  content: "333";
  position: absolute;
  right: -16px;
  bottom: -48px;
  font: 900 9rem/1 system-ui, sans-serif;
  color: rgba(114,215,255,.055);
  letter-spacing: -.08em;
}
.issue-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.issue-card h2 {
  margin: 3.4rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: .93;
  color: var(--cream);
}
.issue-card p { color: #c9d3df; }
.small-note { color: var(--muted) !important; font-size: .9rem; }
.relay-meter { display: flex; gap: .45rem; margin: 2rem 0 1rem; }
.relay-meter span {
  display: block;
  width: 28px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(114,215,255,.28);
  background: linear-gradient(to top, rgba(114,215,255,.38), rgba(114,215,255,.04));
  box-shadow: 0 0 18px rgba(114,215,255,.13);
}
.relay-meter span:nth-child(2) { height: 72px; }
.relay-meter span:nth-child(3) { height: 44px; opacity: .72; }
.relay-meter span:nth-child(4) { height: 88px; }
.relay-meter span:nth-child(5) { height: 34px; opacity: .5; }
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.15rem;
}
.feature-strip div {
  border: 1px solid rgba(114,215,255,.16);
  border-radius: 18px;
  background: rgba(10,16,25,.62);
  padding: 1rem 1.1rem;
}
.feature-strip strong { display: block; color: var(--gold); margin-bottom: .25rem; }
.feature-strip span { color: var(--muted); font-size: .95rem; }
.scene {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(13,20,30,.96), rgba(5,8,13,.98));
}
.scene h1 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
.story-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.17rem, 2vw, 1.38rem);
  line-height: 1.78;
  color: #efe7d8;
}
.choice {
  background: linear-gradient(180deg, rgba(22,34,51,.92), rgba(10,16,25,.96));
  position: relative;
  padding-left: 1.25rem;
}
.choice::after {
  content: "↗";
  float: right;
  color: rgba(114,215,255,.45);
}
.save-box { background: rgba(0,0,0,.22); }
@media (max-width: 820px) {
  .launch { grid-template-columns: 1fr; min-height: auto; }
  .issue-card { min-height: 360px; }
  .feature-strip { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
}
@media (prefers-reduced-motion: no-preference) {
  .brand-mark, .relay-meter span { animation: signalPulse 4.8s ease-in-out infinite; }
  @keyframes signalPulse { 0%, 100% { opacity: .75; } 50% { opacity: 1; } }
}


/* Landing simplification, cover-forward pass */
.cover-launch {
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  min-height: 680px;
}
.mini-logo {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(217,184,108,.38);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(114,215,255,.16), rgba(114,215,255,.035) 58%, transparent 60%);
  box-shadow: 0 0 36px rgba(114,215,255,.12), inset 0 0 0 1px rgba(255,255,255,.04);
}
.mini-logo span { font-size: 2rem; color: var(--signal); }
.cover-launch .lede { max-width: 740px; }
.under-cta { color: var(--muted); margin-top: 1rem; }
.under-cta a { color: var(--muted); text-decoration: none; }
.under-cta a:hover { color: var(--signal); }
.cover-frame {
  justify-self: center;
  width: min(390px, 100%);
  filter: drop-shadow(0 32px 70px rgba(0,0,0,.58));
}
.cover-art-placeholder {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(217,184,108,.35);
  background:
    radial-gradient(circle at 50% 48%, rgba(114,215,255,.22), transparent 17%),
    linear-gradient(180deg, #0b1724 0%, #07101a 48%, #020406 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), inset 0 -120px 120px rgba(0,0,0,.5);
}
.cover-art-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(114,215,255,.18) 49%, transparent 52% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 5px);
  opacity: .42;
}
.cover-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,225,235,.18), transparent 38%),
    radial-gradient(ellipse at 35% 38%, rgba(200,225,235,.12), transparent 34%);
  filter: blur(10px);
}
.cover-payphone {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 70px;
  height: 132px;
  transform: translate(-50%, -50%);
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(104,194,224,.52), rgba(22,56,73,.82));
  box-shadow: 0 0 55px rgba(114,215,255,.55), 0 0 120px rgba(114,215,255,.24);
}
.cover-payphone::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 42px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
}
.cover-payphone::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 66px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 999px;
}
.cover-road {
  position: absolute;
  left: 50%;
  bottom: -12%;
  width: 74%;
  height: 56%;
  transform: translateX(-50%) perspective(240px) rotateX(58deg);
  background: linear-gradient(90deg, transparent 0 47%, rgba(217,184,108,.35) 49%, transparent 51% 100%), linear-gradient(180deg, rgba(24,33,43,.1), rgba(0,0,0,.76));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}
.cover-copy {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
}
.cover-copy span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.cover-copy h2 {
  margin: .55rem 0 .5rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: .94;
  font-size: clamp(2.05rem, 5vw, 3.15rem);
}
.cover-copy p { margin: 0; color: var(--muted); }
.faq-page { max-width: 860px; }
.faq-item {
  border-top: 1px solid rgba(114,215,255,.16);
  padding: 1.1rem 0;
}
.faq-item h2 {
  color: var(--gold);
  margin: 0 0 .3rem;
  font-size: 1.25rem;
}
.faq-item p { margin: 0; color: #ccd6e2; }
@media (max-width: 820px) {
  .cover-launch { grid-template-columns: 1fr; }
  .cover-frame { width: min(340px, 100%); }
}


/* Real cover art integration */
.cover-art {
  margin: 0;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(217,184,108,.42);
  background: #03070b;
  box-shadow: 0 34px 90px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.012);
}
.cover-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,3,6,.28), transparent 34%, rgba(1,3,6,.72) 100%),
    radial-gradient(circle at 50% 45%, transparent 0 34%, rgba(0,0,0,.18) 72%, rgba(0,0,0,.44) 100%);
  pointer-events: none;
}
.cover-art::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245,239,226,.13);
  border-radius: 18px;
  pointer-events: none;
}
.cover-art figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  text-shadow: 0 2px 18px rgba(0,0,0,.9);
}
.cover-art figcaption span {
  display: block;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
  margin-bottom: .45rem;
}
.cover-art figcaption strong {
  display: block;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.28rem);
  line-height: .98;
}


/* Mobile cover stability pass */
.launch,
.launch-copy,
.cover-frame,
.cover-art,
.cover-art img {
  min-width: 0;
}
.cover-frame {
  max-width: 100%;
}
.cover-art img {
  max-width: 100%;
}
@media (max-width: 700px) {
  .site-header {
    width: min(100% - 28px, 420px);
  }
  .site-header nav {
    justify-content: flex-end;
  }
  .wrap {
    width: min(100% - 24px, 420px);
    padding-top: 28px;
  }
  .launch,
  .cover-launch {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 24px;
    border-radius: 18px;
  }
  .cover-launch h1,
  .launch h1 {
    font-size: clamp(3.05rem, 17vw, 4.45rem);
    line-height: .92;
  }
  .cover-launch .lede {
    font-size: 1.03rem;
    line-height: 1.6;
  }
  .cta-row,
  .big-cta {
    width: 100%;
  }
  .big-cta {
    justify-content: center;
    text-align: center;
  }
  .cover-frame {
    width: 100%;
    max-width: 320px;
    align-self: center;
    justify-self: center;
  }
  .cover-art {
    width: 100%;
    height: auto;
  }
  .cover-art figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .cover-art figcaption strong {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }
}
@media (max-width: 360px) {
  .site-header {
    align-items: flex-start;
  }
  .brand {
    max-width: 145px;
    line-height: 1.15;
  }
  .site-header nav {
    gap: .4rem;
  }
  .site-header nav a {
    padding: .4rem .58rem;
  }
  .launch,
  .cover-launch {
    padding: 20px;
  }
  .cover-frame {
    max-width: 280px;
  }
}


.inventory {
  margin: 1.5rem 0;
  border: 1px solid rgba(114,215,255,.18);
  border-radius: 14px;
  background: rgba(114,215,255,.055);
  padding: .9rem 1rem;
  color: var(--muted);
}
.inventory strong { color: var(--gold); display: block; margin-bottom: .35rem; }
.inventory ul { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.inventory li { border: 1px solid rgba(159,176,200,.22); border-radius: 999px; padding: .22rem .55rem; font-size: .88rem; }


.pie-chart {
  width: min(220px, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(245,239,226,.18);
  box-shadow: inset 0 0 0 18px rgba(5,7,11,.42), 0 20px 55px rgba(0,0,0,.28);
  margin: 1rem 0;
}
.chart-legend { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; gap: .35rem; }
.chart-legend li { color: var(--muted); font-size: .92rem; }
.chart-legend span { display: inline-block; width: .75rem; height: .75rem; border-radius: 999px; margin-right: .45rem; vertical-align: -.05rem; }
.telemetry-card {
  border: 1px solid rgba(114,215,255,.16);
  border-radius: 14px;
  padding: .8rem 1rem;
  background: rgba(7,12,20,.52);
  margin: .75rem 0;
}
.telemetry-card summary { cursor: pointer; color: var(--cream); font-weight: 700; }
.telemetry-card summary span { color: var(--muted); font-weight: 400; float: right; }
.bar-chart { display: grid; gap: .8rem; margin-top: 1rem; }
.bar-label { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .92rem; }
.bar-track { height: .75rem; border-radius: 999px; background: rgba(159,176,200,.16); overflow: hidden; }
.bar-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--signal), var(--gold)); min-width: 3px; }
.route-steps { color: var(--muted); }
.truth-card { border: 1px solid rgba(217,184,108,.22); border-radius: 14px; padding: 1rem; background: rgba(217,184,108,.055); margin: .75rem 0; }
.truth-card p:first-child { color: var(--cream); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.truth-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.truth-actions button { padding: .55rem .75rem; font-size: .95rem; }
@media (max-width: 700px) { .telemetry-card summary span { float: none; display: block; margin-top: .25rem; } }


.truth-line-form {
  display: grid;
  gap: .85rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border: 1px solid rgba(217,184,108,.28);
  border-radius: 16px;
  background: rgba(217,184,108,.06);
}
.truth-line-form label span,
.truth-consent { color: var(--muted); font-size: .95rem; }
.truth-line-form textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(245,239,226,.2);
  background: rgba(3,6,10,.72);
  color: var(--cream);
  padding: .85rem;
  font: inherit;
  resize: vertical;
}
.truth-echoes {
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid rgba(114,215,255,.2);
  border-radius: 16px;
  background: rgba(114,215,255,.055);
}
.truth-echoes h2 { margin-top: 0; }
.truth-echoes li { margin: .5rem 0; color: var(--cream); }


.site-footer {
  max-width: 1120px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
}
.site-footer a {
  color: color-mix(in srgb, var(--muted) 82%, var(--gold));
  text-decoration: none;
  border-bottom: 1px solid rgba(217,184,108,.22);
}
.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold);
  border-bottom-color: rgba(217,184,108,.65);
}


.support-callout {
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid rgba(217,184,108,.24);
  border-radius: 16px;
  background: rgba(217,184,108,.055);
  color: var(--muted);
}
.support-callout p {
  margin: 0 0 .65rem;
}
.support-callout a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(217,184,108,.5);
  font-weight: 700;
}
.support-callout a:hover,
.support-callout a:focus {
  color: var(--cream);
  border-bottom-color: var(--cream);
}


.report-form input,
.report-form textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(245,239,226,.18);
  background: rgba(3,6,10,.68);
  color: var(--cream);
  padding: .8rem;
  font: inherit;
}
.report-form textarea { resize: vertical; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }


.reveal-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: -.25rem 0 .75rem;
}
.reveal-toggle {
  border: 1px solid rgba(217,184,108,.22);
  background: rgba(7,12,20,.48);
  color: var(--muted);
  border-radius: 999px;
  padding: .35rem .65rem;
  font-size: .82rem;
  letter-spacing: .02em;
}
.reveal-toggle:hover,
.reveal-toggle:focus {
  color: var(--gold);
  border-color: rgba(217,184,108,.55);
}
.story-text.is-revealing > * {
  opacity: 0;
  transform: translateY(.35rem);
}
.story-text.is-revealing > *.revealed-now {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .story-text.is-revealing > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.report-form .hp {
  display: none !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}


.save-box strong,
.save-box code,
.save-box span {
  display: block;
}
.save-box strong {
  color: var(--gold);
  margin-bottom: .25rem;
}
.save-box code {
  color: var(--cream);
  font-size: 1.02rem;
  word-break: break-all;
  margin-bottom: .35rem;
}
.save-box span {
  font-size: .92rem;
  color: var(--muted);
}


.resume-panel {
  margin-top: .85rem;
  max-width: 520px;
  color: var(--muted);
}
.resume-panel summary {
  cursor: pointer;
  display: inline-block;
  color: var(--muted);
  border-bottom: 1px solid rgba(217,184,108,.22);
}
.resume-panel summary:hover,
.resume-panel summary:focus { color: var(--gold); }
.resume-form {
  margin-top: .8rem;
  padding: .9rem;
  border: 1px solid rgba(114,215,255,.18);
  border-radius: 14px;
  background: rgba(7,12,20,.45);
}
.resume-form label {
  display: block;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .45rem;
}
.resume-form div {
  display: flex;
  gap: .5rem;
}
.resume-form input {
  min-width: 0;
  flex: 1;
}
.resume-form button {
  white-space: nowrap;
  padding: .75rem .9rem;
}
@media (max-width: 560px) {
  .resume-form div { flex-direction: column; }
}
