:root {
  color-scheme: light;
  --ink: #171615;
  --muted: #625f59;
  --paper: #f7f4ee;
  --surface: #fffef8;
  --line: #ded4c4;
  --teal: #007f92;
  --red: #d33f49;
  --gold: #c58b14;
  --green: #35785e;
  --violet: #5e4bb6;
  --night: #101010;
  --shadow: 0 16px 44px rgba(23, 22, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  color: var(--ink);
  background: rgba(245, 247, 242, 0.9);
  border-bottom: 1px solid rgba(216, 223, 212, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 48px;
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(150deg, var(--red), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(23, 26, 24, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a,
.nav-cta,
.button,
.filter-button,
.text-link {
  min-height: 40px;
  align-items: center;
  justify-content: center;
}

.site-nav a {
  display: inline-flex;
  padding: 0 12px;
  color: #2d342f;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(31, 102, 120, 0.1);
  outline: none;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  max-height: 680px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.94), rgba(16, 16, 16, 0.62) 48%, rgba(16, 16, 16, 0.18)),
    url("assets/hero-card-research.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(211, 63, 73, 0.2), transparent 34%),
    radial-gradient(circle at 76% 42%, rgba(0, 127, 146, 0.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 80px;
  align-self: center;
}

.kicker,
.eyebrow,
.status {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f1c86c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.text-link {
  display: inline-flex;
  min-width: 148px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
}

.button.primary {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.secondary-dark,
.button.ghost,
.button.danger {
  border: 1px solid var(--line);
}

.button.secondary-dark {
  color: #fff;
  background: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: var(--surface);
}

.button.danger {
  color: #fff;
  background: #8f2d26;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--night);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.signal-strip div {
  min-height: 92px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.96rem;
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.band {
  padding: 76px 32px;
}

.section {
  background: var(--paper);
}

.band {
  background: var(--surface);
}

.content-grid,
.section-head,
.manifesto-layout,
.article-grid,
.governance-grid,
.review-flow {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.call-band {
  padding-top: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.call-copy p,
.lead {
  color: #404841;
  font-size: 1.08rem;
}

.bilingual-band {
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.scope-section {
  background: var(--paper);
}

.scope-grid {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.scope-grid article {
  min-height: 244px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 22, 21, 0.05);
}

.scope-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--violet);
  border-radius: 50%;
}

.scope-grid article:nth-child(2n) .scope-mark {
  background: var(--red);
}

.scope-grid article:nth-child(3n) .scope-mark {
  background: var(--teal);
}

.scope-grid p {
  color: var(--muted);
}

.english-note {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

.text-link {
  width: fit-content;
  min-width: 0;
  padding: 0;
  color: var(--teal);
  border-radius: 0;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.manifesto-text {
  padding-left: 24px;
  border-left: 4px solid var(--red);
}

.manifesto-text p {
  color: #303832;
  font-size: 1.08rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.principle,
.article-card,
.submit-panel,
.governance-grid article,
.review-flow article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-moderation-summary {
  width: min(1160px, 100%);
  margin: 22px auto 0;
  padding: 16px 18px;
  color: #364039;
  background: rgba(255, 255, 255, 0.68);
  border-left: 4px solid var(--gold);
}

.principle {
  min-height: 214px;
  padding: 22px;
}

.principle .index {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 900;
}

.principle p,
.article-card p,
.submit-panel p,
.governance-grid p,
.review-flow p {
  color: var(--muted);
}

.review-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef7f4;
}

.review-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.review-flow article {
  min-height: 236px;
  padding: 20px;
}

.review-flow span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  display: inline-flex;
  min-width: 56px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.filter-button.is-active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.article-card {
  display: flex;
  min-height: 342px;
  flex-direction: column;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(23, 26, 24, 0.06);
}

.article-card.is-hidden {
  display: none;
}

.article-card h3 {
  font-size: 1.18rem;
}

.article-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.article-card footer span {
  padding: 5px 8px;
  background: #edf2e9;
  border-radius: 6px;
}

.article-card h3 a,
.archive-card h3 a {
  color: inherit;
  text-decoration: none;
}

.archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1160px, 100%);
  margin: 24px auto 0;
}

.archive-grid {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.archive-card,
.empty-note,
.article-page {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.archive-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(23, 26, 24, 0.06);
}

.archive-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.archive-card footer span,
.publication-meta span,
.tag-list span {
  padding: 5px 8px;
  background: #edf2e9;
  border-radius: 6px;
}

.publication-card {
  min-height: 390px;
}

.article-title-en {
  color: var(--muted);
  font-weight: 800;
}

.publication-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.article-page {
  padding: 34px;
  box-shadow: var(--shadow);
}

.article-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.publication-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.abstract-block {
  margin: 28px 0;
  padding: 22px;
  background: #f8faf5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.abstract-block p,
.article-body p {
  color: #39423b;
}

.article-body {
  display: grid;
  gap: 34px;
}

.article-body section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  font-size: 1.7rem;
}

.article-english {
  margin-top: 18px;
}

.article-review-section {
  scroll-margin-top: 82px;
  padding-top: 18px;
  background: #eef4f2;
  border-top: 1px solid var(--line);
}

.article-review-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.review-section-head {
  width: 100%;
  margin-bottom: 24px;
}

.review-section-head > div {
  max-width: 760px;
}

.review-section-head > div > p:last-child {
  color: #39423b;
}

.review-article-id,
.form-article-id {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-article-id strong,
.form-article-id strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
}

.review-article-id {
  margin: 10px 0 14px;
}

.form-article-id {
  margin: 0 0 10px;
  padding: 8px 10px;
  background: #f1f3ed;
  border-left: 3px solid var(--teal);
}

.review-state {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 900;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.review-state.is-open {
  color: #196246;
  background: #e1f2e7;
}

.review-state.is-closed {
  color: #864028;
  background: #fae8de;
}

.review-count-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-count-line strong {
  font-size: 2rem;
  line-height: 1;
}

.review-count-line span {
  color: var(--muted);
}

.public-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 36px;
  align-items: start;
}

.review-record-column {
  display: grid;
  gap: 30px;
}

.review-empty,
.review-paused-note {
  padding: 26px 0;
  border-top: 4px solid var(--teal);
  border-bottom: 1px solid var(--line);
}

.review-empty p,
.review-paused-note p,
.published-review p,
.version-history p {
  color: #39423b;
}

.approved-reviews {
  display: grid;
  gap: 24px;
}

.published-review {
  padding: 24px 0;
  border-top: 4px solid var(--teal);
  border-bottom: 1px solid var(--line);
}

.published-review header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.published-review header p,
.published-review header h3 {
  margin-bottom: 4px;
}

.published-review time,
.version-history time {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.author-response {
  margin-top: 22px;
  padding: 18px;
  background: #fffef8;
  border-left: 4px solid var(--gold);
}

.version-history {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.version-history ol {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.version-history li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.version-history li > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.version-history li p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.public-review-form {
  border-top: 5px solid var(--red);
}

.public-review-form h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.review-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
}

.review-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.review-consent span {
  font-weight: 600 !important;
}

.moderation-note {
  margin: 0;
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
}

.public-review-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.empty-note {
  grid-column: 1 / -1;
  padding: 28px;
}

.issue-articles {
  padding-top: 0;
}

.columns-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.submit-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.button-row,
.form-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #364039;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.governance-grid article {
  min-height: 188px;
  padding: 24px;
}

.founder-section {
  background: #eef4f2;
}

.profile-teaser,
.profile-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.profile-card,
.profile-main,
.profile-sidebar > .profile-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.profile-card h3 {
  font-size: 1.25rem;
}

.profile-card p,
.profile-main p,
.mini-meta dd {
  color: var(--muted);
}

.profile-hero {
  background-position: 62% center;
}

.profile-main {
  padding: 34px;
}

.profile-main h2 {
  font-size: 1.65rem;
}

.profile-main hr {
  height: 1px;
  margin: 32px 0;
  background: var(--line);
  border: 0;
}

.sticky-card {
  position: sticky;
  top: 90px;
}

.profile-links {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.mini-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.mini-meta div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.mini-meta dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-meta dd {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 32px;
  color: #dce6dd;
  background: var(--night);
}

.site-footer p {
  margin: 4px 0 0;
  color: #aebbb2;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 17, 16, 0.94), rgba(12, 17, 16, 0.64)),
    url("assets/hero-card-research.png") center / cover no-repeat;
}

.page-hero.compact {
  min-height: 300px;
}

.admin-hero {
  min-height: 260px;
}

.page-hero-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: 3.4rem;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.admin-titlebar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
  gap: 28px;
  align-items: start;
}

.journal-form,
.side-panel,
.inbox-panel,
.detail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journal-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journal-form label,
.editor-form label {
  display: grid;
  gap: 8px;
}

.journal-form label span,
.editor-form label span,
.radio-group legend {
  color: #303832;
  font-size: 0.9rem;
  font-weight: 800;
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.netlify-hidden {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(31, 102, 120, 0.14);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.radio-group input {
  width: auto;
  min-height: 0;
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-message a,
.meta-list a {
  color: var(--teal);
}

.side-panel {
  position: sticky;
  top: 90px;
  padding: 28px;
}

.side-panel h2 {
  font-size: 1.55rem;
}

.side-panel p {
  color: var(--muted);
}

.admin-section {
  padding-top: 42px;
}

.admin-login-section {
  padding-top: 48px;
}

.login-card {
  display: grid;
  width: min(520px, 100%);
  gap: 18px;
  margin: 0 auto;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-card h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.login-card p {
  color: var(--muted);
}

.login-card label {
  display: grid;
  gap: 8px;
}

.login-card label span {
  color: #303832;
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-summary article {
  min-height: 118px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.admin-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.inbox-panel,
.detail-panel {
  min-height: 560px;
  overflow: hidden;
}

.inbox-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.submission-list {
  display: grid;
  gap: 0;
}

.submission-item {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.submission-item:hover,
.submission-item:focus-visible,
.submission-item.is-active {
  background: #f0f5ef;
  outline: none;
}

.submission-item strong {
  line-height: 1.32;
}

.submission-item small {
  color: var(--muted);
}

.submission-status {
  width: fit-content;
  padding: 4px 8px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 6px;
}

.status-new {
  background: var(--red);
}

.status-screening {
  background: var(--gold);
}

.status-review {
  background: var(--teal);
}

.status-revision {
  background: var(--green);
}

.status-accepted {
  background: #27633b;
}

.status-declined {
  background: #70766f;
}

.empty-state,
.detail-placeholder {
  padding: 28px;
}

.empty-state[hidden] {
  display: none;
}

.empty-state p,
.detail-placeholder p,
.muted-result {
  color: var(--muted);
}

.muted-result {
  margin: 0;
  padding: 22px;
}

.detail-panel {
  padding: 28px;
}

.detail-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.detail-header h2 {
  font-size: 1.8rem;
}

.detail-header p {
  color: var(--muted);
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.meta-list div {
  min-height: 84px;
  padding: 14px;
  background: #f5f8f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.meta-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.meta-list dd {
  margin: 0;
}

.detail-block {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.detail-block p {
  color: #39423b;
}

.editor-form {
  display: grid;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .review-flow,
  .article-grid,
  .scope-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-workspace,
  .form-layout,
  .profile-teaser,
  .profile-page-grid,
  .publication-layout,
  .public-review-layout {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .sticky-card {
    position: static;
  }

  .review-flow article,
  .article-card {
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px 24px;
    background: rgba(245, 247, 242, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .hero {
    min-height: 430px;
    background-position: 58% center;
  }

  .hero-content {
    width: min(100% - 36px, 1160px);
    padding: 56px 0 48px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section,
  .band {
    padding: 56px 18px;
  }

  .two-columns,
  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .principles,
  .governance-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-bar {
    justify-content: flex-start;
  }

  .admin-titlebar {
    align-items: flex-start;
    flex-direction: column;
  }

  .published-review header {
    flex-direction: column;
  }

  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 420px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-strip,
  .review-flow,
  .article-grid,
  .scope-grid,
  .archive-grid,
  .form-grid,
  .admin-summary,
  .meta-list {
    grid-template-columns: 1fr;
  }

  .inbox-tools {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .principle,
  .review-flow article,
  .article-card,
  .governance-grid article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-page,
  .journal-form {
    padding: 22px;
  }

  .review-count-line {
    align-items: flex-start;
    flex-direction: column;
  }
}
