:root {
  --bg: #08131d;
  --bg-soft: #0f1e2c;
  --bg-panel: rgba(11, 26, 40, 0.78);
  --surface: #ffffff;
  --surface-soft: #eef4f7;
  --surface-alt: #e6eef2;
  --text: #e8f1f5;
  --text-muted: #a7b7c4;
  --text-dark: #15212b;
  --text-soft: #576877;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(8, 19, 29, 0.08);
  --brand: #43d17c;
  --brand-dark: #12894a;
  --accent: #77d7ff;
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-light: 0 18px 45px rgba(12, 32, 48, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Microsoft YaHei", sans-serif;
  color: var(--text-dark);
  background: var(--surface-soft);
}

body[data-page="home"] {
  background:
    radial-gradient(circle at top left, rgba(67, 209, 124, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(119, 215, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #08131d 0%, #0a1622 34%, var(--surface-soft) 34%, var(--surface-soft) 100%);
}

body.admin-body {
  background: var(--surface-soft);
  color: var(--text-dark);
}

body.subpage-body {
  background: var(--surface-soft);
  color: var(--text-dark);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 19, 29, 0.76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.admin-body .site-header {
  background: rgba(8, 19, 29, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.subpage-body .site-header {
  background: rgba(8, 19, 29, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.admin-body .main-nav,
body.admin-body .brand-copy small {
  color: var(--text-muted);
}

body.subpage-body .main-nav,
body.subpage-body .brand-copy small {
  color: var(--text-muted);
}

body.admin-body .brand-copy strong,
body.admin-body .main-nav a:hover {
  color: var(--text);
}

body.subpage-body .brand-copy strong,
body.subpage-body .main-nav a:hover {
  color: var(--text);
}

body.subpage-body .button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #9af0b8);
  color: #082112;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  white-space: nowrap;
}

.site-header .brand-copy strong {
  color: var(--text);
}

.site-header .brand-copy small {
  white-space: nowrap;
}

.brand-copy small,
.main-nav {
  color: var(--text-muted);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-header .main-nav a,
.site-header .lang-button,
.site-header .account-cluster .button,
.site-header .account-name,
.site-header .account-cluster .mini-pill {
  white-space: nowrap;
  word-break: keep-all;
  flex: 0 0 auto;
}

.main-nav a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
}

.feedback-trigger {
  white-space: nowrap;
}

.account-cluster {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.account-name {
  font-weight: 700;
  white-space: nowrap;
}

.mini-pill-strong {
  background: rgba(16, 185, 129, 0.14);
  color: #0f7a54;
}

.lang-button,
.tag {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 248, 252, 0.9);
  font-weight: 600;
  cursor: pointer;
}

body.admin-body .lang-button {
  border-color: rgba(8, 19, 29, 0.12);
  background: rgba(8, 19, 29, 0.03);
}

.lang-button.active,
.tag.active,
.tag:hover,
.lang-button:hover {
  background: rgba(67, 209, 124, 0.16);
  border-color: rgba(67, 209, 124, 0.42);
}

.lang-button.active {
  color: #eafbf1;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 14, 24, 0.56);
  backdrop-filter: blur(8px);
}

.feedback-modal[hidden] {
  display: none;
}

.feedback-dialog {
  width: min(560px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #ffffff;
  color: #0f1720;
  box-shadow: 0 32px 60px rgba(9, 17, 28, 0.24);
  padding: 24px;
}

.feedback-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.feedback-dialog-head h2 {
  margin: 0 0 6px;
}

.feedback-dialog-head p {
  margin: 0;
  color: #506173;
}

.feedback-close {
  min-width: 44px;
  min-height: 44px;
  font-size: 22px;
  line-height: 1;
  color: #1e2936;
  border-color: rgba(15, 23, 32, 0.1);
  background: rgba(15, 23, 32, 0.05);
}

.feedback-dialog textarea {
  width: 100%;
  min-height: 168px;
}

.feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), #8ce7b0);
  color: #072010;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

body.admin-body .button-secondary {
  color: var(--text-dark);
  background: rgba(8, 19, 29, 0.04);
  border-color: rgba(8, 19, 29, 0.1);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 700;
}

.hero,
.section {
  padding: 84px 0;
}

.hero {
  padding-top: 48px;
}

.hero-portal {
  position: relative;
  overflow: hidden;
}

.hero-portal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(119, 215, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(67, 209, 124, 0.18), transparent 28%);
  pointer-events: none;
  animation: portalGlowShift 14s ease-in-out infinite alternate;
}

.hero-portal::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 215, 255, 0.14) 0%, rgba(119, 215, 255, 0) 68%);
  filter: blur(6px);
  pointer-events: none;
  animation: portalOrbFloat 12s ease-in-out infinite;
}

.hero-portal-grid,
.cluster-overview-layout,
.live-layout {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hero-portal-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.portal-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 241, 245, 0.8);
  font-size: 0.92rem;
}

.portal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(67, 209, 124, 0.12);
}

.portal-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -10px;
}

.portal-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 241, 245, 0.9);
  font-size: 0.92rem;
}

.hero-statement {
  max-width: 18ch;
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.3;
  font-weight: 700;
  color: #f6fbff;
}

.portal-search-card {
  margin-top: 26px;
}

.portal-side-stack,
.cluster-side-stack {
  display: grid;
  gap: 18px;
}

.portal-card-head,
.cluster-bar-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.portal-card-head span,
.cluster-bar-top span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.portal-stat-panel .metric-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.08);
}

.portal-stat-panel.is-visible,
.portal-note-card.is-visible,
.portal-route-card.is-visible,
.portal-search-card.is-visible {
  animation: portalFloat 8s ease-in-out infinite;
}

.portal-note-card.is-visible {
  animation-delay: 1.3s;
}

.portal-route-card.is-visible {
  animation-delay: 2.2s;
}

.portal-search-card.is-visible {
  animation-delay: 0.8s;
}

.portal-note-card,
.portal-route-card {
  background: rgba(11, 26, 40, 0.78);
}

.portal-note-card .feature-list,
.portal-route-card {
  color: var(--text);
}

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

.portal-route-list a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.portal-route-list a:hover,
.portal-entry-card:hover,
.cluster-bar-card:hover,
.sourcing-cheat-card:hover {
  transform: translateY(-2px);
}

.portal-route-list a:hover {
  border-color: rgba(119, 215, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.portal-route-list strong {
  color: var(--text);
}

.portal-route-list span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.portal-entry-strip {
  padding-top: 18px;
}

.portal-entry-grid,
.sourcing-cheat-grid {
  display: grid;
  gap: 18px;
}

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

.portal-entry-card,
.sourcing-cheat-card,
.cluster-bar-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  background: var(--surface);
  box-shadow: var(--shadow-light);
  color: var(--text-dark);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.portal-entry-card:hover,
.sourcing-cheat-card:hover,
.cluster-bar-card:hover {
  box-shadow: 0 24px 42px rgba(12, 32, 48, 0.12);
  border-color: rgba(67, 209, 124, 0.18);
}

.portal-entry-card h3,
.sourcing-cheat-card strong {
  color: #0f1e2a;
}

.portal-entry-card p,
.sourcing-cheat-card p {
  color: var(--text-soft);
}

.cluster-overview-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.cluster-bars {
  display: grid;
  gap: 16px;
}

.cluster-bar-track {
  width: 100%;
  height: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e8f0f5;
  overflow: hidden;
}

.cluster-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1cb36d 0%, #72dbff 100%);
  transform-origin: left center;
  animation: barGrow 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.county-focus-card,
.cheat-note-card {
  min-height: 0;
}

.compact-steps {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.compact-steps li + li {
  margin-top: 10px;
}

.portal-product-grid,
.portal-supplier-grid {
  margin-top: 26px;
}

.portal-product-grid .product-card,
.portal-supplier-grid .supplier-card,
.live-feed-grid .listing-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.portal-product-grid .product-card:hover,
.portal-supplier-grid .supplier-card:hover,
.live-feed-grid .listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(12, 32, 48, 0.12);
  border-color: rgba(67, 209, 124, 0.16);
}

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

.sourcing-cheat-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-weight: 700;
}

.sourcing-cheat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.live-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.live-actions {
  margin-top: 0;
}

.live-metric-grid,
.live-feed-grid {
  margin-top: 24px;
}

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

.live-metric-grid .metric-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid rgba(8, 19, 29, 0.08);
  box-shadow: var(--shadow-light);
}

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

.live-feed-head {
  margin-bottom: 0;
}

.portal-guide-layout {
  align-items: start;
}

@keyframes portalFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes portalGlowShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(-12px, 10px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes portalOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 22px, 0);
  }
}

@keyframes barGrow {
  0% {
    transform: scaleX(0.08);
    opacity: 0.3;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero-showroom {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-showroom::before,
.hero-showroom::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-showroom::before {
  left: -140px;
  top: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(67, 209, 124, 0.18) 0%, rgba(67, 209, 124, 0) 68%);
  filter: blur(10px);
}

.hero-showroom::after {
  right: -120px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(119, 215, 255, 0.16) 0%, rgba(119, 215, 255, 0) 70%);
  filter: blur(12px);
}

.showroom-hero-grid,
.showroom-story-layout,
.showroom-platform-layout {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.showroom-hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 24px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.showroom-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.showroom-hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 22, 0.72) 0%, rgba(5, 15, 22, 0.4) 34%, rgba(5, 15, 22, 0.24) 60%, rgba(5, 15, 22, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 15, 22, 0.12), rgba(5, 15, 22, 0.38));
}

.showroom-copy {
  max-width: 860px;
  text-align: center;
  position: relative;
  padding: 18px 0 6px;
}

.showroom-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -36px;
  width: min(72vw, 760px);
  height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(132, 224, 255, 0.08) 34%, rgba(255, 255, 255, 0) 72%);
  filter: blur(24px);
  pointer-events: none;
}

.showroom-copy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(238, 245, 250, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showroom-copy-kicker::before,
.showroom-copy-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
}

.showroom-badge,
.showroom-proof-row,
.showroom-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showroom-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(232, 241, 245, 0.84);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin: 0 auto 18px;
}

.showroom-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(67, 209, 124, 0.12);
}

.showroom-proof-row {
  margin: 22px 0 0;
  justify-content: center;
}

.showroom-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(238, 245, 250, 0.92);
}

.showroom-visual-stack {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 0.88fr);
  gap: 20px;
  width: min(100%, 920px);
  align-items: stretch;
}

.showroom-master-card,
.showroom-story-card,
.showroom-side-card,
.showroom-guide-card {
  position: relative;
  overflow: hidden;
}

.showroom-master-card,
.showroom-side-card,
.showroom-guide-card {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  color: var(--text);
}

.showroom-master-card::before,
.showroom-side-card::before,
.showroom-guide-card::before,
.showroom-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.showroom-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(15, 30, 42, 0.82) 0%, rgba(10, 21, 31, 0.7) 38%, rgba(8, 18, 27, 0.88) 100%);
}

.showroom-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.showroom-stage-ceiling,
.showroom-stage-sidewalls,
.showroom-stage-beams,
.showroom-stage-trails,
.showroom-stage-floor,
.showroom-stage-glow,
.showroom-stage-haze,
.showroom-stage-track {
  position: absolute;
  inset: 0;
}

.showroom-stage-ceiling {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 26%),
    repeating-linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, 0.12) 10.4% 10.9%, transparent 11.3% 33%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0 3px, transparent 3px 52px);
  opacity: 0.42;
  transform: perspective(1200px) rotateX(70deg) translateY(-30%);
  transform-origin: top center;
}

.showroom-stage-sidewalls {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 16%) left / 26% 100% no-repeat,
    linear-gradient(-90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 16%) right / 26% 100% no-repeat;
  opacity: 0.28;
}

.showroom-stage-beams {
  background:
    linear-gradient(90deg, transparent 7%, rgba(255, 255, 255, 0.12) 7.4%, transparent 7.8%, transparent 28%, rgba(255, 255, 255, 0.06) 28.4%, transparent 28.8%, transparent 50%, rgba(255, 255, 255, 0.12) 50.4%, transparent 50.8%, transparent 72%, rgba(255, 255, 255, 0.06) 72.4%, transparent 72.8%, transparent 92%, rgba(255, 255, 255, 0.12) 92.4%, transparent 92.8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 14%, transparent 82%, rgba(255, 255, 255, 0.06));
  opacity: 0.72;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2));
}

.showroom-stage-trails {
  top: 56%;
  bottom: 4%;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 213, 170, 0.34), rgba(255, 213, 170, 0) 30%),
    linear-gradient(95deg, rgba(255, 213, 170, 0) 0%, rgba(255, 213, 170, 0.56) 48%, rgba(255, 213, 170, 0) 88%) 18% 100% / 38% 2px no-repeat,
    linear-gradient(87deg, rgba(255, 213, 170, 0) 0%, rgba(255, 213, 170, 0.42) 48%, rgba(255, 213, 170, 0) 88%) 36% 100% / 42% 2px no-repeat,
    linear-gradient(84deg, rgba(255, 213, 170, 0) 0%, rgba(255, 213, 170, 0.38) 48%, rgba(255, 213, 170, 0) 88%) 52% 100% / 44% 2px no-repeat,
    linear-gradient(96deg, rgba(255, 213, 170, 0) 0%, rgba(255, 213, 170, 0.44) 48%, rgba(255, 213, 170, 0) 88%) 70% 100% / 36% 2px no-repeat;
  opacity: 0.8;
  transform-origin: center bottom;
  transform: perspective(1100px) rotateX(68deg);
  animation: showroomTrailFlow 7.6s linear infinite;
}

.showroom-stage-glow {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 18% 38%, rgba(67, 209, 124, 0.14), rgba(67, 209, 124, 0) 24%),
    radial-gradient(circle at 82% 36%, rgba(119, 215, 255, 0.18), rgba(119, 215, 255, 0) 24%);
  animation: showroomLightSweep 14s ease-in-out infinite alternate;
}

.showroom-stage-haze {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  opacity: 0.56;
  filter: blur(22px);
  animation: showroomHazePulse 10s ease-in-out infinite alternate;
}

.showroom-stage-floor {
  top: 50%;
  bottom: -26%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.008)),
    repeating-linear-gradient(90deg, rgba(255, 214, 163, 0.16) 0 2px, transparent 2px 110px),
    repeating-linear-gradient(180deg, rgba(255, 214, 163, 0.1) 0 2px, transparent 2px 82px);
  transform-origin: center top;
  transform: perspective(1000px) rotateX(76deg);
  opacity: 0.42;
  animation: showroomFloorMove 9s linear infinite;
}

.showroom-stage-track {
  perspective: 1400px;
  isolation: isolate;
}

.showroom-stage-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(141, 223, 255, 0.08), rgba(141, 223, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 22%, rgba(8, 19, 29, 0.14) 78%, rgba(8, 19, 29, 0.34));
  pointer-events: none;
}

.showroom-product-node {
  position: absolute;
  left: 50%;
  top: 56%;
  width: min(30vw, 360px);
  margin: 0;
  opacity: 0;
  transform-origin: center center;
  animation: showroomTraverse 14.4s linear infinite;
  animation-delay: var(--delay, 0s);
  transform-style: preserve-3d;
}

.showroom-product-node.lane-left {
  z-index: 2;
}

.showroom-product-node.lane-right {
  z-index: 3;
}

.showroom-node-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 34px 34px 44px 44px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  isolation: isolate;
  filter: saturate(0.72) contrast(1.06) brightness(0.92);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.showroom-node-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 36, 0.08), rgba(8, 19, 29, 0.28)),
    linear-gradient(135deg, rgba(196, 232, 255, 0.18), rgba(255, 255, 255, 0) 28%),
    linear-gradient(0deg, rgba(255, 217, 168, 0.06), rgba(255, 217, 168, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 26px);
}

.product-roll .showroom-node-media {
  aspect-ratio: 15 / 8.2;
  border-radius: 120px;
  filter: saturate(0.64) contrast(1.08) brightness(0.96);
}

.product-roll .showroom-node-media::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 24%, rgba(8, 19, 29, 0.12) 72%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(10, 24, 36, 0.06), rgba(8, 19, 29, 0.26));
}

.product-roll .showroom-node-media::after {
  left: 22%;
  right: 22%;
}

.product-roll .showroom-node-media {
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.34),
    inset -24px 0 32px rgba(8, 19, 29, 0.24),
    inset 18px 0 26px rgba(255, 255, 255, 0.08);
}

.product-panel .showroom-node-media,
.product-mesh .showroom-node-media,
.product-sheet .showroom-node-media {
  aspect-ratio: 11 / 13;
  border-radius: 26px;
  filter: saturate(0.7) contrast(1.08) brightness(0.9);
}

.product-panel .showroom-node-media {
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.product-mesh .showroom-node-media {
  clip-path: polygon(0 6%, 94% 0, 100% 94%, 6% 100%);
}

.product-sheet .showroom-node-media {
  aspect-ratio: 12 / 9;
  clip-path: polygon(0 12%, 100% 0, 94% 88%, 6% 100%);
}

.product-cage .showroom-node-media {
  aspect-ratio: 11 / 11;
  border-radius: 30px;
  clip-path: polygon(12% 0, 88% 0, 100% 14%, 100% 86%, 88% 100%, 12% 100%, 0 86%, 0 14%);
  filter: saturate(0.66) contrast(1.04) brightness(0.94);
}

.product-grating .showroom-node-media {
  aspect-ratio: 13 / 8;
  border-radius: 24px;
  clip-path: polygon(4% 16%, 100% 0, 96% 84%, 0 100%);
  filter: saturate(0.62) contrast(1.1) brightness(0.9);
}

.showroom-node-media::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -24px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 223, 182, 0.28) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0) 100%);
  filter: blur(18px);
}

.showroom-product-node figcaption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 4px 0;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: rgba(245, 250, 252, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showroom-master-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: rgba(232, 241, 245, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showroom-master-card h2 {
  max-width: 14ch;
  margin: 22px 0 18px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
  color: #f7fbff;
}

.showroom-floating-card {
  background: linear-gradient(180deg, rgba(8, 19, 29, 0.12), rgba(8, 19, 29, 0.34));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 64px rgba(3, 11, 18, 0.18);
  backdrop-filter: blur(24px);
  min-height: 100%;
}

.showroom-master-card p,
.showroom-side-card p,
.showroom-guide-card li {
  color: rgba(232, 241, 245, 0.78);
}

.showroom-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.showroom-stat-row article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-stat-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  color: #f7fbff;
}

.showroom-search-card {
  background: linear-gradient(180deg, rgba(11, 26, 40, 0.14), rgba(11, 26, 40, 0.3));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(3, 11, 18, 0.16);
  backdrop-filter: blur(22px);
  min-height: 100%;
}

.showroom-search-card .search-box {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.showroom-search-card .search-box input::placeholder {
  color: rgba(232, 241, 245, 0.58);
}

.showroom-search-card .tag-row > * {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 245, 250, 0.82);
}

.showroom-search-card .result-panel {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.showroom-copy .eyebrow,
.showroom-copy .hero-statement,
.showroom-copy .hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.showroom-copy h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.showroom-copy .hero-statement {
  max-width: none;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.38;
  font-family: "STKaiti", "KaiTi", "Kaiti SC", "Songti SC", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: normal;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.14em;
}

.showroom-copy .hero-statement span {
  display: block;
  white-space: nowrap;
}

.showroom-copy .hero-lead {
  max-width: 700px;
  font-size: 1.06rem;
}

.showroom-copy .eyebrow {
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.showroom-copy .hero-actions {
  justify-content: center;
  margin-top: 22px;
}

.showroom-master-card h2,
.showroom-master-card p,
.showroom-search-card .search-head {
  max-width: none;
}

.showroom-search-card .search-head,
.showroom-search-card .tag-row {
  text-align: left;
}

.showroom-ribbon-strip {
  padding-top: 18px;
  padding-bottom: 12px;
}

.showroom-ribbon {
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 241, 245, 0.84);
}

.showroom-ribbon span {
  position: relative;
  padding-right: 18px;
}

.showroom-ribbon span::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232, 241, 245, 0.46);
  transform: translateY(-50%);
}

.showroom-ribbon span:last-child::after {
  display: none;
}

.showroom-story-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.showroom-story-cards,
.showroom-story-side {
  display: grid;
  gap: 18px;
}

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

.showroom-story-card {
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
  border: 1px solid rgba(8, 19, 29, 0.08);
  box-shadow: var(--shadow-light);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.showroom-story-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef7f1;
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.showroom-story-card h3 {
  margin-bottom: 12px;
  color: #0f1e2a;
}

.showroom-story-card p {
  color: var(--text-soft);
}

.showroom-story-card:hover,
.showroom-product-grid .product-card:hover,
.showroom-supplier-grid .supplier-card:hover,
.showroom-feed-grid .listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(12, 32, 48, 0.14);
}

.quote-card {
  min-height: 180px;
  display: flex;
  align-items: end;
}

.quote-card p {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.7;
}

.showroom-product-grid,
.showroom-supplier-grid,
.showroom-feed-grid,
.showroom-metric-grid {
  margin-top: 28px;
}

.showroom-product-grid .product-card,
.showroom-supplier-grid .supplier-card,
.showroom-feed-grid .listing-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.showroom-product-grid .product-card::before,
.showroom-supplier-grid .supplier-card::before,
.showroom-feed-grid .listing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67, 209, 124, 0.07), rgba(119, 215, 255, 0.02) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.showroom-platform-layout {
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
}

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

.showroom-metric-grid .metric-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid rgba(8, 19, 29, 0.08);
  box-shadow: var(--shadow-light);
}

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

.showroom-guide-layout {
  align-items: start;
}

.showroom-guide-card {
  background: linear-gradient(180deg, rgba(11, 26, 40, 0.92), rgba(17, 34, 51, 0.88));
}

.hero-industry {
  position: relative;
  overflow: hidden;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 6px 0 22px;
}

.industry-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.industry-hero-video,
.industry-hero-image,
.industry-hero-glow,
.industry-hero-mesh,
.industry-hero-gridlines,
.industry-hero-sweep,
.industry-hero-haze {
  position: absolute;
  inset: 0;
}

.industry-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) contrast(1.02) brightness(0.86);
  transform: scale(1.04);
}

.industry-hero-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 24%, rgba(7, 17, 26, 0.06) 70%, rgba(7, 17, 26, 0.16)),
    url("./assets/hero/anping-industrial-panorama.svg") center 44% / cover no-repeat;
  opacity: 0.2;
  transform: scale(1.02);
  animation: industryHeroDrift 22s ease-in-out infinite alternate;
}

.industry-hero-glow {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 188, 110, 0.26), rgba(255, 188, 110, 0) 18%),
    radial-gradient(circle at 22% 72%, rgba(119, 215, 255, 0.12), rgba(119, 215, 255, 0) 26%),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.1), rgba(11, 21, 31, 0.06) 42%, rgba(8, 18, 27, 0.24) 100%);
  animation: showroomLightSweep 18s ease-in-out infinite alternate;
}

.industry-hero-mesh {
  inset: 10% -6% -4%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
  opacity: 0.18;
  transform: perspective(1400px) rotateX(72deg) translateY(18%) scale(1.14);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54) 24%, rgba(0, 0, 0, 1));
  animation: industryMeshDrift 18s linear infinite;
}

.industry-hero-gridlines {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 88px);
  opacity: 0.12;
  transform: perspective(1200px) rotateX(76deg) translateY(24%);
  transform-origin: center bottom;
}

.industry-hero-sweep {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0) 58%) -30% 0 / 38% 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 36%, rgba(8, 18, 27, 0.14));
  mix-blend-mode: screen;
  opacity: 0.32;
  animation: industrySweepMove 12s ease-in-out infinite;
}

.industry-hero-haze {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08) 22%, rgba(8, 18, 27, 0.04) 58%, rgba(8, 18, 27, 0.16)),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 22%);
  backdrop-filter: blur(3px);
  animation: showroomHazePulse 12s ease-in-out infinite alternate;
}

.industry-hero-grid,
.industry-story-layout {
  position: relative;
  z-index: 1;
}

.industry-hero-grid {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.industry-hero-panel {
  width: min(100%, 860px);
  text-align: center;
  padding: 6px 0 8px;
}

.industry-badge {
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
  color: rgba(15, 30, 42, 0.92);
  backdrop-filter: blur(12px);
}

.industry-kicker {
  margin: 0 auto 10px;
  color: rgba(201, 102, 28, 0.98);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industry-hero-panel .eyebrow {
  margin-bottom: 12px;
  color: rgba(18, 31, 44, 0.82);
  letter-spacing: 0.12em;
}

.industry-hero-panel h1 {
  margin: 0 auto 12px;
  max-width: none;
  color: #081320;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.industry-statement {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.5;
  color: rgba(11, 28, 40, 0.86);
  font-weight: 600;
}

.industry-hero-panel .hero-lead {
  max-width: 760px;
  margin: 0 auto 18px;
  color: rgba(17, 34, 51, 0.72);
  font-size: 1.02rem;
}

.industry-search-shell {
  margin: 0 auto;
  max-width: 760px;
  padding: 18px 20px 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 23, 38, 0.84), rgba(10, 30, 46, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(14, 33, 48, 0.24);
  backdrop-filter: blur(22px);
}

.industry-search-shell .search-head,
.industry-search-shell .tag-row {
  text-align: left;
}

.industry-search-shell .tag-row {
  gap: 10px;
  margin-top: 12px;
}

.industry-search-shell .search-head h2 {
  color: rgba(244, 249, 252, 0.96);
}

.industry-search-shell .search-head p {
  color: rgba(228, 237, 244, 0.72);
}

.industry-search-shell .search-box {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.industry-search-shell .search-box input::placeholder {
  color: rgba(15, 30, 42, 0.54);
}

.industry-quick-tags > * {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(242, 247, 251, 0.92);
}

.industry-quick-tags > *.active,
.industry-quick-tags > *:hover {
  background: rgba(67, 209, 124, 0.16);
  border-color: rgba(67, 209, 124, 0.48);
  color: #dff8ea;
}

.industry-search-shell .result-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 30, 42, 0.08);
}

.industry-trust-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(15, 30, 42, 0.84);
  backdrop-filter: blur(12px);
}

.industry-trust-bar a {
  color: var(--brand-dark);
  font-weight: 700;
}

.industry-trust-bar span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(201, 102, 28, 0.86);
}

.industry-trust-bar span:first-child::before {
  display: none;
}

.industry-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
}

.industry-stat-strip article,
.industry-entry-card,
.industry-story-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 40px rgba(14, 33, 48, 0.08);
  backdrop-filter: blur(18px);
}

.industry-stat-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #081320;
  font-size: 1.62rem;
}

.industry-stat-strip span {
  color: rgba(15, 30, 42, 0.72);
}

.industry-entry-grid,
.industry-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.industry-entry-card h3,
.industry-story-card h3 {
  margin: 10px 0 12px;
  color: #0f1e2a;
}

.industry-entry-card p,
.industry-story-card p {
  color: rgba(15, 30, 42, 0.7);
}

.industry-story-band {
  padding-top: 36px;
}

.industry-story-layout {
  display: grid;
  gap: 26px;
}

.industry-story-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(67, 209, 124, 0.12);
  color: var(--brand-dark);
  font-weight: 800;
}

.industry-data-section,
.industry-global-section {
  position: relative;
}

.industry-subpage-section {
  padding-top: 8px;
}

.industry-subpage-head {
  margin-bottom: 24px;
}

.industry-subpage-head h1 {
  margin-bottom: 10px;
}

.industry-subpage-head p {
  max-width: 760px;
}

.industry-toolbar {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 251, 0.94));
  border: 1px solid rgba(15, 30, 42, 0.08);
  box-shadow: 0 18px 42px rgba(14, 33, 48, 0.08);
}

.subpage-inline-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.subpage-inline-head .eyebrow {
  margin-bottom: 6px;
}

.subpage-inline-head h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.subpage-inline-head p {
  margin: 0;
  max-width: 560px;
  color: var(--text-muted);
  line-height: 1.75;
}

.industry-data-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 251, 0.92)),
    repeating-linear-gradient(90deg, rgba(15, 30, 42, 0.03) 0 1px, transparent 1px 112px);
  border: 1px solid rgba(15, 30, 42, 0.08);
  box-shadow: 0 22px 48px rgba(14, 33, 48, 0.08);
}

.industry-data-card {
  padding: 28px 24px;
  min-height: 168px;
  border-right: 1px solid rgba(15, 30, 42, 0.06);
}

.industry-data-card:last-child {
  border-right: none;
}

.industry-data-card strong {
  display: block;
  margin-bottom: 8px;
  color: #081320;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1;
}

.industry-data-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(15, 30, 42, 0.82);
  font-size: 1.02rem;
  font-weight: 700;
}

.industry-data-card small {
  display: block;
  color: rgba(15, 30, 42, 0.52);
  line-height: 1.7;
}

.industry-focus-layout,
.industry-global-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

.industry-focus-board,
.industry-evidence-card,
.industry-global-card,
.industry-export-board {
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
  border: 1px solid rgba(15, 30, 42, 0.08);
  box-shadow: 0 18px 42px rgba(14, 33, 48, 0.08);
}

.industry-focus-board {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.industry-focus-row {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(249, 251, 252, 0.86);
  border: 1px solid rgba(15, 30, 42, 0.06);
}

.industry-focus-row h3,
.industry-global-card h3,
.industry-export-board h3 {
  margin-bottom: 12px;
  color: #0f1e2a;
}

.industry-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.industry-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(201, 102, 28, 0.08);
  border: 1px solid rgba(201, 102, 28, 0.16);
  color: rgba(15, 30, 42, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
}

.industry-focus-row p,
.industry-global-card p,
.industry-export-board p,
.industry-evidence-card p,
.industry-evidence-list {
  color: rgba(15, 30, 42, 0.68);
}

.industry-evidence-panel {
  display: grid;
  gap: 18px;
}

.industry-evidence-card {
  padding: 24px;
}

.industry-evidence-card h3 {
  margin-bottom: 12px;
  color: #0f1e2a;
}

.industry-evidence-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

.industry-global-section {
  background:
    radial-gradient(circle at top right, rgba(255, 196, 122, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%);
}

.industry-data-band-global .industry-data-card strong {
  font-size: clamp(1.74rem, 2.4vw, 2.72rem);
}

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

.industry-global-card {
  padding: 22px;
}

.industry-export-board {
  padding: 24px;
  background: linear-gradient(180deg, rgba(11, 26, 40, 0.96), rgba(17, 34, 51, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
}

.industry-export-board h3,
.industry-export-board p {
  color: rgba(240, 246, 250, 0.9);
}

.industry-export-bar {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.industry-export-bar span {
  color: rgba(240, 246, 250, 0.82);
  font-weight: 600;
}

.industry-export-bar div {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.industry-export-bar i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d86d3d 0%, #f3a46f 100%);
}

@keyframes showroomTraverse {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate(var(--x0), var(--y0))
      scale(var(--s0))
      rotateZ(var(--r0, 0deg))
      rotateY(-8deg);
    filter: blur(8px);
  }
  8% {
    opacity: 0.18;
  }
  18% {
    opacity: 0.84;
    filter: blur(0);
  }
  56% {
    opacity: 0.98;
    transform:
      translate(-50%, -50%)
      translate(var(--x1), var(--y1))
      scale(var(--s1))
      rotateZ(var(--r1, 0deg))
      rotateY(0deg);
    filter: blur(0);
  }
  82% {
    opacity: 0.88;
  }
  100% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate(var(--x2), var(--y2))
      scale(var(--s2))
      rotateZ(var(--r2, 0deg))
      rotateY(6deg);
    filter: blur(4px);
  }
}

@keyframes showroomFloorMove {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 0, 0 220px;
  }
}

@keyframes showroomTrailFlow {
  from {
    transform: perspective(1100px) rotateX(68deg) translateY(0);
    opacity: 0.66;
  }
  50% {
    opacity: 0.92;
  }
  to {
    transform: perspective(1100px) rotateX(68deg) translateY(42px);
    opacity: 0.72;
  }
}

@keyframes showroomLightSweep {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.82;
  }
  100% {
    transform: translate3d(10px, -12px, 0);
    opacity: 1;
  }
}

@keyframes showroomHazePulse {
  0% {
    opacity: 0.44;
    transform: scale(1);
  }
  100% {
    opacity: 0.68;
    transform: scale(1.06);
  }
}

@keyframes industryHeroDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-12px, -8px, 0);
  }
}

@keyframes industryMeshDrift {
  0% {
    transform: perspective(1400px) rotateX(72deg) translateY(18%) scale(1.14) translateX(0);
    opacity: 0.2;
  }
  50% {
    opacity: 0.28;
  }
  100% {
    transform: perspective(1400px) rotateX(72deg) translateY(21%) scale(1.16) translateX(-18px);
    opacity: 0.24;
  }
}

@keyframes industrySweepMove {
  0% {
    background-position: -34% 0, 0 0;
    opacity: 0.18;
  }
  24% {
    opacity: 0.42;
  }
  52% {
    background-position: 48% 0, 0 0;
    opacity: 0.3;
  }
  100% {
    background-position: 126% 0, 0 0;
    opacity: 0.16;
  }
}

.hero-grid,
.guide-layout,
.footer-layout,
.detail-grid,
.form-layout {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.guide-layout,
.footer-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

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

.form-layout {
  grid-template-columns: minmax(0, 780px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
.section-head h2,
.site-footer h2 {
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.hero-lead,
.page-lead,
.section-head p,
.timeline-item p,
.faq-list p,
.scene-card p,
.supplier-card p,
.listing-card p,
.footer-card p,
.site-footer p,
.muted {
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 60ch;
  font-size: 1.05rem;
}

.page-hero {
  padding-bottom: 42px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.page-hero-inner.narrow {
  grid-template-columns: 1fr;
}

.page-lead {
  max-width: 68ch;
}

.auth-shell {
  padding-top: 48px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.auth-panel {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  border: 1px solid rgba(8, 19, 29, 0.08);
  box-shadow: 0 24px 56px rgba(7, 24, 38, 0.08);
  color: var(--text-dark);
}

.auth-panel-hero {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(119, 215, 255, 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(67, 209, 124, 0.2), transparent 36%),
    linear-gradient(180deg, #0a1824 0%, #102232 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.auth-panel-hero h1,
.auth-panel-hero .page-lead,
.auth-panel-hero p,
.auth-panel-hero strong {
  color: inherit;
}

.auth-card-head {
  margin-bottom: 22px;
}

.auth-card-head h2 {
  margin-bottom: 8px;
}

.auth-card-head p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.auth-form {
  gap: 20px;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  background: linear-gradient(180deg, #f4faff 0%, #eaf5ff 100%);
  border-color: rgba(69, 136, 209, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
  color: #7b92a8;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  border-color: rgba(67, 139, 227, 0.58);
  box-shadow: 0 0 0 4px rgba(119, 215, 255, 0.18);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.auth-tip {
  margin: 0;
}

.inline-link {
  display: inline;
  margin-top: 0;
}

.auth-feature-list,
.auth-question-list {
  display: grid;
  gap: 14px;
}

.auth-feature-list {
  margin-top: 28px;
}

.auth-feature-list article,
.auth-security-panel,
.auth-security-block {
  padding: 18px 20px;
  border-radius: 22px;
}

.auth-feature-list article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-feature-list article p {
  margin: 8px 0 0;
  color: rgba(232, 241, 245, 0.78);
}

.auth-security-block,
.auth-security-panel {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef5f8 100%);
  border: 1px solid rgba(8, 19, 29, 0.08);
}

.auth-security-block h3,
.auth-security-panel h3 {
  margin-bottom: 14px;
}

.auth-question-list {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--text-soft);
}

.auth-question-list li {
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.search-panel,
.hero-card,
.info-card,
.scene-card,
.supplier-card,
.footer-card,
.listing-card,
.hero-side-card,
.admin-card,
.inquiry-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-dark);
}

.search-panel,
.hero-card {
  background: var(--bg-panel);
}

.search-panel,
.hero-card,
.info-card {
  padding: 24px;
}

.search-box,
.search-field input,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.code-editor {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
}

body.admin-body .search-field input,
body.admin-body .inquiry-form input,
body.admin-body .inquiry-form select,
body.admin-body .inquiry-form textarea,
body.admin-body .code-editor {
  background: #fff;
  color: var(--text-dark);
  border-color: rgba(8, 19, 29, 0.12);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
}

.search-box input {
  flex: 1;
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
}

.search-field label,
.inquiry-form label span {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.tag-row,
.filter-bar,
.inline-tags,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-panel,
.listing-grid,
.timeline,
.faq-list,
.admin-list {
  display: grid;
  gap: 16px;
}

.result-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-grid,
.card-grid,
.scene-grid,
.supplier-grid,
.listing-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.metric-card,
.product-card,
.scene-card,
.supplier-card,
.listing-card,
.hero-side-card,
.faq-list details,
.admin-card,
.inquiry-form {
  padding: 24px;
}

.metric-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.section {
  color: var(--text-dark);
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2,
.site-footer h2,
.listing-card h3,
.product-card h3,
.scene-card h3,
.supplier-card h3,
.hero-side-card h3,
.admin-card h2 {
  color: #0f1e2a;
}

.section-head h2,
.site-footer h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-card,
.scene-card,
.supplier-card,
.listing-card,
.hero-side-card,
.faq-list details,
.admin-card,
.inquiry-form {
  background: var(--surface);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-light);
  color: var(--text-dark);
}

.pill,
.badge,
.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill {
  background: #e7f8ee;
  color: #155a34;
}

.badge,
.mini-pill {
  background: #edf6ff;
  color: #115286;
}

.mini-pill {
  background: #eef4f7;
  color: #394d5c;
}

.trust-strip {
  padding-top: 0;
  color: var(--text);
}

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

.trust-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-title {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  background: var(--surface);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e7f8ee;
  color: var(--brand-dark);
  font-weight: 800;
}

.faq-list details summary {
  cursor: pointer;
  font-weight: 700;
}

.toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

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

.search-field input,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  min-height: 52px;
  padding: 0 16px;
  outline: none;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  background: linear-gradient(180deg, #f4faff 0%, #eaf5ff 100%);
  border: 1px solid rgba(69, 136, 209, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 0 0 1px rgba(193, 225, 255, 0.42);
}

.inquiry-form textarea,
.code-editor {
  min-height: 220px;
  padding: 16px;
  resize: vertical;
}

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

.inquiry-form {
  display: grid;
  gap: 18px;
}

.inquiry-form.compact {
  box-shadow: none;
  border: 0;
  padding: 0;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: #607383;
}

.form-status.success {
  color: var(--brand-dark);
}

.form-status.error {
  color: #c03b3b;
}

.listing-head,
.admin-toolbar,
.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.meta-stack {
  margin-top: 18px;
}

.hero-side-card p,
.detail-list,
.admin-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.detail-list,
.feature-list,
.supplier-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.site-footer {
  padding: 40px 0 56px;
  background: var(--bg);
}

.footer-card {
  background: rgba(255, 255, 255, 0.05);
}

.admin-layout {
  display: grid;
  gap: 20px;
}

.code-editor {
  width: 100%;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92rem;
}

.post-card h3 {
  margin: 10px 0 10px;
}

.post-meta-line,
.post-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.post-meta-line {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.post-actions-row {
  margin-top: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-pending {
  background: #fff4d6;
  color: #8d6200;
}

.status-published {
  background: #e7f8ee;
  color: #155a34;
}

.status-rejected,
.status-offline {
  background: #fde7e7;
  color: #9c2f2f;
}

.detail-grid-single {
  grid-template-columns: 1fr;
}

.detail-grid-feature {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
}

.rich-copy {
  margin-top: 22px;
  color: var(--text-dark);
  line-height: 1.9;
}

.post-card-media {
  display: block;
  margin: -12px -12px 16px;
  overflow: hidden;
  border-radius: 20px 20px 14px 14px;
  aspect-ratio: 16 / 9;
  background: rgba(148, 163, 184, 0.14);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}

.post-image-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.post-image-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.upload-preview-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.upload-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.preview-link {
  min-height: 24px;
}

.preview-link p {
  margin: 0;
}

.empty-card {
  margin-top: 12px;
}

.admin-review-card {
  display: grid;
  gap: 18px;
}

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

.detail-side-column,
.dashboard-side,
.stack-list {
  display: grid;
  gap: 18px;
}

.compact-card h3 {
  margin-bottom: 8px;
}

.compact-copy {
  margin-top: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.message-center-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.message-column {
  display: grid;
  gap: 20px;
}

.message-center-count {
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    padding: 24px;
  }
}

.message-center-count strong {
  font-size: 2.4rem;
  color: var(--text-dark);
  line-height: 1;
}

.message-unread {
  border-color: rgba(67, 209, 124, 0.34);
  box-shadow: 0 16px 36px rgba(67, 209, 124, 0.12);
}

.message-unread h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--brand);
  vertical-align: middle;
}

.inline-tags strong {
  margin-left: 4px;
}

.workspace-section {
  padding-top: 20px;
}

.workspace-shell {
  display: grid;
  gap: 24px;
}

.workspace-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.workspace-intro {
  padding: 12px 0 0;
}

.workspace-intro h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.workspace-intro p {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
  line-height: 1.8;
}

.workspace-summary-card,
.workspace-card {
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  border: 1px solid rgba(15, 30, 42, 0.08);
  box-shadow: 0 18px 42px rgba(14, 33, 48, 0.08);
}

.workspace-summary-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.workspace-summary-label {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-summary-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.workspace-summary-top h3,
.workspace-card-head h2 {
  margin-bottom: 8px;
}

.workspace-summary-meta {
  display: grid;
  gap: 8px;
}

.workspace-summary-meta p {
  margin: 0;
  color: var(--text-muted);
}

.workspace-card {
  display: grid;
  gap: 18px;
}

.workspace-card-spacious {
  gap: 20px;
}

.workspace-card-head {
  margin-bottom: 0;
}

.workspace-card-head .eyebrow {
  margin-bottom: 6px;
}

.workspace-card-head p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.workspace-main-column,
.dashboard-side-refined,
.publish-side-column,
.message-column-refined {
  display: grid;
  gap: 20px;
  align-content: start;
}

.dashboard-grid-refined {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 24px;
}

.dashboard-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.dashboard-company-card-compact {
  grid-column: 1 / -1;
}

.dashboard-profile-card {
  background:
    radial-gradient(circle at top right, rgba(67, 209, 124, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 252, 0.99));
}

.workspace-form {
  gap: 20px;
}

.workspace-card .inquiry-form input,
.workspace-card .inquiry-form select,
.workspace-card .inquiry-form textarea,
.publish-form-card input,
.publish-form-card select,
.publish-form-card textarea {
  background: linear-gradient(180deg, #f9fcff 0%, #f2f7fb 100%);
  border: 1px solid rgba(15, 30, 42, 0.12);
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.workspace-card .inquiry-form input:focus,
.workspace-card .inquiry-form select:focus,
.workspace-card .inquiry-form textarea:focus,
.publish-form-card input:focus,
.publish-form-card select:focus,
.publish-form-card textarea:focus {
  border-color: rgba(67, 209, 124, 0.45);
  box-shadow: 0 0 0 4px rgba(67, 209, 124, 0.12);
}

.workspace-checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

.workspace-checklist li + li {
  margin-top: 8px;
}

.publish-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.52fr);
  gap: 24px;
  align-items: start;
}

.publish-form-card {
  display: grid;
  gap: 20px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.workspace-card-form {
  gap: 18px;
}

.publish-submit-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 4px 0;
  flex-wrap: wrap;
}

.publish-submit-bar .form-status {
  flex: 1 1 240px;
}

.message-workspace {
  gap: 26px;
}

.message-summary-card {
  background:
    radial-gradient(circle at top right, rgba(119, 215, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 252, 0.99));
}

.message-center-layout-refined {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.message-column-refined .workspace-card,
.dashboard-side-refined .workspace-card {
  min-width: 0;
}

.workspace-card .listing-card,
.workspace-card .compact-card {
  border-radius: 22px;
  box-shadow: none;
}

.workspace-collapse {
  border-top: 1px solid rgba(15, 30, 42, 0.08);
  padding-top: 14px;
}

.workspace-collapse summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-dark);
  list-style: none;
}

.workspace-collapse summary::-webkit-details-marker {
  display: none;
}

.workspace-collapse summary::after {
  content: "展开";
  margin-left: 10px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.workspace-collapse[open] summary::after {
  content: "收起";
}

.workspace-collapse .workspace-form {
  margin-top: 16px;
}

.pagination-bar {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pagination-summary {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

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

.pagination-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.compact-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .industry-data-band,
  .industry-global-modules,
  .industry-focus-layout,
  .industry-global-layout,
  .industry-stat-strip,
  .industry-entry-grid,
  .industry-story-points,
  .showroom-hero-grid,
  .showroom-story-layout,
  .showroom-platform-layout,
  .showroom-story-cards,
  .hero-portal-grid,
  .cluster-overview-layout,
  .live-layout,
  .portal-entry-grid,
  .sourcing-cheat-grid,
  .hero-grid,
  .guide-layout,
  .footer-layout,
  .card-grid,
  .scene-grid,
  .supplier-grid,
  .listing-grid,
  .detail-grid,
  .trust-grid,
  .dashboard-grid,
  .message-center-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-header,
  .publish-layout,
  .dashboard-grid-refined,
  .message-center-layout-refined,
  .dashboard-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(67, 209, 124, 0.12), transparent 28%),
      linear-gradient(180deg, #08131d 0%, #0a1622 28%, var(--surface-soft) 28%, var(--surface-soft) 100%);
  }

  .site-header {
    position: static;
  }

  .nav-shell,
  .main-nav,
  .hero-actions,
  .industry-data-band,
  .industry-global-modules,
  .industry-focus-layout,
  .industry-global-layout,
  .industry-stat-strip,
  .industry-entry-grid,
  .industry-story-points,
  .industry-story-layout,
  .showroom-hero-grid,
  .showroom-story-layout,
  .showroom-platform-layout,
  .showroom-story-cards,
  .hero-portal-grid,
  .cluster-overview-layout,
  .live-layout,
  .portal-entry-grid,
  .sourcing-cheat-grid,
  .hero-grid,
  .guide-layout,
  .footer-layout,
  .card-grid,
  .scene-grid,
  .supplier-grid,
  .listing-grid,
  .detail-grid,
  .trust-grid,
  .dashboard-grid,
  .message-center-layout,
  .form-grid,
  .workspace-header,
  .publish-layout,
  .dashboard-grid-refined,
  .message-center-layout-refined,
  .dashboard-support-grid {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .main-nav,
  .lang-switch {
    width: 100%;
  }

  .account-cluster {
    flex-wrap: wrap;
  }

  .workspace-summary-top,
  .publish-submit-bar,
  .listing-head {
    flex-direction: column;
    align-items: stretch;
  }

  .workspace-summary-card,
  .workspace-card {
    padding: 22px;
  }

  .portal-topline,
  .portal-proof-row,
  .showroom-proof-row,
  .showroom-ribbon {
    width: 100%;
  }

  .portal-card-head,
  .cluster-bar-top,
  .showroom-master-topline {
    flex-direction: column;
  }

  .industry-hero-panel {
    width: 100%;
    padding-top: 0;
  }

  .industry-data-card,
  .industry-global-card,
  .industry-export-board,
  .industry-evidence-card,
  .industry-focus-row {
    padding: 18px;
  }

  .industry-search-shell {
    padding: 18px 16px 14px;
  }

  .industry-trust-bar {
    width: 100%;
    border-radius: 28px;
  }

  .industry-hero-panel h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    white-space: nowrap;
  }

  .industry-statement,
  .industry-hero-panel .hero-lead {
    max-width: 100%;
  }

  .industry-data-band {
    border-radius: 24px;
  }

  .industry-data-card {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(15, 30, 42, 0.06);
  }

  .industry-data-card:last-child {
    border-bottom: none;
  }

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

  .hero-showroom {
    min-height: auto;
  }

  .showroom-visual-stack {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .showroom-copy {
    max-width: 100%;
  }

  .showroom-hero-backdrop::after {
    background:
      linear-gradient(180deg, rgba(5, 15, 22, 0.38), rgba(5, 15, 22, 0.72)),
      linear-gradient(90deg, rgba(5, 15, 22, 0.56), rgba(5, 15, 22, 0.28));
  }

  .showroom-product-node {
    width: min(58vw, 320px);
  }

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

  .detail-grid {
    display: grid;
  }
}

@media (max-width: 560px) {
  .button,
  .search-box,
  .lang-button {
    width: 100%;
  }

  .site-header .button,
  .site-header .lang-button {
    width: auto;
  }

  .showroom-copy h1 {
    white-space: normal;
  }

  .industry-trust-bar,
  .industry-search-shell .tag-row {
    justify-content: center;
  }

  .subpage-inline-head {
    align-items: flex-start;
    text-align: left;
  }

  .industry-keywords {
    justify-content: center;
  }

  .industry-stat-strip article,
  .industry-entry-card,
  .industry-story-card,
  .industry-data-card,
  .industry-global-card,
  .industry-evidence-card,
  .industry-focus-row {
    padding: 18px;
  }

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

  .portal-entry-card,
  .sourcing-cheat-card,
  .cluster-bar-card,
  .showroom-master-card,
  .showroom-story-card,
  .showroom-side-card,
  .showroom-guide-card,
  .metric-card,
  .product-card,
  .scene-card,
  .supplier-card,
  .listing-card,
  .hero-side-card,
  .faq-list details,
  .admin-card,
  .inquiry-form {
    padding: 20px;
  }

  .hero,
  .section {
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-hero-video,
  .industry-hero-image,
  .industry-hero-glow,
  .industry-hero-mesh,
  .industry-hero-sweep,
  .showroom-stage-trails,
  .showroom-stage-glow,
  .showroom-stage-haze,
  .showroom-stage-floor,
  .showroom-product-node,
  .portal-stat-panel.is-visible,
  .portal-note-card.is-visible,
  .portal-route-card.is-visible,
  .portal-search-card.is-visible {
    animation: none !important;
  }

  .showroom-product-node {
    opacity: 1;
    transform: translate(-50%, -50%) translate(var(--x1), var(--y1)) scale(var(--s1));
  }

  .industry-hero-image {
    transform: scale(1.04);
    opacity: 1;
  }

  .industry-hero-video {
    display: none;
  }
}
