:root {
  --bg: #090806;
  --bg-2: #100e0b;
  --panel: rgba(25, 22, 18, 0.78);
  --panel-solid: #181510;
  --panel-2: #211d17;
  --text: #f3ead7;
  --text-soft: #c7baa2;
  --muted: #837765;
  --line: rgba(215, 169, 75, 0.16);
  --line-strong: rgba(215, 169, 75, 0.35);
  --gold: #d7a94b;
  --gold-2: #fff0ba;
  --red: #8f1d1b;
  --red-2: #c0392b;
  --green: #8d9b75;
  --shadow: rgba(0, 0, 0, 0.45);

  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--serif);
  background:
    radial-gradient(circle at 20% 0%, rgba(143, 29, 27, 0.22), transparent 34rem),
    radial-gradient(circle at 86% 4%, rgba(215, 169, 75, 0.14), transparent 32rem),
    linear-gradient(180deg, #090806 0%, #0d0b08 42%, #120f0b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.14;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 4px
    );
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #fff;
  background: var(--red-2);
}

/* Background SVG */

.bg-orbit {
  position: fixed;
  inset: -25vh auto auto -20vw;
  z-index: -4;
  width: 140vw;
  height: 140vh;
  opacity: 0.9;
  pointer-events: none;
  filter: blur(2px);
}

/* Top line */

.top-line {
  position: relative;
  height: 32px;
  overflow: hidden;
}

.top-line svg {
  width: 100%;
  height: 100%;
}

/* Layout */

.site-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(215,169,75,0.16), rgba(143,29,27,0.1)),
    rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand strong {
  display: block;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(215,169,75,0.12);
  border-radius: 999px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 750;
  border-radius: 999px;
  transition: all .22s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #100e0b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 8px 24px rgba(215,169,75,.18);
}

.site-nav .rss-link {
  width: 34px;
  padding: 0;
}

.rss-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* Hero */

.hero {
  position: relative;
  min-height: clamp(560px, 75vh, 760px);
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #111;
  box-shadow:
    0 42px 100px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(215,169,75,0.18);
  border-radius: 22px;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cinematicZoom 22s ease-in-out infinite alternate;
}

@keyframes cinematicZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.075);
  }
}

.hero-shade {
  background:
    radial-gradient(circle at 28% 40%, rgba(215,169,75,.08), transparent 22rem),
    linear-gradient(90deg, rgba(9,8,6,.92) 0%, rgba(9,8,6,.72) 38%, rgba(9,8,6,.36) 68%, rgba(9,8,6,.78) 100%),
    linear-gradient(180deg, rgba(9,8,6,.2) 0%, rgba(9,8,6,.96) 100%);
}

.hero-noise {
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.2) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.14) 0 1px, transparent 1px);
  background-size: 34px 34px, 56px 56px;
}

.hero-seal {
  position: absolute;
  right: clamp(-40px, 4vw, 50px);
  bottom: clamp(20px, 6vw, 70px);
  z-index: 2;
  width: min(38vw, 320px);
  opacity: .48;
  color: var(--gold);
  mix-blend-mode: screen;
}

.hero-seal text {
  fill: rgba(215,169,75,.75);
  stroke: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  max-width: 760px;
  padding: clamp(34px, 7vw, 82px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero h1 {
  margin: 0;
  color: #fff8e8;
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0.015em;
  text-shadow: 0 18px 40px rgba(0,0,0,.55);
}

.hero-desc {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 850;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.btn.primary {
  color: #100e0b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 35px rgba(215,169,75,.22);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover {
  box-shadow: 0 18px 48px rgba(215,169,75,.35);
}

.btn.secondary:hover {
  border-color: var(--line-strong);
  background: rgba(215,169,75,.08);
}

/* Metrics */

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
}

.metric-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(215,169,75,.16), transparent 70%);
}

.metric-card svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke-width: 1.65;
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.42rem;
  line-height: 1;
  font-weight: 950;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
}

/* Sections */

.content-section {
  margin-top: 74px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--red-2);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.18;
  font-weight: 950;
}

.section-link {
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 800;
  border-bottom: 1px solid var(--line-strong);
}

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

/* Article Cards */

.article-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.article-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(215,169,75,.06), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.026)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215,169,75,.18), transparent 36%),
    radial-gradient(circle at 82% 16%, rgba(143,29,27,.2), transparent 16rem);
  opacity: .55;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
}

.featured-card {
  min-height: 340px;
}

.card-top,
.card-bottom,
.article-card h3,
.article-card p {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  background: rgba(215,169,75,.1);
  border: 1px solid rgba(215,169,75,.24);
  border-radius: 999px;
}

.date {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
}

.article-card h3 {
  margin: 28px 0 14px;
  max-width: 680px;
  color: var(--text);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  line-height: 1.42;
  font-weight: 950;
}

.article-card h3 a:hover {
  color: var(--gold);
}

.article-card p {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: .96rem;
  line-height: 1.9;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(215,169,75,.12);
}

.read-link {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 900;
}

.download-links {
  display: flex;
  gap: 8px;
}

.download-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}

.download-links a:hover {
  color: #100e0b;
  background: var(--gold);
  border-color: var(--gold);
}

/* Collection */

.collection-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(143,29,27,.22), transparent 26rem),
    linear-gradient(135deg, rgba(215,169,75,.09), transparent 45%),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}

.collection-panel::after {
  content: "COLLECTION";
  position: absolute;
  right: 28px;
  bottom: -16px;
  color: rgba(215,169,75,.05);
  font-family: var(--sans);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  pointer-events: none;
}

.collection-index {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--gold);
}

.collection-index span {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 950;
}

.collection-index svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: .7;
  stroke-width: 1.2;
}

.collection-label {
  margin: 0 0 10px;
  color: var(--red-2);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.collection-main h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.25;
  font-weight: 950;
}

.collection-main p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.collection-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.collection-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  color: #100e0b;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(215,169,75,.18);
}

.collection-cta svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

/* Manifesto */

.manifesto {
  position: relative;
  margin-top: 78px;
  padding: 62px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-mark {
  width: min(320px, 80vw);
  height: 160px;
  margin: 0 auto 8px;
}

.manifesto p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.65;
  font-weight: 850;
}

.manifesto span {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Footer */

.site-footer {
  margin-top: 56px;
  padding: 28px 0 10px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-top nav a {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 800;
}

.footer-top nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .78rem;
  line-height: 1.7;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
}

/* Mobile */

@media (max-width: 900px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .hero {
    min-height: 620px;
    border-radius: 22px;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 34px 24px 44px;
  }

  .hero-seal {
    width: 220px;
    right: -54px;
    bottom: 190px;
    opacity: .34;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .collection-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .collection-index {
    margin: 0 auto;
  }

  .collection-tags {
    justify-content: center;
  }

  .collection-cta {
    justify-self: center;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 22px, var(--max));
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand em {
    font-size: .6rem;
  }

  .site-nav a {
    padding: 0 11px;
  }

  .hero {
    margin-top: 16px;
    min-height: 590px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-desc {
    font-size: .95rem;
  }

  .btn {
    width: 100%;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metric-card {
    padding: 18px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-card {
    padding: 24px;
  }

  .card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-panel {
    padding: 26px 20px;
  }

  .manifesto {
    padding: 48px 16px;
  }
}

/* Reduced Motion */

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

  .hero-media img {
    animation: none;
  }

  .btn,
  .article-card {
    transition: none;
  }
}
/* ===== Reader Page ===== */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(215, 169, 75, 0.45);
}

.reader-layout {
  margin-top: 42px;
}

.reader-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 38px 90px rgba(0,0,0,.42);
}

.reader-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(215,169,75,.13);
  border-radius: 20px;
}

.reader-header {
  position: relative;
  padding: clamp(32px, 6vw, 62px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(143,29,27,.24), transparent 25rem),
    radial-gradient(circle at 100% 0%, rgba(215,169,75,.12), transparent 24rem);
}

.reader-header h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.24;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
}

.reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  color: #100e0b;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(215,169,75,.18);
}

.reader-content {
  position: relative;
  padding: clamp(32px, 6vw, 66px);
  color: var(--text);
  font-size: 1.08rem;
  line-height: 2.15;
}

.reader-content p {
  margin: 0 0 1.3em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.reader-content h2 {
  margin: 2.2em 0 1em;
  padding-top: 1.2em;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

.reader-content code {
  padding: 0.12em 0.38em;
  color: var(--gold-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  background: rgba(215,169,75,.08);
  border: 1px solid rgba(215,169,75,.16);
  border-radius: 5px;
}

.reader-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(32px, 6vw, 66px) 42px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #100e0b;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 999px;
}

.page-btn.muted {
  color: var(--text-soft);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
}

@media (max-width: 620px) {
  .reader-layout {
    margin-top: 24px;
  }

  .reader-card {
    border-radius: 20px;
  }

  .reader-content {
    font-size: 1rem;
    line-height: 2.05;
  }

  .reader-content p {
    text-align: left;
  }

  .reader-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .page-btn {
    width: 100%;
  }
/* ===== Premium Polish Patch ===== */

/* 1. 全局点击蓝框处理：不是粗暴去掉，而是换成高级金色焦点 */
a,
button,
.btn,
.page-btn,
.download-btn,
.collection-cta,
.site-nav a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.page-btn:focus-visible,
.download-btn:focus-visible,
.collection-cta:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid rgba(255, 224, 145, 0.85);
  outline-offset: 4px;
  box-shadow:
    0 0 0 4px rgba(215, 169, 75, 0.18),
    0 0 28px rgba(215, 169, 75, 0.28);
}

/* 2. 颜色整体提亮一点 */
:root {
  --bg: #080705;
  --bg-2: #13100c;
  --panel: rgba(34, 29, 22, 0.82);
  --panel-solid: #211b14;
  --panel-2: #2b241a;

  --text: #fff4dd;
  --text-soft: #dacbad;
  --muted: #a5977b;

  --gold: #e4b95b;
  --gold-2: #fff1b8;
  --red: #a52522;
  --red-2: #df493c;

  --line: rgba(228, 185, 91, 0.2);
  --line-strong: rgba(228, 185, 91, 0.46);
}

/* 3. 全站动效更顺滑 */
* {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a,
.btn,
.page-btn,
.download-btn,
.collection-cta,
.article-card,
.metric-card,
.collection-panel,
.reader-card,
.site-nav a,
.brand-mark {
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* 4. 页面背景更有层次 */
body {
  background:
    radial-gradient(circle at 18% 0%, rgba(165, 37, 34, 0.28), transparent 32rem),
    radial-gradient(circle at 90% 5%, rgba(228, 185, 91, 0.18), transparent 34rem),
    radial-gradient(circle at 50% 110%, rgba(228, 185, 91, 0.08), transparent 38rem),
    linear-gradient(180deg, #080705 0%, #100d09 46%, #17120d 100%);
}

/* 5. 顶部导航更亮、更像企业级玻璃导航 */
.site-header {
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-nav {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  border: 1px solid rgba(228, 185, 91, 0.22);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav a {
  color: #dfd1b4;
}

.site-nav a:hover,
.site-nav a.active {
  color: #130f09;
  background:
    linear-gradient(135deg, #fff4c7 0%, #e4b95b 54%, #c99435 100%);
  box-shadow:
    0 10px 28px rgba(228, 185, 91, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* 6. Logo 更亮 */
.brand-mark {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 241, 184, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(228, 185, 91, 0.18), rgba(165, 37, 34, 0.12)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(228, 185, 91, 0.42);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(228, 185, 91, 0.08);
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(228, 185, 91, 0.2);
}

/* 7. Hero 更明亮、更电影感 */
.hero {
  border-color: rgba(228, 185, 91, 0.25);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero::before {
  border-color: rgba(255, 231, 157, 0.22);
}

.hero-shade {
  background:
    radial-gradient(circle at 25% 40%, rgba(228, 185, 91, 0.16), transparent 23rem),
    radial-gradient(circle at 75% 20%, rgba(165, 37, 34, 0.18), transparent 26rem),
    linear-gradient(90deg, rgba(8, 7, 5, 0.9) 0%, rgba(8, 7, 5, 0.65) 36%, rgba(8, 7, 5, 0.32) 68%, rgba(8, 7, 5, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.14) 0%, rgba(8, 7, 5, 0.96) 100%);
}

.hero h1 {
  color: #fff7e6;
  text-shadow:
    0 18px 45px rgba(0, 0, 0, 0.7),
    0 0 36px rgba(228, 185, 91, 0.12);
}

.hero-desc {
  color: #e0d0ae;
}

/* 8. 按钮更高级 */
.btn.primary,
.page-btn,
.download-btn,
.collection-cta {
  background:
    linear-gradient(135deg, #fff5c9 0%, #e5bb60 46%, #c99032 100%);
  color: #120e08;
  box-shadow:
    0 16px 38px rgba(228, 185, 91, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn.primary:hover,
.page-btn:hover,
.download-btn:hover,
.collection-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 56px rgba(228, 185, 91, 0.38),
    0 0 28px rgba(228, 185, 91, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn.secondary,
.page-btn.muted {
  color: #eee0bf;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(228, 185, 91, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn.secondary:hover,
.page-btn.muted:hover {
  color: var(--gold-2);
  border-color: rgba(228, 185, 91, 0.55);
  background: rgba(228, 185, 91, 0.1);
}

/* 9. 数据卡片更精致 */
.metric-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 185, 91, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(34, 29, 22, 0.78);
  border-color: rgba(228, 185, 91, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 185, 91, 0.5);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(228, 185, 91, 0.08);
}

.metric-card strong {
  color: #fff2c9;
}

/* 10. 文章卡片更亮、更干净 */
.article-card,
.collection-panel,
.reader-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(165, 37, 34, 0.18), transparent 24rem),
    radial-gradient(circle at 100% 0%, rgba(228, 185, 91, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    #211b14;
  border-color: rgba(228, 185, 91, 0.22);
}

.article-card:hover,
.collection-panel:hover,
.reader-card:hover {
  border-color: rgba(228, 185, 91, 0.48);
  box-shadow:
    0 36px 86px rgba(0, 0, 0, 0.46),
    0 0 40px rgba(228, 185, 91, 0.08);
}

.article-card h3,
.collection-main h3,
.reader-header h1 {
  color: #fff2d2;
}

.article-card p,
.collection-main p,
.reader-content p {
  color: #d8c8a8;
}

/* 11. 阅读页更高级 */
.reader-card {
  max-width: 960px;
}

.reader-header {
  background:
    radial-gradient(circle at 0% 0%, rgba(165,37,34,.3), transparent 26rem),
    radial-gradient(circle at 100% 0%, rgba(228,185,91,.18), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}

.reader-content {
  color: #f4ead4;
}

.reader-content h2 {
  color: #f0c76b;
  border-top-color: rgba(228, 185, 91, 0.22);
}

.reader-content h2::before {
  content: "§ ";
  color: var(--red-2);
}

.reader-content p {
  letter-spacing: 0.01em;
}

/* 12. 下载小按钮 */
.download-links a {
  border-color: rgba(228, 185, 91, 0.24);
  color: #d8c8a8;
}

.download-links a:hover {
  transform: translateY(-2px);
  color: #120e08;
  background: linear-gradient(135deg, #fff5c9, #e4b95b);
  border-color: var(--gold);
}

/* 13. 手机触摸时也顺滑 */
@media (hover: none) {
  .article-card:hover,
  .collection-panel:hover,
  .metric-card:hover,
  .btn:hover,
  .page-btn:hover,
  .download-btn:hover,
  .collection-cta:hover {
    transform: none;
  }

  .article-card:active,
  .collection-panel:active,
  .metric-card:active,
  .btn:active,
  .page-btn:active,
  .download-btn:active,
  .collection-cta:active {
    transform: scale(0.985);
  }
}
/* ===== Library Page ===== */

.library-hero {
  margin-top: 48px;
  padding: clamp(34px, 6vw, 68px);
  background:
    radial-gradient(circle at 0% 0%, rgba(165, 37, 34, 0.24), transparent 26rem),
    radial-gradient(circle at 100% 0%, rgba(228, 185, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0,0,0,.42);
}

.library-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.library-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 2;
}

.library-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 18px 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.library-count {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.library-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(228,185,91,.18);
  border-radius: 999px;
  background: rgba(228,185,91,.06);
}

.library-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.library-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(165,37,34,.16), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.library-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
}

.library-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 950;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(228,185,91,.07);
}

.library-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.library-meta span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
}

.library-main h2 {
  margin: 10px 0 8px;
  color: var(--text);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  font-weight: 950;
}

.library-main h2 a:hover {
  color: var(--gold);
}

.library-main p {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.library-actions {
  display: flex;
  gap: 8px;
}

.library-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 900;
  border: 1px solid rgba(228,185,91,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.library-actions a:hover,
.library-actions .library-read {
  color: #120e08;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .library-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .library-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .library-number {
    width: 48px;
    height: 48px;
  }

  .library-actions {
    flex-wrap: wrap;
  }
}
/* ===== Collections Pages ===== */

.collection-hero-page {
  margin-top: 48px;
  padding: clamp(34px, 6vw, 68px);
  background:
    radial-gradient(circle at 0% 0%, rgba(165, 37, 34, 0.24), transparent 26rem),
    radial-gradient(circle at 100% 0%, rgba(228, 185, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0,0,0,.42);
}

.collection-hero-page h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.collection-hero-page p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 2;
}

.collection-list-page {
  margin-top: 30px;
}

.collection-list-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(165,37,34,.18), transparent 23rem),
    radial-gradient(circle at 100% 0%, rgba(228,185,91,.13), transparent 23rem),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}

.collection-list-card::after {
  content: "COLLECTION";
  position: absolute;
  right: 24px;
  bottom: -12px;
  color: rgba(228,185,91,.055);
  font-family: var(--sans);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 950;
  letter-spacing: .04em;
  pointer-events: none;
}

.collection-list-no {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 950;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(228,185,91,.07);
}

.collection-list-main {
  position: relative;
  z-index: 1;
}

.collection-list-main h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.25;
  font-weight: 950;
}

.collection-list-main h2 a:hover {
  color: var(--gold);
}

.collection-list-main p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

/* Collection detail */

.collection-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 48px;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(165, 37, 34, 0.28), transparent 28rem),
    radial-gradient(circle at 100% 0%, rgba(228, 185, 91, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 42px 100px rgba(0,0,0,.46);
}

.collection-detail-no {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  color: var(--gold);
}

.collection-detail-no span {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 2.6rem;
  font-weight: 950;
}

.collection-detail-no svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: .75;
  stroke-width: 1.25;
}

.collection-detail-main h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.15;
  font-weight: 950;
}

.collection-detail-main p {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 2;
}

/* Collection TOC */

.collection-toc-section {
  margin-top: 64px;
}

.collection-toc-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-toc-list li a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.collection-toc-list li a:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,.36);
}

.collection-toc-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 950;
  border: 1px solid rgba(228,185,91,.28);
  border-radius: 50%;
  background: rgba(228,185,91,.07);
}

.collection-toc-list strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.collection-toc-list em {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .8rem;
  font-style: normal;
  font-weight: 800;
}

/* Download panel */

.collection-download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(228,185,91,.16), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.collection-download-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.6rem;
}

.collection-download-panel p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.collection-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-download-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #120e08;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(228,185,91,.18);
}

@media (max-width: 800px) {
  .collection-list-card,
  .collection-detail-hero {
    grid-template-columns: 1fr;
  }

  .collection-detail-no {
    width: 120px;
    height: 120px;
  }

  .collection-toc-list li a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .collection-download-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* ===== About Page ===== */

.about-hero {
  margin-top: 48px;
  padding: clamp(34px, 6vw, 72px);
  background:
    radial-gradient(circle at 0% 0%, rgba(165, 37, 34, 0.24), transparent 26rem),
    radial-gradient(circle at 100% 0%, rgba(228, 185, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0,0,0,.42);
}

.about-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.about-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(228,185,91,.14), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
}

.about-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  background: rgba(228,185,91,.08);
  border: 1px solid rgba(228,185,91,.24);
  border-radius: 16px;
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.about-card h2 {
  margin: 22px 0 12px;
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 950;
}

.about-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: .94rem;
  line-height: 1.9;
}

.about-principles {
  margin-top: 72px;
}

.principle-list {
  display: grid;
  gap: 12px;
}

.principle-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)),
    var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.principle-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 950;
  border: 1px solid rgba(228,185,91,.28);
  border-radius: 50%;
  background: rgba(228,185,91,.07);
}

.principle-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-note {
  margin-top: 70px;
  padding: 46px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-note svg {
  width: min(320px, 80vw);
  height: 120px;
  margin: 0 auto;
}

.about-note p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  line-height: 1.7;
  font-weight: 850;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .principle-item {
    grid-template-columns: 1fr;
  }
}
/* ===== Dynamic Reader Polish ===== */

.reader-content h3 {
  margin: 2em 0 1em;
  color: var(--gold-2);
  font-size: 1.25rem;
  line-height: 1.55;
}

.reader-content p {
  animation: readerFadeIn .28s ease both;
}

@keyframes readerFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reader-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(228,185,91,.35);
}

.reader-content a:hover {
  color: var(--gold-2);
}

.reader-content code {
  word-break: break-all;
}