:root {
  --primary: #13ae6f;
  --primary-dark: #0b7f50;
  --accent: #f2b84b;
  --ink: #131313;
  --ink-soft: #333;
  --ink-muted: #777;
  --line: #ececec;
  --panel: #ffffff;
  --soft: #f6f6f6;
  --dark: #131313;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 22px 55px rgba(0, 0, 0, 0.12);
  --body-font: "Work Sans", Arial, sans-serif;
  --display-font: "Neuton", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at top left, rgba(19, 174, 111, 0.08), transparent 34vw),
    linear-gradient(180deg, #fff 0%, #fff 55%, #fafafa 100%);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body:not(.admin-body)::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% calc(14% + var(--scroll-glow, 0) * 18%), rgba(79, 206, 149, 0.12), transparent 28vw),
    radial-gradient(circle at 18% calc(82% - var(--scroll-glow, 0) * 12%), rgba(183, 232, 108, 0.1), transparent 24vw);
  pointer-events: none;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  color: var(--primary);
  font-family: var(--display-font);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.brand:hover .brand-mark {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.brand small {
  display: block;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--primary);
}

.section {
  padding: 72px 0;
}

.section-title {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin: 0 0 18px;
}

.section-kicker,
.meta {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero {
  padding: 74px 0 54px;
  position: relative;
}

.hero::after {
  position: absolute;
  right: -160px;
  top: 32px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(19, 174, 111, 0.22);
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  margin: 12px 0 24px;
  text-wrap: balance;
}

.hero p {
  max-width: 660px;
  color: #424242;
  font-size: 18px;
  margin: 0 0 28px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

.button:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(130%);
}

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

.button.secondary:hover {
  background: var(--soft);
}

.button.danger {
  border-color: #b52323;
  background: #b52323;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  background-image: linear-gradient(rgba(19, 174, 111, 0.24), rgba(19, 174, 111, 0.24));
  background-position: 0 86%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: color 0.2s ease, background-size 0.25s ease;
}

.text-link:hover {
  background-size: 100% 100%;
}

.hero-panel,
.card,
.admin-panel,
.login-card {
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(236, 236, 236, 0.78);
}

.hero-panel {
  padding: 30px;
  position: relative;
  isolation: isolate;
  animation: floatIn 0.7s ease both 0.12s;
}

.hero-panel::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px dashed rgba(19, 174, 111, 0.26);
  z-index: -1;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.stat {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 38px;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 13px;
}

.focus-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  border-top: 1px dashed var(--line);
  padding: 16px 0;
  color: var(--ink);
  font-weight: 700;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.focus-list li:hover {
  color: var(--primary-dark);
  padding-left: 8px;
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(19, 174, 111, 0.055), transparent 36%),
    var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.lead {
  margin: 0;
  color: #3f3f3f;
  font-size: 18px;
}

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

.section-heading-row .section-title {
  margin-bottom: 0;
}

.view-all-link {
  border: 1px solid rgba(19, 174, 111, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  font-weight: 800;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  white-space: nowrap;
}

.view-all-link:hover {
  border-color: rgba(19, 174, 111, 0.44);
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 174, 111, 0.12);
  transform: translateY(-2px);
}

.research-grid,
.members-grid,
.article-grid {
  display: grid;
  gap: 24px;
}

.research-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

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

.article-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: start;
}

.listing-hero {
  min-height: 68vh;
}

.listing-grid {
  margin-top: 8px;
}

.all-article-grid {
  display: grid;
  gap: 24px;
  max-width: 940px;
}

.article-full-card h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.card {
  padding: 28px;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  content: "";
  background: var(--primary);
  transition: height 0.24s ease;
}

.card:hover {
  border-color: rgba(19, 174, 111, 0.32);
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.card:hover::before {
  height: 100%;
}

.card h3,
.card h2 {
  color: var(--ink);
  font-family: var(--display-font);
  line-height: 1.1;
  margin: 10px 0 12px;
}

.card h2 {
  font-size: 36px;
}

.card h3 {
  font-size: 28px;
}

.card p {
  margin: 0 0 16px;
}

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

.tag {
  background: rgba(19, 174, 111, 0.11);
  color: #0b6541;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 9px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tag:hover {
  background: rgba(19, 174, 111, 0.2);
  transform: translateY(-1px);
}

.member-avatar {
  width: 225px;
  height: 290px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-family: var(--display-font);
  font-size: 54px;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(19, 174, 111, 0.12), rgba(242, 184, 75, 0.18)),
    var(--soft);
}

.member-card-link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.member-card-link:hover .text-link {
  color: var(--primary-dark);
}

.member-card-link .member-avatar,
.member-card-preview .member-avatar,
.member-profile-card .member-avatar {
  margin-inline: auto;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-compact {
  display: block;
  color: inherit;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.article-compact:hover {
  opacity: 0.82;
  transform: translateX(5px);
}

.article-compact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-card-link {
  color: inherit;
  cursor: pointer;
}

.article-card-link .text-link {
  display: inline-block;
  margin-top: 4px;
}

.showcase-section {
  overflow: hidden;
}

.showcase-carousel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 26px 0 34px;
  perspective: 1200px;
}

.showcase-carousel::before,
.showcase-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(110px, 14vw);
  content: "";
  pointer-events: none;
}

.showcase-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.showcase-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.showcase-track {
  --showcase-gap: 22px;
  --showcase-card-width: clamp(260px, 32vw, 390px);
  --showcase-distance: 100%;
  --showcase-duration: 20s;
  display: flex;
  width: max-content;
  gap: var(--showcase-gap);
  animation: showcaseCruise var(--showcase-duration) linear infinite;
  will-change: transform;
}

.showcase-track.is-static {
  width: 100%;
  justify-content: center;
  animation: none;
}

.showcase-item {
  width: var(--showcase-card-width);
  margin: 0;
  flex: 0 0 auto;
  border: 1px solid rgba(79, 206, 149, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 249, 0.82)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 46px rgba(32, 134, 93, 0.1);
  overflow: hidden;
  transform-origin: center;
  transition:
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eefaf4;
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item figcaption {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px 18px;
  color: #24473c;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 251, 245, 0.9));
}

.showcase-item figcaption strong {
  color: #12352d;
  font-size: 17px;
  line-height: 1.25;
}

.showcase-item figcaption span {
  line-height: 1.55;
}

.showcase-carousel:hover .showcase-item:not(.coverflow-item) {
  opacity: 0.72;
  filter: saturate(0.86);
  transform: scale(0.94);
}

.showcase-carousel:hover .showcase-item:not(.coverflow-item):hover {
  z-index: 4;
  opacity: 1;
  filter: saturate(1.08);
  box-shadow: 0 28px 76px rgba(32, 134, 93, 0.22);
  transform: scale(1.075) translateY(-8px);
}

.showcase-carousel:hover .showcase-item:hover img {
  transform: scale(1.045);
}

.coverflow-item {
  position: absolute;
  left: 50%;
  top: 28px;
  width: min(48vw, 440px);
  max-width: calc(100vw - 52px);
  opacity: calc(1 - min(var(--cover-depth), 3) * 0.18);
  z-index: calc(20 - min(var(--cover-depth), 10));
  transform:
    translateX(calc(-50% + var(--cover-offset) * 230px))
    translateZ(calc(-1 * var(--cover-depth) * 120px))
    rotateY(calc(-1 * var(--cover-offset) * 17deg))
    scale(calc(1 - min(var(--cover-depth), 3) * 0.08));
  transition:
    transform 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.86s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(calc(1 - min(var(--cover-depth), 3) * 0.08));
  pointer-events: none;
}

.coverflow-item.is-active,
.coverflow-item:hover {
  pointer-events: auto;
}

.showcase-carousel:hover .coverflow-item {
  transform:
    translateX(calc(-50% + var(--cover-offset) * 230px))
    translateZ(calc(-1 * var(--cover-depth) * 120px))
    rotateY(calc(-1 * var(--cover-offset) * 17deg))
    scale(calc(1 - min(var(--cover-depth), 3) * 0.08));
}

.showcase-carousel:hover .coverflow-item:hover {
  transform:
    translateX(calc(-50% + var(--cover-offset) * 230px))
    translateZ(40px)
    rotateY(calc(-1 * var(--cover-offset) * 12deg))
    translateY(-10px)
    scale(calc(1.04 - min(var(--cover-depth), 3) * 0.05));
  opacity: 1;
  filter: saturate(1.1);
}

.site-footer {
  background: var(--dark);
  color: #e8e8e8;
  padding: 44px 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(19, 174, 111, 0.16), transparent),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.site-footer .brand {
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.footer-links a {
  color: #e8e8e8;
}

.copyright {
  margin-top: 32px;
  color: #aaa;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.runtime {
  margin-top: 8px;
  color: #c6d5dc;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.icp-link {
  margin-top: 8px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.icp-link a {
  color: #c6d5dc;
}

.icp-link a:hover {
  color: #fff;
}

.admin-body {
  background:
    radial-gradient(circle at top right, rgba(19, 174, 111, 0.12), transparent 34vw),
    #fafafa;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(460px, 100%);
  padding: 34px;
  animation: floatIn 0.55s ease both;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background:
    linear-gradient(180deg, #131313 0%, #18231f 100%);
  color: #fff;
  padding: 28px 22px;
}

.admin-sidebar .brand {
  color: #fff;
  margin-bottom: 34px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ddd;
  padding: 12px 10px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-nav button.active,
.admin-nav button:hover {
  background: rgba(19, 174, 111, 0.18);
  color: #fff;
  transform: translateX(4px);
}

.admin-main {
  padding: 30px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-panel {
  padding: 24px;
  margin-bottom: 24px;
  animation: floatIn 0.35s ease both;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-label {
  display: inline-block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(19, 174, 111, 0.12);
  outline: 0;
}

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

.table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.table-row:hover {
  border-color: rgba(19, 174, 111, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.showcase-table-row {
  grid-template-columns: 124px minmax(0, 1fr) auto;
}

.showcase-table-row > img {
  width: 124px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(19, 174, 111, 0.18);
  background: #eefaf4;
}

.submission-row {
  align-items: start;
}

.submission-row p {
  white-space: pre-wrap;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.editor-field {
  display: grid;
  gap: 7px;
}

.rich-editor-shell {
  border: 1px solid #d6e7de;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(19, 174, 111, 0.08);
  overflow: hidden;
}

.editor-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #e4efe9;
  background:
    linear-gradient(180deg, #ffffff, #f2fbf6);
}

.tool-button,
.editor-select,
.tool-color {
  min-height: 34px;
  border: 1px solid #cfe2d8;
  border-radius: 6px;
  background: #fff;
  color: #12352d;
  font: 600 13px "Microsoft YaHei", var(--body-font);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tool-button {
  min-width: 36px;
  display: inline-grid;
  place-items: center;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.tool-button:hover,
.tool-color:hover,
.editor-select:hover {
  border-color: rgba(19, 174, 111, 0.46);
  background: #ecfbf3;
  color: #0b7f50;
  transform: translateY(-1px);
}

.editor-select {
  width: auto;
  min-width: 96px;
  padding: 6px 28px 6px 10px;
}

.font-select {
  min-width: 126px;
}

.tool-color {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 4px 7px;
}

.tool-color input {
  width: 24px;
  height: 22px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rich-editor {
  min-height: 360px;
  padding: 22px;
  color: #12352d;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  outline: 0;
}

.rich-editor:empty::before {
  content: attr(data-placeholder);
  color: #94aaa1;
}

.rich-editor h2,
.article-content h2 {
  margin: 22px 0 12px;
  color: #12352d;
  font-size: 28px;
  line-height: 1.25;
}

.rich-editor h3,
.article-content h3 {
  margin: 18px 0 10px;
  color: #174b3f;
  font-size: 22px;
  line-height: 1.3;
}

.rich-editor blockquote,
.article-content blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 4px solid #13ae6f;
  border-radius: 0 8px 8px 0;
  background: #f0fbf5;
  color: #315c4f;
}

.rich-editor ul,
.rich-editor ol,
.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.editor-image-wrap,
.article-content figure {
  width: 100%;
  margin: 22px auto;
  text-align: center;
}

.editor-image-wrap {
  position: relative;
  display: block;
}

.editor-image-wrap img,
.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 53, 45, 0.13);
}

.article-content img.deferred-article-image.is-loading,
.article-content img.deferred-article-image.is-error {
  width: min(var(--image-width, 68%), 100%);
  min-height: 120px;
  background:
    linear-gradient(110deg, rgba(238, 250, 244, 0.78), rgba(255, 255, 255, 0.92), rgba(238, 250, 244, 0.78)),
    #eefaf4;
  background-size: 220% 100%;
  box-shadow: inset 0 0 0 1px rgba(19, 174, 111, 0.12);
  animation: imagePlaceholderSweep 1.3s ease-in-out infinite;
}

.article-content img.deferred-article-image.is-loaded {
  min-height: 0;
  background: none;
  opacity: 1;
  filter: none;
  animation: none;
}

.article-content img.deferred-article-image.is-error {
  animation: none;
}

.editor-image-wrap.is-selected img {
  outline: 2px solid #13ae6f;
  outline-offset: 4px;
}

.image-resize-handle {
  position: absolute;
  right: calc((100% - var(--image-width, 68%)) / 2 - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #13ae6f;
  box-shadow: 0 4px 12px rgba(19, 174, 111, 0.35);
  cursor: nwse-resize;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.editor-image-wrap.is-selected .image-resize-handle {
  opacity: 1;
}

.article-content {
  margin: 18px 0;
  color: inherit;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

.article-content p {
  margin: 0 0 14px;
}

.article-content a {
  color: #0b7f50;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-page-layout {
  max-width: 940px;
  margin: 28px auto 0;
}

.article-detail-card {
  padding: clamp(28px, 5vw, 58px);
}

body:not(.admin-body) .article-detail-card {
  overflow: visible;
  transform-style: flat;
}

.article-detail-card h1 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
}

.article-summary {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid rgba(19, 174, 111, 0.72);
  border-radius: 0 8px 8px 0;
  background: rgba(240, 251, 245, 0.86);
  color: #315c4f;
  font-size: 18px;
}

.member-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.member-preview-panel {
  position: sticky;
  top: 24px;
}

.preview-panel-head {
  margin-bottom: 16px;
}

.preview-panel-head h2 {
  margin: 6px 0 0;
}

.member-card-preview {
  padding: 24px;
  min-height: 0;
}

.member-card-preview .member-avatar {
  margin-bottom: 18px;
}

.member-card-preview .text-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.member-page-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.member-profile-card {
  position: sticky;
  top: 100px;
}

.member-profile-card h1 {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  margin: 18px 0 12px;
}

.member-profile-content {
  min-height: 420px;
}

.member-profile-content h2 {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  margin: 10px 0 20px;
}

.back-link {
  display: inline-block;
}

.member-image-field {
  display: grid;
  gap: 7px;
}

.image-upload-box {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid #d6e7de;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(19, 174, 111, 0.07);
}

.member-image-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 1px dashed #b8d9ca;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 174, 111, 0.08), rgba(183, 232, 108, 0.1)),
    #f6fbf8;
  color: #6c8980;
  font-weight: 700;
  overflow: hidden;
}

.member-image-preview.has-image {
  border-style: solid;
  background: #f6fbf8;
}

.member-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.upload-button {
  margin: 0;
}

.upload-file-name {
  flex-basis: 100%;
  color: var(--ink-muted);
  font-size: 13px;
}

.table-row h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 18px;
}

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

.notice {
  margin: 0 0 18px;
  color: var(--ink-muted);
}

.error {
  color: #b52323;
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: revealUp 0.58s ease both;
}

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

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

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .article-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .research-grid,
  .members-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .member-page-layout {
    grid-template-columns: 1fr;
  }

  .member-profile-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav,
  .nav-links,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .section {
    padding: 48px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .stat-grid,
  .research-grid,
  .members-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .stat:last-child {
    border-bottom: 0;
  }

  .admin-main {
    padding: 18px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}

/* Front page visual refresh */
body:not(.admin-body) {
  --primary: #4fce95;
  --primary-dark: #20865d;
  --accent: #b7e86c;
  --violet: #8fd8c1;
  --cyan: #68d7b0;
  --ink: #12352d;
  --ink-soft: #395c52;
  --ink-muted: #6c8980;
  --line: rgba(79, 206, 149, 0.2);
  --panel: rgba(255, 255, 255, 0.82);
  --soft: rgba(239, 250, 245, 0.9);
  --dark: #0d2c24;
  --shadow: 0 22px 60px rgba(50, 134, 96, 0.12);
  --shadow-strong: 0 32px 90px rgba(79, 206, 149, 0.22), 0 18px 46px rgba(45, 106, 80, 0.14);
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(79, 206, 149, 0.16), transparent 28%),
    linear-gradient(245deg, rgba(183, 232, 108, 0.16), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7fcf9 46%, #eef8f3 100%);
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "Work Sans", Arial, sans-serif;
}

body:not(.admin-body) > header,
body:not(.admin-body) > main,
body:not(.admin-body) > footer {
  position: relative;
  z-index: 1;
}

body:not(.admin-body)::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(rgba(79, 206, 149, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

body:not(.admin-body)::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 18%, rgba(79, 206, 149, 0.12) 18.4%, transparent 27%, transparent 64%, rgba(183, 232, 108, 0.12) 64.4%, transparent 76%);
  animation: fieldSweep 12s cubic-bezier(0.23, 1, 0.32, 1) infinite alternate;
  pointer-events: none;
}

.site-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-beam {
  position: absolute;
  width: 72vw;
  height: 24vw;
  filter: blur(42px);
  opacity: 0.62;
  transform-origin: center;
  animation: beamDrift 14s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.beam-one {
  left: -18vw;
  top: 8vh;
  background: linear-gradient(90deg, rgba(79, 206, 149, 0), rgba(79, 206, 149, 0.3), rgba(183, 232, 108, 0));
  rotate: -16deg;
}

.beam-two {
  right: -22vw;
  top: 28vh;
  background: linear-gradient(90deg, rgba(183, 232, 108, 0), rgba(143, 216, 193, 0.28), rgba(79, 206, 149, 0));
  rotate: 21deg;
  animation-delay: -5s;
}

.ambient-grid {
  position: absolute;
  left: 50%;
  bottom: -18vh;
  width: min(980px, 94vw);
  height: 42vh;
  border: 1px solid rgba(79, 206, 149, 0.16);
  background:
    linear-gradient(rgba(79, 206, 149, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: translateX(-50%) perspective(760px) rotateX(64deg);
  animation: gridFlow 8s linear infinite;
  opacity: 0.36;
}

body:not(.admin-body) .site-header {
  border-bottom: 1px solid rgba(79, 206, 149, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(50, 134, 96, 0.1);
}

body:not(.admin-body) .nav {
  min-height: 76px;
}

body:not(.admin-body) .brand,
body:not(.admin-body) .nav-links,
body:not(.admin-body) .section-title,
body:not(.admin-body) .card h2,
body:not(.admin-body) .card h3 {
  color: var(--ink);
}

body:not(.admin-body) .brand-mark {
  border: 1px solid rgba(79, 206, 149, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 206, 149, 0.2), rgba(183, 232, 108, 0.2)),
    rgba(255, 255, 255, 0.78);
  color: var(--primary);
  box-shadow: inset 0 0 22px rgba(79, 206, 149, 0.12), 0 0 32px rgba(79, 206, 149, 0.16);
}

body:not(.admin-body) .brand:hover .brand-mark {
  background:
    linear-gradient(135deg, rgba(79, 206, 149, 0.36), rgba(183, 232, 108, 0.28)),
    rgba(255, 255, 255, 0.08);
  color: var(--primary-dark);
  transform: translateY(-3px) rotate(-4deg);
}

body:not(.admin-body) .brand small {
  color: rgba(57, 92, 82, 0.68);
}

body:not(.admin-body) .nav-links {
  gap: 10px;
}

body:not(.admin-body) .nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(18, 53, 45, 0.78);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.admin-body) .nav-links a::after {
  display: none;
}

body:not(.admin-body) .nav-links a:hover {
  border-color: rgba(79, 206, 149, 0.34);
  background: rgba(79, 206, 149, 0.1);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-contact-button {
  border: 1px solid rgba(79, 206, 149, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 206, 149, 0.16), rgba(183, 232, 108, 0.12));
  color: var(--primary-dark);
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-contact-button:hover {
  border-color: rgba(79, 206, 149, 0.52);
  background: rgba(79, 206, 149, 0.18);
  transform: translateY(-2px);
}

.modal-open {
  overflow: hidden;
}

.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.contact-dialog.hidden {
  display: none;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 34, 28, 0.42);
  backdrop-filter: blur(10px);
}

.contact-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(79, 206, 149, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 253, 248, 0.92)),
    #fff;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 28px 90px rgba(18, 53, 45, 0.24);
  animation: modalIn 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.contact-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(79, 206, 149, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-status {
  min-height: 22px;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

body:not(.admin-body) .hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 78px 0 84px;
  overflow: hidden;
  isolation: isolate;
}

.flow-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  mix-blend-mode: multiply;
  pointer-events: none;
}

body:not(.admin-body) .hero::before {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(520px, 58vw);
  height: min(520px, 58vw);
  content: "";
  border: 1px solid rgba(106, 232, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 206, 149, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(183, 232, 108, 0.12), transparent 42%);
  transform: rotate(18deg);
  animation: heroFrame 9s cubic-bezier(0.19, 1, 0.22, 1) infinite alternate;
  pointer-events: none;
}

body:not(.admin-body) .hero::after {
  right: -120px;
  top: 20%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(79, 206, 149, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 0 70px rgba(79, 206, 149, 0.1);
  animation: slowRotate 18s linear infinite;
}

body:not(.admin-body) .hero-grid {
  grid-template-columns: minmax(540px, 1fr) minmax(340px, 468px);
  gap: clamp(22px, 3.2vw, 50px);
  align-items: center;
}

.hero-copy {
  animation: heroCopyIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body:not(.admin-body) .section-kicker,
body:not(.admin-body) .meta {
  color: var(--cyan);
  letter-spacing: 2.4px;
}

body:not(.admin-body) .hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(56px, 6.6vw, 92px);
  line-height: 1.02;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 10px 34px rgba(79, 206, 149, 0.15);
}

body:not(.admin-body) .hero h1::selection,
body:not(.admin-body) p::selection {
  background: rgba(79, 206, 149, 0.24);
}

body:not(.admin-body) .hero p,
body:not(.admin-body) .lead,
body:not(.admin-body) .card p,
body:not(.admin-body) .article-compact p {
  color: rgba(57, 92, 82, 0.86);
}

body:not(.admin-body) .hero p {
  font-size: clamp(17px, 2vw, 20px);
}

body:not(.admin-body) .button {
  border: 1px solid rgba(79, 206, 149, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 206, 149, 0.95), rgba(183, 232, 108, 0.82)),
    #dff8ed;
  color: #073b2a;
  box-shadow: 0 14px 42px rgba(79, 206, 149, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.admin-body) .button::after {
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transition: transform 0.86s cubic-bezier(0.19, 1, 0.22, 1);
}

body:not(.admin-body) .button:hover {
  border-color: rgba(32, 134, 93, 0.42);
  box-shadow: 0 22px 68px rgba(79, 206, 149, 0.34), 0 8px 28px rgba(183, 232, 108, 0.18);
  transform: translateY(-4px) scale(1.02);
}

body:not(.admin-body) .button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(79, 206, 149, 0.28);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.5), 0 14px 42px rgba(50, 134, 96, 0.12);
}

body:not(.admin-body) .button.secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}

body:not(.admin-body) .hero-panel,
body:not(.admin-body) .card {
  border: 1px solid rgba(79, 206, 149, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 252, 249, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

body:not(.admin-body) .hero-panel {
  width: min(100%, 468px);
  justify-self: end;
  padding: 30px;
  overflow: hidden;
  animation: panelEnter 1.05s cubic-bezier(0.16, 1, 0.3, 1) both 0.14s, panelFloat 5.6s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate 1.1s;
}

body:not(.admin-body) .hero-panel::before {
  inset: 0;
  z-index: -1;
  border: 0;
  background:
    linear-gradient(120deg, rgba(79, 206, 149, 0.18), transparent 34%, rgba(183, 232, 108, 0.16) 72%, transparent),
    linear-gradient(rgba(79, 206, 149, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  opacity: 0.72;
}

body:not(.admin-body) .hero-panel::after,
body:not(.admin-body) .card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.16), transparent 64%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

body:not(.admin-body) .hero-panel:hover::after,
body:not(.admin-body) .card:hover::after {
  transform: translateX(120%);
}

.signal-map {
  position: relative;
  width: min(100%, 360px);
  height: 196px;
  margin: 0 auto 24px;
  border: 1px solid rgba(79, 206, 149, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 49% 52%, rgba(79, 206, 149, 0.18), transparent 24%),
    radial-gradient(circle at 77% 34%, rgba(183, 232, 108, 0.18), transparent 18%),
    linear-gradient(rgba(79, 206, 149, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.09) 1px, transparent 1px),
    rgba(245, 252, 248, 0.78);
  background-size: auto, 24px 24px, 24px 24px, auto;
  overflow: hidden;
}

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

.signal-map::before {
  inset: 0;
  background:
    radial-gradient(circle at 48% 50%, rgba(79, 206, 149, 0.22), transparent 22%),
    conic-gradient(from 0deg at 50% 50%, transparent, rgba(79, 206, 149, 0.16), transparent 32%, rgba(183, 232, 108, 0.14), transparent 72%);
  opacity: 0.66;
  animation: signalSpin 11s linear infinite;
}

.signal-map::after {
  left: 28px;
  right: 28px;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 206, 149, 0.74), transparent);
  box-shadow: 0 0 18px rgba(79, 206, 149, 0.48);
  animation: signalSweep 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.signal-scan {
  position: absolute;
  inset: 26px 32px;
  z-index: 1;
  border: 1px solid rgba(79, 206, 149, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 0 28px rgba(79, 206, 149, 0.08);
  pointer-events: none;
}

.hero-quote {
  position: relative;
  min-height: min(74vh, 660px);
  margin: 0;
  padding: clamp(26px, 4vw, 48px) clamp(18px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(79, 206, 149, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 36% 18%, rgba(79, 206, 149, 0.16), transparent 30%),
    radial-gradient(circle at 76% 78%, rgba(183, 232, 108, 0.14), transparent 32%),
    linear-gradient(rgba(79, 206, 149, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(240, 251, 245, 0.62));
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  color: rgba(9, 45, 36, 0.96);
  font-family: "STXingkai", "华文行楷", "FZKai-Z03", "KaiTi", "楷体", "STKaiti", serif;
  font-size: clamp(52px, 5.4vw, 96px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  overflow: hidden;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: inset 0 0 70px rgba(79, 206, 149, 0.08), 0 24px 90px rgba(32, 134, 93, 0.1);
  animation: quotePanelIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both 0.24s;
}

.hero-quote::before {
  position: absolute;
  inset: 18px;
  content: "";
  border-radius: 6px;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(255, 255, 255, 0.38), transparent 62%),
    linear-gradient(rgba(79, 206, 149, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.055) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  pointer-events: none;
}

.hero-quote span {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-10px) scale(1.18);
  text-shadow:
    0 0 1px rgba(8, 34, 28, 0.68),
    0 12px 28px rgba(19, 174, 111, 0.16);
  animation: inkReveal 1.02s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.42s + var(--char-delay));
}

.hero-quote .quote-punctuation {
  color: rgba(18, 53, 45, 0.72);
}

body:not(.admin-body) .hero-quote {
  grid-column: 1 / -1;
  min-height: clamp(130px, 17vh, 202px);
  margin: clamp(2px, 0.8vw, 12px) 0 0;
  padding: clamp(22px, 2.8vw, 34px) clamp(28px, 5vw, 72px);
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 16% 30%, rgba(79, 206, 149, 0.18), transparent 30%),
    radial-gradient(circle at 86% 58%, rgba(183, 232, 108, 0.16), transparent 32%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.84), rgba(241, 253, 247, 0.7) 48%, rgba(255, 255, 255, 0.82)),
    linear-gradient(rgba(79, 206, 149, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: auto, auto, auto, 28px 28px, 28px 28px, auto;
  font-size: clamp(28px, 3.25vw, 52px);
  line-height: 1.42;
  writing-mode: horizontal-tb;
  box-shadow: inset 0 0 78px rgba(79, 206, 149, 0.1), 0 22px 86px rgba(32, 134, 93, 0.1);
}

body:not(.admin-body) .hero-quote::before {
  inset: 16px;
  background:
    linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.48), transparent 66%),
    linear-gradient(rgba(79, 206, 149, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.055) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body:not(.admin-body) .hero-quote span {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .hero-quote .quote-signature-line {
  flex: 0 0 100%;
  display: block;
  margin-top: 0.12em;
  font-size: 0.74em;
  line-height: 1.25;
  text-align: center;
}

body:not(.admin-body) .hero-quote .quote-signature-line span {
  display: inline-block;
}

.pump-inlet,
.pump-outlet,
.pump-volute,
.pump-casing,
.pressure-ring,
.impeller,
.pump-shaft,
.flow-stream,
.flow-dot {
  position: absolute;
  z-index: 2;
}

.pump-inlet,
.pump-outlet {
  height: 26px;
  border: 1px solid rgba(79, 206, 149, 0.42);
  background:
    linear-gradient(90deg, rgba(79, 206, 149, 0.08), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(79, 206, 149, 0.16) 18px 19px);
  box-shadow: inset 0 0 18px rgba(79, 206, 149, 0.16);
}

.pump-inlet {
  left: 22px;
  top: 86px;
  width: 86px;
  border-radius: 16px 0 0 16px;
}

.pump-outlet {
  right: 28px;
  top: 38px;
  width: 94px;
  border-radius: 0 16px 16px 0;
  transform: rotate(-10deg);
}

.pump-volute {
  left: 101px;
  top: 37px;
  width: 144px;
  height: 112px;
  border: 2px solid rgba(79, 206, 149, 0.48);
  border-radius: 52% 44% 54% 48%;
  background:
    conic-gradient(from 318deg at 55% 48%, rgba(183, 232, 108, 0.2), rgba(79, 206, 149, 0.06), rgba(255, 255, 255, 0.72), rgba(79, 206, 149, 0.18)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 0 32px rgba(79, 206, 149, 0.16),
    0 18px 42px rgba(32, 134, 93, 0.1);
  animation: pumpBreath 3.7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.pump-volute::after {
  position: absolute;
  right: -46px;
  top: 3px;
  width: 68px;
  height: 38px;
  content: "";
  border-top: 2px solid rgba(79, 206, 149, 0.42);
  border-right: 2px solid rgba(79, 206, 149, 0.42);
  border-radius: 0 30px 0 0;
  transform: rotate(-18deg);
}

.pump-casing {
  left: 126px;
  top: 58px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(7, 83, 58, 0.18);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 24%, rgba(79, 206, 149, 0.14) 25% 58%, rgba(255, 255, 255, 0.58) 59%);
}

.pressure-ring {
  left: 116px;
  top: 48px;
  border-radius: 50%;
  border: 1px solid rgba(183, 232, 108, 0.5);
  pointer-events: none;
  animation: pressurePulse 2.9s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.pressure-one {
  width: 104px;
  height: 104px;
}

.pressure-two {
  left: 102px;
  top: 34px;
  width: 132px;
  height: 132px;
  animation-delay: -1.15s;
}

.impeller {
  left: 142px;
  top: 74px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #45cb91 0 9px, rgba(255, 255, 255, 0.84) 10px 13px, transparent 14px),
    conic-gradient(from 0deg, rgba(79, 206, 149, 0.1), rgba(183, 232, 108, 0.4), rgba(79, 206, 149, 0.1));
  box-shadow: 0 0 28px rgba(79, 206, 149, 0.58);
  animation: impellerSpin 1.45s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

.blade {
  position: absolute;
  left: 23px;
  top: 4px;
  width: 12px;
  height: 25px;
  border-radius: 14px 14px 3px 14px;
  background: linear-gradient(150deg, rgba(7, 83, 58, 0.68), rgba(79, 206, 149, 0.18));
  transform-origin: 3px 22px;
}

.blade-one {
  transform: rotate(0deg);
}

.blade-two {
  transform: rotate(72deg);
}

.blade-three {
  transform: rotate(144deg);
}

.blade-four {
  transform: rotate(216deg);
}

.blade-five {
  transform: rotate(288deg);
}

.pump-shaft {
  left: 158px;
  top: 90px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4fce95;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.82), 0 0 22px rgba(79, 206, 149, 0.58);
}

.flow-stream {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(79, 206, 149, 0.85), rgba(183, 232, 108, 0.42), transparent);
  opacity: 0.82;
  transform-origin: left center;
  animation: streamSurge 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.stream-one {
  left: 26px;
  top: 76px;
  width: 88px;
  transform: rotate(12deg);
}

.stream-two {
  left: 206px;
  top: 70px;
  width: 94px;
  transform: rotate(-9deg);
  animation-delay: -0.74s;
}

.flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4fce95;
  box-shadow: 0 0 18px rgba(79, 206, 149, 0.7);
  animation: flowDot 2.55s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.dot-one {
  left: 38px;
  top: 94px;
}

.dot-two {
  left: 242px;
  top: 48px;
  animation-delay: -0.85s;
}

.dot-three {
  left: 282px;
  top: 62px;
  animation-delay: -1.55s;
}

.signal-chip {
  position: absolute;
  z-index: 4;
  min-width: 72px;
  padding: 5px 8px;
  border: 1px solid rgba(79, 206, 149, 0.28);
  border-radius: 6px;
  background: rgba(248, 255, 251, 0.78);
  box-shadow: 0 10px 28px rgba(32, 134, 93, 0.12);
  backdrop-filter: blur(10px);
  color: #12352d;
  font-size: 11px;
  line-height: 1.1;
  animation: chipPulse 2.8s ease-in-out infinite;
}

.signal-chip b,
.signal-chip em {
  display: block;
  font-style: normal;
}

.signal-chip b {
  color: rgba(11, 127, 80, 0.76);
  font-size: 9px;
  letter-spacing: 1.2px;
}

.signal-chip em {
  margin-top: 3px;
  font-weight: 800;
}

.chip-flow {
  left: 22px;
  top: 16px;
}

.chip-rpm {
  right: 20px;
  top: 22px;
  animation-delay: -0.9s;
}

.chip-npsh {
  right: 34px;
  bottom: 18px;
  animation-delay: -1.7s;
}

body:not(.admin-body) .stat-grid {
  overflow: hidden;
  border: 1px solid rgba(79, 206, 149, 0.16);
  border-radius: 8px;
}

body:not(.admin-body) .stat {
  border-color: rgba(79, 206, 149, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

body:not(.admin-body) .stat strong {
  color: var(--ink);
  text-shadow: 0 0 24px rgba(79, 206, 149, 0.22);
}

body:not(.admin-body) .stat span {
  color: rgba(57, 92, 82, 0.72);
}

body:not(.admin-body) .focus-list li {
  border-top-color: rgba(79, 206, 149, 0.16);
  color: rgba(18, 53, 45, 0.86);
}

body:not(.admin-body) .focus-list li:hover {
  color: var(--primary);
  padding-left: 12px;
}

.research-card {
  min-height: 330px;
  overflow: hidden;
}

.research-card .meta,
.research-card h3,
.research-card p {
  position: relative;
  z-index: 2;
}

.research-orbit {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  margin-bottom: 20px;
  border: 1px solid rgba(79, 206, 149, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(79, 206, 149, 0.3) 0 9px, rgba(255, 255, 255, 0.8) 10px 16px, transparent 17px),
    conic-gradient(from 0deg, rgba(79, 206, 149, 0.06), rgba(183, 232, 108, 0.32), rgba(79, 206, 149, 0.06));
  box-shadow: inset 0 0 34px rgba(79, 206, 149, 0.1), 0 18px 38px rgba(32, 134, 93, 0.11);
  animation: researchFloat 4.5s ease-in-out infinite;
}

.research-orbit::before,
.research-orbit::after {
  position: absolute;
  inset: 12px;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(79, 206, 149, 0.26);
  animation: orbitSpin 5s linear infinite;
}

.research-orbit::after {
  inset: 25px;
  border-color: rgba(183, 232, 108, 0.34);
  animation-duration: 3.4s;
  animation-direction: reverse;
}

.research-orbit span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4fce95;
  box-shadow: 0 0 18px rgba(79, 206, 149, 0.86);
  transform-origin: -34px -34px;
  animation: orbitParticle 3.2s linear infinite;
}

.research-orbit span:nth-child(2) {
  animation-delay: -1.05s;
  background: #b7e86c;
}

.research-orbit span:nth-child(3) {
  animation-delay: -2.1s;
}

.research-stream .research-orbit {
  border-radius: 30% 70% 45% 55%;
}

.research-pump .research-orbit {
  border-radius: 22px;
}

body:not(.admin-body) .soft-band {
  position: relative;
  background:
    linear-gradient(120deg, rgba(79, 206, 149, 0.12), transparent 32%),
    linear-gradient(260deg, rgba(183, 232, 108, 0.1), transparent 30%),
    rgba(247, 252, 249, 0.9);
}

body:not(.admin-body) .section {
  position: relative;
  padding: 88px 0;
}

body:not(.admin-body) .section-title {
  text-shadow: 0 0 30px rgba(106, 232, 255, 0.1);
}

body:not(.admin-body) .card {
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.55s cubic-bezier(0.16, 1, 0.3, 1), background 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.admin-body) .card::before {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--violet), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.admin-body) .card:hover {
  border-color: rgba(106, 232, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(240, 250, 245, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
  transform: translateY(-10px) scale(1.012);
}

body:not(.admin-body) .card:hover::before {
  height: 2px;
  transform: scaleX(1);
}

body:not(.admin-body) .tag {
  border: 1px solid rgba(34, 240, 187, 0.25);
  border-radius: 999px;
  background: rgba(34, 240, 187, 0.1);
  color: var(--primary-dark);
}

body:not(.admin-body) .tag:hover {
  background: rgba(34, 240, 187, 0.2);
  transform: translateY(-2px);
}

body:not(.admin-body) .member-avatar {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 206, 149, 0.22), rgba(183, 232, 108, 0.2)),
    linear-gradient(rgba(79, 206, 149, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 206, 149, 0.1) 1px, transparent 1px),
    #f5fcf8;
  background-size: auto, 22px 22px, 22px 22px, auto;
  color: var(--primary-dark);
  box-shadow: inset 0 0 44px rgba(79, 206, 149, 0.12);
}

body:not(.admin-body) .article-list {
  background:
    linear-gradient(145deg, rgba(183, 232, 108, 0.13), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.8);
}

body:not(.admin-body) .article-compact {
  border-bottom-color: rgba(79, 206, 149, 0.16);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.admin-body) .article-compact:hover {
  opacity: 1;
  transform: translateX(9px);
}

body:not(.admin-body) .text-link {
  color: var(--primary-dark);
  background-image: linear-gradient(rgba(79, 206, 149, 0.2), rgba(79, 206, 149, 0.2));
}

body:not(.admin-body) .site-footer {
  background: #0b2a22;
  border-top: 1px solid rgba(79, 206, 149, 0.18);
}

body:not(.admin-body) .site-footer::before {
  background:
    linear-gradient(90deg, transparent, rgba(79, 206, 149, 0.2), transparent),
    linear-gradient(135deg, rgba(183, 232, 108, 0.14), transparent 44%);
}

body:not(.admin-body) .site-footer .brand {
  color: #f6fff9;
  text-shadow: 0 0 18px rgba(183, 232, 108, 0.18);
}

body:not(.admin-body) .site-footer .brand small {
  color: rgba(226, 255, 239, 0.78);
}

body:not(.admin-body) .site-footer .footer-links a {
  color: rgba(246, 255, 249, 0.92);
}

body:not(.admin-body) .site-footer .footer-links a:hover {
  color: #b7e86c;
}

body:not(.admin-body) .site-footer .copyright,
body:not(.admin-body) .site-footer .runtime,
body:not(.admin-body) .site-footer .icp-link a {
  color: rgba(232, 255, 241, 0.78);
}

body:not(.admin-body) .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
}

body:not(.admin-body) .reveal.is-visible {
  animation: revealRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fieldSweep {
  from {
    transform: translateX(-4%) skewX(-8deg);
    opacity: 0.52;
  }
  to {
    transform: translateX(5%) skewX(-3deg);
    opacity: 0.92;
  }
}

@keyframes beamDrift {
  from {
    transform: translate3d(-2%, -4%, 0) scale(0.96);
  }
  to {
    transform: translate3d(4%, 7%, 0) scale(1.08);
  }
}

@keyframes gridFlow {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 42px, 42px 0;
  }
}

@keyframes heroFrame {
  from {
    transform: rotate(18deg) translate3d(0, 0, 0) scale(0.94);
    opacity: 0.38;
  }
  to {
    transform: rotate(26deg) translate3d(24px, -18px, 0) scale(1.04);
    opacity: 0.74;
  }
}

@keyframes slowRotate {
  to {
    transform: rotate(378deg);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.98);
    filter: blur(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes panelEnter {
  from {
    opacity: 0;
    transform: translateY(36px) rotateX(8deg) scale(0.96);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes panelFloat {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -12px;
  }
}

@keyframes quotePanelIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
    filter: blur(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes inkReveal {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(-12px) scale(1.22);
  }
  62% {
    opacity: 0.92;
    filter: blur(1px);
    transform: translateY(1px) scale(0.98);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes impellerSpin {
  0% {
    rotate: 0deg;
    filter: saturate(1);
  }
  58% {
    rotate: 256deg;
    filter: saturate(1.25);
  }
  0%,
  100% {
    scale: 1;
  }
  100% {
    rotate: 360deg;
    filter: saturate(1);
  }
}

@keyframes pumpBreath {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 32px rgba(79, 206, 149, 0.16), 0 18px 42px rgba(32, 134, 93, 0.1);
  }
  46% {
    transform: scale(1.025);
    box-shadow: inset 0 0 42px rgba(79, 206, 149, 0.24), 0 24px 58px rgba(32, 134, 93, 0.16);
  }
}

@keyframes signalSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes signalSweep {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.18;
  }
  50% {
    transform: translateY(138px);
    opacity: 0.82;
  }
}

@keyframes chipPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 28px rgba(32, 134, 93, 0.12);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(32, 134, 93, 0.18);
  }
}

@keyframes researchFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitParticle {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pressurePulse {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  42% {
    opacity: 0.76;
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes streamSurge {
  0% {
    opacity: 0.18;
    scale: 0.52 1;
    filter: blur(1px);
  }
  44% {
    opacity: 1;
    scale: 1.08 1;
    filter: blur(0);
  }
  100% {
    opacity: 0.3;
    scale: 0.74 1;
    filter: blur(1px);
  }
}

@keyframes flowDot {
  0%,
  100% {
    opacity: 0.36;
    transform: translate3d(-9px, 8px, 0) scale(0.72);
  }
  48% {
    opacity: 1;
    transform: translate3d(13px, -7px, 0) scale(1.18);
  }
}

@keyframes revealRise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes imagePlaceholderSweep {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes showcaseCruise {
  to {
    transform: translateX(calc(-1 * var(--showcase-distance)));
  }
}

@media (max-width: 900px) {
  body:not(.admin-body) .hero {
    min-height: auto;
  }

  body:not(.admin-body) .hero-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .hero h1 {
    max-width: 760px;
    font-size: clamp(52px, 12vw, 86px);
  }

  body:not(.admin-body) .hero-panel {
    justify-self: start;
    max-width: 620px;
  }

  body:not(.admin-body) .hero-quote {
    min-height: clamp(118px, 24vw, 180px);
    max-width: none;
    line-height: 1.42;
    padding: 20px 18px;
    font-size: clamp(26px, 6.2vw, 44px);
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .nav-links {
    width: 100%;
    flex-direction: row;
    gap: 8px;
  }

  body:not(.admin-body) .nav-links a {
    padding: 7px 10px;
    font-size: 14px;
  }

  body:not(.admin-body) .hero {
    padding: 54px 0 58px;
  }

  body:not(.admin-body) .hero h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .signal-map {
    height: 156px;
  }

  .showcase-track {
    --showcase-card-width: min(78vw, 330px);
    --showcase-gap: 14px;
  }

  .showcase-carousel {
    min-height: 390px;
  }

  .coverflow-item {
    width: min(78vw, 330px);
    transform:
      translateX(calc(-50% + var(--cover-offset) * 132px))
      translateZ(calc(-1 * var(--cover-depth) * 84px))
      rotateY(calc(-1 * var(--cover-offset) * 12deg))
      scale(calc(1 - min(var(--cover-depth), 3) * 0.08));
  }

  .showcase-carousel:hover .coverflow-item,
  .showcase-carousel:hover .coverflow-item:hover {
    transform:
      translateX(calc(-50% + var(--cover-offset) * 132px))
      translateZ(calc(-1 * var(--cover-depth) * 84px))
      rotateY(calc(-1 * var(--cover-offset) * 12deg))
      scale(calc(1 - min(var(--cover-depth), 3) * 0.08));
  }

  .showcase-carousel::before,
  .showcase-carousel::after {
    width: 44px;
  }

  .showcase-table-row {
    grid-template-columns: 1fr;
  }

  .showcase-table-row > img {
    width: 100%;
    height: 180px;
  }

  body:not(.admin-body) .section {
    padding: 58px 0;
  }

  .member-editor-layout {
    grid-template-columns: 1fr;
  }

  .member-preview-panel {
    position: static;
  }

  .image-upload-box {
    grid-template-columns: 1fr;
  }
}
