:root {
  --rice: #efe6d4;
  --paper: #f7f0e3;
  --indigo: #172f4a;
  --indigo-deep: #0f2135;
  --vermilion: #b94d42;
  --rose: #dca59b;
  --mustard: #c5a441;
  --blue: #477594;
  --moss: #78815b;
  --line: rgba(23, 47, 74, 0.28);
  --paper-line: rgba(247, 240, 227, 0.3);
  --display: "Songti SC", "STSong", "SimSun", serif;
  --body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --utility: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --motion-out: cubic-bezier(0.16, 1, 0.3, 1);
  --icon-arrow-ne: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.25 12.75 12.75 3.25M6.5 3.25h6.25V9.5' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
  background: var(--rice);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--indigo);
  background: var(--rice);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--paper);
  background: var(--vermilion);
}

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 5px;
}

.ui-arrow,
.atlas-lane__links a::after {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 1em;
  background-color: currentColor;
  vertical-align: -0.1em;
  -webkit-mask: var(--icon-arrow-ne) center / contain no-repeat;
  mask: var(--icon-arrow-ne) center / contain no-repeat;
}

.ui-arrow--inline {
  margin-left: 0.28em;
}

[data-discreet] {
  display: none !important;
}

body[data-private="true"] [data-plain] {
  display: none !important;
}

body[data-private="true"] [data-discreet] {
  display: revert !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--indigo-deep);
  transform: translateY(-150%);
}

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

.assembly-bar {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 68px;
  display: grid;
  padding: 0 clamp(16px, 3.4vw, 54px);
  grid-template-columns: minmax(175px, 1fr) auto minmax(280px, 1fr);
  gap: 22px;
  align-items: center;
  color: var(--paper);
  background: var(--indigo-deep);
  border-bottom: 1px solid rgba(247, 240, 227, 0.25);
}

.assembly-mark {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.assembly-mark__edition {
  width: 40px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--indigo-deep);
  background: var(--mustard);
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.assembly-nav {
  display: flex;
  gap: clamp(13px, 1.45vw, 25px);
  align-items: center;
}

.assembly-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(247, 240, 227, 0.7);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.assembly-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.assembly-nav a:hover,
.assembly-nav a:focus-visible {
  color: var(--paper);
}

.assembly-nav a:hover::after,
.assembly-nav a:focus-visible::after {
  transform: scaleX(1);
}

.privacy-switch {
  min-height: 44px;
  display: inline-flex;
  padding: 0 0 0 16px;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(247, 240, 227, 0.32);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.assembly-tools {
  display: flex;
  justify-self: end;
  align-items: center;
}

.toolbox-disclosure {
  position: relative;
}

.toolbox-trigger {
  min-height: 44px;
  display: inline-flex;
  padding: 0 12px;
  align-items: center;
  gap: 7px;
  color: rgba(247, 240, 227, 0.76);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(247, 240, 227, 0.22);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.toolbox-trigger span {
  color: var(--mustard);
  font-size: 13px;
}

.toolbox-trigger strong {
  font: inherit;
}

.toolbox-trigger i {
  font-size: 11px;
  font-style: normal;
  transition: transform 160ms ease-out;
}

.toolbox-trigger:hover,
.toolbox-trigger[aria-expanded="true"] {
  color: var(--paper);
}

.toolbox-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.toolbox-panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 10px);
  right: 0;
  width: 310px;
  padding: 14px;
  color: var(--indigo-deep);
  background:
    linear-gradient(90deg, transparent 48px, rgba(185, 77, 66, 0.13) 49px, transparent 50px),
    var(--paper);
  border: 2px solid var(--indigo-deep);
  box-shadow: 7px 8px 0 rgba(23, 47, 74, 0.24);
}

.toolbox-panel[hidden] {
  display: none;
}

.toolbox-panel > header {
  min-height: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.toolbox-panel > header small {
  color: rgba(23, 47, 74, 0.56);
  font: inherit;
}

.toolbox-panel__list a {
  min-height: 78px;
  display: grid;
  padding: 13px 5px 13px 9px;
  grid-template-columns: 30px 1fr 16px;
  gap: 10px;
  align-items: center;
  color: var(--indigo-deep);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.toolbox-panel__list a:hover,
.toolbox-panel__list a:focus-visible,
.toolbox-panel__list a[aria-current="page"] {
  color: var(--vermilion);
  background: rgba(197, 164, 65, 0.1);
}

.toolbox-panel__list a > b,
.toolbox-panel__list a > i {
  font-family: var(--utility);
  font-size: 9px;
  font-style: normal;
}

.toolbox-panel__list a > span {
  display: grid;
  gap: 3px;
}

.toolbox-panel__list a strong {
  font-size: 14px;
}

.toolbox-panel__list a small {
  color: rgba(23, 47, 74, 0.64);
  font-size: 10px;
  line-height: 1.5;
}

.toolbox-panel > p {
  margin: 12px 4px 0 49px;
  color: rgba(23, 47, 74, 0.55);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.mobile-index-toggle,
.mobile-index-panel {
  display: none;
}

.assembly-search,
.assembly-help {
  min-height: 44px;
  display: inline-flex;
  padding: 0 12px;
  align-items: center;
  gap: 7px;
  color: rgba(247, 240, 227, 0.72);
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.assembly-search:hover,
.assembly-search:focus-visible {
  color: var(--mustard);
}

.assembly-search kbd {
  padding: 2px 4px;
  color: rgba(247, 240, 227, 0.45);
  border: 1px solid rgba(247, 240, 227, 0.24);
  font-family: var(--utility);
  font-size: 8px;
}

.assembly-help {
  margin-left: 11px;
  color: var(--indigo-deep);
  background: var(--mustard);
}

.assembly-help:hover,
.assembly-help:focus-visible {
  background: var(--paper);
}

.privacy-switch:hover,
.privacy-switch[aria-pressed="true"] {
  color: var(--mustard);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--vermilion);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.verdict-opening {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  background: var(--rice);
  border-bottom: 1px solid var(--line);
}

.verdict-opening::before,
.verdict-opening::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.verdict-opening::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(23, 47, 74, 0.1);
}

.verdict-opening::after {
  right: -8vw;
  bottom: -24vh;
  width: 40vw;
  height: 55vh;
  background: var(--vermilion);
  transform: rotate(-7deg);
}

.opening-register {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: clamp(22px, 4vw, 64px);
  left: clamp(22px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  color: rgba(23, 47, 74, 0.62);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.opening-thread {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.opening-thread path {
  fill: none;
  stroke-linecap: square;
}

.opening-thread__ghost {
  stroke: rgba(23, 47, 74, 0.12);
  stroke-width: 22;
}

.opening-thread__active {
  stroke: var(--blue);
  stroke-width: 5;
  stroke-dasharray: 0.04 0.025;
}

.verdict-copy {
  position: relative;
  z-index: 4;
  grid-column: 2 / span 7;
  padding: 112px 4vw 84px 0;
}

.verdict-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 8.6vw, 142px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.82;
}

.verdict-copy h1 span {
  display: block;
  width: fit-content;
}

.verdict-copy h1 span:nth-child(2) {
  margin-left: 0.6em;
  color: var(--vermilion);
}

.verdict-copy h1 span:nth-child(3) {
  margin-left: 1.15em;
}

.verdict-copy__lead {
  max-width: 36rem;
  margin: 34px 0 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.9;
}

.ink-action {
  min-height: 54px;
  display: inline-flex;
  margin-top: 32px;
  padding: 0 18px;
  align-items: center;
  gap: 38px;
  color: var(--paper);
  background: var(--indigo);
  border: 2px solid var(--indigo);
  box-shadow: 5px 5px 0 var(--mustard);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ink-action:hover,
.ink-action:focus-visible {
  color: var(--indigo-deep);
  background: var(--mustard);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--vermilion);
}

.ink-action:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.permission-slip {
  position: relative;
  z-index: 5;
  grid-column: 9 / span 3;
  min-height: 485px;
  display: flex;
  padding: 38px 34px 31px;
  flex-direction: column;
  color: var(--indigo);
  background: var(--paper);
  border: 2px solid var(--indigo);
  box-shadow: 10px 10px 0 rgba(23, 47, 74, 0.2);
  transform: rotate(1.2deg);
}

.permission-slip__tab {
  position: absolute;
  top: -25px;
  left: 26px;
  padding: 6px 11px;
  color: var(--indigo-deep);
  background: var(--mustard);
  border: 2px solid var(--indigo);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.permission-slip__counter {
  margin: 0 0 30px;
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.permission-slip h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.permission-slip h2 span {
  display: block;
  white-space: nowrap;
}

.permission-slip ol {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.permission-slip li {
  display: grid;
  min-height: 54px;
  padding: 9px 0;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.permission-slip li:last-child {
  border-bottom: 1px solid var(--line);
}

.permission-slip li span {
  color: var(--vermilion);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
}

.permission-slip li strong {
  font-size: 12px;
}

.permission-slip__note {
  margin: 22px 0 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.permission-slip__word {
  position: absolute;
  right: -22px;
  bottom: 17px;
  color: var(--rose);
  font-family: var(--display);
  font-size: 74px;
  font-weight: 900;
  letter-spacing: -0.12em;
  opacity: 0.26;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.opening-margin {
  position: absolute;
  z-index: 4;
  top: 48%;
  margin: 0;
  color: rgba(23, 47, 74, 0.52);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  writing-mode: vertical-rl;
}

.opening-margin--left {
  left: 18px;
}

.opening-margin--right {
  right: 16px;
}

.question-index {
  padding: clamp(78px, 8vw, 126px) 0 clamp(84px, 8vw, 126px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.question-index__head {
  display: grid;
  padding: 0 clamp(22px, 5.5vw, 88px) clamp(48px, 5vw, 74px);
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: end;
}

.question-index__head h2,
.trust-receipt h2,
.latest-ledger h2,
.myth-workbench h2,
.contact-letter h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.question-index__head h2 {
  max-width: 13ch;
  font-size: clamp(48px, 6vw, 92px);
}

.question-index__head > p {
  max-width: 31em;
  margin: 0;
  padding: 19px 0 0 23px;
  border-top: 1px solid var(--indigo);
  border-left: 7px solid var(--mustard);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.85;
}

.question-yard {
  height: min(650px, calc(100svh - 108px));
  min-height: 520px;
  display: flex;
  gap: 9px;
  padding: 0 clamp(16px, 2.5vw, 38px);
  overflow: hidden;
}

.question-door {
  --door-bg: var(--rice);
  --door-fg: var(--indigo);
  min-width: 0;
  flex: 0.64 1 0;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0fr);
  color: var(--door-fg);
  background: var(--door-bg);
  border: 2px solid var(--indigo);
  box-shadow: 6px 6px 0 rgba(23, 47, 74, 0.16);
  transition: flex 430ms var(--motion-out), grid-template-columns 430ms var(--motion-out), box-shadow 260ms ease-out;
}

.question-door.is-open {
  flex: 4.2 1 0;
  grid-template-columns: minmax(126px, 0.72fr) minmax(370px, 3.2fr);
  box-shadow: 9px 9px 0 rgba(23, 47, 74, 0.24);
}

.question-door--identity {
  --door-bg: #e7d9c4;
}

.question-door--now {
  --door-bg: var(--rose);
}

.question-door--body {
  --door-bg: var(--indigo);
  --door-fg: var(--paper);
}

.question-door--people {
  --door-bg: #d9d7b7;
}

.question-door--evidence {
  --door-bg: var(--blue);
  --door-fg: var(--paper);
}

.door-spine {
  position: relative;
  min-width: 0;
  display: grid;
  padding: 22px 15px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  align-items: start;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
}

.door-spine:hover {
  background: rgba(247, 240, 227, 0.38);
}

.question-door.is-open .door-spine {
  border-right: 2px solid currentColor;
}

.question-door.is-open .door-spine:hover {
  background: transparent;
}

.door-spine__kind {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.door-spine__question {
  align-self: center;
  justify-self: center;
  font-family: var(--display);
  font-size: clamp(26px, 2.35vw, 39px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  writing-mode: vertical-rl;
}

.question-door.is-open .door-spine__question {
  align-self: center;
  justify-self: start;
  writing-mode: horizontal-tb;
}

.door-spine__number {
  align-self: end;
  justify-self: end;
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.door-page {
  min-width: 0;
  overflow: hidden;
}

.door-page__sheet {
  width: min(58vw, 760px);
  height: 100%;
  display: grid;
  padding: clamp(26px, 3vw, 46px);
  grid-template-rows: auto 1fr auto;
  gap: 25px;
  color: var(--indigo);
  background: var(--paper);
  transform: translateX(20px);
  transition: transform 360ms var(--motion-out);
}

.question-door.is-open .door-page__sheet {
  transform: translateX(0);
}

.door-page__promise {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.3vw, 66px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.door-path {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}

.door-path li {
  counter-increment: route-step;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  border-top: 1px solid var(--indigo);
}

.door-path li:last-child {
  border-bottom: 1px solid var(--indigo);
}

.door-path li::before {
  content: counter(route-step, decimal-leading-zero);
  color: var(--vermilion);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
}

.door-path a {
  min-height: 56px;
  display: flex;
  padding: 8px 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.door-path a:hover,
.door-path a:focus-visible {
  padding-left: 16px;
  color: var(--paper);
  background: var(--indigo);
}

.door-page__action {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
}

.door-page__action > a {
  min-height: 50px;
  display: inline-flex;
  padding: 0 15px;
  align-items: center;
  gap: 32px;
  color: var(--paper);
  background: var(--vermilion);
  border: 2px solid var(--indigo);
  box-shadow: 4px 4px 0 var(--mustard);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.door-page__action > a:hover,
.door-page__action > a:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue);
}

.door-page__action small {
  max-width: 20ch;
  color: rgba(23, 47, 74, 0.65);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.6;
  text-align: right;
}

.content-atlas {
  padding: clamp(84px, 9vw, 142px) clamp(22px, 6vw, 96px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-atlas__head,
.evidence-desk__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
}

.content-atlas__head h2,
.evidence-desk__head h2 {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.content-atlas__head > p,
.evidence-desk__head > p {
  max-width: 38em;
  margin: 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--indigo);
  border-left: 7px solid var(--vermilion);
  font-size: 13px;
  line-height: 1.9;
}

.atlas-frame {
  display: grid;
  margin-top: clamp(55px, 7vw, 92px);
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 2.3fr);
  border: 2px solid var(--indigo);
}

.atlas-guide {
  display: flex;
  padding: clamp(26px, 3vw, 43px);
  flex-direction: column;
  color: var(--paper);
  background: var(--indigo-deep);
  border-right: 2px solid var(--indigo);
}

.atlas-guide > p:first-child {
  margin: 0;
  color: var(--mustard);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.atlas-guide__count {
  display: flex;
  margin: 18px 0 34px;
  align-items: flex-end;
  gap: 13px;
}

.atlas-guide__count strong {
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.75;
}

.atlas-guide__count span {
  color: rgba(247, 240, 227, 0.68);
  font-size: 10px;
  font-weight: 800;
}

.atlas-guide > a {
  display: grid;
  min-height: 126px;
  padding: 19px 0;
  border-top: 1px solid var(--paper-line);
  text-decoration: none;
  transition: padding-left 180ms ease, color 180ms ease;
}

.atlas-guide > a:last-of-type {
  border-bottom: 1px solid var(--paper-line);
}

.atlas-guide > a:hover,
.atlas-guide > a:focus-visible {
  padding-left: 10px;
  color: var(--mustard);
}

.atlas-guide > a span,
.atlas-guide > a small {
  color: rgba(247, 240, 227, 0.62);
  font-size: 9px;
  font-weight: 750;
}

.atlas-guide > a strong {
  align-self: center;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 35px);
  line-height: 1;
}

.atlas-guide__note {
  margin: auto 0 0 !important;
  padding-top: 28px;
  color: rgba(247, 240, 227, 0.56) !important;
  font-size: 10px !important;
  line-height: 1.7;
}

.atlas-ledger {
  min-width: 0;
}

.atlas-lane {
  display: grid;
  min-height: 174px;
  padding: 28px clamp(24px, 3vw, 43px);
  grid-template-columns: 118px minmax(200px, 1fr) minmax(190px, 0.72fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.atlas-lane:hover {
  background: rgba(197, 164, 65, 0.09);
}

.atlas-lane__kind {
  min-height: 104px;
  padding: 14px 10px;
  border: 2px solid var(--indigo);
}

.atlas-lane--identity .atlas-lane__kind { background: var(--rose); }
.atlas-lane--medical .atlas-lane__kind { color: var(--paper); background: var(--blue); }
.atlas-lane--life .atlas-lane__kind { background: #d9d7b7; }
.atlas-lane--evidence .atlas-lane__kind { background: var(--mustard); }

.atlas-lane__kind span,
.atlas-lane__kind small {
  display: block;
}

.atlas-lane__kind span {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.atlas-lane__kind small {
  margin-top: 16px;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.4;
}

.atlas-lane__copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.atlas-lane__copy p {
  max-width: 46em;
  margin: 17px 0 0;
  color: rgba(23, 47, 74, 0.72);
  font-size: 12px;
  line-height: 1.8;
}

.atlas-lane__links {
  display: grid;
  border-top: 1px solid var(--indigo);
}

.atlas-lane__links a {
  min-height: 42px;
  display: flex;
  padding: 7px 3px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}

.atlas-lane__links a::after {
  content: "";
}

.atlas-lane__links a:hover,
.atlas-lane__links a:focus-visible {
  color: var(--vermilion);
}

.atlas-utilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.atlas-utilities > * {
  min-height: 110px;
  display: flex;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--indigo);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.atlas-utilities > *:last-child {
  color: var(--paper);
  background: var(--vermilion);
  border-right: 0;
}

.atlas-utilities span {
  font-size: 9px;
  font-weight: 800;
}

.atlas-utilities strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
}

.atlas-utilities > *:hover,
.atlas-utilities > *:focus-visible {
  color: var(--paper);
  background: var(--indigo);
}

.trust-receipt {
  position: relative;
  display: grid;
  padding: clamp(82px, 9vw, 140px) clamp(22px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(55px, 8vw, 130px);
  color: var(--paper);
  background: var(--indigo-deep);
}

.trust-receipt::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 6vw, 96px);
  left: clamp(22px, 6vw, 96px);
  height: 8px;
  content: "";
  background: var(--mustard);
}

.trust-receipt__lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: end;
}

.trust-receipt__lead .section-kicker,
.trust-receipt__lead h2 {
  grid-column: 1;
}

.trust-receipt__lead h2 {
  max-width: 17ch;
  font-size: clamp(45px, 5.5vw, 84px);
}

.trust-receipt__lead h2 span {
  display: block;
  white-space: nowrap;
}

.trust-receipt__lead > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 39em;
  margin: 0;
  padding: 23px 0 0 25px;
  border-top: 1px solid var(--paper);
  border-left: 7px solid var(--vermilion);
  color: rgba(247, 240, 227, 0.78);
  font-size: 13px;
  line-height: 1.9;
}

.trust-receipt__rules {
  display: grid;
  border-top: 1px solid var(--paper-line);
}

.trust-receipt__rules article {
  display: grid;
  min-height: 130px;
  padding: 22px 0;
  grid-template-columns: 105px minmax(150px, 0.65fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--paper-line);
}

.trust-receipt__rules span {
  color: var(--mustard);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.trust-receipt__rules h3,
.trust-receipt__rules p {
  margin: 0;
}

.trust-receipt__rules h3 {
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1;
}

.trust-receipt__rules p {
  color: rgba(247, 240, 227, 0.74);
  font-size: 12px;
  line-height: 1.8;
}

.trust-receipt__limit {
  align-self: end;
  padding: 28px;
  color: var(--indigo-deep);
  background: var(--mustard);
  border: 2px solid var(--paper);
  box-shadow: 8px 8px 0 var(--vermilion);
  transform: rotate(1deg);
}

.trust-receipt__limit > span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.trust-receipt__limit strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(43px, 4.6vw, 72px);
  line-height: 0.92;
}

.trust-receipt__limit p {
  margin: 22px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.trust-receipt__limit a {
  display: flex;
  min-height: 46px;
  padding-top: 12px;
  justify-content: space-between;
  border-top: 1px solid var(--indigo-deep);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.evidence-desk {
  padding: clamp(84px, 9vw, 142px) clamp(22px, 6vw, 96px);
  background: var(--rice);
  border-bottom: 1px solid var(--line);
}

.evidence-contract {
  display: grid;
  margin-top: clamp(52px, 6vw, 82px);
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--indigo);
}

.evidence-contract > div {
  min-height: 172px;
  padding: 24px clamp(19px, 2.5vw, 36px);
  border-right: 1px solid var(--indigo);
}

.evidence-contract > div:last-child {
  border-right: 0;
}

.evidence-contract > div:nth-child(2) { background: rgba(220, 165, 155, 0.26); }

.evidence-contract span,
.evidence-contract strong {
  display: block;
}

.evidence-contract span {
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.evidence-contract strong {
  margin-top: 11px;
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 39px);
  line-height: 1;
}

.evidence-contract p {
  margin: 17px 0 0;
  color: rgba(23, 47, 74, 0.7);
  font-size: 11px;
  line-height: 1.7;
}

.evidence-board {
  display: grid;
  margin-top: 22px;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 22px;
}

.evidence-library {
  min-width: 0;
  padding: clamp(28px, 3.5vw, 52px);
  color: var(--paper);
  background: var(--indigo-deep);
}

.evidence-library header p,
.standards-watch header span,
.briefing-wire header span {
  margin: 0;
  color: var(--mustard);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.evidence-library header h3,
.standards-watch h3,
.briefing-wire h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 49px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.evidence-feature {
  display: block;
  margin-top: 35px;
  padding: clamp(22px, 2.8vw, 38px);
  color: var(--indigo-deep);
  background: var(--mustard);
  border: 2px solid var(--paper);
  box-shadow: 7px 7px 0 var(--vermilion);
  text-decoration: none;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.evidence-feature:hover,
.evidence-feature:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--blue);
}

.evidence-feature__meta {
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.evidence-feature h4 {
  margin: 23px 0 14px;
  font-family: var(--display);
  font-size: clamp(31px, 3.6vw, 54px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.evidence-feature p {
  max-width: 44em;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.evidence-feature b {
  display: flex;
  margin-top: 25px;
  padding-top: 13px;
  justify-content: space-between;
  border-top: 1px solid var(--indigo-deep);
  font-size: 10px;
}

.evidence-index {
  margin-top: 34px;
  border-top: 1px solid var(--paper-line);
}

.evidence-index a {
  min-height: 78px;
  display: grid;
  padding: 15px 0;
  grid-template-columns: 44px 1fr auto;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--paper-line);
  color: var(--paper);
  text-decoration: none;
}

.evidence-index a:hover strong,
.evidence-index a:focus-visible strong {
  color: var(--mustard);
}

.evidence-index span,
.evidence-index small {
  color: rgba(247, 240, 227, 0.58);
  font-size: 9px;
  font-weight: 800;
}

.evidence-index strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
}

.evidence-library__all {
  min-height: 50px;
  display: flex;
  margin-top: 22px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--indigo-deep);
  background: var(--paper);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.evidence-moving {
  display: grid;
  gap: 22px;
}

.standards-watch,
.briefing-wire {
  min-width: 0;
  padding: clamp(25px, 3vw, 39px);
  border: 2px solid var(--indigo);
}

.standards-watch {
  background: var(--paper);
}

.standards-watch header,
.briefing-wire > header {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.standards-watch h3,
.briefing-wire h3 {
  font-size: clamp(28px, 2.8vw, 42px);
}

.standards-watch a {
  display: grid;
  min-height: 91px;
  padding: 16px 0;
  grid-template-columns: 105px 1fr;
  gap: 5px 18px;
  border-top: 1px solid var(--indigo);
  text-decoration: none;
}

.standards-watch a:last-child {
  border-bottom: 1px solid var(--indigo);
}

.standards-watch a span,
.standards-watch a small {
  color: rgba(23, 47, 74, 0.62);
  font-size: 9px;
  font-weight: 800;
}

.standards-watch a strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.3;
}

.standards-watch a:hover strong,
.standards-watch a:focus-visible strong {
  color: var(--vermilion);
}

.briefing-wire {
  background: rgba(247, 240, 227, 0.48);
}

.briefing-wire > header p {
  max-width: 17ch;
  margin: 0;
  color: rgba(23, 47, 74, 0.62);
  font-size: 9px;
  text-align: right;
}

.briefing-row {
  border-top: 1px solid var(--indigo);
}

.briefing-row > button {
  width: 100%;
  min-height: 106px;
  display: grid;
  padding: 16px 0;
  grid-template-columns: 105px 1fr 22px;
  gap: 17px;
  align-items: center;
  background: transparent;
  border: 0;
  text-align: left;
}

.briefing-row > button span,
.briefing-row > button span b,
.briefing-row > button span small {
  display: block;
}

.briefing-row > button span b {
  color: var(--vermilion);
  font-size: 10px;
}

.briefing-row > button span small {
  margin-top: 5px;
  color: rgba(23, 47, 74, 0.6);
  font-size: 8px;
}

.briefing-row > button strong {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.3;
}

.briefing-row > button i {
  font-family: var(--utility);
  font-size: 24px;
  font-style: normal;
  transition: transform 220ms ease;
}

.briefing-row.is-open > button i {
  transform: rotate(45deg);
}

.briefing-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--motion-out);
}

.briefing-detail > div {
  overflow: hidden;
}

.briefing-row.is-open .briefing-detail {
  grid-template-rows: 1fr;
}

.briefing-detail p {
  margin: 0 0 13px 122px;
  color: rgba(23, 47, 74, 0.76);
  font-size: 11px;
  line-height: 1.75;
}

.briefing-detail a,
.briefing-detail button {
  min-height: 42px;
  display: inline-flex;
  margin: 4px 0 22px 122px;
  padding: 0 13px;
  align-items: center;
  color: var(--paper);
  background: var(--indigo);
  border: 0;
  font-size: 9px;
  font-weight: 850;
  text-decoration: none;
}

.briefing-wire__boundary {
  margin: 19px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--indigo);
  color: rgba(23, 47, 74, 0.6);
  font-size: 9px;
  line-height: 1.7;
}

.latest-ledger {
  padding: clamp(85px, 9vw, 145px) clamp(22px, 6vw, 96px);
  background: var(--rice);
  border-bottom: 1px solid var(--line);
}

.latest-ledger__head {
  display: grid;
  margin-bottom: clamp(48px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: clamp(45px, 8vw, 135px);
  align-items: end;
}

.latest-ledger h2 {
  font-size: clamp(50px, 6.4vw, 98px);
}

.latest-ledger__head > p {
  margin: 0;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--indigo);
  border-left: 7px solid var(--blue);
  font-size: 13px;
  line-height: 1.85;
}

.latest-ledger__body {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(35px, 6vw, 100px);
}

.latest-date {
  min-height: 430px;
  display: grid;
  padding: 18px;
  grid-template-rows: auto 1fr auto;
  color: var(--paper);
  background: var(--vermilion);
  border: 2px solid var(--indigo);
  box-shadow: 7px 7px 0 var(--indigo);
}

.latest-date span {
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.latest-date strong {
  align-self: center;
  justify-self: center;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.85;
  writing-mode: vertical-rl;
}

.latest-date b {
  justify-self: end;
  font-family: var(--utility);
  font-size: 40px;
}

.latest-list {
  border-top: 1px solid var(--indigo);
}

.latest-entry {
  position: relative;
  min-height: 150px;
  display: grid;
  padding: 24px 58px 24px 0;
  grid-template-columns: 48px 120px minmax(230px, 1fr) auto;
  gap: clamp(16px, 2.5vw, 38px);
  align-items: center;
  border-bottom: 1px solid var(--indigo);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease, padding-left 220ms ease;
}

.latest-entry:hover,
.latest-entry:focus-visible {
  padding-left: 18px;
  color: var(--paper);
  background: var(--indigo);
}

.latest-entry__number,
.latest-entry__type,
.latest-entry__meta {
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.latest-entry__type {
  width: fit-content;
  padding: 4px 7px;
  color: var(--indigo-deep);
  background: var(--entry-accent, var(--mustard));
}

.latest-entry--health {
  --entry-accent: #a5b78d;
}

.latest-entry--hrt {
  --entry-accent: var(--rose);
}

.latest-entry--coping {
  --entry-accent: var(--mustard);
}

.latest-entry h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.latest-entry__meta {
  max-width: 14ch;
  color: rgba(23, 47, 74, 0.66);
  line-height: 1.7;
}

.latest-entry:hover .latest-entry__meta,
.latest-entry:focus-visible .latest-entry__meta {
  color: rgba(247, 240, 227, 0.7);
}

.latest-entry__arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  font-size: 25px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.latest-entry:hover .latest-entry__arrow,
.latest-entry:focus-visible .latest-entry__arrow {
  transform: translate(4px, -8px);
}

.myth-workbench {
  display: grid;
  padding: clamp(88px, 9vw, 145px) clamp(22px, 6vw, 96px);
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(55px, 9vw, 150px);
  background: #e7d9c4;
  border-bottom: 1px solid var(--line);
}

.myth-workbench__head {
  position: sticky;
  top: 110px;
  align-self: start;
}

.myth-workbench h2 {
  max-width: 9ch;
  font-size: clamp(50px, 6vw, 91px);
}

.myth-workbench__head > p:nth-of-type(2) {
  max-width: 31em;
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 1.85;
}

.myth-workbench__count {
  display: block;
  width: fit-content;
  margin-top: 42px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--vermilion);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.myth-list {
  border-top: 2px solid var(--indigo);
}

.myth-row {
  border-bottom: 1px solid var(--indigo);
}

.myth-row > button {
  width: 100%;
  min-height: 118px;
  display: grid;
  padding: 21px 0;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  gap: 19px;
  align-items: center;
  background: transparent;
  border: 0;
  text-align: left;
}

.myth-row > button:hover,
.myth-row > button:focus-visible {
  color: var(--vermilion);
}

.myth-row > button > span {
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
}

.myth-row > button strong {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.myth-row > button i {
  justify-self: end;
  font-family: var(--utility);
  font-size: 30px;
  font-style: normal;
  transition: transform 260ms ease;
}

.myth-row.is-open > button i {
  transform: rotate(45deg);
}

.myth-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 360ms var(--motion-out);
}

.myth-row.is-open .myth-answer {
  grid-template-rows: 1fr;
}

.myth-answer > div {
  min-height: 0;
  overflow: hidden;
}

.myth-answer p {
  max-width: 52em;
  margin: 0;
  padding: 0 62px 22px 67px;
  font-size: 14px;
  line-height: 1.9;
}

.myth-answer a {
  min-height: 48px;
  display: flex;
  margin: 0 0 27px 67px;
  padding: 0 13px;
  width: fit-content;
  align-items: center;
  color: var(--paper);
  background: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.contact-letter {
  display: grid;
  padding: clamp(88px, 9vw, 145px) clamp(22px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(55px, 10vw, 165px);
  color: var(--indigo-deep);
  background: var(--mustard);
}

.contact-letter h2 {
  max-width: 13ch;
  font-size: clamp(48px, 5.7vw, 88px);
}

.contact-letter h2 span {
  display: block;
  white-space: nowrap;
}

.contact-letter__copy > p:nth-of-type(2) {
  max-width: 34em;
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.85;
}

.contact-letter__mail {
  min-height: 52px;
  display: flex;
  width: fit-content;
  margin-top: 30px;
  padding: 0 15px;
  align-items: center;
  gap: 35px;
  color: var(--paper);
  background: var(--indigo);
  border: 2px solid var(--indigo);
  box-shadow: 5px 5px 0 var(--vermilion);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.contact-letter__privacy {
  max-width: 38em;
  margin: 30px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--indigo-deep);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.7;
}

.contact-form {
  position: relative;
  align-self: center;
  display: grid;
  gap: 19px;
  padding: clamp(25px, 3.5vw, 46px);
  color: var(--paper);
  background: var(--indigo-deep);
  border: 2px solid var(--indigo-deep);
  box-shadow: 10px 10px 0 var(--vermilion);
  transform: rotate(-0.7deg);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.contact-form label small {
  color: rgba(247, 240, 227, 0.56);
  font-size: 9px;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--indigo-deep);
  background: var(--paper);
  border: 2px solid var(--paper);
  border-radius: 0;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--mustard);
  box-shadow: 4px 4px 0 var(--vermilion);
}

.contact-form textarea {
  min-height: 155px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(23, 47, 74, 0.52);
}

.contact-form__trap {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__actions {
  display: flex;
  gap: 17px;
  align-items: center;
}

.contact-form__actions button {
  min-width: 128px;
  min-height: 50px;
  display: inline-flex;
  padding: 0 14px;
  justify-content: space-between;
  align-items: center;
  color: var(--indigo-deep);
  background: var(--mustard);
  border: 2px solid var(--paper);
  box-shadow: 4px 4px 0 var(--vermilion);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-form__actions button:hover,
.contact-form__actions button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--vermilion);
}

.contact-form__actions button:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.contact-form__actions button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-form__actions p {
  margin: 0;
  color: rgba(247, 240, 227, 0.66);
  font-size: 10px;
  line-height: 1.6;
}

.contact-form__actions p.is-error {
  color: var(--rose);
}

.contact-form__actions p.is-success {
  color: var(--mustard);
}

.assembly-footer {
  min-height: 94px;
  display: grid;
  padding: 18px clamp(18px, 4vw, 64px);
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  color: rgba(247, 240, 227, 0.68);
  background: var(--indigo-deep);
  font-size: 10px;
}

.assembly-footer > div {
  display: flex;
  gap: 13px;
  align-items: center;
}

.assembly-footer strong,
.assembly-footer a {
  color: var(--paper);
}

.assembly-footer p {
  margin: 0;
}

.assembly-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.assembly-toast {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 15px;
  color: var(--paper);
  background: var(--vermilion);
  border: 2px solid var(--indigo-deep);
  box-shadow: 5px 5px 0 var(--mustard);
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
  font-size: 12px;
  font-weight: 750;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0ms linear 180ms;
}

.assembly-toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.site-search,
.help-sheet {
  width: min(1120px, calc(100vw - 42px));
  max-width: none;
  max-height: calc(100svh - 42px);
  margin: auto;
  padding: 0;
  color: var(--indigo);
  background: var(--paper);
  border: 2px solid var(--indigo-deep);
  box-shadow: 13px 13px 0 var(--mustard);
}

.site-search::backdrop,
.help-sheet::backdrop {
  background: rgba(15, 33, 53, 0.82);
  backdrop-filter: blur(4px);
}

.site-search__top,
.help-sheet__top {
  min-height: 64px;
  display: flex;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  background: var(--indigo-deep);
}

.site-search__top > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-search__top span,
.help-sheet__top > span {
  color: var(--mustard);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.site-search__top button,
.help-sheet__top button {
  min-height: 42px;
  padding: 0 12px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(247, 240, 227, 0.35);
  font-size: 9px;
  font-weight: 850;
}

.site-search__body,
.help-sheet__body {
  padding: clamp(27px, 4vw, 58px);
}

.site-search__body header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: end;
}

.site-search__body h2,
.help-sheet__body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 65px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.site-search__field {
  min-height: 76px;
  display: grid;
  margin-top: 34px;
  padding: 0 21px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border: 3px solid var(--indigo);
  box-shadow: 6px 6px 0 var(--rose);
}

.site-search__field > span {
  color: var(--vermilion);
  font-size: 32px;
}

.site-search__field input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 33px);
  font-weight: 800;
}

.site-search__field kbd {
  padding: 4px 7px;
  border: 1px solid var(--line);
  font-size: 8px;
}

.site-search__summary {
  margin: 26px 0 11px;
  color: rgba(23, 47, 74, 0.62);
  font-size: 10px;
  font-weight: 800;
}

.site-search__results {
  max-height: min(43vh, 420px);
  overflow: auto;
  border-top: 1px solid var(--indigo);
}

.site-search__result {
  min-height: 74px;
  display: grid;
  padding: 13px 8px;
  grid-template-columns: 118px 1fr auto 20px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.site-search__result:hover,
.site-search__result:focus-visible {
  color: var(--paper);
  background: var(--indigo);
}

.site-search__result span,
.site-search__result small {
  font-size: 9px;
  font-weight: 800;
}

.site-search__result strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
}

.site-search__empty {
  padding: 42px 8px;
  color: rgba(23, 47, 74, 0.65);
  font-size: 12px;
}

.help-sheet {
  width: min(1040px, calc(100vw - 42px));
}

.help-sheet__top > div {
  display: flex;
  gap: 8px;
}

.help-sheet__top [data-quick-exit] {
  color: var(--indigo-deep);
  background: var(--mustard);
  border-color: var(--mustard);
}

.help-sheet__body header {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 34px;
  align-items: end;
}

.help-sheet__routes {
  display: grid;
  margin-top: 39px;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--indigo);
}

.help-sheet__routes article {
  min-height: 245px;
  padding: clamp(20px, 2.7vw, 34px);
  border-right: 1px solid var(--indigo);
}

.help-sheet__routes article:last-child {
  border-right: 0;
}

.help-sheet__routes article.is-urgent {
  color: var(--paper);
  background: var(--vermilion);
}

.help-sheet__routes span {
  font-size: 9px;
  font-weight: 850;
}

.help-sheet__routes h3 {
  min-height: 52px;
  margin: 18px 0 24px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.1;
}

.help-sheet__routes a {
  display: block;
  color: inherit;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
}

.help-sheet__routes article.is-urgent div {
  display: flex;
  gap: 14px;
}

.help-sheet__routes article.is-urgent a {
  font-size: 19px;
}

.help-sheet__routes p,
.help-sheet__boundary {
  color: rgba(23, 47, 74, 0.68);
  font-size: 10px;
  line-height: 1.75;
}

.help-sheet__routes article.is-urgent p {
  color: rgba(247, 240, 227, 0.82);
}

.help-sheet__boundary {
  margin: 23px 0 0;
}

body.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--motion-out), transform 520ms var(--motion-out);
}

body.has-js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

body.has-js .opening-thread__active {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 900ms var(--motion-out) 180ms;
}

body.has-js.is-ready .opening-thread__active {
  stroke-dashoffset: 0;
}

@media (max-width: 1120px) {
  .assembly-nav a:nth-child(6) {
    display: none;
  }

  .assembly-search kbd {
    display: none;
  }

  .atlas-lane {
    grid-template-columns: 104px 1fr;
  }

  .atlas-lane__links {
    grid-column: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .atlas-lane__links a {
    border-right: 1px solid var(--line);
  }

  .evidence-board {
    grid-template-columns: 1fr 0.86fr;
  }

  .verdict-copy {
    grid-column: 2 / span 6;
  }

  .permission-slip {
    grid-column: 8 / span 4;
  }

  .question-yard {
    gap: 7px;
  }

  .question-door.is-open {
    flex: 5.3 1 0;
    grid-template-columns: minmax(112px, 0.65fr) minmax(340px, 3.35fr);
  }

  .door-page__sheet {
    width: min(63vw, 690px);
  }
}

@media (max-width: 880px) {
  .assembly-bar {
    grid-template-columns: 1fr auto;
  }

  .assembly-nav {
    display: none;
  }

  .mobile-index-toggle {
    min-height: 44px;
    display: inline-flex;
    padding: 0 11px;
    align-items: center;
    gap: 7px;
    color: var(--paper);
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(247, 240, 227, 0.24);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .mobile-index-toggle span {
    width: 29px;
    height: 21px;
    display: grid;
    place-items: center;
    color: var(--indigo-deep);
    background: var(--mustard);
    font-size: 8px;
    font-weight: 900;
  }

  .mobile-index-toggle strong {
    font: inherit;
  }

  .mobile-index-toggle[aria-expanded="true"] {
    color: var(--mustard);
  }

  .mobile-index-panel {
    position: fixed;
    z-index: 39;
    top: 68px;
    right: 12px;
    width: min(360px, calc(100vw - 24px));
    display: block;
    padding: 0 18px 18px;
    color: var(--indigo-deep);
    background:
      linear-gradient(90deg, transparent 47px, rgba(181, 74, 58, 0.18) 48px, transparent 49px),
      var(--rice);
    border: 2px solid var(--indigo-deep);
    box-shadow: 7px 8px 0 rgba(23, 47, 74, 0.22);
  }

  .mobile-index-panel[hidden] {
    display: none;
  }

  .mobile-index-panel__head {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
  }

  .mobile-index-panel__head button {
    min-height: 36px;
    padding: 0 0 0 14px;
    color: var(--indigo-deep);
    background: transparent;
    border: 0;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-index-panel__links {
    display: grid;
  }

  .mobile-index-panel__links a {
    min-height: 52px;
    display: grid;
    padding-left: 9px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--indigo-deep);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-index-panel__links a:last-child {
    border-bottom: 0;
  }

  .mobile-index-panel__links a > span:first-child {
    color: var(--brick);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .mobile-index-panel__links a[aria-current] {
    color: var(--brick);
  }

  .content-atlas__head,
  .evidence-desk__head {
    grid-template-columns: 1fr 0.58fr;
    gap: 42px;
  }

  .atlas-frame,
  .evidence-board {
    display: block;
  }

  .atlas-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    border-right: 0;
    border-bottom: 2px solid var(--indigo);
  }

  .atlas-guide > p:first-child,
  .atlas-guide__count,
  .atlas-guide__note {
    grid-column: 1 / -1;
  }

  .atlas-guide__note {
    margin-top: 24px !important;
  }

  .evidence-moving {
    margin-top: 22px;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
  }

  .verdict-copy {
    grid-column: 1 / span 7;
    padding-left: 6vw;
  }

  .permission-slip {
    grid-column: 8 / span 4;
    margin-right: 3vw;
  }

  .question-index__head,
  .latest-ledger__head {
    grid-template-columns: 1fr 0.55fr;
    gap: 42px;
  }

  .trust-receipt__lead {
    grid-template-columns: 1fr 0.65fr;
    gap: 38px;
  }

  .trust-receipt__rules article {
    grid-template-columns: 88px 0.7fr 1fr;
  }

  .latest-entry {
    grid-template-columns: 42px 95px minmax(220px, 1fr);
  }

  .latest-entry__meta {
    grid-column: 3;
  }

  .myth-workbench {
    gap: 60px;
  }

  .contact-letter {
    gap: 60px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 60px;
  }

  .assembly-bar {
    min-height: 60px;
    padding: 7px 12px;
    gap: 8px;
  }

  .mobile-index-panel {
    top: 60px;
  }

  .assembly-mark {
    font-size: 14px;
  }

  .assembly-mark__edition {
    width: 37px;
    height: 27px;
  }

  .privacy-switch {
    padding-left: 10px;
    font-size: 9px;
  }

  .assembly-search,
  .assembly-help {
    padding: 0 8px;
  }

  .toolbox-trigger {
    min-width: 44px;
    padding: 0 8px;
    justify-content: center;
  }

  .toolbox-trigger strong,
  .toolbox-trigger i {
    display: none;
  }

  .toolbox-panel {
    position: fixed;
    top: 66px;
    right: 12px;
    width: min(310px, calc(100vw - 24px));
  }

  .mobile-index-toggle {
    min-width: 44px;
    padding: 0 8px;
    justify-content: center;
  }

  .mobile-index-toggle strong {
    display: none;
  }

  .assembly-help {
    margin-left: 3px;
  }

  .assembly-search,
  .privacy-switch,
  .assembly-help {
    min-width: 44px;
    justify-content: center;
  }

  .verdict-opening {
    min-height: auto;
    display: block;
    padding: 0 18px 74px;
  }

  .verdict-opening::before {
    display: none;
  }

  .verdict-opening::after {
    right: -34vw;
    bottom: 18%;
    width: 87vw;
    height: 26vh;
  }

  .opening-register {
    top: 19px;
    right: 15px;
    left: 15px;
    font-size: 7px;
  }

  .opening-register span:last-child {
    display: none;
  }

  .opening-thread {
    height: 56%;
    top: auto;
    bottom: 26%;
  }

  .verdict-copy {
    padding: 94px 3px 72px;
  }

  .section-kicker {
    font-size: 9px;
  }

  .verdict-copy h1 {
    font-size: clamp(57px, 19vw, 77px);
    line-height: 0.85;
  }

  .verdict-copy h1 span:nth-child(2) {
    margin-left: 0.32em;
  }

  .verdict-copy h1 span:nth-child(3) {
    margin-left: 0.62em;
  }

  .verdict-copy__lead {
    margin-top: 29px;
    font-size: 14px;
  }

  .permission-slip {
    min-height: 405px;
    margin: 0 10px 0 4px;
    padding: 31px 24px 25px;
    transform: rotate(0.8deg);
  }

  .permission-slip h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .permission-slip__word {
    right: -14px;
    font-size: 62px;
  }

  .opening-margin {
    display: none;
  }

  .question-index {
    padding: 76px 0 82px;
  }

  .question-index__head,
  .latest-ledger__head {
    display: block;
    padding-right: 18px;
    padding-left: 18px;
  }

  .question-index__head h2 {
    font-size: clamp(47px, 14vw, 62px);
  }

  .question-index__head > p,
  .latest-ledger__head > p {
    margin-top: 31px;
  }

  .content-atlas,
  .evidence-desk {
    padding: 78px 14px;
  }

  .content-atlas__head,
  .evidence-desk__head {
    display: block;
    padding: 0 4px;
  }

  .content-atlas__head h2,
  .evidence-desk__head h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .content-atlas__head > p,
  .evidence-desk__head > p {
    margin-top: 32px;
  }

  .atlas-frame {
    margin-top: 51px;
  }

  .atlas-guide {
    display: block;
    padding: 27px 22px;
  }

  .atlas-guide > a {
    min-height: 116px;
  }

  .atlas-lane {
    min-height: 0;
    padding: 23px 18px 27px;
    grid-template-columns: 82px 1fr;
    gap: 20px;
  }

  .atlas-lane__kind {
    min-height: 86px;
  }

  .atlas-lane__kind span {
    font-size: 25px;
  }

  .atlas-lane__copy h3 {
    font-size: 26px;
  }

  .atlas-lane__copy p {
    font-size: 11px;
  }

  .atlas-lane__links {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .atlas-lane__links a {
    border-right: 0;
  }

  .atlas-utilities,
  .evidence-contract,
  .evidence-moving {
    grid-template-columns: 1fr;
  }

  .atlas-utilities > * {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-contract {
    margin-top: 48px;
  }

  .evidence-contract > div {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid var(--indigo);
  }

  .evidence-contract > div:last-child {
    border-bottom: 0;
  }

  .evidence-library,
  .standards-watch,
  .briefing-wire {
    padding: 25px 20px;
  }

  .evidence-index a {
    grid-template-columns: 35px 1fr;
  }

  .evidence-index small {
    grid-column: 2;
  }

  .evidence-moving {
    margin-top: 16px;
  }

  .standards-watch a {
    grid-template-columns: 83px 1fr;
  }

  .briefing-row > button {
    grid-template-columns: 78px 1fr 18px;
    gap: 10px;
  }

  .briefing-detail p,
  .briefing-detail a,
  .briefing-detail button {
    margin-left: 88px;
  }

  .question-yard {
    height: auto;
    min-height: 0;
    display: grid;
    gap: 10px;
    padding: 0 12px;
    overflow: visible;
  }

  .question-door,
  .question-door.is-open {
    min-height: 108px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 430ms var(--motion-out), box-shadow 260ms ease-out;
  }

  .question-door.is-open {
    grid-template-rows: auto 1fr;
  }

  .door-spine,
  .question-door.is-open .door-spine {
    min-height: 108px;
    display: grid;
    padding: 14px 15px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    gap: 15px;
    align-items: center;
    border-right: 0;
  }

  .question-door.is-open .door-spine {
    border-bottom: 2px solid currentColor;
  }

  .door-spine__kind {
    align-self: start;
    font-size: 9px;
  }

  .door-spine__question,
  .question-door.is-open .door-spine__question {
    align-self: center;
    justify-self: start;
    font-size: clamp(28px, 8.7vw, 39px);
    writing-mode: horizontal-tb;
  }

  .door-spine__number {
    align-self: end;
  }

  .door-page {
    min-height: 0;
  }

  .door-page__sheet {
    width: 100%;
    min-height: 430px;
    padding: 28px 20px 23px;
    transform: translateY(15px);
  }

  .question-door.is-open .door-page__sheet {
    transform: translateY(0);
  }

  .door-page__promise {
    font-size: clamp(38px, 12vw, 50px);
  }

  .door-page__action {
    align-items: flex-end;
  }

  .door-page__action > a {
    flex: 1;
  }

  .door-page__action small {
    max-width: 15ch;
  }

  .trust-receipt {
    display: block;
    padding: 82px 20px;
  }

  .trust-receipt__lead {
    display: block;
  }

  .trust-receipt__lead h2 {
    font-size: clamp(41px, 11.8vw, 50px);
  }

  .trust-receipt__lead > p:last-child {
    margin-top: 33px;
  }

  .trust-receipt__rules {
    margin-top: 58px;
  }

  .trust-receipt__rules article {
    grid-template-columns: 64px 1fr;
    gap: 13px 16px;
  }

  .trust-receipt__rules p {
    grid-column: 2;
  }

  .trust-receipt__limit {
    margin: 55px 5px 0;
  }

  .latest-ledger {
    padding: 82px 0;
  }

  .latest-ledger h2 {
    font-size: clamp(48px, 15vw, 65px);
  }

  .latest-ledger__body {
    display: block;
    margin-top: 50px;
  }

  .latest-date {
    min-height: 94px;
    display: grid;
    margin: 0 18px 40px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .latest-date strong {
    justify-self: center;
    font-size: 48px;
    writing-mode: horizontal-tb;
  }

  .latest-date b {
    align-self: end;
    font-size: 31px;
  }

  .latest-list {
    margin: 0 18px;
  }

  .latest-entry {
    min-height: 184px;
    padding: 24px 42px 24px 0;
    grid-template-columns: 34px 1fr;
    gap: 9px 14px;
  }

  .latest-entry__type {
    grid-column: 2;
  }

  .latest-entry h3,
  .latest-entry__meta {
    grid-column: 2;
  }

  .latest-entry h3 {
    font-size: 31px;
  }

  .latest-entry__meta {
    max-width: none;
  }

  .myth-workbench {
    display: block;
    padding: 82px 18px;
  }

  .myth-workbench__head {
    position: static;
  }

  .myth-workbench h2 {
    max-width: 10ch;
    font-size: clamp(48px, 14.5vw, 65px);
  }

  .myth-workbench__count {
    margin-top: 30px;
  }

  .myth-list {
    margin-top: 58px;
  }

  .myth-row > button {
    min-height: 106px;
    grid-template-columns: 30px 1fr 30px;
    gap: 12px;
  }

  .myth-row > button strong {
    font-size: clamp(25px, 7.8vw, 34px);
  }

  .myth-answer p {
    padding: 0 42px 21px;
    font-size: 13px;
  }

  .myth-answer a {
    margin: 0 0 25px 42px;
  }

  .contact-letter {
    display: block;
    padding: 82px 18px;
  }

  .contact-letter h2 {
    font-size: clamp(45px, 13vw, 59px);
  }

  .contact-form {
    margin-top: 58px;
    padding: 25px 20px;
  }

  .contact-form__actions {
    display: grid;
  }

  .assembly-footer {
    grid-template-columns: 1fr auto;
    gap: 15px;
  }

  .assembly-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-search,
  .help-sheet {
    width: 100vw;
    max-height: 100svh;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .site-search__top,
  .help-sheet__top {
    min-height: 58px;
    padding: 0 13px;
  }

  .site-search__top span,
  .site-search__top strong,
  .help-sheet__top > span {
    font-size: 8px;
  }

  .site-search__body,
  .help-sheet__body {
    padding: 28px 16px;
  }

  .site-search__body header,
  .help-sheet__body header {
    display: block;
  }

  .site-search__body h2,
  .help-sheet__body h2 {
    margin-top: 14px;
    font-size: clamp(35px, 11vw, 48px);
  }

  .site-search__field {
    min-height: 66px;
    margin-top: 27px;
    padding: 0 13px;
  }

  .site-search__field kbd {
    display: none;
  }

  .site-search__results {
    max-height: calc(100svh - 295px);
  }

  .site-search__result {
    grid-template-columns: 78px 1fr 18px;
    gap: 10px;
  }

  .site-search__result small {
    display: none;
  }

  .help-sheet__routes {
    grid-template-columns: 1fr;
  }

  .help-sheet__routes article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--indigo);
  }

  .help-sheet__routes article:last-child {
    border-bottom: 0;
  }

  .help-sheet__routes h3 {
    min-height: 0;
  }
}

@media (max-width: 360px) {
  .assembly-mark {
    gap: 0;
    font-size: 0;
  }

  .assembly-mark::before {
    content: "MTF";
    font-family: var(--utility);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .privacy-switch span:first-child {
    display: none;
  }

  .assembly-search span,
  .assembly-help span {
    display: none;
  }

  .assembly-search::before {
    content: "⌕";
    font-size: 18px;
  }

  .assembly-help::before {
    content: "?";
  }

  .verdict-copy h1 {
    font-size: 55px;
  }

  .permission-slip {
    margin-right: 3px;
    margin-left: 0;
  }

  .door-spine,
  .question-door.is-open .door-spine {
    gap: 10px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .door-spine__question,
  .question-door.is-open .door-spine__question {
    font-size: 27px;
  }

  .door-page__sheet {
    padding-right: 15px;
    padding-left: 15px;
  }

  .door-page__action small {
    display: none;
  }

  .myth-answer p {
    padding-right: 31px;
    padding-left: 31px;
  }

  .myth-answer a {
    margin-left: 31px;
  }
}

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

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

  body.has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  body.has-js .opening-thread__active {
    stroke-dashoffset: 0;
  }
}
