/* design.md(2026-08-11): 除"照见"二字外一律无衬线; 旧"中大标题瘦金"条款已废止。
   照见瘦金 wordmark 属待实施(需商用/网页嵌入授权或矢量 SVG), 暂全站无衬线。
   移除全字库 @font-face 后, 官网不再依赖被 gitignore 的 dao-shoujin-cjk.woff2(修 fresh-clone 掉字)。 */

:root {
  --ink: #070705;
  --ink-soft: #0d0d0a;
  --ink-raised: #15140f;
  --paper: #f0eadc;
  --paper-dim: #ddd5c3;
  --gold: #d0af68;
  --gold-bright: #e1c37d;
  --gold-dark: #b28f4f;
  --jade: #728a79;
  --cinnabar: #8d3023;
  --line: rgba(210, 180, 112, 0.23);
  --line-strong: rgba(225, 195, 125, 0.52);
  --rail: 7.5rem;
  --shell: min(80rem, calc(100vw - var(--rail) - 8vw));
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  --shoujin: var(--sans); /* 照见瘦金 wordmark 待实施; 暂用无衬线(见顶部说明) */
  color-scheme: dark;
}

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

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.025em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button,
select {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--shoujin);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.latin,
.chapter-indicator b,
.character-portrait figcaption b {
  font-family: var(--sans);
  letter-spacing: 0.12em;
}

::selection {
  color: #0b0905;
  background: var(--gold-bright);
}

:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.74' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 auto 0 0;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--paper-dim);
  border-right: 1px solid var(--line);
  background: rgba(7, 7, 5, 0.86);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 0.1rem;
}

.site-header .brand {
  width: 100%;
  min-height: 7rem;
  padding-top: 1.15rem;
  border-bottom: 1px solid var(--line);
}

/* 正式 Logo「壹息肆序」独立图形(从 design.md 批准基准描摹的矢量, assets/brand/dao-symbol.svg)
   经 CSS mask 上色, 随品牌古金; 不旋转、不描边、不加效果(design.md 硬规则)。 */
.brand-mark {
  width: 2rem;
  height: 2rem;
  background-color: var(--gold-bright);
  -webkit-mask: url(assets/brand/dao-symbol.svg) center / contain no-repeat;
  mask: url(assets/brand/dao-symbol.svg) center / contain no-repeat;
}

.brand-name {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-sub {
  color: var(--paper-dim);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.menu-toggle {
  display: none;
}

.site-nav {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.site-nav a {
  position: relative;
  min-height: 4rem;
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  align-items: center;
  padding: 0.5rem 0.75rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: -1px;
  width: 2px;
  height: 0;
  background: var(--gold-bright);
  transition: height 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
  background: linear-gradient(90deg, rgba(198, 166, 100, 0.08), transparent);
}

.site-nav a.is-active::before {
  height: 58%;
}

.site-nav b {
  color: var(--gold);
  font-weight: 400;
  font-size: 0.8rem;
}

.site-nav span {
  writing-mode: vertical-rl;
  justify-self: center;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  max-height: 5.8rem;
}

.chapter-indicator {
  width: 100%;
  min-height: 6.5rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.chapter-indicator b {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 500;
}

main,
.site-footer {
  padding-left: var(--rail);
}

.chapter {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: clip;
}

.section-shell {
  position: relative;
  z-index: 3;
  width: var(--shell);
  margin: 0 auto;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.17em;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  flex: none;
  background: var(--gold);
}

.section-heading {
  display: grid;
  grid-template-columns: 7rem minmax(15rem, 1fr) minmax(18rem, 24rem);
  align-items: end;
  gap: clamp(1rem, 3vw, 3rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading.compact {
  margin-bottom: 3rem;
}

.section-heading > div {
  min-width: 0;
}

.chapter-number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(225, 195, 125, 0.66);
  font-family: var(--shoujin);
  font-size: clamp(2.5rem, 7.4vw, 7.5rem);
  line-height: 0.78;
}

.section-heading h2 {
  margin-top: 0.7rem;
  color: var(--paper);
  font-size: clamp(1.8rem, 4.8vw, 6rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section-intro {
  color: var(--paper-dim);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 2;
}

/* 山门 */
.hero {
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: #080806 url("assets/world/gate.webp") center center / cover no-repeat;
}

.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 3, 0.98) 0%, rgba(4, 4, 3, 0.92) 35%, rgba(4, 4, 3, 0.62) 54%, rgba(4, 4, 3, 0.06) 78%),
    linear-gradient(0deg, rgba(4, 4, 3, 0.92) 0%, transparent 45%),
    radial-gradient(circle at 68% 45%, transparent, rgba(0, 0, 0, 0.4));
}

.hero-content {
  width: min(44rem, 72vw);
  margin: 0 0 clamp(5rem, 10vh, 8.5rem) clamp(5vw, 8vw, 9rem);
}

.hero h1 {
  margin-top: 1.4rem;
  color: #f1ead9;
  font-size: clamp(2.2rem, 7.2vw, 8rem);
  letter-spacing: 0.07em;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.65);
}

.hero-lede {
  width: min(36rem, 90%);
  margin-top: 1.8rem;
  color: #d4ccb9;
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.4rem;
}

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--line-strong);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button-primary {
  min-width: 13rem;
  color: #171208;
  background: var(--gold-bright);
}

.button-primary:hover {
  background: #f0d690;
  transform: translateY(-2px);
}

.button i {
  font-family: var(--sans);
  font-style: normal;
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--paper-dim);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--gold-bright);
}

.scroll-cue {
  position: absolute;
  left: 2.1rem;
  bottom: 1.2rem;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  color: var(--paper-dim);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  50% { transform: translateY(0.5rem); opacity: 0.4; }
}

/* 架构 */
.architecture {
  background: #090906;
}

.architecture-media {
  opacity: 0.32;
  background-image:
    linear-gradient(180deg, rgba(7, 7, 5, 0.7), rgba(7, 7, 5, 0.94)),
    url("assets/world/architecture.webp");
}

.architecture-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.architecture-axis {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.architecture-axis::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: calc(var(--shell) - 7px) 0 0 var(--gold-bright);
}

.axis-item {
  position: relative;
  min-height: 18rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.axis-item:last-child {
  border-right: 0;
}

.axis-item:hover {
  background: linear-gradient(180deg, rgba(198, 166, 100, 0.11), transparent 70%);
  transform: translateY(-0.45rem);
}

.axis-index {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.axis-item h3 {
  margin-top: 2.2rem;
  color: var(--gold-bright);
  font-size: clamp(3rem, 5vw, 5rem);
}

.axis-item p {
  margin-top: 1rem;
  color: var(--paper);
  font-size: 1.08rem;
}

.axis-item small {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--paper-dim);
  font-size: 0.8rem;
  line-height: 1.8;
}

.architecture-note {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
  margin-top: 2rem;
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.architecture-note span {
  color: var(--gold);
}

/* 角色 */
.characters {
  background: #070705;
}

.characters-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(90deg, #070705 7%, transparent 52%, #070705 96%),
    linear-gradient(0deg, #070705 0%, transparent 38%, #070705 100%),
    url("assets/world/characters-atrium.webp") center / cover;
  filter: saturate(0.7);
}

.character-shell {
  min-height: 100svh;
}

.character-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(19rem, 0.8fr);
  grid-template-rows: 1fr auto;
  min-height: 40rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 5, 0.66);
}

.character-portrait {
  position: relative;
  min-width: 0;
  min-height: 34rem;
  grid-row: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: rgba(4, 4, 3, 0.8);
}

.character-portrait::after {
  content: "";
  position: absolute;
  inset: 0 0 2.8rem;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 70%, rgba(7, 7, 5, 0.42));
}

.character-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 220ms ease, transform 420ms cubic-bezier(.2,.7,.2,1);
}

.character-portrait.is-changing img {
  opacity: 0;
  transform: translateX(-1rem);
}

.character-portrait figcaption {
  position: static;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: var(--paper-dim);
  background: rgba(7, 7, 5, 0.82);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
}

.character-copy {
  align-self: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.character-role {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.character-copy h3 {
  margin-top: 0.7rem;
  color: var(--paper);
  font-size: clamp(2.6rem, 7vw, 7.2rem);
  white-space: nowrap;
}

.character-motto {
  margin-top: 1.4rem;
  color: var(--gold-bright);
  font-size: 1.08rem;
  line-height: 1.8;
}

.character-facts {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.character-facts div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.character-facts dt {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

.character-facts dd {
  color: var(--paper-dim);
  font-size: 0.82rem;
}

.character-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.character-tab {
  min-height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 0.65rem;
  align-content: center;
  padding: 0.7rem;
  color: var(--paper-dim);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.character-tab:last-child {
  border-right: 0;
}

.character-tab span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.character-tab b {
  color: inherit;
  font-weight: 400;
}

.character-tab small {
  font-size: 0.65rem;
}

.character-tab:hover,
.character-tab.is-active {
  color: var(--paper);
  background: rgba(198, 166, 100, 0.1);
}

.character-tab.is-active span {
  color: var(--gold-bright);
}

/* 器物 */
.instruments {
  background: #090906;
}

.instruments-media {
  opacity: 0.27;
  background-image:
    linear-gradient(180deg, rgba(7, 7, 5, 0.72), #080806 82%),
    url("assets/world/instruments.webp");
}

.instrument-console {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1.2fr) minmax(17rem, 0.72fr);
  min-height: 32rem;
  border: 1px solid var(--line);
  background: rgba(6, 6, 4, 0.86);
}

.instrument-rail {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.instrument-tab {
  flex: 1;
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  padding: 0.8rem 1rem;
  color: var(--paper-dim);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.instrument-tab:last-child {
  border-bottom: 0;
}

.instrument-tab span {
  color: var(--gold-dark);
}

.instrument-tab b {
  font-weight: 400;
}

.instrument-tab:hover,
.instrument-tab.is-active {
  color: var(--paper);
  background: linear-gradient(90deg, rgba(198, 166, 100, 0.16), transparent);
}

.instrument-visual {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
  overflow: hidden;
  background: #090906;
}

.instrument-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 350ms ease;
}

.instrument-visual.is-changing img {
  opacity: 0;
  transform: scale(0.985);
}

.instrument-visual figcaption {
  position: static;
  justify-self: stretch;
  padding: 0.5rem 0.85rem;
  color: var(--paper-dim);
  background: rgba(7, 7, 5, 0.84);
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  text-align: right;
}

.instrument-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-left: 1px solid var(--line);
}

.instrument-copy .eyebrow::before {
  display: none;
}

.instrument-copy h3 {
  margin: 0.8rem 0 1.2rem;
  color: var(--gold-bright);
  font-size: clamp(1.6rem, 3vw, 3.6rem);
}

.instrument-copy > p:not(.eyebrow) {
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.state-line {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.state-line span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.68rem;
}

.state-line b {
  display: block;
  margin-top: 0.35rem;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 400;
}

.asset-contract {
  display: grid;
  grid-template-columns: 8rem 1fr 1.4fr;
  gap: 2rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-strong);
  color: var(--paper-dim);
  font-size: 0.78rem;
}

.asset-contract > span {
  color: var(--gold);
}

.asset-contract b {
  color: var(--paper);
  font-weight: 400;
}

/* 学宫 */
.academy {
  background:
    radial-gradient(circle at 72% 35%, rgba(129, 107, 60, 0.1), transparent 38%),
    #e8e1d0;
  color: #1a1812;
}

.academy-ink {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 7.9rem, #302b20 8rem 8.05rem),
    linear-gradient(115deg, transparent 65%, #4f493a 65.1%, transparent 65.5%);
  mask-image: linear-gradient(90deg, transparent, black 22%, black 80%, transparent);
}

.academy .section-heading h2,
.academy .section-intro {
  color: #17150f;
}

.academy .eyebrow,
.academy .chapter-number {
  color: #7a5d27;
  -webkit-text-stroke-color: rgba(122, 93, 39, 0.72);
}

.lesson-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(47, 40, 25, 0.23);
  border-bottom: 0;
}

.lesson-tab {
  min-height: 6rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 0.8rem 1.2rem;
  color: #6e6758;
  border: 0;
  border-right: 1px solid rgba(47, 40, 25, 0.18);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.lesson-tab:last-child {
  border-right: 0;
}

.lesson-tab span {
  grid-row: 1 / span 2;
  align-self: center;
  color: #8a6a2b;
  font-size: 1.6rem;
}

.lesson-tab b {
  color: inherit;
  font-weight: 400;
}

.lesson-tab small {
  font-size: 0.68rem;
}

.lesson-tab:hover,
.lesson-tab.is-active {
  color: #17150f;
  background: rgba(151, 117, 50, 0.1);
}

.lesson-tab.is-active {
  box-shadow: inset 0 -2px #8a6a2b;
}

.lesson-stage {
  min-height: 31rem;
  border: 1px solid rgba(47, 40, 25, 0.23);
  background: rgba(240, 235, 222, 0.73);
}

.lesson-panel {
  min-height: 31rem;
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(24rem, 1.2fr);
}

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

.comic-copy {
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(47, 40, 25, 0.2);
}

.lesson-guide,
.demo-label {
  color: #8a6a2b;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.comic-copy h3 {
  margin-top: 0.7rem;
  color: #17150f;
  font-size: clamp(1.6rem, 4vw, 4.4rem);
  white-space: nowrap;
}

.comic-copy blockquote {
  margin-top: 2rem;
  padding: 1rem 0 1rem 1.3rem;
  color: #5f451b;
  border-left: 2px solid #9c7b3d;
  font-size: 1.25rem;
}

.comic-copy > p:not(.lesson-guide):not(.source-note) {
  margin-top: 1.5rem;
  color: #5d584d;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.source-note {
  margin-top: 1rem;
  color: #8b8475;
  font-size: 0.67rem;
}

.demo-board {
  min-width: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    linear-gradient(rgba(72, 61, 38, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 61, 38, 0.08) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

.single-line-control {
  min-width: min(24rem, 100%);
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 2rem;
  color: #17150f;
  border: 1px solid rgba(73, 57, 28, 0.32);
  background: rgba(238, 231, 215, 0.92);
  cursor: pointer;
}

.single-line-control b {
  font-size: 1.3rem;
  font-weight: 400;
}

.single-line-control small {
  color: #877e6e;
}

.yao-line {
  position: relative;
  width: min(15rem, 70vw);
  height: 1.15rem;
  display: block;
}

.yao-line::before,
.yao-line::after {
  content: "";
  position: absolute;
  inset-block: 0;
  background: #1c1a14;
  transition: width 220ms ease, transform 220ms ease;
}

.yao-line.is-yang::before {
  left: 0;
  width: 100%;
}

.yao-line.is-yang::after {
  width: 0;
}

.yao-line.is-yin::before,
.yao-line.is-yin::after {
  width: 43%;
}

.yao-line.is-yin::before { left: 0; }
.yao-line.is-yin::after { right: 0; }

.demo-result {
  color: #635d50;
  font-size: 0.86rem;
}

.yao-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.yao-row {
  min-width: min(22rem, 70vw);
  display: grid;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  color: #6c6558;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.yao-row .yao-line {
  width: 100%;
}

.trigram-result {
  min-width: 12rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  color: #191711;
}

.trigram-result b {
  grid-row: 1 / span 2;
  font-family: var(--sans);
  font-size: 2.4rem;
  font-weight: 400;
}

.trigram-result span {
  font-size: 2rem;
}

.trigram-result small {
  color: #746d5f;
}

.hexagram-demo {
  align-content: stretch;
}

.hexagram-controls {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hexagram-controls label {
  display: grid;
  gap: 0.4rem;
  color: #716959;
  font-size: 0.72rem;
}

.hexagram-controls select {
  width: 100%;
  min-height: 3rem;
  padding: 0 0.8rem;
  color: #1d1a13;
  border: 1px solid rgba(73, 57, 28, 0.34);
  border-radius: 0;
  background: rgba(239, 233, 218, 0.94);
}

.hexagram-output {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) 11rem;
  align-items: center;
  gap: 2rem;
}

.yao-stack.six {
  gap: 0.65rem;
}

.yao-stack.six .yao-line {
  width: 100%;
  height: 0.72rem;
}

.hexagram-name {
  display: grid;
  color: #191711;
}

.hexagram-name > span {
  font-family: var(--sans);
  font-size: 2rem;
}

.hexagram-name b {
  margin-top: 0.5rem;
  color: #5f451b;
  font-size: 1.45rem;
  font-weight: 400;
}

.hexagram-name small {
  margin-top: 0.35rem;
  color: #746d5f;
}

.academy-footer {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 1.6rem;
  color: #6f695d;
  font-size: 0.74rem;
}

.academy-footer > p {
  max-width: 44rem;
}

.academy-footer div {
  flex: none;
  display: flex;
  gap: 1rem;
}

.academy-footer a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #684d1d;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

/* 对话 */
.dialogue {
  display: grid;
  align-items: center;
  background: #070705;
}

.dialogue-media {
  background-image:
    linear-gradient(90deg, rgba(7, 7, 5, 0.98) 0%, rgba(7, 7, 5, 0.7) 45%, rgba(7, 7, 5, 0.18)),
    url("assets/world/dialogue.webp");
  background-position: center;
}

.dialogue-shell {
  display: flex;
  justify-content: flex-start;
}

.dialogue-card {
  width: min(38rem, 50vw);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(7, 7, 5, 0.84);
  backdrop-filter: blur(8px);
}

.dialogue-card h2 {
  margin-top: 1rem;
  color: var(--paper);
  font-size: clamp(1.8rem, 5vw, 5.5rem);
  white-space: nowrap;
}

.dialogue-intro {
  margin-top: 1rem;
  color: var(--paper-dim);
}

.message {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(198, 166, 100, 0.08);
}

.message span {
  color: var(--gold-bright);
  font-size: 0.7rem;
}

.message p {
  margin-top: 0.4rem;
  color: var(--paper);
}

.dialogue-form {
  margin-top: 2rem;
}

.dialogue-form > label {
  color: var(--gold-dark);
  font-size: 0.7rem;
}

.dialogue-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 0.45rem;
  border-bottom: 1px solid var(--line-strong);
}

.dialogue-form input {
  min-width: 0;
  padding: 0.8rem 0;
  color: var(--paper);
  border: 0;
  background: transparent;
  outline: 0;
}

.dialogue-form input::placeholder {
  color: #6e695d;
}

.dialogue-form button {
  padding-inline: 1rem;
  color: #171208;
  border: 0;
  background: var(--gold-bright);
  cursor: pointer;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.prompt-chips button {
  min-height: 2.75rem;
  padding: 0.3rem 0.75rem;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.prompt-chips button:hover {
  color: var(--paper);
  border-color: var(--line-strong);
}

.dialogue-status {
  margin-top: 1.2rem;
  color: #756f63;
  font-family: var(--sans);
  font-size: 0.65rem;
}

/* 证据 */
.evidence {
  background:
    linear-gradient(125deg, rgba(198, 166, 100, 0.035), transparent 35%),
    #0a0a07;
}

.evidence-ledger {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.evidence-ledger li {
  min-height: 7rem;
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.evidence-ledger li:hover {
  padding-inline: 1rem;
  background: rgba(198, 166, 100, 0.05);
}

.evidence-ledger li > span {
  color: var(--gold-dark);
  font-size: 1.6rem;
}

.evidence-ledger h3 {
  color: var(--paper);
  font-size: 1.45rem;
}

.evidence-ledger p {
  margin-top: 0.3rem;
  color: var(--paper-dim);
  font-size: 0.9rem;
}

.evidence-ledger li > b {
  min-width: 6rem;
  padding: 0.35rem 0.7rem;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
}

.boundary-statement {
  display: grid;
  grid-template-columns: 0.18rem 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 4rem;
  padding: 2rem 0;
}

.boundary-mark {
  display: block;
  background: linear-gradient(var(--gold-bright), var(--gold-dark));
}

.boundary-statement h3 {
  color: var(--gold);
  font-size: 1.1rem;
}

.boundary-statement p {
  margin-top: 0.8rem;
  color: var(--paper-dim);
  font-size: 0.86rem;
}

/* 入道 */
.enter {
  min-height: 90svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #070705;
}

.enter-media {
  background-image: url("assets/world/enter.webp");
}

.enter-scrim {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 36% at 50% 44%, rgba(7, 7, 5, 0.9) 0%, rgba(7, 7, 5, 0.74) 56%, transparent 100%),
    radial-gradient(circle at center, transparent 5%, rgba(7, 7, 5, 0.4) 55%, #070705 100%),
    linear-gradient(0deg, #070705, transparent 45%, rgba(7, 7, 5, 0.6));
}

.enter-content {
  position: relative;
  z-index: 2;
  width: min(62rem, 86%);
}

.enter-content .eyebrow {
  justify-content: center;
}

.enter-content .eyebrow::before {
  display: none;
}

.enter h2 {
  margin-top: 1rem;
  color: var(--paper);
  font-size: clamp(2rem, 8vw, 8rem);
  white-space: nowrap;
}

.enter-content > p:not(.eyebrow) {
  width: min(43rem, 100%);
  margin: 1.5rem auto 0;
  color: #d8cfbc;
}

.entry-doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--line-strong);
  background: var(--line);
}

.entry-doors a {
  min-height: 7rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  grid-template-rows: 1fr 1fr;
  align-content: center;
  align-items: end;
  padding: 1.2rem;
  color: var(--paper-dim);
  background: rgba(7, 7, 5, 0.88);
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.entry-doors a:hover {
  color: var(--paper);
  background: rgba(92, 74, 39, 0.82);
}

.entry-doors span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--gold-bright);
  font-size: 2rem;
}

.entry-doors b {
  font-size: 0.92rem;
  font-weight: 400;
}

.entry-doors small {
  color: var(--gold-dark);
  font-size: 0.65rem;
}

.public-case-ledger {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.public-case-ledger > p {
  padding: 0.75rem 0;
  color: #948a77;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.public-case-ledger > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.public-case-ledger a {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 0.8rem;
  padding: 0.8rem 1rem;
  color: var(--paper-dim);
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.public-case-ledger a:last-child {
  border-right: 0;
}

.public-case-ledger a:hover {
  color: var(--paper);
  background: rgba(198, 166, 100, 0.07);
}

.public-case-ledger a > span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.public-case-ledger b {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 400;
}

.public-case-ledger small {
  color: #8d826e;
  font-size: 0.62rem;
}

.site-footer {
  min-height: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-right: 5vw;
  padding-left: calc(var(--rail) + 5vw);
  color: #777164;
  border-top: 1px solid var(--line);
  background: #050504;
  font-size: 0.7rem;
}

.footer-brand {
  justify-self: start;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand .brand-mark {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer > p {
  justify-self: center;
}

.site-footer > div {
  justify-self: end;
  display: grid;
  text-align: right;
}

/* 进入视口 */
.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .axis-item:nth-child(2),
.js .evidence-ledger li:nth-child(2) { transition-delay: 70ms; }
.js .axis-item:nth-child(3),
.js .evidence-ledger li:nth-child(3) { transition-delay: 140ms; }
.js .axis-item:nth-child(4),
.js .evidence-ledger li:nth-child(4) { transition-delay: 210ms; }

@media (max-width: 1180px) {
  :root {
    --rail: 5.5rem;
    --shell: min(72rem, calc(100vw - var(--rail) - 6vw));
  }

  .site-header .brand {
    min-height: 6rem;
  }

  .brand-sub,
  .site-nav span {
    font-size: 0.62rem;
  }

  .site-nav a {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-nav b {
    display: none;
  }

  .section-heading {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .section-intro {
    grid-column: 2;
  }

  .instrument-console {
    grid-template-columns: 10rem minmax(0, 1fr);
  }

  .instrument-copy {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .asset-contract {
    grid-template-columns: 7rem 1fr;
  }

  .asset-contract p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 1100px) {
  .lesson-panel {
    grid-template-columns: 1fr;
  }

  .comic-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 40, 25, 0.2);
  }

  .demo-board {
    min-height: 25rem;
  }
}

@media (max-width: 760px) {
  :root {
    --rail: 0px;
    --shell: calc(100vw - 2rem);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    inset: 0 0 auto;
    width: 100%;
    height: 4.25rem;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header .brand {
    width: auto;
    min-height: 2.75rem;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    border: 0;
  }

  .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }

  .menu-toggle {
    min-width: 3.2rem;
    min-height: 3rem;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--paper);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.75rem;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    content: "";
    transform: translateY(0.38rem);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 4.25rem 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 5, 0.97);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 3rem;
    grid-template-columns: 2rem 1fr;
    justify-items: start;
    padding: 0.3rem 0.7rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav b {
    display: block;
  }

  .site-nav span {
    writing-mode: horizontal-tb;
    justify-self: start;
    max-height: none;
    font-size: 0.78rem;
  }

  .chapter-indicator,
  .scroll-cue {
    display: none;
  }

  main,
  .site-footer {
    padding-left: 0;
  }

  .chapter {
    min-height: auto;
  }

  .section-shell {
    padding-block: 6.5rem 5rem;
  }

  .section-heading,
  .section-heading.compact {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .section-heading .chapter-number {
    font-size: 3.8rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 8.8vw, 3.4rem);
    letter-spacing: 0.04em;
  }

  .section-intro {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, #050504 4%, rgba(5, 5, 4, 0.84) 42%, rgba(5, 5, 4, 0.14) 78%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.68), transparent);
  }

  .hero-content {
    width: auto;
    margin: 0 1rem 4.2rem;
  }

  .hero .eyebrow {
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
  }

  .hero h1 {
    margin-top: 1rem;
    font-size: clamp(3.25rem, 14.5vw, 4.8rem);
    letter-spacing: 0.025em;
  }

  .hero-lede {
    width: 100%;
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .architecture-axis {
    grid-template-columns: 1fr 1fr;
  }

  .architecture-axis::before {
    display: none;
  }

  .axis-item {
    min-height: 14rem;
    border-bottom: 1px solid var(--line);
  }

  .axis-item:nth-child(2) {
    border-right: 0;
  }

  .axis-item h3 {
    font-size: 3.5rem;
  }

  .architecture-note {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .character-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .character-portrait {
    min-height: 22rem;
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .character-copy {
    padding: 2rem 1.2rem;
  }

  .character-copy h3 {
    font-size: 4.2rem;
  }

  .character-picker {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(7rem, 1fr));
  }

  .character-tab {
    min-height: 4.4rem;
  }

  .instrument-console {
    grid-template-columns: 1fr;
  }

  .instrument-rail {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .instrument-tab {
    min-width: 9rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .instrument-visual {
    min-height: 18rem;
  }

  .instrument-copy {
    grid-column: auto;
  }

  .asset-contract {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .asset-contract p:last-child {
    grid-column: auto;
  }

  .lesson-nav {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(47, 40, 25, 0.23);
  }

  .lesson-tab {
    min-height: 4.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 40, 25, 0.15);
  }

  .lesson-tab.is-active {
    box-shadow: inset 2px 0 #8a6a2b;
  }

  .lesson-panel {
    grid-template-columns: 1fr;
  }

  .comic-copy {
    padding: 2rem 1.2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 40, 25, 0.2);
  }

  .comic-copy h3 {
    font-size: 2.9rem;
  }

  .demo-board {
    min-height: 25rem;
    padding: 2rem 1rem;
  }

  .hexagram-output {
    grid-template-columns: 1fr 8rem;
    gap: 1rem;
  }

  .academy-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .academy-footer div {
    flex-direction: column;
    gap: 0.35rem;
  }

  .dialogue {
    min-height: 100svh;
  }

  .dialogue-media {
    background-position: 70% center;
  }

  .dialogue-shell {
    align-items: flex-end;
  }

  .dialogue-card {
    width: 100%;
    margin-top: 28vh;
    padding: 1.6rem 1.2rem;
    background: rgba(7, 7, 5, 0.92);
  }

  .dialogue-card h2 {
    font-size: clamp(2.65rem, 12vw, 3.3rem);
  }

  .dialogue-form > div {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .dialogue-form input {
    min-height: 3rem;
    border-bottom: 1px solid var(--line-strong);
  }

  .dialogue-form button {
    min-height: 3rem;
    margin-top: 0.6rem;
  }

  .evidence-ledger li {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .evidence-ledger li > b {
    grid-column: 2;
    justify-self: start;
  }

  .boundary-statement {
    grid-template-columns: 0.15rem 1fr;
  }

  .boundary-statement > div:last-child {
    grid-column: 2;
  }

  .enter {
    min-height: 100svh;
  }

  .enter h2 {
    font-size: clamp(3rem, 12.5vw, 4.4rem);
  }

  .entry-doors {
    grid-template-columns: 1fr;
  }

  .entry-doors a {
    min-height: 5.5rem;
  }

  .public-case-ledger > div {
    grid-template-columns: 1fr;
  }

  .public-case-ledger a {
    min-height: 4.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .public-case-ledger a:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-brand,
  .site-footer > p,
  .site-footer > div {
    justify-self: center;
    text-align: center;
  }

  .footer-brand {
    min-height: 2.75rem;
  }
}

@media (max-width: 390px) {
  .section-heading h2 { font-size: clamp(1.95rem, 8.5vw, 2.3rem); }
  .hexagram-controls { grid-template-columns: 1fr; }
  .hexagram-output { grid-template-columns: 1fr; }
  .hexagram-name { grid-template-columns: auto 1fr; gap: 0 0.7rem; }
  .hexagram-name > span { grid-row: 1 / span 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root { color-scheme: light; }
  body { color: #111; background: #fff; }
  .site-header, .grain, .hero-media, .section-media, .characters-backdrop, .enter-media, .enter-scrim, .scroll-cue, .prompt-chips { display: none !important; }
  main, .site-footer { padding-left: 0; }
  .chapter { min-height: auto; break-inside: avoid; color: #111; background: #fff; }
  .section-shell { width: 100%; padding: 2rem 0; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-content { width: 100%; margin: 0; }
  .hero h1, .section-heading h2, .character-copy h3, .instrument-copy h3, .dialogue-card h2, .enter h2 { color: #111; text-shadow: none; }
  .hero-lede, .section-intro, .character-facts dd, .instrument-copy > p:not(.eyebrow), .evidence-ledger p, .boundary-statement p { color: #333; }
  .section-heading { grid-template-columns: 4rem 1fr; margin-bottom: 2rem; }
  .section-intro { grid-column: 2; }
  .architecture-axis, .character-stage, .instrument-console, .evidence-ledger, .boundary-statement { border-color: #999; }
  .axis-item, .character-portrait, .character-picker, .instrument-rail, .instrument-copy { border-color: #bbb; }
  .dialogue-card { width: 100%; color: #111; background: #fff; border-color: #999; }
  .enter { text-align: left; }
  .enter-content { width: 100%; }
  .entry-doors a, .public-case-ledger a { color: #111; background: #fff; }
  .site-footer { color: #333; background: #fff; border-color: #999; }
}
