:root {
  color-scheme: dark;
  --bg: #030b17;
  --panel: rgba(9, 25, 47, 0.72);
  --panel-strong: rgba(10, 31, 57, 0.88);
  --line: rgba(85, 160, 220, 0.25);
  --line-bright: rgba(45, 197, 255, 0.62);
  --cyan: #26cfff;
  --blue: #1267ff;
  --mint: #59f0bd;
  --gold: #f0b84b;
  --text: #f4f8ff;
  --soft: #bfd0e6;
  --muted: #8296af;
  --dark-line: rgba(255, 255, 255, 0.1);
  --radius: 8px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --port-bg-image: url("../img/port-aerial-digital-twin-web.jpg");
  --port-bg-position: center top;
  --port-bg-size: 100% auto;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(3, 11, 23, 0.48), rgba(3, 11, 23, 0.92) 64%, #030b17 100%),
    var(--port-bg-image) var(--port-bg-position) / var(--port-bg-size) fixed no-repeat,
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(90deg, rgba(48, 196, 255, 0.16) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(48, 196, 255, 0.1) 0 1px, transparent 1px 118px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(38, 207, 255, 0.12) 28.1%, transparent 28.6% 100%),
    linear-gradient(145deg, transparent 0 67%, rgba(89, 240, 189, 0.12) 67.1%, transparent 67.55% 100%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

img,
video {
  max-width: 100%;
}

.elite-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 14px 48px 12px;
  border-bottom: 1px solid rgba(73, 130, 182, 0.22);
  background: rgba(2, 10, 22, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-lockup {
  display: block;
  width: min(310px, 44vw);
  height: auto;
  object-fit: contain;
}

.elite-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: #eef5ff;
  font-weight: 760;
  white-space: nowrap;
}

.elite-links a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 10px 0;
  line-height: 1.05;
}

.project-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.project-menu > button {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 10px 16px 10px 0;
  border: 0;
  background: transparent;
  color: #eef5ff;
  font: inherit;
  line-height: 1.05;
  cursor: pointer;
}

.project-menu > button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.project-menu > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: 2px;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(38, 207, 255, 0.75);
}

.project-menu > button small {
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.58rem;
  font-weight: 560;
}

.project-menu:hover > button,
.project-menu:focus-within > button,
.project-menu > button.active {
  color: #ffffff;
}

.project-menu:hover > button::before,
.project-menu:focus-within > button::before {
  transform: translateY(-30%) rotate(225deg);
}

.project-menu > button.active::after {
  opacity: 1;
}

.project-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  width: 390px;
  padding: 10px;
  border: 1px solid rgba(76, 151, 214, 0.36);
  border-radius: 10px;
  background: rgba(3, 14, 29, 0.97);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.46), 0 0 28px rgba(38, 207, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  backdrop-filter: blur(20px);
}

.project-menu:hover .project-dropdown,
.project-menu:focus-within .project-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.elite-links .project-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 7px;
  color: #dbe9f7;
  white-space: normal;
}

.elite-links .project-dropdown a::after {
  display: none;
}

.elite-links .project-dropdown a + a {
  border-top: 1px solid rgba(136, 185, 225, 0.1);
}

.elite-links .project-dropdown a:hover,
.elite-links .project-dropdown a[aria-current="page"] {
  background: linear-gradient(90deg, rgba(18, 103, 255, 0.18), rgba(38, 207, 255, 0.08));
  color: #ffffff;
}

.project-dropdown strong,
.project-dropdown small {
  display: block;
}

.project-dropdown strong {
  color: var(--cyan);
  font-size: 0.82rem;
  line-height: 1.25;
}

.project-dropdown small {
  margin-top: 3px;
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.58rem;
  font-weight: 520;
  line-height: 1.35;
}

.elite-links a small {
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.58rem;
  font-weight: 560;
}

.elite-links a > span,
.project-menu > button > span {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.elite-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(38, 207, 255, 0.75);
}

.elite-links a:hover,
.elite-links a.active {
  color: #ffffff;
}

.elite-links a:hover::after,
.elite-links a.active::after {
  opacity: 1;
}

.nav-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: #e9f5ff;
  font-size: 1.18rem;
}

.tool-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.28);
}

.dashboard-main {
  width: 100%;
}

.home-only {
  overflow-x: hidden;
}

.home-only .showcase-hero {
  min-height: calc(100vh - 72px);
  padding-bottom: 34px;
}

.home-only[data-current-view="home"] .showcase-hero {
  min-height: auto;
  padding-bottom: 18px;
}

.home-only [hidden] {
  display: none !important;
}

.home-only[data-current-view="home"] .dashboard-main > :not(.showcase-hero) {
  display: none;
}

.home-only:not([data-current-view="home"]) .dashboard-footer {
  display: none;
}

body:not(.home-only) > .dashboard-footer {
  display: none;
}

.home-only:not([data-current-view="home"]) .dashboard-main {
  min-height: calc(100vh - 72px);
  padding: 46px 0 32px;
}

.content-page-main {
  width: 100%;
  min-height: calc(100vh - 144px);
  padding: 46px 0 32px;
}

.content-page-heading {
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto 24px;
  padding: 26px 30px;
  border: 1px solid rgba(76, 151, 214, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(11, 34, 62, 0.9), rgba(4, 17, 34, 0.84));
  box-shadow: var(--shadow);
}

.content-page-heading h1 {
  margin: 12px 0 6px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.content-page-heading p {
  max-width: 900px;
  margin: 0;
  color: #bfd0e6;
}

.content-page-main .dashboard-grid,
.content-page-main .output-ledger,
.content-page-main .credential-wall {
  margin-top: 0;
}

.content-page-main .membership-register,
.content-page-main .profile-console {
  margin-top: 18px;
}

.contact-stage {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.contact-intro,
.contact-card-grid {
  padding: 30px;
  border: 1px solid rgba(76, 151, 214, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 31, 57, 0.9), rgba(5, 18, 36, 0.9));
  box-shadow: var(--shadow);
}

.contact-intro h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.contact-intro h2 {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 1.35rem;
}

.contact-intro p {
  color: #bfd0e6;
}

.contact-card-grid {
  display: grid;
  gap: 14px;
}

.contact-card-grid a,
.contact-card-grid article {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(76, 151, 214, 0.24);
  border-radius: var(--radius);
  background: rgba(14, 42, 74, 0.55);
}

.contact-card-grid a:hover {
  border-color: var(--line-bright);
  background: rgba(18, 67, 112, 0.62);
}

.contact-card-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.contact-card-grid strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.contact-card-grid small {
  color: #8fa5bc;
}

.showcase-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 56px 0 12px;
  border-bottom: 1px solid rgba(74, 159, 222, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 11, 23, 0.54) 0%, rgba(3, 11, 23, 0.25) 46%, rgba(3, 11, 23, 0.1) 76%, rgba(3, 11, 23, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 11, 23, 0.04), rgba(3, 11, 23, 0.42)),
    var(--port-bg-image) var(--port-bg-position) / var(--port-bg-size) no-repeat;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, rgba(48, 196, 255, 0.13) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(48, 196, 255, 0.08) 0 1px, transparent 1px 118px);
}

.showcase-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--gold));
}

.hero-rail,
.hero-layout,
.metric-bar,
.dashboard-grid,
.publication-strip,
.output-ledger,
.credential-wall,
.membership-register,
.profile-console,
.dashboard-footer {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - 96px));
  margin-left: auto;
  margin-right: auto;
}

.hero-rail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-rail em {
  color: rgba(190, 208, 228, 0.82);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 650;
  text-transform: none;
}

.hero-rail span {
  display: block;
  width: 24px;
  height: 10px;
  border-bottom: 1px solid var(--gold);
}

.hero-rail span:last-child {
  width: 190px;
  border-color: rgba(240, 184, 75, 0.65);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 38px;
  align-items: start;
  padding-top: 20px;
}

.hero-statement h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 3.28rem;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-statement h1 span {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(38, 207, 255, 0.28);
}

.hero-title-cn,
.hero-title-en {
  max-width: 760px;
  margin: -6px 0 18px;
}

.hero-title-cn {
  color: rgba(244, 248, 255, 0.92);
  font-size: 1.48rem;
  line-height: 1.25;
  font-weight: 820;
}

.hero-title-en {
  color: rgba(190, 208, 228, 0.62);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.hero-statement p {
  max-width: 780px;
  margin: 0 0 10px;
  color: #dce8f7;
  font-size: 1.04rem;
}

.hero-statement .hero-cn {
  margin-bottom: 28px;
  color: rgba(190, 208, 228, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.zh-primary {
  color: #e5f1ff !important;
  font-size: 1rem;
  line-height: 1.76;
  font-weight: 570;
}

.en-assist {
  color: rgba(190, 208, 228, 0.56) !important;
  font-size: 0.75rem !important;
  line-height: 1.55 !important;
  letter-spacing: 0.015em;
}

.heading-en {
  display: block;
  margin-top: 5px;
  color: rgba(190, 208, 228, 0.58);
  font-size: 0.58em;
  line-height: 1.35;
  font-weight: 560;
  letter-spacing: 0.025em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cta,
.mini-link,
.all-publications {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  border-radius: var(--radius);
  padding: 0 26px;
  font-weight: 780;
}

.cta > span:first-child,
.mini-link > span:first-child,
.all-publications > span:first-child {
  display: grid;
  gap: 2px;
  line-height: 1.08;
}

.cta small,
.mini-link small,
.all-publications small {
  color: rgba(220, 232, 247, 0.72);
  font-size: 0.62rem;
  font-weight: 620;
}

.cta.primary,
.mini-link,
.all-publications {
  border: 1px solid rgba(48, 196, 255, 0.55);
  background: linear-gradient(135deg, rgba(18, 103, 255, 0.92), rgba(11, 91, 188, 0.72));
  box-shadow: 0 18px 40px rgba(18, 103, 255, 0.28);
}

.cta.secondary {
  border: 1px solid rgba(152, 195, 231, 0.35);
  background: rgba(8, 23, 44, 0.58);
  color: #e5f1ff;
}

.hero-panels {
  display: grid;
  gap: 14px;
}

.hud-card,
.featured-project,
.research-areas,
.publication-strip,
.metric-bar,
.project-panel,
.project-video-card,
.project-section-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(9, 27, 52, 0.76), rgba(6, 18, 36, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hud-card {
  min-height: 132px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(38, 207, 255, 0.13), inset 0 0 0 1px rgba(38, 207, 255, 0.12);
}

.hud-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(38, 207, 255, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.hud-card span,
.section-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-chip small {
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.58rem;
  font-weight: 560;
  text-transform: none;
}

.hud-card strong {
  display: block;
  color: #bcdcff;
  font-size: 0.78rem;
}

.hud-card strong small {
  display: block;
  margin-top: 3px;
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.66rem;
  font-weight: 560;
}

.wire-port {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 154px;
  height: 48px;
  overflow: hidden;
  border-bottom: 2px solid rgba(38, 207, 255, 0.75);
}

.wire-port i {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 34px;
  border: 1px solid rgba(38, 207, 255, 0.65);
  transform: skewX(-12deg);
}

.wire-port i:nth-child(1) { left: 8px; height: 24px; }
.wire-port i:nth-child(2) { left: 46px; height: 38px; }
.wire-port i:nth-child(3) { left: 84px; height: 30px; }
.wire-port i:nth-child(4) { left: 122px; height: 42px; }

.line-chart {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 14px;
  height: 38px;
  background:
    linear-gradient(160deg, transparent 0 12%, rgba(38, 207, 255, 0.8) 12.5% 14%, transparent 14.5% 26%, rgba(38, 207, 255, 0.7) 26.5% 28%, transparent 28.5% 42%, rgba(240, 184, 75, 0.65) 42.5% 44%, transparent 44.5% 62%, rgba(38, 207, 255, 0.78) 62.5% 64%, transparent 64.5% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px);
}

.carbon div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.carbon em {
  color: var(--mint);
  font-size: 1.8rem;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
}

.carbon small {
  color: #c7def1;
  line-height: 1.2;
}

.metric-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  padding: 14px 18px;
  background: rgba(5, 19, 39, 0.72);
}

.metric-bar article {
  display: grid;
  grid-template-columns: 48px auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid rgba(136, 185, 225, 0.26);
}

.metric-bar article:last-child {
  border-right: none;
}

.metric-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(38, 207, 255, 0.42);
  border-radius: var(--radius);
  font-size: 1.3rem;
}

.metric-bar strong {
  color: var(--cyan);
  font-size: 1.62rem;
  line-height: 1;
}

.metric-bar p {
  margin: 0;
  color: #d7e7f5;
  font-size: 0.78rem;
}

.metric-bar p small {
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.7rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 18px;
  margin-top: 12px;
}

.featured-project {
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  gap: 14px;
  min-height: 230px;
  padding: 20px;
}

.feature-copy h2 {
  margin: 12px 0 2px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.feature-copy h3 {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 1.28rem;
}

.feature-copy p {
  margin: 0 0 16px;
  color: #b6c8dc;
  font-size: 0.78rem;
}

.feature-copy .cn-line {
  margin-top: -8px;
  color: rgba(190, 208, 228, 0.78);
  font-size: 0.74rem;
}

.mini-link {
  min-height: 34px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.project-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(38, 207, 255, 0.2);
  border-radius: var(--radius);
  background: #07162d;
}

.project-screen img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
  opacity: 0.78;
}

.screen-overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(5, 19, 39, 0.72), transparent 62%),
    repeating-linear-gradient(0deg, rgba(38, 207, 255, 0.08) 0 1px, transparent 1px 34px);
}

.screen-overlay span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 850;
}

.screen-overlay strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.screen-overlay strong small {
  display: block;
  margin-top: 3px;
  color: rgba(190, 208, 228, 0.76);
  font-size: 0.7rem;
  font-weight: 620;
}

.screen-grid {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.screen-grid i {
  height: 44px;
  border: 1px solid rgba(38, 207, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(38, 207, 255, 0.18), rgba(18, 103, 255, 0.1));
}

.research-areas {
  padding: 20px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.area-grid article {
  min-height: 180px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid rgba(76, 151, 214, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 44, 78, 0.72), rgba(8, 24, 47, 0.82));
  text-align: center;
}

.area-grid h3 {
  margin: 0;
  color: #eef6ff;
  font-size: 0.94rem;
  line-height: 1.2;
}

.area-grid h3 small {
  display: block;
  margin-top: 6px;
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.68rem;
  font-weight: 580;
}

.area-grid p {
  margin: 0;
  color: #b9c8d9;
  font-size: 0.74rem;
}

.area-icon {
  width: 60px;
  height: 46px;
  display: block;
  border-bottom: 2px solid var(--cyan);
  position: relative;
}

.research-system-matrix {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid rgba(76, 151, 214, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(10, 34, 62, 0.94), rgba(4, 18, 36, 0.9)),
    repeating-linear-gradient(90deg, rgba(38, 207, 255, 0.04) 0 1px, transparent 1px 68px);
  box-shadow: var(--shadow);
}

.system-matrix-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 16px;
}

.system-matrix-head h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.08;
}

.system-matrix-head p {
  margin: 0;
  color: #b9ccdf;
  font-size: 0.82rem;
  line-height: 1.55;
}

.system-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.system-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  padding: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(76, 151, 214, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 48, 83, 0.78), rgba(7, 23, 45, 0.9));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.system-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(38, 207, 255, 0.12);
  border-radius: 50%;
}

.system-card:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 207, 255, 0.68);
  background: linear-gradient(145deg, rgba(18, 64, 105, 0.86), rgba(7, 25, 48, 0.94));
}

.system-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(38, 207, 255, 0.38);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
}

.system-card small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.system-card h3 {
  margin: 6px 0 7px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
}

.system-card p {
  margin: 0;
  color: #adc2d8;
  font-size: 0.72rem;
  line-height: 1.45;
}

.system-card > strong {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(136, 185, 225, 0.14);
  color: #d8e7f6;
  font-size: 0.7rem;
}

.system-card > strong b {
  color: var(--mint);
}

.research-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(89, 240, 189, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 17, 34, 0.62);
}

.research-pipeline > span {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 2px 9px;
}

.research-pipeline i {
  grid-row: 1 / 3;
  color: var(--mint);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
}

.research-pipeline strong {
  color: #eaf4ff;
  font-size: 0.74rem;
}

.research-pipeline small {
  color: rgba(190, 208, 228, 0.66);
  font-size: 0.64rem;
}

.research-pipeline > b {
  color: rgba(38, 207, 255, 0.6);
  font-weight: 500;
}

.area-icon::before,
.area-icon::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(38, 207, 255, 0.75);
}

.crane::before { left: 11px; bottom: 8px; width: 38px; height: 22px; transform: skewX(-18deg); }
.crane::after { left: 28px; top: 0; width: 2px; height: 40px; border-width: 0 2px 0 0; }
.network::before { inset: 8px 10px; border-radius: 50%; }
.network::after { left: 29px; top: 2px; width: 2px; height: 40px; border-width: 0 2px 0 0; transform: rotate(45deg); }
.vessel::before { left: 8px; bottom: 6px; width: 44px; height: 18px; border-top: 0; transform: skewX(-16deg); }
.vessel::after { left: 20px; top: 6px; width: 25px; height: 18px; }
.leaf::before { left: 13px; top: 4px; width: 34px; height: 34px; border-radius: 34px 0 34px 0; transform: rotate(-12deg); }
.leaf::after { left: 30px; top: 12px; width: 2px; height: 32px; border-width: 0 2px 0 0; transform: rotate(38deg); }

.publication-strip {
  display: grid;
  grid-template-columns: 150px repeat(4, minmax(0, 1fr)) 150px;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
  margin-bottom: 10px;
  padding: 12px 16px;
}

.publication-strip .section-chip {
  align-self: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.publication-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding-right: 70px;
  border-right: 1px solid rgba(136, 185, 225, 0.18);
}

.cover {
  display: block;
  width: 44px;
  height: 58px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #f7f9ff, #4aa7da);
}

.cover-two { background: linear-gradient(135deg, #35d7ff, #0f4d8d); }
.cover-three { background: linear-gradient(135deg, #f7f9ff, #1b355d); }
.cover-four { background: linear-gradient(135deg, #e8f5ff, #3f78d9); }

.publication-strip p {
  margin: 0;
  color: #c5d4e6;
  font-size: 0.72rem;
}

.publication-strip strong,
.publication-strip small {
  display: block;
}

.publication-strip strong {
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.3;
}

.publication-strip em {
  position: absolute;
  right: 8px;
  top: 8px;
  padding: 2px 8px;
  border-radius: var(--radius);
  background: rgba(18, 103, 255, 0.26);
  color: #ffd782;
  font-size: 0.7rem;
  font-style: normal;
}

.all-publications {
  min-height: 62px;
  align-self: center;
  justify-self: stretch;
  padding: 0 18px;
  text-align: left;
}

.output-ledger {
  margin-top: 22px;
  padding: 8px 0 0;
}

.ledger-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.44fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 16px;
}

.ledger-header h2,
.credential-intro h2 {
  max-width: 880px;
  margin: 12px 0 8px;
  color: #ffffff;
  font-size: 1.62rem;
  line-height: 1.18;
}

.ledger-header p,
.credential-intro p {
  max-width: 920px;
  margin: 0;
  color: rgba(190, 208, 228, 0.78);
  font-size: 0.82rem;
}

.ledger-counts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ledger-counts span {
  min-height: 72px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 10px 6px;
  border: 1px solid rgba(76, 151, 214, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 44, 78, 0.72), rgba(8, 24, 47, 0.82));
  color: rgba(220, 232, 247, 0.82);
  font-size: 0.68rem;
  text-align: center;
}

.ledger-counts strong {
  color: var(--cyan);
  font-size: 1.42rem;
  line-height: 1;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.output-card,
.credential-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(76, 151, 214, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.78), rgba(5, 18, 36, 0.82));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.output-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.output-card::after,
.credential-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(38, 207, 255, 0.78), rgba(89, 240, 189, 0.58));
  opacity: 0.62;
}

.output-card.highlight::after {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  opacity: 0.9;
}

.output-card.patent::after {
  background: linear-gradient(90deg, var(--mint), rgba(38, 207, 255, 0.72));
}

.output-card.software::after {
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.output-card.conference::after {
  background: linear-gradient(90deg, var(--gold), rgba(89, 240, 189, 0.72));
}

.output-type {
  width: fit-content;
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid rgba(240, 184, 75, 0.32);
  border-radius: var(--radius);
  background: rgba(240, 184, 75, 0.1);
  color: #ffd782;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0;
}

.output-card h3 {
  order: 2;
  margin: 0;
  color: rgba(190, 208, 228, 0.66);
  font-size: 0.72rem;
  line-height: 1.38;
}

.output-card p {
  order: 1;
  margin: 0;
  color: #f2f7ff;
  font-size: 0.9rem;
  line-height: 1.52;
  font-weight: 680;
}

.output-card div {
  order: 3;
  margin-top: auto;
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(136, 185, 225, 0.16);
}

.output-card div strong {
  color: var(--cyan);
  font-size: 0.78rem;
}

.output-card div small {
  color: #bed0e4;
  font-size: 0.7rem;
}

.record-link {
  width: fit-content;
  max-width: 100%;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.record-link:hover {
  color: #ffffff;
}

.credential-wall {
  display: grid;
  grid-template-columns: minmax(280px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 26px;
}

.credential-intro {
  align-self: start;
  padding-top: 4px;
}

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

.credential-grid article {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.credential-grid article > span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
}

.credential-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.18;
}

.credential-grid h3 small {
  display: block;
  margin-top: 6px;
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.68rem;
  font-weight: 620;
}

.credential-grid p {
  margin: 0;
  color: #b9c8d9;
  font-size: 0.72rem;
  line-height: 1.5;
}

.membership-register {
  display: grid;
  grid-template-columns: minmax(280px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 14px;
}

.membership-register-head {
  align-self: start;
  padding-top: 4px;
}

.membership-register-head h2 {
  margin: 12px 0 8px;
  color: #ffffff;
  font-size: 1.42rem;
}

.membership-register-head p {
  margin: 0;
  color: rgba(190, 208, 228, 0.78);
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.membership-detail-grid article {
  min-height: 224px;
  padding: 18px;
  border: 1px solid rgba(76, 151, 214, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.84), rgba(5, 18, 36, 0.88));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.membership-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.membership-card-head strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.membership-card-head span {
  padding: 3px 8px;
  border: 1px solid rgba(89, 240, 189, 0.32);
  border-radius: 999px;
  background: rgba(89, 240, 189, 0.08);
  color: var(--mint);
  font-size: 0.62rem;
  font-weight: 850;
}

.membership-detail-grid h3 {
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: 1.02rem;
}

.membership-detail-grid dl,
.membership-detail-grid dl div {
  margin: 0;
}

.membership-detail-grid dl {
  display: grid;
  gap: 8px;
}

.membership-detail-grid dl div {
  display: grid;
  grid-template-columns: minmax(84px, 0.38fr) minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(136, 185, 225, 0.14);
}

.membership-detail-grid dt {
  color: rgba(190, 208, 228, 0.64);
  font-size: 0.68rem;
}

.membership-detail-grid dd,
.membership-detail-grid dd a {
  color: #d9e7f5;
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.membership-detail-grid dd a:hover {
  color: var(--cyan);
}

.profile-console {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.profile-console article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(9, 27, 52, 0.76), rgba(6, 18, 36, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.profile-console h2 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.22;
}

.profile-console p {
  margin: 0 0 10px;
  color: #c8d8e9;
  font-size: 0.78rem;
}

.profile-console article > small {
  display: block;
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.72rem;
  line-height: 1.55;
}

.dashboard-footer {
  min-height: 72px;
  display: grid;
  grid-template-columns: 160px minmax(270px, 1fr) minmax(220px, auto) minmax(220px, auto);
  gap: 28px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(73, 130, 182, 0.22);
}

.signature-lockup {
  display: grid;
  gap: 2px;
  align-content: center;
  justify-items: start;
}

.signature-image {
  display: block;
  width: 150px;
  height: auto;
}

.signature-lockup .signature-cn {
  display: none;
}

.profile-note strong,
.profile-note span,
.profile-note small {
  display: block;
}

.profile-note span {
  color: var(--cyan);
}

.profile-note small,
.dashboard-footer small {
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.78rem;
  font-weight: 560;
}

.dashboard-footer a,
.dashboard-footer span {
  color: #bdcadb;
}

.dashboard-footer a:hover {
  color: var(--cyan);
}

.filing-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(73, 130, 182, 0.16);
  font-size: 0.78rem;
}

.filing-links a {
  color: rgba(190, 208, 228, 0.78);
}

/* Project page */
.project-page .elite-links a.active {
  color: #ffffff;
}

.project-main {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  padding: 46px 0 28px;
}

.project-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.project-panel,
.project-video-card,
.project-section-panel {
  padding: 26px;
}

.project-panel .hero-rail {
  width: auto;
  margin: 0 0 22px;
}

.project-panel h1 {
  margin: 0 0 12px;
  font-size: 3.65rem;
  line-height: 0.98;
}

.project-panel h2 {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 1.72rem;
  line-height: 1.3;
  font-weight: 850;
}

.project-panel .project-cn-title,
.project-panel .project-en-title {
  margin: -6px 0 18px;
  color: rgba(190, 208, 228, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.025em;
}

.project-panel p {
  color: #d4e3f3;
}

.project-author-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 9px 13px;
  align-items: baseline;
  margin: -6px 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 177, 63, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 50%, rgba(245, 177, 63, 0.14), transparent 54%),
    linear-gradient(135deg, rgba(19, 52, 83, 0.82), rgba(7, 25, 48, 0.88));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 231, 186, 0.1);
  text-align: left;
}

.project-author-badge span {
  color: #fff4d5;
  font-size: 0.82rem;
  font-weight: 880;
  letter-spacing: 0.04em;
}

.project-author-badge small {
  color: rgba(71, 217, 255, 0.9);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-video-card > .section-chip {
  margin-bottom: 16px;
}

.project-video-card video {
  display: block;
  width: 100%;
  max-height: 62vh;
  border-radius: var(--radius);
  background: #010813;
}

.project-video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 440px;
  border: 1px solid rgba(76, 151, 214, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(38, 207, 255, 0.08), transparent 32%),
    #010813;
}

.project-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, rgba(48, 196, 255, 0.1) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(48, 196, 255, 0.08) 0 1px, transparent 1px 80px);
}

.video-placeholder-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 430px;
  padding: 28px;
  text-align: center;
}

.video-placeholder-copy::before {
  content: "\25B6";
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(190, 208, 228, 0.22);
  border-radius: 50%;
  background: rgba(190, 208, 228, 0.12);
  color: rgba(244, 248, 255, 0.72);
  font-size: 1.6rem;
  text-indent: 4px;
}

.video-placeholder-copy strong {
  margin-top: 8px;
  color: #f4f8ff;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.video-placeholder-copy span {
  color: rgba(190, 208, 228, 0.72);
  font-size: 0.78rem;
}

.project-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.project-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  counter-reset: tech-card;
}

.project-section-panel {
  margin-top: 18px;
}

.project-readme-panel {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(66, 207, 255, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 3%, rgba(38, 207, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(10, 31, 58, 0.96), rgba(5, 18, 35, 0.98));
  box-shadow:
    0 28px 70px rgba(0, 6, 18, 0.38),
    inset 0 1px 0 rgba(179, 230, 255, 0.06);
}

.readme-section-head {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(102, 171, 224, 0.2);
}

.readme-section-head h2 {
  margin: 8px 0 0;
  color: #f5fbff;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
}

.readme-section-head .heading-en {
  display: block;
  margin-top: 5px;
  color: rgba(190, 208, 228, 0.62);
  font-size: 0.72rem;
  font-weight: 620;
}

.readme-sync-meta {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: rgba(190, 208, 228, 0.68);
  font-size: 0.68rem;
}

.readme-sync-meta > span {
  display: grid;
  gap: 1px;
  color: #d9e9f7;
  font-weight: 740;
  text-align: right;
}

.readme-sync-meta > span small {
  color: rgba(190, 208, 228, 0.52);
  font-size: 0.56rem;
}

.readme-sync-meta code,
.readme-sync-meta time,
.readme-sync-meta a {
  padding: 6px 9px;
  border: 1px solid rgba(90, 171, 226, 0.22);
  border-radius: 7px;
  background: rgba(9, 30, 55, 0.88);
}

.readme-sync-meta code {
  color: var(--mint);
}

.readme-sync-meta a {
  color: var(--cyan);
  font-weight: 760;
}

.readme-sync-meta a small {
  display: block;
  margin-top: 1px;
  color: rgba(190, 208, 228, 0.52);
  font-size: 0.53rem;
}

.project-readme-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.project-readme-content {
  color: #c5d6e7;
  font-size: 0.91rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.project-readme-content .markdown-heading {
  position: relative;
}

.project-readme-content .markdown-heading .anchor {
  display: none;
}

.project-readme-content h1,
.project-readme-content h2,
.project-readme-content h3,
.project-readme-content h4 {
  color: #f2f8ff;
  line-height: 1.28;
}

.project-readme-content h1 {
  margin: 10px 0 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-align: center;
}

.project-readme-content h2 {
  margin: 42px 0 16px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(88, 175, 232, 0.24);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.project-readme-content h3 {
  margin: 30px 0 12px;
  color: #92e9ff;
  font-size: 1.22rem;
}

.project-readme-content h4 {
  margin: 24px 0 10px;
  color: #ffe2a5;
  font-size: 1rem;
}

.project-readme-content p,
.project-readme-content ul,
.project-readme-content ol {
  margin: 12px 0;
}

.project-readme-content li + li {
  margin-top: 5px;
}

.project-readme-content a {
  color: #55d9ff;
  text-decoration: underline;
  text-decoration-color: rgba(85, 217, 255, 0.34);
  text-underline-offset: 3px;
}

.project-readme-content a:hover {
  color: #fff0c9;
  text-decoration-color: rgba(255, 240, 201, 0.55);
}

.project-readme-content strong {
  color: #f5faff;
}

.project-readme-content em {
  color: rgba(211, 229, 246, 0.76);
}

.project-readme-content sub {
  color: rgba(183, 205, 226, 0.72);
  line-height: 1.5;
}

.project-readme-content hr {
  height: 1px;
  margin: 32px 0;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(72, 194, 242, 0.38), transparent);
}

.project-readme-content blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(245, 177, 63, 0.07);
  color: #d9e6f3;
}

.project-readme-content code {
  padding: 0.12em 0.38em;
  border: 1px solid rgba(110, 166, 215, 0.16);
  border-radius: 5px;
  background: rgba(2, 13, 27, 0.9);
  color: #aee9ff;
  font-size: 0.86em;
}

.project-readme-content pre {
  max-width: 100%;
  margin: 16px 0;
  padding: 17px 19px;
  border: 1px solid rgba(73, 155, 218, 0.25);
  border-radius: 10px;
  overflow-x: auto;
  background: #020c19;
  color: #d7e8f8;
  font-size: 0.78rem;
  line-height: 1.62;
  white-space: pre;
}

.project-readme-content pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.project-readme-content markdown-accessiblity-table,
.project-readme-content > table {
  display: block;
  max-width: 100%;
  margin: 18px 0;
  overflow-x: auto;
}

.project-readme-content table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(5, 20, 38, 0.74);
}

.project-readme-content th,
.project-readme-content td {
  min-width: 140px;
  padding: 11px 13px;
  border: 1px solid rgba(99, 159, 209, 0.24);
  vertical-align: top;
  text-align: left;
}

.project-readme-content th {
  background: rgba(30, 81, 126, 0.58);
  color: #eff9ff;
  font-size: 0.8rem;
}

.project-readme-content tr:nth-child(even) td {
  background: rgba(21, 57, 91, 0.22);
}

.project-readme-content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: middle;
}

.project-readme-content p[align="center"] {
  text-align: center;
}

.project-readme-content p[align="center"] img[width$="%"] {
  display: block;
  margin: 10px auto;
  border: 1px solid rgba(75, 155, 215, 0.22);
  box-shadow: 0 16px 45px rgba(0, 4, 12, 0.34);
}

.project-readme-content details {
  margin: 15px 0;
  padding: 12px 15px;
  border: 1px solid rgba(80, 160, 217, 0.22);
  border-radius: 9px;
  background: rgba(9, 28, 50, 0.68);
}

.project-readme-content summary {
  color: #dff6ff;
  font-weight: 780;
  cursor: pointer;
}

.project-readme-content .js-render-needs-enrichment {
  margin: 18px 0;
}

.project-readme-content .js-render-needs-enrichment pre {
  white-space: pre-wrap;
}

.project-section-panel h2 {
  margin: 0 0 14px;
}

.project-module-grid article {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(76, 151, 214, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 44, 78, 0.72), rgba(8, 24, 47, 0.82));
}

.project-module-grid strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 8px;
}

.project-module-grid strong small {
  display: block;
  margin-top: 4px;
  color: rgba(190, 208, 228, 0.74);
  font-size: 0.72rem;
  font-weight: 620;
}

.project-module-grid p,
.project-section-panel p {
  color: #bed0e4;
}

.tech-card {
  position: relative;
  display: flex;
  min-height: 218px;
  padding: 20px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(76, 151, 214, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(62, 208, 255, 0.1), transparent 38%),
    linear-gradient(165deg, rgba(16, 47, 82, 0.82), rgba(7, 23, 45, 0.94));
  box-shadow: inset 0 1px 0 rgba(211, 234, 255, 0.05);
  counter-increment: tech-card;
  cursor: default;
}

.tech-card::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(62, 208, 255, 0));
  content: "";
}

.tech-card-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.tech-card-index {
  display: grid;
  width: 38px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(245, 177, 63, 0.34);
  border-radius: 7px;
  background: rgba(245, 177, 63, 0.08);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.tech-card-index::before {
  content: "0" counter(tech-card);
}

.tech-card-head strong {
  display: block;
  margin: 3px 0 0;
  color: var(--cyan);
  font-size: 1rem;
  line-height: 1.38;
}

.tech-card-copy {
  margin-top: 19px;
  padding-top: 15px;
  border-top: 1px solid rgba(121, 169, 213, 0.16);
}

.tech-card-label {
  display: flex;
  gap: 7px;
  align-items: baseline;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.tech-card-label small {
  color: rgba(190, 208, 228, 0.48);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
}

.tech-card-copy p {
  margin: 9px 0 5px;
  color: #e4f0fc;
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.5;
}

.tech-card-copy > small {
  display: block;
  color: rgba(190, 208, 228, 0.58);
  font-size: 0.66rem;
  line-height: 1.42;
}

.tech-card-status {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  padding-top: 17px;
  color: #72ddc2;
  font-size: 0.65rem;
  font-weight: 780;
}

.tech-card-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #72ddc2;
  box-shadow: 0 0 9px rgba(114, 221, 194, 0.58);
}

.tech-card-status small {
  margin-left: auto;
  color: rgba(190, 208, 228, 0.42);
  font-size: 0.54rem;
  letter-spacing: 0.09em;
}

.project-proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.project-proof-strip article {
  position: relative;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(62, 208, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(22, 63, 104, 0.88), rgba(7, 22, 43, 0.94));
}

.project-proof-strip article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -38px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 213, 255, 0.18), transparent 70%);
}

.project-proof-strip strong {
  display: block;
  color: #f5fbff;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  line-height: 1;
}

.project-proof-strip span,
.project-proof-strip small {
  display: block;
}

.project-proof-strip article > span {
  margin-top: 9px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.035em;
}

.project-proof-strip article > span small {
  margin-top: 3px;
  color: rgba(190, 208, 228, 0.52);
  font-size: 0.54rem;
  font-weight: 560;
  letter-spacing: 0.08em;
}

.project-proof-strip article > small {
  margin-top: 5px;
  color: rgba(190, 208, 228, 0.78);
  font-size: 0.72rem;
  line-height: 1.45;
}

.project-evidence-panel {
  border-color: rgba(69, 216, 255, 0.3);
  background:
    radial-gradient(circle at 92% 8%, rgba(42, 213, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(11, 34, 64, 0.94), rgba(6, 19, 38, 0.98));
}

.project-evidence-grid,
.project-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.evidence-card,
.project-value-grid article {
  padding: 20px;
  border: 1px solid rgba(76, 151, 214, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 28, 53, 0.78);
}

.evidence-card {
  min-height: 210px;
}

.evidence-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-kicker small {
  color: rgba(190, 208, 228, 0.52);
  font-size: 0.72em;
  font-weight: 560;
}

.evidence-card h3,
.project-value-grid h3 {
  margin: 0 0 10px;
  color: #f3f8ff;
  font-size: 1rem;
}

.evidence-card p,
.project-value-grid p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.62;
}

.evidence-card ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-card li {
  position: relative;
  padding-left: 15px;
  color: #bed0e4;
  font-size: 0.8rem;
  line-height: 1.5;
}

.evidence-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.benchmark-table {
  display: grid;
  margin-top: 18px;
  border: 1px solid rgba(76, 151, 214, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.benchmark-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.15fr) minmax(120px, 0.8fr) 2fr;
  gap: 16px;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(76, 151, 214, 0.16);
  background: rgba(5, 21, 41, 0.7);
}

.benchmark-row:last-child {
  border-bottom: none;
}

.benchmark-row.head {
  color: rgba(190, 208, 228, 0.74);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(22, 61, 101, 0.78);
}

.benchmark-row strong {
  color: var(--cyan);
  font-size: 1rem;
}

.benchmark-row span {
  color: #d4e3f3;
  font-size: 0.82rem;
}

.project-boundary-note {
  margin-top: 16px !important;
  padding: 14px 16px;
  border-left: 3px solid #ffbe55;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 176, 57, 0.08);
  color: #d9c49f !important;
  font-size: 0.78rem;
}

.project-value-grid article {
  min-height: 160px;
}

.featured-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.featured-proof-row span,
.system-proof {
  border: 1px solid rgba(54, 205, 255, 0.24);
  border-radius: 999px;
  background: rgba(22, 80, 112, 0.22);
  color: #d8f7ff;
  font-size: 0.7rem;
  font-weight: 760;
}

.featured-proof-row span {
  padding: 7px 10px;
}

.system-proof {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 9px;
}

.resume-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--mint);
  font-size: 1.2rem;
  font-weight: 850;
}

.home-only[data-current-view="home"] {
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.home-only[data-current-view="home"] .dashboard-main {
  min-height: 0;
  overflow: hidden;
}

.home-only[data-current-view="home"] .showcase-hero {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

@media (min-width: 1181px) {

  .home-only[data-current-view="home"] .elite-nav {
    position: relative;
    min-height: 58px;
    padding-top: 7px;
    padding-bottom: 6px;
  }

  .home-only[data-current-view="home"] .brand-lockup {
    width: min(270px, 40vw);
  }

  .home-only[data-current-view="home"] .elite-links {
    gap: clamp(24px, 2.2vw, 36px);
  }

  .home-only[data-current-view="home"] .elite-links a,
  .home-only[data-current-view="home"] .project-menu > button {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .home-only[data-current-view="home"] .dashboard-main {
    min-height: 0;
    overflow: hidden;
  }

  .home-only[data-current-view="home"] .showcase-hero {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: clamp(12px, 1.8vh, 24px) 0 8px;
  }

  .home-only[data-current-view="home"] .hero-layout {
    min-height: 0;
    align-items: center;
    gap: clamp(24px, 2.4vw, 38px);
    padding-top: clamp(8px, 1.25vh, 16px);
  }

  .home-only[data-current-view="home"] .hero-statement h1 {
    margin-bottom: clamp(8px, 1.25vh, 16px);
    font-size: clamp(2.25rem, 5.2vh, 3.18rem);
  }

  .home-only[data-current-view="home"] .hero-title-en {
    margin-bottom: clamp(8px, 1.2vh, 14px);
    font-size: clamp(0.72rem, 1.35vh, 0.88rem);
  }

  .home-only[data-current-view="home"] .hero-statement .hero-cn {
    margin-bottom: clamp(8px, 1.25vh, 16px);
    font-size: clamp(0.78rem, 1.5vh, 0.96rem);
    line-height: 1.58;
  }

  .home-only[data-current-view="home"] .hero-statement .en-assist {
    margin-bottom: clamp(7px, 1.15vh, 12px);
    font-size: clamp(0.66rem, 1.2vh, 0.75rem) !important;
  }

  .home-only[data-current-view="home"] .hero-buttons {
    gap: 12px;
  }

  .home-only[data-current-view="home"] .cta {
    min-height: 38px;
    padding: 0 22px;
  }

  .home-only[data-current-view="home"] .hero-panels {
    gap: clamp(7px, 1vh, 11px);
  }

  .home-only[data-current-view="home"] .hud-card {
    min-height: clamp(88px, 13vh, 118px);
    padding: clamp(10px, 1.35vh, 16px);
  }

  .home-only[data-current-view="home"] .wire-port {
    bottom: 14px;
    height: 40px;
  }

  .home-only[data-current-view="home"] .line-chart {
    bottom: 10px;
    height: 30px;
  }

  .home-only[data-current-view="home"] .carbon div {
    bottom: 9px;
  }

  .home-only[data-current-view="home"] .metric-bar {
    margin-top: clamp(7px, 1.25vh, 14px);
    padding: clamp(7px, 1vh, 11px) 12px;
  }

  .home-only[data-current-view="home"] .metric-bar article {
    grid-template-columns: 38px auto 1fr;
    gap: 9px;
    padding: 0 clamp(10px, 1.2vw, 18px);
  }

  .home-only[data-current-view="home"] .metric-icon {
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
  }

  .home-only[data-current-view="home"] .metric-bar strong {
    font-size: clamp(1.25rem, 2.5vh, 1.55rem);
  }

  .home-only[data-current-view="home"] .metric-bar p {
    font-size: clamp(0.64rem, 1.2vh, 0.76rem);
    line-height: 1.35;
  }

  .home-only[data-current-view="home"] > .dashboard-footer {
    min-height: 0;
    grid-template-columns: 140px minmax(240px, 1fr) minmax(205px, auto) minmax(205px, auto);
    gap: 16px;
    padding: 5px 0 4px;
  }

  .home-only[data-current-view="home"] .signature-image {
    width: 126px;
  }

  .home-only[data-current-view="home"] .profile-note {
    font-size: 0.82rem;
  }

  .home-only[data-current-view="home"] .filing-links {
    padding-top: 3px;
    font-size: 0.72rem;
  }
}

@media (max-width: 1180px) {
  .elite-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .elite-links,
  .nav-tools {
    justify-content: flex-start;
  }

  .hero-layout,
  .dashboard-grid,
  .project-hero-card,
  .contact-stage {
    grid-template-columns: 1fr;
  }

  .hero-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-bar,
  .ledger-counts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-bar article:nth-child(even) {
    border-right: none;
  }

  .ledger-header,
  .credential-wall,
  .membership-register {
    grid-template-columns: 1fr;
  }

  .area-grid,
  .output-grid,
  .profile-console,
  .system-card-grid,
  .project-module-grid,
  .project-tech-grid,
  .project-proof-strip,
  .project-evidence-grid,
  .project-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .publication-strip,
  .dashboard-footer {
    grid-template-columns: 1fr 1fr;
  }

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

  .readme-sync-meta,
  .readme-sync-meta > span {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .elite-nav {
    padding: 14px;
  }

  .elite-links {
    gap: 18px;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .project-dropdown {
    left: 0;
    width: min(390px, calc(100vw - 28px));
    transform: translate(0, -8px);
  }

  .project-menu:hover .project-dropdown,
  .project-menu:focus-within .project-dropdown {
    transform: translate(0, 0);
  }

  .nav-tools {
    display: none;
  }

  .hero-rail,
  .hero-layout,
  .metric-bar,
  .dashboard-grid,
  .publication-strip,
  .output-ledger,
  .credential-wall,
  .membership-register,
  .dashboard-footer,
  .project-main {
    width: min(100% - 28px, 1640px);
  }

  .content-page-heading,
  .contact-stage {
    width: min(100% - 28px, 1640px);
  }

  .system-matrix-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .research-pipeline > b {
    display: none;
  }

  .hero-rail {
    gap: 8px 12px;
    font-size: 0.78rem;
  }

  .hero-rail span:last-child {
    width: auto;
    min-width: 58px;
    flex: 1;
  }

  .hero-rail em {
    font-size: 0.68rem;
  }

  .showcase-hero {
    padding-top: 36px;
  }

  .hero-statement h1,
  .project-panel h1 {
    font-size: 2.7rem;
  }

  .project-video-placeholder {
    min-height: 300px;
  }

  .brand-lockup {
    width: min(310px, calc(100vw - 28px));
  }

  .hero-title-cn {
    font-size: 1.18rem;
  }

  .hero-statement p {
    font-size: 0.96rem;
  }

  .hero-buttons,
  .hero-buttons .cta {
    width: 100%;
  }

  .project-author-badge {
    gap: 4px;
    align-items: flex-start;
    flex-direction: column;
  }

  .project-readme-panel {
    padding: 18px;
  }

  .project-readme-content {
    font-size: 0.84rem;
  }

  .project-readme-content h1 {
    font-size: 1.8rem;
  }

  .project-readme-content th,
  .project-readme-content td {
    min-width: 120px;
    padding: 9px 10px;
  }

  .hero-panels,
  .metric-bar,
  .ledger-counts,
  .featured-project,
  .area-grid,
  .output-grid,
  .credential-grid,
  .membership-detail-grid,
  .publication-strip,
  .profile-console,
  .system-card-grid,
  .dashboard-footer,
  .project-module-grid,
  .project-tech-grid,
  .project-proof-strip,
  .project-evidence-grid,
  .project-value-grid {
    grid-template-columns: 1fr;
  }

  .benchmark-row,
  .benchmark-row.head {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .research-system-matrix {
    padding: 16px;
  }

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

  .metric-bar article {
    grid-template-columns: 44px minmax(70px, auto) 1fr;
    border-right: none;
    border-bottom: 1px solid rgba(136, 185, 225, 0.22);
    padding: 12px;
  }

  .metric-bar article:last-child {
    border-bottom: none;
  }

  .publication-strip article {
    border-right: none;
    border-bottom: 1px solid rgba(136, 185, 225, 0.18);
    padding-bottom: 10px;
  }

  .ledger-header h2,
  .credential-intro h2 {
    font-size: 1.28rem;
  }

  .output-card {
    min-height: 0;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .home-only[data-current-view="home"] .elite-nav {
    position: relative;
    min-height: 56px;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    gap: 14px;
    padding: 6px 24px;
  }

  .home-only[data-current-view="home"] .brand-lockup {
    width: min(205px, 24vw);
  }

  .home-only[data-current-view="home"] .elite-links {
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 24px);
    padding: 0;
  }

  .home-only[data-current-view="home"] .elite-links a,
  .home-only[data-current-view="home"] .project-menu > button {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .home-only[data-current-view="home"] .elite-links a > span,
  .home-only[data-current-view="home"] .project-menu > button > span {
    font-size: 0.78rem;
  }

  .home-only[data-current-view="home"] .elite-links a small,
  .home-only[data-current-view="home"] .project-menu > button small,
  .home-only[data-current-view="home"] .nav-tools {
    display: none;
  }

  .home-only[data-current-view="home"] .project-dropdown {
    position: fixed;
    top: 56px;
    left: 20px;
    right: 20px;
    width: auto;
    transform: translateY(-8px);
  }

  .home-only[data-current-view="home"] .project-menu:hover .project-dropdown,
  .home-only[data-current-view="home"] .project-menu:focus-within .project-dropdown {
    transform: translateY(0);
  }

  .home-only[data-current-view="home"] .showcase-hero {
    padding: clamp(8px, 1.5vh, 14px) 0 6px;
  }

  .home-only[data-current-view="home"] .hero-rail,
  .home-only[data-current-view="home"] .hero-layout,
  .home-only[data-current-view="home"] .metric-bar,
  .home-only[data-current-view="home"] > .dashboard-footer {
    width: min(100% - 40px, 1640px);
  }

  .home-only[data-current-view="home"] .hero-rail {
    gap: 8px;
    font-size: 0.72rem;
  }

  .home-only[data-current-view="home"] .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 28vw);
    gap: 18px;
    align-items: center;
    padding-top: clamp(5px, 1vh, 10px);
  }

  .home-only[data-current-view="home"] .hero-statement h1 {
    margin-bottom: 7px;
    font-size: clamp(1.85rem, 4.5vh, 2.45rem);
  }

  .home-only[data-current-view="home"] .hero-title-en {
    margin: 0 0 7px;
    font-size: 0.7rem;
  }

  .home-only[data-current-view="home"] .hero-statement .hero-cn {
    display: -webkit-box;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: clamp(0.7rem, 1.35vh, 0.82rem);
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-only[data-current-view="home"] .hero-statement .en-assist {
    display: none;
  }

  .home-only[data-current-view="home"] .hero-buttons {
    gap: 10px;
  }

  .home-only[data-current-view="home"] .cta {
    min-height: 34px;
    padding: 0 18px;
  }

  .home-only[data-current-view="home"] .hero-panels {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-only[data-current-view="home"] .hud-card {
    min-height: clamp(66px, 10vh, 82px);
    padding: 9px 11px;
  }

  .home-only[data-current-view="home"] .hud-card::after {
    inset: 5px;
  }

  .home-only[data-current-view="home"] .hud-card span {
    font-size: 0.66rem;
  }

  .home-only[data-current-view="home"] .hud-card strong {
    font-size: 0.66rem;
  }

  .home-only[data-current-view="home"] .wire-port,
  .home-only[data-current-view="home"] .line-chart,
  .home-only[data-current-view="home"] .carbon div {
    display: none;
  }

  .home-only[data-current-view="home"] .metric-bar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: clamp(5px, 1vh, 9px);
    padding: 6px 8px;
  }

  .home-only[data-current-view="home"] .metric-bar article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-right: 1px solid rgba(136, 185, 225, 0.26);
    border-bottom: 0;
    text-align: center;
  }

  .home-only[data-current-view="home"] .metric-bar article:last-child {
    border-right: 0;
  }

  .home-only[data-current-view="home"] .metric-icon {
    display: none;
  }

  .home-only[data-current-view="home"] .metric-bar strong {
    font-size: clamp(1.08rem, 2.5vh, 1.35rem);
  }

  .home-only[data-current-view="home"] .metric-bar p {
    font-size: 0;
  }

  .home-only[data-current-view="home"] .metric-bar p::before {
    content: attr(data-short);
    font-size: 0.66rem;
  }

  .home-only[data-current-view="home"] > .dashboard-footer {
    min-height: 0;
    grid-template-columns: 92px minmax(180px, 1fr) auto;
    gap: 12px;
    padding: 4px 0 3px;
  }

  .home-only[data-current-view="home"] .signature-image {
    width: 84px;
  }

  .home-only[data-current-view="home"] .profile-note {
    font-size: 0.72rem;
  }

  .home-only[data-current-view="home"] > .dashboard-footer > a[href^="mailto:"] {
    display: none;
  }

  .home-only[data-current-view="home"] .filing-links {
    grid-column: auto;
    padding: 0;
    border-top: 0;
    font-size: 0.7rem;
  }
}

@media (max-width: 720px) {
  .home-only[data-current-view="home"] .elite-nav {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 5px 10px 4px;
  }

  .home-only[data-current-view="home"] .elite-brand {
    justify-content: center;
  }

  .home-only[data-current-view="home"] .brand-lockup {
    width: min(148px, 44vw);
  }

  .home-only[data-current-view="home"] .elite-links {
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(7px, 2.5vw, 14px);
    padding: 0;
  }

  .home-only[data-current-view="home"] .elite-links a,
  .home-only[data-current-view="home"] .project-menu > button {
    padding: 3px 0;
  }

  .home-only[data-current-view="home"] .project-menu > button {
    padding-right: 9px;
  }

  .home-only[data-current-view="home"] .elite-links a > span,
  .home-only[data-current-view="home"] .project-menu > button > span {
    font-size: clamp(0.6rem, 2.6vw, 0.72rem);
    letter-spacing: 0;
  }

  .home-only[data-current-view="home"] .elite-links a small,
  .home-only[data-current-view="home"] .project-menu > button small,
  .home-only[data-current-view="home"] .nav-tools {
    display: none;
  }

  .home-only[data-current-view="home"] .project-dropdown {
    position: fixed;
    top: 51px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: translateY(-8px);
  }

  .home-only[data-current-view="home"] .project-menu:hover .project-dropdown,
  .home-only[data-current-view="home"] .project-menu:focus-within .project-dropdown {
    transform: translateY(0);
  }

  .home-only[data-current-view="home"] .showcase-hero {
    padding: 6px 0 4px;
  }

  .home-only[data-current-view="home"] .hero-rail,
  .home-only[data-current-view="home"] .hero-layout,
  .home-only[data-current-view="home"] .metric-bar,
  .home-only[data-current-view="home"] > .dashboard-footer {
    width: min(100% - 20px, 1640px);
  }

  .home-only[data-current-view="home"] .hero-rail {
    justify-content: center;
    gap: 7px;
    font-size: 0.66rem;
    text-align: center;
  }

  .home-only[data-current-view="home"] .hero-rail em,
  .home-only[data-current-view="home"] .hero-rail span:last-child {
    display: none;
  }

  .home-only[data-current-view="home"] .hero-rail span {
    width: 18px;
  }

  .home-only[data-current-view="home"] .hero-layout {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 4px;
  }

  .home-only[data-current-view="home"] .hero-statement {
    text-align: center;
  }

  .home-only[data-current-view="home"] .hero-statement h1 {
    margin-bottom: 6px;
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.02;
  }

  .home-only[data-current-view="home"] .hero-title-en,
  .home-only[data-current-view="home"] .hero-statement .en-assist,
  .home-only[data-current-view="home"] .hero-panels {
    display: none;
  }

  .home-only[data-current-view="home"] .hero-statement .hero-cn {
    display: -webkit-box;
    margin: 0 auto 7px;
    overflow: hidden;
    font-size: clamp(0.66rem, 2.7vw, 0.8rem);
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-only[data-current-view="home"] .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .home-only[data-current-view="home"] .hero-buttons .cta {
    width: auto;
    min-height: 32px;
    gap: 8px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .home-only[data-current-view="home"] .cta small {
    display: none;
  }

  .home-only[data-current-view="home"] .metric-bar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 5px;
    padding: 4px;
  }

  .home-only[data-current-view="home"] .metric-bar article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    padding: 3px 2px;
    border-right: 1px solid rgba(136, 185, 225, 0.22);
    border-bottom: 0;
    text-align: center;
  }

  .home-only[data-current-view="home"] .metric-bar article:last-child {
    border-right: 0;
  }

  .home-only[data-current-view="home"] .metric-icon {
    display: none;
  }

  .home-only[data-current-view="home"] .metric-bar strong {
    font-size: clamp(0.92rem, 4vw, 1.18rem);
  }

  .home-only[data-current-view="home"] .metric-bar p {
    font-size: 0;
    line-height: 1.15;
  }

  .home-only[data-current-view="home"] .metric-bar p::before {
    content: attr(data-short);
    font-size: clamp(0.52rem, 2.2vw, 0.64rem);
  }

  .home-only[data-current-view="home"] > .dashboard-footer {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 3px 0;
    text-align: center;
  }

  .home-only[data-current-view="home"] .signature-lockup,
  .home-only[data-current-view="home"] .profile-note,
  .home-only[data-current-view="home"] > .dashboard-footer > a[href^="mailto:"] {
    display: none;
  }

  .home-only[data-current-view="home"] .filing-links {
    grid-column: auto;
    padding: 0;
    border-top: 0;
    font-size: 0.66rem;
  }
}

@media (max-height: 620px) {
  .home-only[data-current-view="home"] .elite-nav {
    min-height: 0;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .home-only[data-current-view="home"] .showcase-hero {
    padding-top: 4px;
  }

  .home-only[data-current-view="home"] .hero-rail {
    font-size: 0.62rem;
  }

  .home-only[data-current-view="home"] .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 3px;
  }

  .home-only[data-current-view="home"] .hero-statement {
    text-align: center;
  }

  .home-only[data-current-view="home"] .hero-statement h1 {
    max-width: none;
    margin: 0 auto 5px;
    font-size: clamp(1.45rem, 5.8vh, 2.05rem);
  }

  .home-only[data-current-view="home"] .hero-title-en,
  .home-only[data-current-view="home"] .hero-statement .en-assist,
  .home-only[data-current-view="home"] .hero-panels {
    display: none;
  }

  .home-only[data-current-view="home"] .hero-statement .hero-cn {
    display: -webkit-box;
    max-width: 980px;
    margin: 0 auto 5px;
    overflow: hidden;
    font-size: 0.7rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-only[data-current-view="home"] .hero-buttons {
    justify-content: center;
    gap: 7px;
  }

  .home-only[data-current-view="home"] .cta {
    min-height: 29px;
  }

  .home-only[data-current-view="home"] .metric-bar {
    margin-top: 4px;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .home-only[data-current-view="home"] > .dashboard-footer {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 2px 0;
  }

  .home-only[data-current-view="home"] .signature-lockup,
  .home-only[data-current-view="home"] > .dashboard-footer > a[href^="mailto:"] {
    display: none;
  }

  .home-only[data-current-view="home"] .profile-note {
    font-size: 0.66rem;
  }

  .home-only[data-current-view="home"] .filing-links {
    grid-column: auto;
    padding: 0;
    border-top: 0;
  }
}
