.gh {
  min-height: 70vh;
  padding: clamp(3rem, 8vh, 7rem) 0 6rem;
}
.gh-intro {
  max-width: 60ch;
  margin: 0 auto;
  text-align: left;
}
.gh-h1 {
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  margin: .6rem 0 .2rem;
  letter-spacing: -.01em;
}
.gh-sub {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--text-muted);
  margin: 0 0 1.8rem;
}
.gh-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 0 2rem;
}
.gh-fine {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--text-subtle);
  margin-top: 1rem;
}
.gh-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.gh-main {
  max-width: 62ch;
  min-height: 40vh;
}
.gh-ledger {
  position: sticky;
  top: 5.5rem;
  padding: 1.1rem 1.2rem 1.3rem;
  font-size: .85rem;
}
.gh-ledger-title {
  margin: 0 0 .8rem;
}
.gh-rows {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.gh-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: .55rem;
  align-items: start;
  opacity: .28;
  transition: opacity .55s cubic-bezier(.16, 1, .3, 1);
}
.gh-row.revealed {
  opacity: 1;
}
.gh-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: .45em;
  background: var(--text-subtle);
}
.gh-row[data-risk=low] .gh-dot {
  background: #6a8f6a;
}
.gh-row[data-risk=medium] .gh-dot {
  background: #c39a4b;
}
.gh-row[data-risk=high] .gh-dot {
  background: #b5654a;
}
.gh-row-label {
  color: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.5;
}
.gh-row-value {
  color: var(--text-color);
  font-size: .85rem;
  line-height: 1.4;
  word-break: break-word;
}
.gh-row-value.pending {
  color: var(--text-subtle);
  font-style: italic;
}
.gh-bits {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.gh-line {
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 0 1.1rem;
  min-height: 1.7em;
}
.gh-line.serif {
  font-family: var(--font-serif);
}
.gh-line.muted {
  color: var(--text-muted);
}
.gh-line.aside {
  font-size: .92rem;
  color: var(--text-subtle);
  border-left: 2px solid var(--border-color);
  padding-left: .9rem;
}
.gh-word {
  display: inline-block;
  transition: opacity .28s ease-out;
  will-change: opacity;
}
.gh-dotchar {
  display: inline;
  transition: opacity .2s ease-out;
}
.gh-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.gh-actions[hidden] {
  display: none;
}
.gh-perm {
  border: 1px solid var(--border-color);
  border-radius: var(--panel-radius);
  padding: .9rem 1rem;
  margin: 0 0 .8rem;
}
.gh-perm-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.gh-perm-title {
  font-weight: 500;
}
.gh-perm-state {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.gh-perm-state[data-state=granted] {
  color: #6a8f6a;
}
.gh-perm-state[data-state=denied] {
  color: #b5654a;
}
.gh-perm-unlocks {
  font-size: .88rem;
  color: var(--text-muted);
  margin: .35rem 0 .7rem;
}
.gh-perm-result {
  font-size: .9rem;
  margin-top: .6rem;
}
.gh-q-prompt {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  line-height: 1.25;
  margin: 0 0 1.3rem;
}
.gh-q-count {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin: 0 0 .8rem;
}
.gh-opts {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.gh-opt {
  text-align: left;
  padding: .8rem 1rem;
  font-family: var(--font-sans);
  font-size: .98rem;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.gh-opt:hover {
  border-color: var(--text-color);
}
.gh-q-narration {
  margin-top: 1.4rem;
  font-size: 1rem;
  color: var(--text-muted);
  min-height: 1.6em;
}
.gh-read-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 400;
  margin: 0 0 1.4rem;
}
.gh-dossier {
  margin-top: 1.5rem;
}
.gh-group {
  margin: 0 0 1.6rem;
}
.gh-group-title {
  margin: 0 0 .7rem;
}
.gh-d-row {
  display: grid;
  grid-template-columns: 11px 1fr;
  gap: .6rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .92rem;
}
.gh-d-label {
  color: var(--text-subtle);
  font-size: .85rem;
}
.gh-d-value {
  color: var(--text-color);
}
.gh-d-receipts {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--text-subtle);
  margin-top: .2rem;
  letter-spacing: .03em;
}
.gh-d-status {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .05rem .4rem;
  border-radius: 3px;
  margin-left: .4rem;
  vertical-align: middle;
}
.gh-d-status.corroborated {
  color: #6a8f6a;
  border: 1px solid #6a8f6a55;
}
.gh-d-status.contradicted {
  color: #b5654a;
  border: 1px solid #b5654a55;
}
.gh-d-status.inferred {
  color: var(--text-subtle);
  border: 1px solid var(--border-color);
}
.gh-capture {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--panel-radius);
}
.gh-capture-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .9rem;
}
.gh-input {
  flex: 1 1 220px;
  padding: .7rem .9rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-color);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}
.gh-consent {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .8rem;
}
.gh-capture-msg {
  margin-top: .8rem;
  font-size: .9rem;
}
.gh-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--glass-shadow);
}
.gh-cookie[hidden] {
  display: none;
}
.gh-cookie-text {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1 1 280px;
}
.gh-cookie-actions {
  display: flex;
  gap: .5rem;
}
.gh-noscript {
  padding: 4rem 0;
  max-width: 60ch;
}
@media (max-width:820px) {
  .gh-cols {
    grid-template-columns: 1fr;
  }
  .gh-ledger {
    position: static;
    order: 2;
    margin-top: 2rem;
  }
  .gh-main {
    order: 1;
    max-width: none;
  }
}
@media (prefers-reduced-motion:reduce) {
  .gh-word,
  .gh-dotchar {
    transition: none !important;
    opacity: 1 !important;
  }
  .gh-row {
    transition: none !important;
  }
}
