:root {
  --bg: #f4f4f2;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --ink: #171717;
  --muted: #666860;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --accent: #27292c;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1440px;
  --ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --thumb-ratio: 4 / 3;
  --font-ui: "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
  --font-display: "Bahnschrift SemiCondensed", "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  background-color: #ecece8;
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.96), transparent 26%),
    linear-gradient(180deg, #f8f8f6 0%, #ecece8 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px;
  mask-image: linear-gradient(180deg, black 60%, transparent 100%);
}

body[data-page="catalog"]::before {
  display: none;
}

body[data-page="catalog"] .section-panel.panel::after {
  display: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: 12px;
  background: #111;
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.site-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 14px 28px;
  min-height: 100vh;
}

.app-shell {
  display: grid;
  gap: 18px;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.inquiry-section {
  overflow: visible;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 34%);
}

.page-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 10px;
  backdrop-filter: blur(14px);
}

.brand-lockup {
  min-width: 0;
  filter: drop-shadow(0 2px 14px rgba(255, 255, 255, 0.18));
}

.brand-kicker,
.eyebrow,
.chip-label,
.mini-note {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.brand-cn,
.hero-title,
.section-title,
.metric-value,
.detail-code,
.chart-zoom-value,
.chart-title {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.brand-cn {
  font-size: 26px;
  line-height: 0.92;
  color: rgba(16, 17, 18, 0.96);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58),
    0 0 18px rgba(255, 255, 255, 0.22);
}

.brand-en {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(28, 29, 31, 0.68);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.brand-kicker {
  color: rgba(28, 29, 31, 0.62);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mobile-nav-toggle,
.desktop-nav a,
.desktop-nav button,
.top-actions a,
.top-actions button,
.search-open {
  min-height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.mobile-nav-toggle {
  width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  flex-shrink: 0;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--ease);
}

.mobile-nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.desktop-nav,
.top-actions {
  display: none;
}

.desktop-nav a,
.desktop-nav button,
.top-actions a,
.top-actions button,
.search-open {
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  appearance: none;
  color: inherit;
  font: inherit;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.desktop-nav a:hover,
.desktop-nav button:hover,
.top-actions a:hover,
.top-actions button:hover,
.search-open:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.desktop-nav a.is-active,
.top-actions a.is-active {
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  border-color: #111214;
}

#inquiry-badge.is-bumping {
  animation: inquiryBadgeBump 0.42s ease;
}

@keyframes inquiryBadgeBump {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.18);
  }
  70% {
    transform: scale(0.94);
  }
}

.mobile-nav {
  position: sticky;
  top: 70px;
  z-index: 38;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.mobile-nav a,
.mobile-nav button {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  color: var(--ink);
  white-space: nowrap;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.mobile-nav button {
  border: 0;
  appearance: none;
  color: inherit;
  text-align: left;
}

.mobile-tabbar {
  display: none;
}

.mobile-tabbar-item {
  position: relative;
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(24, 25, 27, 0.72);
  text-decoration: none;
}

.mobile-tabbar-button {
  border: 0;
  background: transparent;
  font: inherit;
}

.mobile-tabbar-icon {
  position: relative;
  width: 19px;
  height: 19px;
  color: currentColor;
}

.mobile-tabbar-icon::before,
.mobile-tabbar-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.mobile-tabbar-icon-home::before {
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 10px;
  border: 1.8px solid currentColor;
  border-top: 0;
  border-radius: 2px;
}

.mobile-tabbar-icon-home::after {
  left: 50%;
  top: 2px;
  width: 11px;
  height: 11px;
  border-left: 1.8px solid currentColor;
  border-top: 1.8px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-tabbar-icon-catalog::before {
  inset: 2px;
  border: 1.8px solid currentColor;
  border-radius: 4px;
  box-shadow:
    inset 0 6px 0 -5px currentColor,
    inset 6px 0 0 -5px currentColor;
}

.mobile-tabbar-icon-inquiry::before {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 4px;
  border: 1.8px solid currentColor;
  border-radius: 6px;
}

.mobile-tabbar-icon-inquiry::after {
  left: 6px;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.mobile-tabbar-label {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.mobile-tabbar-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111214;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.site-footer {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(28, 30, 33, 0.98), rgba(14, 15, 17, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  color: #f2f2ef;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background-clip: padding-box;
}

.site-footer .eyebrow,
.site-footer .mini-note,
.site-footer .footer-copy p,
.site-footer .section-text {
  color: rgba(235, 235, 230, 0.7);
}

.footer-shell,
.footer-bottom,
.footer-brand,
.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-shell {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.footer-brand strong,
.footer-contact strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background-clip: padding-box;
  font-size: 12px;
}

.site-footer .footer-meta span {
  color: var(--ink);
}

.footer-links a,
.footer-links button {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: #f5f5f1;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background-clip: padding-box;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.footer-links a:hover,
.footer-links button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact {
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background-clip: padding-box;
}

.footer-contact .secondary-button,
.footer-contact .ghost-button {
  color: var(--ink);
}

.footer-contact .secondary-button:hover,
.footer-contact .ghost-button:hover {
  color: var(--ink);
}

.footer-contact .primary-button,
.footer-contact .secondary-button,
.footer-contact .ghost-button,
.footer-contact .primary-button:hover,
.footer-contact .secondary-button:hover,
.footer-contact .ghost-button:hover,
.footer-contact .primary-button:focus,
.footer-contact .secondary-button:focus,
.footer-contact .ghost-button:focus,
.footer-contact .primary-button:focus-visible,
.footer-contact .secondary-button:focus-visible,
.footer-contact .ghost-button:focus-visible,
.footer-contact .primary-button:active,
.footer-contact .secondary-button:active,
.footer-contact .ghost-button:active {
  border: 0 !important;
  outline: none !important;
  color: #17181b !important;
  background: #ffffff !important;
  box-shadow: none !important;
  background-image: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.footer-contact .button-row .primary-button,
.footer-contact .button-row .secondary-button,
.footer-contact .button-row .ghost-button {
  justify-content: center;
  border-radius: 999px;
}

.footer-contact .button-row > * {
  flex: 1 1 calc(50% - 4px);
}

.footer-bottom {
  align-items: start;
}

.footer-footnote {
  margin: 0;
}

.footer-copy p,
.section-text,
.hero-text,
.product-summary,
.detail-copy,
.drawer-note,
.empty-copy {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 14px;
}

.hero-text {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.75;
}

.detail-head .section-text,
.detail-copy,
.detail-specs td {
  font-size: 16px;
}

.footer-meta,
.button-row,
.stat-strip,
.hot-tags,
.product-tags,
.export-actions,
.selected-filters,
.toolbar-actions,
.spec-chip-row,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-meta span,
.selected-filters span,
.product-tags span,
.mini-badge,
.hot-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
  font-size: 12px;
}

.page-hero,
.section-panel {
  padding: 16px;
}

.purchase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #555a60;
}

.purchase-meta span {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(245, 245, 242, 0.86);
  box-shadow: inset 0 0 0 1px var(--line);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.section-head-row > div:first-child {
  display: grid;
  gap: 8px;
}

.section-more-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #685763;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(108, 88, 88, 0.1);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.section-more-link:hover {
  color: #2f2630;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.catalog-heading {
  gap: 8px;
  margin-bottom: 12px;
}

.catalog-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.catalog-pagination-meta {
  margin-top: 12px;
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: clamp(24px, 8vw, 44px);
  line-height: 0.92;
}

.catalog-page-title {
  color: #111214;
}

.catalog-page-copy {
  color: #4e5258;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.catalog-page-copy-clear {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #3f4d5b;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.catalog-page-copy-clear:hover {
  color: #111214;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.hero-grid,
.catalog-layout,
.detail-layout,
.inquiry-layout {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-title {
  margin: 0;
  max-width: none;
  font-size: clamp(34px, 6.6vw, 76px);
  line-height: 0.96;
  word-break: break-word;
}

.hero-copy {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.metric-value,
.chart-zoom-value {
  font-size: 42px;
  line-height: 0.9;
}

.stat-pill {
  min-width: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.stat-pill strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-search,
.search-field,
.toolbar,
.summary-card,
.chart-card,
.detail-card,
.inquiry-card {
  display: grid;
  gap: 12px;
}

.hero-search,
.toolbar,
.summary-card,
.chart-card,
.detail-card,
.inquiry-card {
  padding: 16px;
  min-width: 0;
}

.hero-search,
.toolbar,
.summary-card,
.chart-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.search-field span {
  font-size: 12px;
  color: var(--muted);
}

.hero-search-field {
  position: relative;
}

.search-field input,
.search-field textarea,
.inline-fields input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.quick-file-field input[type="file"] {
  padding: 10px 12px;
}

.quick-file-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.quick-file-list {
  display: grid;
  gap: 8px;
  margin-top: -2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.quick-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quick-file-item strong,
.quick-file-item span {
  min-width: 0;
}

.quick-file-item strong {
  font-size: 13px;
  font-weight: 600;
  word-break: break-all;
}

.quick-file-item span {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.hero-search-field input {
  padding-right: 96px;
}

.hero-search-field input::-webkit-search-decoration,
.hero-search-field input::-webkit-search-cancel-button,
.hero-search-field input::-webkit-search-results-button,
.hero-search-field input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.hero-search-clear,
.hero-search-submit {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
}

.hero-search-clear {
  right: 48px;
  width: 28px;
  height: 28px;
  background: rgba(17, 18, 20, 0.08);
  color: rgba(17, 18, 20, 0.78);
  font-size: 18px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.08);
}

.hero-search-clear:hover {
  background: rgba(17, 18, 20, 0.14);
  transform: translateY(-50%);
}

.hero-search-submit {
  right: 10px;
  width: 34px;
  height: 34px;
  background: linear-gradient(180deg, #35373b, #141518);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 12px rgba(0, 0, 0, 0.08);
}

.hero-search-submit:hover {
  transform: translateY(-50%);
  background: linear-gradient(180deg, #45484d, #1d1f23);
}

.hero-search-submit-icon {
  position: relative;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.hero-search-submit-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

.fly-thumb {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  transition:
    left 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    top 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fly-chip {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  min-height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.16);
  transition:
    left 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    top 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.selected-filters {
  margin-top: 14px;
  margin-bottom: 18px;
}

.pagination-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pagination-button {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

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

.pagination-button.active {
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow: inset 0 0 0 1px #111214;
}

.pagination-button[disabled] {
  opacity: 0.42;
  pointer-events: none;
}

button,
button[type="button"],
button[type="submit"],
a.primary-button,
a.secondary-button,
a.ghost-button,
a.drawer-toggle,
a.sku-button,
a.tab-button,
a.catalog-view-toggle {
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
}

button:focus,
button:focus-visible {
  outline: none;
}

.primary-button,
.secondary-button,
.ghost-button,
.drawer-toggle,
.sku-button,
.tab-button,
.catalog-view-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
  -webkit-tap-highlight-color: transparent;
}

.primary-button {
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow: inset 0 0 0 1px #111214;
}

button[data-add-inquiry-slug] {
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow: inset 0 0 0 1px #111214;
}

button[data-add-inquiry-slug]:hover,
button[data-add-inquiry-slug]:focus,
button[data-add-inquiry-slug]:focus-visible,
button[data-add-inquiry-slug]:active {
  outline: none;
  border: 0;
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow: inset 0 0 0 1px #111214;
}

.secondary-button,
.ghost-button,
.drawer-toggle,
.sku-button,
.tab-button,
.catalog-view-toggle {
  background: rgba(255, 255, 255, 0.92);
}

.primary-button:focus,
.primary-button:focus-visible,
.primary-button:active {
  outline: none;
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow: inset 0 0 0 1px #111214;
}

.secondary-button:focus,
.secondary-button:focus-visible,
.secondary-button:active,
.ghost-button:focus,
.ghost-button:focus-visible,
.ghost-button:active,
.drawer-toggle:focus,
.drawer-toggle:focus-visible,
.drawer-toggle:active,
.sku-button:focus,
.sku-button:focus-visible,
.sku-button:active,
.tab-button:focus,
.tab-button:focus-visible,
.tab-button:active,
.catalog-view-toggle:focus,
.catalog-view-toggle:focus-visible,
.catalog-view-toggle:active {
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.drawer-toggle:hover,
.sku-button:hover,
.tab-button:hover,
.catalog-view-toggle:hover,
.product-card:hover,
.icon-card:hover,
.rail-card:hover,
.color-card:hover {
  transform: translateY(-2px);
}

.sku-button.active,
.tab-button.active {
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  border-color: #111214;
}

.preview-sample,
.detail-hero-object,
.showcase-object {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #e9e9e5;
  background-clip: padding-box;
}

.preview-sample::after,
.detail-hero-object::after,
.showcase-object::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero-stage {
  position: relative;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  min-height: 340px;
  padding: 0;
  display: flex;
  background: transparent;
}

.showcase-object,
.detail-hero-object {
  min-height: 320px;
}

.preview-sample {
  display: block;
  width: 100%;
  aspect-ratio: var(--thumb-ratio);
}

.product-card > .preview-sample,
.list-row > .preview-sample {
  border-radius: 0;
  background: transparent;
}

.product-card > .preview-sample::after,
.list-row > .preview-sample::after {
  display: none;
}

.home-latest-card {
  display: grid;
  align-content: start;
}

.home-latest-body {
  gap: 6px;
}

.home-latest-link {
  display: block;
  color: inherit;
}

.home-latest-card .product-title,
.home-latest-card .product-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-latest-card .product-title {
  margin: 0;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.home-latest-card .product-summary {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.showcase-data {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px 22px 18px;
  display: grid;
  gap: 10px;
  color: #fffaf3;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0) 0%, rgba(17, 18, 20, 0.24) 24%, rgba(17, 18, 20, 0.72) 100%);
}

.hero-stage .showcase-object {
  flex: 1 1 auto;
  min-height: 100%;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0;
  letter-spacing: 0.14em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 250, 243, 0.92);
}

.showcase-data strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.94;
}

.showcase-summary {
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 250, 243, 0.88);
}

.hero-showcase-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-showcase-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-showcase-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 720ms ease, transform 720ms ease;
  pointer-events: none;
}

.hero-showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0.02) 0%, rgba(17, 18, 20, 0.14) 100%);
  pointer-events: none;
}

.hero-showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.showcase-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.34);
  box-shadow: none;
  transition: transform var(--ease), background var(--ease), width var(--ease);
}

.showcase-dot.is-active {
  width: 26px;
  background: #fff8ed;
}

.showcase-count {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 250, 243, 0.78);
}

.showcase-nav {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.showcase-arrow {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  color: #fffaf3;
  background: rgba(17, 18, 20, 0.22);
  box-shadow:
    0 10px 24px rgba(17, 18, 20, 0.18),
    inset 0 0 0 1px rgba(255, 248, 237, 0.12);
}

.showcase-arrow:hover {
  transform: translateY(-1px);
  background: rgba(17, 18, 20, 0.42);
}

.media-img,
.preview-sample img,
.detail-hero-object img,
.showcase-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero-showcase-media {
  width: 100%;
  height: 100%;
}

.icon-grid,
.catalog-grid,
.list-grid,
.seo-grid,
.related-grid,
.color-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

#category-grid:not([data-rendered]),
#featured-grid:not([data-rendered]),
#catalog-grid:not([data-rendered]),
#catalog-list:not([data-rendered]),
#related-products:not([data-rendered]) {
  position: relative;
  min-height: 320px;
}

#category-grid:not([data-rendered])::before,
#featured-grid:not([data-rendered])::before,
#catalog-grid:not([data-rendered])::before,
#catalog-list:not([data-rendered])::before,
#related-products:not([data-rendered])::before {
  content: "";
  display: block;
  min-height: 100%;
  grid-column: 1 / -1;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(238, 239, 235, 0.95), rgba(255, 255, 255, 0.75));
  box-shadow: inset 0 0 0 1px var(--line);
}

.icon-grid {
  align-items: start;
}

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

.icon-card,
.product-card,
.seo-card,
.color-card,
.rail-card,
.detail-card,
.summary-card,
.inquiry-item,
.list-row {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  min-width: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.product-card,
.summary-card,
.inquiry-item,
.list-row {
  border: 1px solid var(--line);
  box-shadow: none;
}

.icon-card {
  min-height: auto;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(52px, 64px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  align-self: start;
}

.category-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(214, 216, 211, 0.9));
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.category-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon-badge {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding-top: 4px;
  font-family: "Teko", sans-serif;
  font-size: 32px;
}

.category-copy {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
}

.category-copy strong {
  display: block;
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.category-copy .section-text {
  margin: 0;
}

.product-title,
.rail-title,
.color-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.05;
}

.card-body,
.list-content,
.detail-content,
.detail-meta {
  padding: 14px;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.rail-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.rail-card {
  min-height: 328px;
  padding: 0;
  display: grid;
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(180deg, #272a2f 0%, #15181b 100%);
  box-shadow:
    0 24px 48px rgba(18, 21, 25, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.rail-card .media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 320ms var(--ease), filter 320ms var(--ease);
}

.rail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 12, 15, 0.02) 0%, rgba(10, 12, 15, 0.16) 100%);
  pointer-events: none;
}

.rail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.08) 0%, rgba(10, 12, 15, 0.14) 46%, rgba(10, 12, 15, 0.62) 100%);
}

.rail-card-body {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 14px;
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  padding: 16px 18px 18px;
  border-radius: 18px;
  color: #070a0d;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.18) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
  box-shadow:
    0 14px 30px rgba(11, 14, 18, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  transform: translateY(0);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease), background-color 280ms var(--ease);
}

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

.rail-card-kicker,
.rail-card-date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rail-card-kicker {
  max-width: 60%;
  padding: 5px 9px 4px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 20, 25, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rail-card-date {
  color: rgba(22, 27, 32, 0.88);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.rail-card:hover .media-img,
.rail-card:focus-within .media-img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

.rail-card:hover .rail-card-body,
.rail-card:focus-within .rail-card-body {
  transform: translateY(-5px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.32) 100%);
  border-color: rgba(255,255,255,0.32);
  box-shadow:
    0 24px 42px rgba(11, 14, 18, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.68) inset;
}

.rail-card .rail-title {
  margin: 0;
  width: 100%;
  font-size: clamp(21px, 1.5vw, 27px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.rail-card .home-latest-link {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: #181b1f;
}

.rail-card .home-latest-link:hover {
  color: #46586d;
}

.rail-card-body.is-empty {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(244, 237, 225, 0.96) 100%);
}

@media (max-width: 575px) {
  .rail-card {
    min-height: 300px;
  }

  .rail-card-body {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    padding: 14px 15px 16px;
  }

  .rail-card .rail-title {
    font-size: 20px;
  }

  .rail-card-head {
    gap: 8px;
  }

  .rail-card .home-latest-link {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

body[data-page="news"],
body[data-page="news-server"],
body[data-page="news-detail"],
body[data-page="news-detail-server"] {
  background:
    radial-gradient(circle at top left, rgba(236, 218, 224, 0.48), transparent 28%),
    radial-gradient(circle at top right, rgba(226, 229, 241, 0.56), transparent 30%),
    linear-gradient(180deg, #f8f2ee 0%, #fbf7f4 52%, #f7f0eb 100%);
}

body[data-page="news"] .news-page-kicker,
body[data-page="news-server"] .news-page-kicker,
body[data-page="news-detail"] .news-page-kicker,
body[data-page="news-detail-server"] .news-page-kicker,
body[data-page="news"] .news-kicker,
body[data-page="news-server"] .news-kicker,
body[data-page="news-detail"] .news-kicker,
body[data-page="news-detail-server"] .news-kicker,
body[data-page="news"] .news-date,
body[data-page="news-server"] .news-date,
body[data-page="news-detail"] .news-date,
body[data-page="news-detail-server"] .news-date,
body[data-page="news"] .news-hot-index,
body[data-page="news-server"] .news-hot-index,
body[data-page="news-detail"] .news-hot-index,
body[data-page="news-detail-server"] .news-hot-index {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

body[data-page="news"] .news-page-title,
body[data-page="news-server"] .news-page-title,
body[data-page="news-detail"] .news-detail-title,
body[data-page="news-detail-server"] .news-detail-title,
body[data-page="news"] .news-feature-title,
body[data-page="news-server"] .news-feature-title,
body[data-page="news"] .news-card-title,
body[data-page="news-server"] .news-card-title,
body[data-page="news-detail"] .news-hot-title,
body[data-page="news-detail-server"] .news-hot-title,
body[data-page="news-detail"] .news-feedback-title,
body[data-page="news-detail-server"] .news-feedback-title,
body[data-page="news-detail"] .news-article-section h2,
body[data-page="news-detail-server"] .news-article-section h2,
body[data-page="news-detail"] .news-article-intro-quote,
body[data-page="news-detail-server"] .news-article-intro-quote {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

#news-featured {
  min-height: 0;
}

#news-category-tabs {
  min-height: 40px;
}

#news-grid {
  min-height: 860px;
}

#news-pagination {
  min-height: 40px;
}

#news-detail-hero {
  min-height: 360px;
}

#news-detail-body {
  min-height: 760px;
}

#news-detail-aside {
  min-height: 420px;
}

#news-related-list {
  min-height: 420px;
}

.news-page-shell,
.news-detail-shell {
  display: grid;
  gap: 24px;
}

.news-stage,
.news-feature-shell,
.news-list-shell,
.news-detail-card {
  position: relative;
  border-radius: 30px;
  background: rgba(255, 250, 246, 0.9);
  box-shadow:
    0 24px 60px rgba(62, 43, 52, 0.08),
    inset 0 0 0 1px rgba(91, 71, 69, 0.08);
  backdrop-filter: blur(14px);
}

.news-stage,
.news-feature-shell,
.news-list-shell {
  padding: 24px;
}

.news-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.news-stage-copy,
.news-stat,
.news-feature-body,
.news-card-body,
.news-detail-copy,
.news-article-card,
.news-side-card {
  min-width: 0;
}

.news-page-kicker {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b7480;
}

.news-page-title,
.news-detail-title {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #251d25;
}

.news-page-copy,
.news-shell-caption,
.news-feature-copy,
.news-card-copy,
.news-detail-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #625762;
}

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

.news-stat {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 238, 235, 0.82));
  box-shadow: inset 0 0 0 1px rgba(120, 96, 98, 0.08);
}

.news-stat span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b7480;
}

.news-stat strong {
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1;
  color: #2e232b;
}

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

.news-shell-head--split {
  align-items: start;
}

.news-shell-head .section-title {
  margin: 4px 0 0;
  font-family: "Noto Serif SC", serif;
  color: #261c25;
}

.news-category-tabs,
.news-pagination-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-category-tabs {
  margin-bottom: 18px;
}

.news-category-tabs .tab-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(108, 88, 88, 0.1);
  color: #534650;
  text-decoration: none;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.news-category-tabs .tab-button:hover,
.news-category-tabs .tab-button.active {
  background: #2f2630;
  color: #fff5fb;
  transform: translateY(-1px);
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.news-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
  min-height: 0 !important;
  max-height: none !important;
}

.news-card > .news-card-media {
  flex: 0 0 148px !important;
  width: 148px !important;
  max-width: 148px !important;
  aspect-ratio: 4 / 3 !important;
}

.news-card > .news-card-body {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  align-self: flex-start !important;
}

.news-feature-media-wrap {
  display: flex;
  align-items: start;
}

.news-feature-media,
.news-card-media {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(235, 229, 226, 0.9);
  box-shadow: inset 0 0 0 1px rgba(82, 63, 61, 0.08);
}

.news-feature-media {
  width: 100%;
  max-width: 292px;
  aspect-ratio: 4 / 3;
}

.news-card-media {
  width: 148px;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.news-feature-media .media-img,
.news-card-media .media-img,
.news-detail-media .media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.news-feature-card:hover .media-img,
.news-card:hover .media-img,
.news-detail-media:hover .media-img {
  transform: scale(1.03);
}

.news-feature-body,
.news-card-body,
.news-detail-copy,
.news-article-card,
.news-side-card {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.news-feature-body,
.news-card-body > * + * {
  margin-top: 10px !important;
}

.news-card-body > .news-meta-row,
.news-card-body > .news-card-meta-row {
  margin-bottom: 6px !important;
}

.news-card-body > .news-title-row {
  margin-bottom: 8px !important;
}

.news-card-body > .news-card-copy {
  margin-top: 0 !important;
}

.news-feature-body {
  padding-top: 4px;
  align-content: start;
  align-self: start;
}

.news-meta-row,
.news-card-meta-row,
.news-feature-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.news-title-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto !important;
  align-items: start !important;
  justify-content: stretch !important;
  justify-items: stretch !important;
  gap: 6px 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.news-title-row .news-headline-link {
  display: block !important;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.news-title-row .news-headline-link .news-card-title,
.news-card-title {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.news-title-row .news-date {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: start !important;
  justify-self: start !important;
  width: auto !important;
  max-width: 100% !important;
}

.news-title-row--feature .news-date {
  margin-top: 4px;
}

.news-card-copy {
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.news-kicker,
.news-date,
.news-reading,
.news-card-index {
  display: inline-flex !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 26px !important;
  height: 26px !important;
  line-height: 1 !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  background: #fbf4ef !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #856673 !important;
}

.news-title-row .news-date {
  flex-shrink: 0 !important;
  align-self: flex-start !important;
  margin-top: 2px !important;
  display: inline-flex !important;
  white-space: nowrap !important;
}

.news-kicker {
  color: #8b5764 !important;
  background: #f8ecef !important;
}

.news-card-index {
  min-width: 42px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-weight: 800;
  color: #2f2630;
}

.news-editor-pick {
  margin: 2px 0 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c0808f;
}

.news-headline-link {
  color: inherit;
  text-decoration: none;
}

.news-feature-title,
.news-card-title,
.news-article-section h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  color: #241b24;
}

.news-feature-title {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.news-card-title {
  font-size: 22px;
  line-height: 1.3;
}

.news-title-row .news-card-title,
.news-title-row .news-feature-title {
  margin-top: 1px;
}

.news-card-link,
.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #7b5463;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.news-card-link::after,
.news-back-link::after {
  content: "→";
  font-size: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start !important;
  align-content: start !important;
  justify-items: stretch !important;
}

@media (min-width: 1024px) {
  .news-card {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .news-card > .news-card-media {
    flex: 0 0 148px !important;
    width: 148px !important;
    max-width: 148px !important;
    aspect-ratio: 4 / 3 !important;
    align-self: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }

  .news-card > .news-card-body {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 148px - 16px) !important;
    min-width: 0 !important;
    align-self: flex-start !important;
    justify-self: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .news-title-row {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto !important;
    align-items: start !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
    gap: 0 12px !important;
    min-height: 0 !important;
  }

  .news-title-row .news-headline-link {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .news-title-row .news-date {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: start !important;
    justify-self: end !important;
    margin-top: 2px !important;
  }
}

.news-card {
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 252, 249, 0.84);
  box-shadow:
    0 18px 36px rgba(97, 75, 82, 0.05),
    inset 0 0 0 1px rgba(113, 89, 92, 0.08);
}

.news-tags {
  gap: 8px;
}

.news-tags span,
.news-inline-tags span {
  background: rgba(255, 255, 255, 0.84);
}

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(116, 92, 102, 0.1);
  color: #4d424b;
  text-decoration: none;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.page-chip.is-active {
  background: #2f2630;
  color: #fff;
}

.page-chip.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.news-empty {
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 252, 249, 0.82);
  text-align: center;
}

.news-detail-shell {
  margin-top: 4px;
}

.news-detail-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 348px;
  gap: 32px;
  padding: 22px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 20px;
  align-items: start;
}

#news-detail-body,
#news-detail-aside {
  display: grid;
  gap: 18px;
  align-content: start;
  align-self: start;
}

.news-detail-copy {
  gap: 14px;
  padding-right: 16px;
}

.news-detail-media {
  display: block;
  width: 100%;
  max-width: 348px;
  justify-self: end;
  align-self: start;
  margin: 0;
  line-height: 0;
}

.news-detail-media .media-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(235, 229, 226, 0.9);
  box-shadow: inset 0 0 0 1px rgba(82, 63, 61, 0.08);
}

.news-detail-figure-caption {
  font-size: 13px;
  line-height: 1.7;
  color: #85717b;
}

.news-detail-lead {
  font-size: 16px;
}

.news-inline-tags {
  gap: 8px;
}

.news-article-card,
.news-side-card {
  padding: 20px;
}

.news-article-intro-quote {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(241, 220, 225, 0.44), rgba(242, 238, 247, 0.52));
  color: #4d4048;
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  line-height: 1.7;
}

.news-bullet-list {
  display: grid;
  gap: 10px;
}

.news-bullet-item,
.news-side-meta {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(251, 245, 242, 0.92);
  box-shadow: inset 0 0 0 1px rgba(116, 92, 102, 0.08);
}

.news-bullet-item {
  color: #5a4d56;
  font-size: 15px;
  line-height: 1.76;
}

.news-article-section {
  display: grid;
  gap: 10px;
}

.news-article-section h2 {
  font-size: 30px;
  line-height: 1.2;
}

.news-article-section p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #4b4048;
}

.news-side-list {
  display: grid;
  gap: 10px;
}

.news-side-meta {
  display: grid;
  gap: 5px;
}

.news-side-meta span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #947781;
}

.news-side-meta strong {
  color: #2e232b;
}

.news-side-actions {
  margin-top: 6px;
}

.news-list-shell--related .news-shell-head {
  display: grid;
  justify-items: start;
  justify-content: start;
  align-items: start;
  gap: 6px;
}

.news-list-shell--related .news-shell-head .section-title,
.news-list-shell--related .news-shell-head .news-page-kicker,
.news-list-shell--related .news-shell-head .news-shell-caption {
  text-align: left;
}

.news-comments-card {
  padding: 20px;
}

.news-feedback-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.news-feedback-title {
  margin: 4px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1.22;
  color: #241b24;
}

.news-reaction-bar,
.news-vote-panel,
.news-share-panel,
.news-comment-inline,
.news-comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.news-reaction-bar {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(117, 90, 96, 0.12);
}

.news-wechat-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0dce1, #f7eef2);
  box-shadow:
    inset 0 0 0 1px rgba(162, 112, 128, 0.14),
    0 10px 20px rgba(133, 98, 109, 0.08);
  color: #5d4350;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.news-wechat-share:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ead1d9, #f8f0f4);
  box-shadow:
    inset 0 0 0 1px rgba(162, 112, 128, 0.18),
    0 12px 24px rgba(133, 98, 109, 0.1);
}

.news-vote-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 247, 243, 0.92);
  box-shadow: inset 0 0 0 1px rgba(117, 90, 96, 0.12);
  color: #503f48;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.news-vote-button:hover,
.news-vote-button.is-active {
  transform: translateY(-1px);
  background: rgba(241, 223, 228, 0.78);
  box-shadow: inset 0 0 0 1px rgba(168, 110, 128, 0.24);
}

.news-vote-button strong {
  font-size: 16px;
  color: #2b2028;
}

.news-comment-form {
  display: grid;
  gap: 14px;
}

.news-comment-inline {
  align-items: stretch;
}

.news-comment-inline .search-field {
  flex: 1 1 220px;
}

.news-captcha-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(245, 226, 230, 0.72), rgba(239, 239, 248, 0.82));
  box-shadow: inset 0 0 0 1px rgba(117, 90, 96, 0.1);
  color: #8a6570;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.news-comment-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #655862;
  font-size: 14px;
}

.news-comment-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.news-comment-count {
  color: #8d7480;
  font-size: 13px;
}

.news-comment-item {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 252, 249, 0.84);
  box-shadow: inset 0 0 0 1px rgba(113, 89, 92, 0.08);
}

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

.news-comment-head strong {
  color: #2c2129;
}

.news-comment-head span,
.news-comment-item p {
  color: #6b5b65;
}

.news-comment-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.news-empty--comments {
  text-align: left;
}

.news-hot-card {
  display: grid;
  gap: 8px;
  align-content: start;
  align-self: start;
  height: fit-content;
}

.news-hot-title {
  display: block;
  margin: 0 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 26px;
  line-height: 1.2;
  color: #241b24;
}

.news-hot-list {
  display: grid;
  gap: 10px;
}

.news-hot-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  color: #564852;
  text-decoration: none;
  border-bottom: 1px solid rgba(117, 90, 96, 0.1);
  transition: color 180ms ease, transform 180ms ease;
}

.news-hot-link:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-hot-link:hover {
  color: #2c2129;
  transform: translateX(2px);
}

.news-hot-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(117, 90, 96, 0.08);
  box-shadow: inset 0 0 0 1px rgba(117, 90, 96, 0.08);
  font-size: 12px;
  color: #7b6570;
}

.news-hot-text {
  display: block;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .news-stage,
  .news-feature-card,
  .news-detail-hero-card,
  .news-detail-layout,
  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .news-card {
    display: block !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
  }

  .news-card > .news-card-media {
    position: static !important;
    float: left !important;
    top: auto !important;
    right: auto !important;
    width: 120px !important;
    max-width: 120px !important;
    flex: 0 0 auto !important;
    aspect-ratio: 4 / 3 !important;
    margin: 2px 14px 10px 0 !important;
    z-index: 1;
  }

  .news-card > .news-card-body {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    align-self: stretch !important;
  }

  .news-card::after,
  .news-card > .news-card-body::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  .news-card .news-title-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
    gap: 6px 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .news-card .news-title-row .news-headline-link {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100% !important;
    min-width: 0 !important;
  }

  .news-card .news-title-row .news-date {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: start !important;
    justify-self: start !important;
  }

  .news-card .news-date {
    min-height: 26px !important;
    height: 26px !important;
    padding: 0 9px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    align-self: start !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .news-card-copy {
    display: block;
    margin-top: 0 !important;
    max-width: none !important;
  }

  .news-feature-media {
    max-width: 240px;
  }

  .news-detail-media {
    max-width: 292px;
    justify-self: start;
  }

  .news-detail-copy {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  body[data-page="news"],
  body[data-page="news-server"] {
    overflow-x: hidden;
  }

  .section-head-row {
    align-items: center;
  }

  .section-more-link {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  #news-featured {
    min-height: 420px;
  }

  #news-grid {
    min-height: 640px;
  }

  #news-detail-hero {
    min-height: 440px;
  }

  #news-detail-body {
    min-height: 520px;
  }

  #news-detail-aside,
  #news-related-list {
    min-height: 280px;
  }

  .news-stage,
  .news-feature-shell,
  .news-list-shell,
  .news-detail-hero-card,
  .news-article-card,
  .news-side-card {
    padding: 16px;
  }

  .news-stage,
  .news-stat-grid {
    grid-template-columns: 1fr;
  }

  .news-page-title,
  .news-detail-title {
    font-size: 30px;
    line-height: 1.24;
  }

  .news-feature-title {
    font-size: 24px;
  }

  body[data-page="news"] .news-feature-shell .news-page-kicker,
  body[data-page="news-server"] .news-feature-shell .news-page-kicker,
  body[data-page="news"] .news-feature-shell .section-title,
  body[data-page="news-server"] .news-feature-shell .section-title {
    white-space: nowrap;
  }

  body[data-page="news"] .news-shell-head,
  body[data-page="news-server"] .news-shell-head {
    gap: 10px;
  }

  body[data-page="news"] .news-shell-head .news-page-kicker,
  body[data-page="news-server"] .news-shell-head .news-page-kicker {
    letter-spacing: 0.16em;
  }

  body[data-page="news"] .news-feature-card,
  body[data-page="news-server"] .news-feature-card {
    gap: 14px;
  }

  body[data-page="news"] .news-feature-media-wrap,
  body[data-page="news-server"] .news-feature-media-wrap,
  body[data-page="news"] .news-feature-media,
  body[data-page="news-server"] .news-feature-media {
    width: 100%;
    max-width: none;
  }

  .news-card {
    position: relative;
    display: block !important;
    padding: 12px;
    min-height: 108px;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .news-card > .news-card-media {
    position: static !important;
    float: right !important;
    top: auto !important;
    right: auto !important;
    width: 96px !important;
    max-width: 96px !important;
    flex: 0 0 auto !important;
    aspect-ratio: 4 / 3 !important;
    margin: 2px 0 6px 12px !important;
    z-index: 1;
  }

  .news-card > .news-card-body {
    display: block;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    align-self: stretch !important;
  }

  .news-card > .news-card-body::after,
  .news-card::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  .news-card .news-title-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
    gap: 6px 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .news-card .news-title-row .news-headline-link {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100% !important;
    min-width: 0 !important;
  }

  .news-card .news-title-row .news-date {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: start !important;
    justify-self: start !important;
  }

  .news-card .news-date {
    min-height: 26px !important;
    height: 26px !important;
    padding: 0 9px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    align-self: start !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .news-card-copy {
    display: block;
    margin-top: 0;
    max-width: none !important;
  }

  body[data-page="news"] .news-page-shell,
  body[data-page="news-server"] .news-page-shell,
  body[data-page="news"] .news-list-shell,
  body[data-page="news-server"] .news-list-shell,
  body[data-page="news"] .news-shell-head,
  body[data-page="news-server"] .news-shell-head,
  body[data-page="news"] .news-category-tabs,
  body[data-page="news-server"] .news-category-tabs {
    min-width: 0;
    max-width: 100%;
  }

  body[data-page="news"] .news-list-shell,
  body[data-page="news-server"] .news-list-shell {
    overflow-x: hidden;
  }

  .news-category-tabs {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 0 0 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  .news-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-category-tabs .tab-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .news-detail-media {
    width: min(100%, 320px);
    max-width: 320px;
    justify-self: center;
    margin: 0 auto;
    overflow: hidden;
  }

  body[data-page="news-detail"] .news-detail-card,
  body[data-page="news-detail-server"] .news-detail-card,
  body[data-page="news-detail"] .news-list-shell,
  body[data-page="news-detail-server"] .news-list-shell {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .news-feedback-title {
    font-size: 24px;
  }

  #news-detail-body,
  #news-detail-aside {
    gap: 14px;
  }

  .news-comment-inline,
  .news-comment-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .news-captcha-box {
    width: 100%;
    min-width: 0;
  }

  .news-hot-title {
    font-size: 22px;
  }

  .news-title-row {
    flex-wrap: wrap;
  }

  .news-date {
    margin-left: 0;
  }

  .news-card-media {
    width: 120px;
  }

  .news-card-title {
    font-size: 18px;
  }

  .news-page-copy,
  .news-shell-caption,
  .news-feature-copy,
  .news-card-copy,
  .news-detail-lead,
  .news-article-section p,
  .news-bullet-item {
    font-size: 14px;
    line-height: 1.76;
  }

  .news-article-intro-quote {
    font-size: 16px;
    line-height: 1.72;
  }

  .news-article-section h2 {
    font-size: 24px;
  }
}

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

.seo-card {
  padding: 16px;
}

.toolbar {
  align-content: start;
}

.catalog-layout > .toolbar {
  position: static;
  top: auto;
}

.catalog-layout > .toolbar.is-collapsed {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.filter-panel {
  display: grid;
  gap: 14px;
}

.filter-panel > .section-head {
  margin-bottom: 6px;
}

.filter-panel > .search-field {
  margin-top: -2px;
  margin-bottom: 2px;
}

#catalog-filter-groups {
  display: grid;
  gap: 16px;
}

.filter-block {
  display: grid;
  gap: 10px;
}

.filter-block .chip-label {
  margin-bottom: 0;
}

.filter-accordion {
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
  overflow: hidden;
}

.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

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

.filter-summary .chip-label {
  margin: 0;
  color: #111214;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

@media (min-width: 960px) {
  .hide-on-desktop { display: none !important; }
}

@media (max-width: 959px) {
  .hide-on-mobile { display: none !important; }
}

body:not(.__seo_debug__) .seo-only-block,
body .seo-only-block {
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(100%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  z-index: -9999999 !important;
  transform: translate(-99999px, -99999px) scale(0) !important;
  flex: 0 0 auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  contain: strict !important;
  display: block !important;
}

.filter-summary-indicator {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid rgba(17, 18, 20, 0.72);
  border-bottom: 1.8px solid rgba(17, 18, 20, 0.72);
  transform: rotate(45deg);
  transition: transform var(--ease);
}

.filter-accordion[open] .filter-summary-indicator {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.filter-accordion .filter-group {
  padding: 0 16px 16px;
}

.filter-chip {
  position: relative;
}

.filter-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-chip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  line-height: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.filter-chip input:checked + span {
  background: linear-gradient(180deg, #232427, #111214);
  color: #fff;
  box-shadow: inset 0 0 0 1px #111214;
}

.drawer-toggle {
  width: 100%;
}

#catalog-close-filters {
  display: none;
}

.catalog-inquiry-link {
  display: inline-flex;
}

.list-row {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}

.item-head,
.summary-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.item-head {
  margin-bottom: 12px;
}

.detail-gallery {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.detail-specs {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 243, 0.98));
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px var(--line);
  overflow: hidden;
}

.detail-specs td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  vertical-align: top;
  font-size: 16px;
  color: #111214;
}

.detail-specs td:first-child {
  width: 122px;
  padding-right: 8px;
  color: #5b6168;
  font-weight: 700;
}

.detail-spec-tabs-row td {
  padding: 14px;
  border-bottom: 0;
}

.detail-spec-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-spec-tabs button {
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(245, 245, 242, 0.9);
  box-shadow: inset 0 0 0 1px var(--line);
  color: #4e5358;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.detail-spec-tabs button.active {
  background: #111214;
  color: #fff;
  box-shadow: none;
}

.detail-specs .detail-spec-group td {
  padding: 14px 16px 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6a5b42;
  text-transform: uppercase;
  background: rgba(159, 132, 82, 0.08);
  border-bottom-color: rgba(157, 128, 76, 0.24);
}

.detail-specs tr:last-child td {
  border-bottom: 0;
}

.detail-specs tr:not(.detail-spec-tabs-row):not(.detail-spec-group) td:last-child {
  padding-left: 4px;
  color: #1b1d21;
  line-height: 1.75;
}

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

.detail-procurement-grid article {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.detail-procurement-grid span {
  font-size: 12px;
  color: #74777a;
}

.detail-procurement-grid strong {
  font-size: 15px;
  line-height: 1.45;
}

.detail-code {
  font-size: 40px;
  line-height: 0.95;
  color: #111214;
}

.detail-actions {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.thumb-row,
.tab-row {
  display: grid;
  gap: 8px;
}

.thumb-photo-button {
  flex: 0 0 84px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.thumb-photo-button[data-media="video"] {
  min-height: 84px;
}

.thumb-photo-button[data-media="video"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.08), rgba(10, 12, 16, 0.22));
  pointer-events: none;
}

.thumb-photo-button.active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.thumb-photo-button[data-media="video"] .detail-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 8px 18px rgba(11, 15, 24, 0.2);
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 1;
}

.thumb-photo-button[data-media="video"] .detail-video-play::before {
  content: "";
  display: block;
  margin-left: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(255, 255, 255, 0.92);
}

.thumb-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.sku-button,
.tab-button {
  border-radius: 14px;
  text-align: left;
}

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

.thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.thumb-strip::-webkit-scrollbar {
  height: 6px;
}

.thumb-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.16);
}

.detail-richtext {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #F4F3F2;
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.detail-richtext p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
}

.detail-richtext ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-size: 15px;
  line-height: 1.8;
}

.detail-utility-actions {
  margin-top: 10px;
}

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

.detail-card {
  align-self: start;
  padding: 0;
  gap: 14px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.detail-content {
  padding: 0;
  gap: 14px;
}

.detail-spec-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.detail-spec-card .detail-meta {
  padding: 0;
}

.detail-content > .detail-specs {
  margin: 0;
}

.detail-contact-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(245, 245, 242, 0.72);
  background-clip: padding-box;
}

.detail-contact-item {
  display: grid;
  gap: 6px;
}

.detail-contact-item span {
  font-size: 15px;
  color: #111214;
}

.detail-contact-item strong {
  font-size: 20px;
  line-height: 1.4;
  color: #111214;
  word-break: break-word;
}

.detail-qr-placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 237, 233, 0.94));
  box-shadow: inset 0 0 0 1px var(--line);
  color: #111214;
  font-size: 15px;
  font-weight: 600;
}

.detail-video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(12, 13, 15, 0.92), rgba(54, 57, 62, 0.85)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 42%);
  color: #fff;
}

.detail-video-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.detail-video-copy {
  position: relative;
  z-index: 1;
  width: min(82%, 520px);
  display: grid;
  gap: 14px;
  text-align: center;
}

.detail-video-copy strong {
  font-size: clamp(28px, 6vw, 52px);
  line-height: 0.95;
}

.detail-video-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.detail-video-play {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  position: relative;
}

.detail-video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  transform: translate(-35%, -50%);
}

.detail-video-badge {
  display: inline-flex;
  justify-self: center;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.detail-faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "-";
}

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

.faq-answer p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.85;
}

body[data-page="detail"] .detail-faq .faq-answer {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

body[data-page="detail"] .detail-faq .faq-answer > * {
  width: 100%;
}

body[data-page="detail"] .detail-faq .faq-answer p {
  margin: 0;
}

.inquiry-item {
  padding: 10px;
  display: grid;
  gap: 8px;
}

#inquiry-items {
  grid-template-columns: 1fr;
  align-content: start;
}

.inquiry-item-compact {
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.inquiry-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(245, 245, 242, 0.92);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.inquiry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inquiry-item-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.inquiry-item-main .item-head {
  margin-bottom: 0;
}

.inquiry-item-main strong {
  display: block;
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.inquiry-item-title-link {
  color: inherit;
  text-decoration: none;
}

.inquiry-item-title-link:hover {
  text-decoration: underline;
}

.inquiry-item-main .product-summary {
  display: -webkit-box;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

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

.inquiry-inline-controls {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.inquiry-select-wrap,
.inquiry-qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inquiry-select-wrap > span,
.inquiry-qty-wrap > span {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
}

.inquiry-variant-trigger {
  min-width: 132px;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 14px;
  display: inline-grid;
  justify-items: start;
  gap: 3px;
  background: rgba(245, 245, 242, 0.96);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink);
  text-align: left;
}

.inquiry-variant-trigger strong {
  font-size: 12px;
  line-height: 1.2;
}

.inquiry-variant-trigger span:last-child {
  font-size: 11px;
  line-height: 1;
  color: var(--muted);
}

.inquiry-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inquiry-step-btn {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 242, 0.96);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.inquiry-stepper strong {
  min-width: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  color: var(--ink);
}

.inquiry-unit-text {
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink);
}

.inquiry-note-field {
  gap: 4px;
}

.inquiry-note-field input {
  min-height: 36px;
  padding-block: 8px;
  font-size: 13px;
}

.inquiry-remove-button {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.06);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.08);
  color: #111214;
}

.inquiry-remove-button:hover {
  background: rgba(17, 18, 20, 0.12);
}

body.dialog-open {
  overflow: hidden;
}

.inquiry-variant-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.inquiry-variant-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 20, 0.4);
}

.inquiry-variant-dialog__card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(76vh, 720px);
  overflow: auto;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(17, 18, 20, 0.18);
  display: grid;
  gap: 18px;
}

.inquiry-variant-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.inquiry-variant-dialog__head h2 {
  margin: 6px 0 0;
  font-size: 24px;
}

.inquiry-variant-dialog__head .section-text {
  margin-top: 8px;
}

.inquiry-variant-options {
  display: grid;
  gap: 10px;
}

.inquiry-variant-option {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 18px;
  display: grid;
  justify-items: start;
  gap: 6px;
  background: rgba(245, 245, 242, 0.96);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.08);
  color: var(--ink);
  text-align: left;
}

.inquiry-variant-option:hover,
.inquiry-variant-option.is-active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.18);
}

.inquiry-variant-option__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.inquiry-variant-option__meta {
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.trash-icon {
  position: relative;
  width: 12px;
  height: 13px;
  border: 1.8px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.trash-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.trash-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  box-shadow:
    -3px 6px 0 -0.6px currentColor,
    0 6px 0 -0.6px currentColor,
    3px 6px 0 -0.6px currentColor;
}

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

.summary-card strong {
  font-family: "Teko", sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

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

.summary-metric {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.summary-metric .detail-copy {
  font-size: 12px;
  line-height: 1.3;
}

.summary-metric strong {
  width: 100%;
  text-align: center;
}

#submit-inquiry-request {
  width: 100%;
}

.inquiry-success-shell {
  overflow: visible;
}

#success-content[data-quick-only="1"].inquiry-success-shell {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  background-clip: border-box;
}

#success-content[data-quick-only="1"] .inquiry-success-hero {
  padding: 20px 18px 22px;
  border-radius: 24px;
}

.inquiry-success-hero {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 15, 18, 0.96), rgba(48, 51, 56, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.inquiry-success-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.inquiry-success-eyebrow,
.inquiry-success-copy,
.inquiry-success-hero .section-title {
  position: relative;
  z-index: 1;
}

.inquiry-success-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.inquiry-success-metrics,
.inquiry-success-layout,
.inquiry-success-contact {
  display: grid;
  gap: 12px;
}

.inquiry-success-metrics {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inquiry-success-metric,
.inquiry-success-panel,
.inquiry-success-item,
.inquiry-success-field,
.inquiry-success-note,
.inquiry-success-text {
  background-clip: padding-box;
}

.inquiry-success-metric {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.inquiry-success-metric span {
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.inquiry-success-metric strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  line-height: 0.95;
}

.inquiry-success-layout {
  margin-top: 16px;
}

.inquiry-success-main,
.inquiry-success-side,
.inquiry-success-items {
  display: grid;
  gap: 14px;
}

.inquiry-success-side {
  gap: 12px;
}

.inquiry-success-panel {
  padding: 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 244, 240, 0.96));
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 18px 34px rgba(0, 0, 0, 0.05);
}

.inquiry-success-side .inquiry-success-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}

.inquiry-success-side .eyebrow {
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.inquiry-success-head {
  margin-bottom: 0;
}

.inquiry-success-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(248, 248, 245, 0.94);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.inquiry-success-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(237, 238, 234, 0.92);
  box-shadow: inset 0 0 0 1px var(--line);
}

.inquiry-success-item-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.inquiry-success-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.inquiry-success-item-head strong {
  font-size: 18px;
  line-height: 1.1;
}

.inquiry-success-qty {
  flex: 0 0 auto;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.08);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 20, 0.08);
  font-size: 12px;
  color: #111214;
}

.inquiry-success-tags {
  gap: 6px;
}

.inquiry-success-item-note {
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  font-size: 13px;
  line-height: 1.55;
  color: #3e434a;
}

.inquiry-success-field,
.inquiry-success-note,
.inquiry-success-text {
  padding: 12px;
  border-radius: 16px;
  background: rgba(247, 247, 244, 0.94);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.inquiry-success-field {
  display: grid;
  gap: 4px;
}

.inquiry-success-field span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.inquiry-success-field strong {
  font-size: 17px;
  line-height: 1.35;
  color: #111214;
  word-break: break-word;
}

.inquiry-success-note,
.inquiry-success-text {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.65;
  color: #2c3137;
}

.inquiry-success-text {
  max-height: 236px;
  overflow: auto;
}

.inquiry-success-actions {
  gap: 8px;
  margin-top: 10px;
}

.inquiry-success-actions > * {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 14px;
}

.inquiry-success-actions button.secondary-button,
#success-empty button.secondary-button {
  border: 0;
  appearance: none;
  font: inherit;
  color: inherit;
}

.chart-stage-wrap {
  overflow: auto;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(243, 243, 241, 0.96)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, 0.03) 1px, transparent 1px);
  background-size: auto, 20px 20px, 20px 20px;
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.chart-stage {
  min-width: 960px;
  padding: 16px;
  transform-origin: top left;
  transition: transform var(--ease);
}

.toolbar.panel,
.panel.section-panel,
.panel.page-hero {
  min-width: 0;
}

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

.chart-title {
  margin: 0;
  font-size: 44px;
  line-height: 0.9;
}

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

.color-card {
  padding: 10px;
}

.swatch-block {
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.84), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(17, 17, 17, 0.08)),
    var(--swatch);
}

.search-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.search-sheet[hidden] {
  display: none;
}

.search-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 20, 0.42);
  backdrop-filter: blur(10px);
}

.search-sheet__panel {
  position: absolute;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  top: max(10px, env(safe-area-inset-top) + 8px);
  bottom: max(10px, env(safe-area-inset-bottom) + 10px);
  display: grid;
  grid-auto-rows: min-content;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(244, 244, 241, 0.98);
  box-shadow: var(--shadow);
  max-height: none;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.search-sheet__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.search-sheet__head h2 {
  margin: 4px 0 0;
  font-size: 40px;
  line-height: 0.9;
  font-family: "Teko", sans-serif;
}

.search-sheet__results {
  display: grid;
  gap: 10px;
  max-height: 48vh;
  overflow: auto;
}

.inquiry-sheet__panel {
  /* 四边锚定已由 .search-sheet__panel 提供；如需覆盖仅保留额外特性即可 */
}

.inquiry-modal {
  display: grid;
  gap: 14px;
}

.inquiry-modal__form {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.inquiry-modal__actions > * {
  flex: 1 1 calc(33.333% - 6px);
}

.inquiry-side {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 231, 227, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 38%);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.inquiry-side h3 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.inquiry-note-list {
  display: grid;
  gap: 10px;
}

.inquiry-note-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px var(--line);
  background-clip: padding-box;
}

.inquiry-note-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.inquiry-note-item p {
  margin: 0;
}

.search-hit {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.empty-state {
  padding: 24px;
}

.inquiry-empty-state {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.inquiry-empty-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111214;
}

.inquiry-empty-state .empty-copy {
  font-size: 18px;
  line-height: 1.7;
  color: #3b3d40;
}

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

body[data-page="about"] {
  color: #1d2430;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
}

body[data-page="about"]::before {
  display: none;
}

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

.about-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.about-brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(180deg, #1d4f91, #123867);
  box-shadow: 0 10px 20px rgba(18, 56, 103, 0.24);
}

.about-brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.about-brand-copy strong {
  font-size: 18px;
  line-height: 1.2;
}

.about-brand-copy span {
  font-size: 12px;
  color: #6a7482;
}

.about-header-nav,
.about-header-actions,
.about-mobile-nav,
.about-contact-grid,
.about-showcase-grid,
.about-advantages-grid,
.about-supply-cards,
.about-faq-grid,
.about-footer-grid {
  display: grid;
  gap: 16px;
}

.about-header-nav {
  display: none;
}

.about-header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #314156;
}

.about-header-nav a:hover {
  color: #123867;
}

.about-header-actions {
  display: none;
}

.about-menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.1);
}

.about-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #1c2430;
  transition: transform var(--ease);
}

.about-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.about-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.about-mobile-nav {
  padding: 0 16px 16px;
}

.about-mobile-nav a,
.about-mobile-nav button {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.about-mobile-nav button {
  border: 0;
  appearance: none;
  color: inherit;
  text-align: left;
}

.about-page-main {
  display: grid;
  gap: 16px;
}

.about-hero-banner {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0f2644;
}

.about-hero-media,
.about-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 23, 43, 0.82), rgba(8, 23, 43, 0.44)),
    linear-gradient(180deg, rgba(18, 56, 103, 0.18), rgba(18, 56, 103, 0.18));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 72px 0;
  color: #fff;
}

.about-hero-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.about-hero-content h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1.04;
  color: #fff;
}

.about-hero-lead {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

.about-hero-actions .secondary-button,
.about-hero-actions .ghost-button {
  background: rgba(12, 29, 54, 0.34);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.about-hero-actions .ghost-button {
  background: transparent;
}

.about-hero-stats {
  display: grid;
  gap: 12px;
}

.about-hero-stats article {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.about-hero-stats strong {
  font-size: 20px;
}

.about-hero-stats span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.about-section {
  padding: 56px 0;
}

.about-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.about-section-head h2,
.about-copy-block h2,
.about-supply-copy h2,
.about-cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  color: #12253f;
}

.about-section-head p,
.about-copy-block p,
.about-intro-card-copy p,
.about-contact-box p,
.about-showcase-card figcaption span,
.about-advantage-card p,
.about-supply-copy p,
.about-supply-card p,
.about-faq-item p,
.about-footer-brand p,
.about-cta-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #52606f;
}

.about-merged-panel {
  display: grid;
  gap: 24px;
}

.about-factory-intro,
.about-factory-copy,
.about-factory-tags,
.about-factory-hero,
.about-factory-metrics,
.about-factory-gallery {
  display: grid;
  gap: 18px;
}

.about-intro-grid,
.about-supply-grid {
  display: grid;
  gap: 24px;
}

.about-copy-block,
.about-intro-card,
.about-contact-box,
.about-showcase-card,
.about-advantage-card,
.about-supply-copy,
.about-supply-card,
.about-faq-item,
.about-cta-panel {
  background: #fff;
  border-radius: 22px;
  box-shadow:
    0 18px 38px rgba(10, 34, 64, 0.06),
    inset 0 0 0 1px rgba(17, 17, 17, 0.07);
}

.about-copy-block,
.about-supply-copy {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.about-factory-copy {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
  box-shadow:
    0 18px 38px rgba(10, 34, 64, 0.06),
    inset 0 0 0 1px rgba(17, 17, 17, 0.07);
}

.about-profile-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #55718f;
}

.about-factory-copy h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  color: #12253f;
}

.about-factory-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #52606f;
}

.about-factory-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-factory-tags span {
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  font-size: 13px;
  color: #28486f;
  background: rgba(18, 56, 103, 0.05);
  box-shadow: inset 0 0 0 1px rgba(18, 56, 103, 0.08);
}

.about-factory-hero {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 18px 38px rgba(10, 34, 64, 0.06),
    inset 0 0 0 1px rgba(17, 17, 17, 0.07);
}

.about-factory-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-factory-hero figcaption {
  display: grid;
  gap: 8px;
  padding: 20px 22px 22px;
}

.about-factory-hero figcaption strong {
  font-size: 22px;
  line-height: 1.28;
  color: #12253f;
}

.about-factory-hero figcaption span {
  font-size: 14px;
  line-height: 1.8;
  color: #52606f;
}

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

.about-factory-metric {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 42, 74, 0.98), rgba(26, 68, 118, 0.94));
  box-shadow:
    0 18px 36px rgba(10, 34, 64, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-factory-metric strong {
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.about-factory-metric span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 230, 247, 0.72);
}

.about-factory-metric p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(235, 242, 250, 0.86);
}

.about-intro-card {
  overflow: hidden;
}

.about-intro-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-intro-card-copy {
  padding: 20px 22px 22px;
  display: grid;
  gap: 8px;
}

.about-intro-card-copy strong,
.about-showcase-card figcaption strong,
.about-advantage-card strong,
.about-supply-card strong,
.about-contact-box strong {
  font-size: 22px;
  line-height: 1.28;
  color: #12253f;
}

.about-contact-strip {
  background: linear-gradient(180deg, rgba(18, 56, 103, 0.04), rgba(18, 56, 103, 0.01));
}

.about-contact-grid {
  grid-template-columns: minmax(0, 1fr);
}

.about-contact-box {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.about-contact-box button.secondary-button,
.about-contact-box button.ghost-button {
  border: 0;
  appearance: none;
  font: inherit;
  color: #1d2430;
}

.about-contact-box span,
.about-supply-card span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7686;
}

.about-contact-note {
  margin-top: 12px;
  color: #6c7888;
}

.about-showcase-grid,
.about-factory-gallery {
  grid-template-columns: minmax(0, 1fr);
}

.about-showcase-card {
  overflow: hidden;
  position: relative;
}

.about-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-showcase-card figcaption {
  padding: 18px 20px 20px;
  display: grid;
  gap: 8px;
}

.about-showcase-card--feature img {
  aspect-ratio: 16 / 9;
}

.about-advantages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.about-advantages-grid,
.about-supply-cards {
  grid-template-columns: minmax(0, 1fr);
}

.about-advantage-card,
.about-supply-card {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.about-supply-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #2f3a48;
}

.about-supply-list li {
  line-height: 1.75;
}

.about-faq-grid {
  grid-template-columns: minmax(0, 1fr);
}

.about-faq-item {
  display: block;
  padding: 18px 20px;
}

.about-faq-item summary {
  position: relative;
  padding-right: 28px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #12253f;
}

.about-faq-item summary::-webkit-details-marker {
  display: none;
}

.about-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  line-height: 1;
  color: #123867;
}

.about-faq-item[open] summary::after {
  content: "−";
}

.about-faq-item p {
  margin-top: 10px;
}

.about-cta {
  padding-top: 8px;
  padding-bottom: 72px;
}

.about-cta-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, #123867, #1a4d89);
  color: #fff;
  box-shadow:
    0 24px 48px rgba(18, 56, 103, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-cta-panel h2,
.about-cta-panel p,
.about-cta-panel .eyebrow {
  color: inherit;
}

.about-cta-panel .secondary-button,
.about-cta-panel .ghost-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.about-cta-panel .ghost-button {
  background: transparent;
}

.about-site-footer {
  color: #d7e2ef;
  background: #0f2340;
}

.about-footer-grid {
  padding: 46px 0 34px;
}

.about-footer-brand,
.about-footer-links,
.about-footer-contact {
  display: grid;
  gap: 10px;
}

.about-footer-brand h2 {
  margin: 0;
  font-size: 28px;
  color: #fff;
}

.about-footer-links strong,
.about-footer-contact strong {
  font-size: 16px;
  color: #fff;
}

.about-footer-links a,
.about-footer-links button,
.about-footer-contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #d7e2ef;
}

.about-footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.about-footer-links a:hover,
.about-footer-links button:hover {
  color: #fff;
}

.about-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-footer-bottom-shell {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(215, 226, 239, 0.8);
}

@media (max-width: 767px) {
  .detail-spec-card {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .detail-specs {
    border-radius: 18px;
  }

  .detail-specs td {
    padding: 11px 12px;
    font-size: 14px;
  }

  .detail-specs td:first-child {
    width: 92px;
    padding-right: 6px;
  }

  .detail-specs .detail-spec-group td,
  .detail-spec-tabs-row td {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .detail-spec-tabs button {
    min-height: 42px;
    font-size: 12px;
  }

  .icon-grid,
  .catalog-grid,
  .color-grid {
    grid-template-columns: 1fr 1fr;
  }

  .button-row > * {
    flex: 1 1 calc(50% - 4px);
  }

  .item-head,
  .summary-row,
  .chart-head {
    flex-direction: column;
  }

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

  .inquiry-success-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .inquiry-success-item-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .color-grid {
    min-width: 640px;
  }
}

@media (max-width: 959px) {
  body[data-page="home-server"] .site-shell {
    position: relative;
    top: -21px;
  }

  .site-shell {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .inquiry-section {
    padding-inline: 10px;
  }

  #inquiry-items.inquiry-card {
    padding: 10px;
  }

  #inquiry-items .inquiry-item {
    padding: 12px;
  }

  #inquiry-items .inquiry-item-main .item-head {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    padding-right: 40px;
  }

  #inquiry-items .inquiry-remove-button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }

  #catalog-grid .button-row > .secondary-button,
  #catalog-list .button-row > .secondary-button {
    display: none;
  }

  #catalog-grid .product-title,
  #catalog-list .product-title {
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 4px;
  }

  #related-products .product-title {
    font-size: 15px;
    line-height: 1.15;
    margin-bottom: 2px;
  }

  #related-products .home-latest-body {
    gap: 4px;
  }

  #related-products .product-summary {
    line-height: 1.35;
  }

  .catalog-layout > .toolbar.panel {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-layout > .toolbar.is-collapsed {
    gap: 0;
  }

  .catalog-layout > .toolbar.is-collapsed #catalog-filter-form {
    display: none;
  }

  .catalog-layout > .toolbar:not(.is-collapsed) > .drawer-toggle {
    display: none;
  }

  .catalog-inquiry-link {
    display: none;
  }

  #catalog-close-filters {
    display: inline-flex;
  }

  .site-footer {
    display: none;
  }

  .topbar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    padding: 14px 0 10px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-nav {
    position: static;
    top: auto;
  }

  .about-header-shell {
    min-height: 72px;
  }

  .about-hero-banner,
  .about-hero-content {
    min-height: 500px;
  }

  .about-section {
    padding: 44px 0;
  }

  .mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 244, 0.98));
    box-shadow:
      0 -1px 0 rgba(17, 17, 17, 0.08),
      0 -14px 28px rgba(0, 0, 0, 0.08),
      0 -24px 48px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
  }

  .mobile-tabbar-item {
    min-height: 50px;
    border-radius: 12px;
    transition: transform var(--ease), background var(--ease), color var(--ease);
  }

  .mobile-tabbar-item .mobile-tabbar-badge {
    margin-bottom: 3px;
  }

  .mobile-tabbar-item.is-active {
    color: #111214;
    background: rgba(17, 18, 20, 0.08);
  }

  .mobile-tabbar-item.is-active .mobile-tabbar-label {
    font-weight: 600;
  }

  .mobile-tabbar-item:active {
    transform: scale(0.96);
    background: rgba(17, 18, 20, 0.12);
  }

  .mobile-tabbar-item:active .mobile-tabbar-label {
    color: #111214;
  }

  .home-mobile-search-field {
    position: relative;
  }

  .hero-stage {
    min-height: 430px;
    padding: 0;
  }

  .showcase-data {
    inset: auto 0 0 0;
    padding: 16px 16px 14px;
  }

  .showcase-summary {
    max-width: none;
    font-size: 13px;
    line-height: 1.62;
  }

  .showcase-nav {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 575px) {
  .button-row > * {
    flex: 1 1 100%;
  }

  .inline-fields {
    grid-template-columns: 1fr;
  }

  .icon-card {
    grid-template-columns: 1fr;
  }

  .category-icon {
    aspect-ratio: 16 / 10;
  }

  .detail-code,
  .metric-value,
  .chart-zoom-value {
    font-size: 34px;
  }

  .footer-contact .button-row > * {
    flex-basis: 100%;
  }

  .hero-stage,
  .showcase-object {
    min-height: 360px;
  }

  .showcase-data strong {
    font-size: 26px;
  }

  .showcase-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-dot.is-active {
    width: 22px;
  }
}

@media (min-width: 768px) {
  .site-shell {
    padding-inline: 20px;
  }

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

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

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

  .list-row {
    grid-template-columns: 180px 1fr;
  }

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

@media (min-width: 960px) {
  body[data-page="home-server"] .site-shell {
    position: relative;
    top: -22px;
  }

  .site-shell {
    padding-inline: 24px;
  }

  .topbar {
    padding-top: 22px;
    gap: 20px;
  }

  .desktop-nav,
  .top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .home-mobile-search-field input {
    padding-right: 96px;
  }

  .mobile-nav-toggle,
  .mobile-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: stretch;
  }

  body[data-page="detail"] #main-content > .panel.section-panel:first-of-type {
    overflow: visible;
  }

  #catalog-grid .button-row,
  #catalog-list .button-row {
    flex-wrap: nowrap;
    gap: 6px;
  }

  #catalog-grid .button-row > .secondary-button,
  #catalog-grid .button-row > .primary-button,
  #catalog-list .button-row > .secondary-button,
  #catalog-list .button-row > .primary-button {
    min-width: 0;
    min-height: 40px;
    flex: 1 1 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .catalog-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
  }

  .about-menu-toggle,
  .about-mobile-nav {
    display: none;
  }

  .about-header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

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

  .about-intro-grid,
  .about-supply-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: start;
  }

  .about-factory-intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
  }

  .about-contact-grid,
  .about-advantages-grid,
  .about-supply-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-showcase-grid,
  .about-factory-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-showcase-card--wide {
    grid-column: 1 / -1;
  }

  .about-showcase-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .about-faq-grid {
    display: block;
    column-count: 2;
    column-gap: 16px;
  }

  .about-faq-item {
    margin: 0 0 16px;
    break-inside: avoid;
  }

  .about-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .about-footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.8fr)) minmax(240px, 1fr);
    align-items: start;
  }

  .catalog-layout > .toolbar {
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .catalog-layout > .toolbar.panel {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .catalog-layout > .toolbar.panel::after {
    display: none;
  }

  .catalog-layout > .toolbar > .drawer-toggle,
  .catalog-layout > .toolbar #catalog-close-filters {
    display: none;
  }

  .catalog-layout > .toolbar #catalog-filter-form {
    display: grid !important;
  }

  .catalog-layout > .toolbar #filter-drawer {
    display: grid !important;
  }

  .detail-layout {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: start;
  }

  .detail-card {
    position: sticky;
    top: 96px;
  }

  .inquiry-layout {
    grid-template-columns: 1.24fr 0.76fr;
    align-items: start;
  }

  .inquiry-success-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: start;
  }

  .inquiry-success-side {
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .summary-card {
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .filter-panel {
    display: grid !important;
  }

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

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

  .search-sheet__panel {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 56px;
    width: min(900px, calc(100vw - 32px));
    transform: translateX(-50%);
  }

  .inquiry-sheet__panel {
    width: min(1080px, calc(100vw - 32px));
  }

  .inquiry-modal {
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.76fr);
    align-items: start;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(180px, 0.7fr)) minmax(280px, 1fr);
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==== 首页最新资讯卡片标题区透明度（强制覆盖版 · 末尾高优先级） ==== */
.section-panel .rail-card-body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.18) 100%) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(18px) saturate(1.06) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.06) !important;
  color: #070a0d !important;
  box-shadow:
    0 14px 30px rgba(11, 14, 18, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.55) inset !important;
}
.section-panel .rail-card-kicker {
  background: rgba(15, 20, 25, 0.24) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
}
.section-panel .rail-card-date {
  color: rgba(22, 27, 32, 0.88) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}
.section-panel .rail-card:hover .rail-card-body,
.section-panel .rail-card:focus-within .rail-card-body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.32) 100%) !important;
  border-color: rgba(255,255,255,0.32) !important;
}

/* ==========================================================================
   About Page v2 - 简洁版
   ========================================================================== */
.about2-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.about2-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b5764;
  font-weight: 700;
}
.about2-eyebrow-light { color: rgba(255, 255, 255, 0.76); }
.about2-h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.34;
  color: #2f2630;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.about2-h2-light { color: #fff9f4; }

/* Hero ===== */
.about2-hero {
  padding: 72px 0 56px;
  background: #fff7f1;
  border-bottom: 1px solid rgba(113, 89, 92, 0.08);
}
.about2-hero-inner { text-align: center; }
.about2-hero-title {
  margin: 0 auto 14px;
  font-size: 44px;
  line-height: 1.22;
  color: #2f2630;
  font-weight: 800;
  letter-spacing: -0.015em;
  max-width: 780px;
}
.about2-hero-lead {
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(47, 38, 48, 0.72);
  max-width: 720px;
}
.about2-hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.about2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.about2-btn:hover, .about2-btn:focus { transform: translateY(-1px); }
.about2-btn-primary {
  background: #8b5764; color: #fff9f4;
  box-shadow: 0 10px 24px rgba(139, 87, 100, 0.18);
}
.about2-btn-primary:hover, .about2-btn-primary:focus { background: #7a4a56; }
.about2-btn-secondary {
  background: #fff9f4; color: #8b5764;
  border-color: rgba(139, 87, 100, 0.28);
}
.about2-btn-secondary:hover, .about2-btn-secondary:focus {
  border-color: rgba(139, 87, 100, 0.44);
  background: #ffffff;
}
.about2-btn-ghost {
  background: transparent; color: #8b5764;
  border-color: rgba(139, 87, 100, 0.18);
}
.about2-btn-ghost:hover, .about2-btn-ghost:focus {
  background: rgba(139, 87, 100, 0.06);
  border-color: rgba(139, 87, 100, 0.3);
}
.about2-btn-ghost-light {
  background: transparent; color: #fff9f4;
  border-color: rgba(255, 249, 244, 0.24);
}
.about2-btn-ghost-light:hover, .about2-btn-ghost-light:focus {
  background: rgba(255, 249, 244, 0.08);
  border-color: rgba(255, 249, 244, 0.4);
}
.about2-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(97, 75, 82, 0.06);
}
.about2-stat { margin: 0; text-align: center; }
.about2-stat dt {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #8b5764;
  letter-spacing: -0.01em;
}
.about2-stat dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(47, 38, 48, 0.64);
}

/* Sections ===== */
.about2-section { padding: 64px 0; }
.about2-section:nth-of-type(even) { background: #fff9f4; }
.about2-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.about2-head-desc {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(47, 38, 48, 0.68);
}

/* Profile ===== */
.about2-profile-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.about2-profile-copy .about2-eyebrow,
.about2-profile-copy .about2-h2,
.about2-profile-copy .about2-lead,
.about2-profile-copy .about2-profile-text,
.about2-profile-copy .about2-tags { text-align: left; }
.about2-lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.88;
  color: rgba(47, 38, 48, 0.72);
}
.about2-profile-text { margin: 0 0 16px; }
.about2-profile-text h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #2f2630;
  font-weight: 700;
}
.about2-profile-text p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(47, 38, 48, 0.72);
}
.about2-profile-text p:last-child { margin-bottom: 0; }
.about2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.about2-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #8b5764;
  background: rgba(139, 87, 100, 0.08);
  border: 1px solid rgba(139, 87, 100, 0.12);
}
.about2-profile-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(235, 229, 226, 0.8);
  box-shadow: 0 18px 40px rgba(97, 75, 82, 0.08);
}
.about2-profile-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about2-profile-figure figcaption { padding: 12px 16px 14px; background: #fff; }
.about2-profile-figure figcaption strong {
  display: block;
  margin: 0 0 2px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #2f2630;
  font-weight: 700;
}
.about2-profile-figure figcaption span {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(47, 38, 48, 0.6);
}

/* Strength section (Advantages + Supply merged) ===== */
.about2-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
}
.about2-metric {
  margin: 0;
  padding: 22px 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(113, 89, 92, 0.08);
  text-align: center;
}
.about2-metric dt {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
  color: #8b5764;
  letter-spacing: -0.008em;
}
.about2-metric strong {
  display: block;
  margin: 0 0 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #2f2630;
  font-weight: 700;
}
.about2-metric dd {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(47, 38, 48, 0.6);
}
.about2-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
}
.about2-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(113, 89, 92, 0.08);
  display: block;
}
.about2-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b5764;
  background: rgba(139, 87, 100, 0.08);
  margin-bottom: 10px;
}
.about2-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #2f2630;
  font-weight: 700;
}
.about2-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(47, 38, 48, 0.68);
}
.about2-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}
.about2-list li {
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(47, 38, 48, 0.72);
  position: relative;
}
.about2-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c0808f;
}

/* FAQ (保留常见问答) ===== */
.about2-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about2-faq-item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(113, 89, 92, 0.08);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.about2-faq-item[open] {
  border-color: rgba(139, 87, 100, 0.22);
  box-shadow: 0 12px 28px rgba(97, 75, 82, 0.05);
}
.about2-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: #2f2630;
  cursor: pointer;
  user-select: none;
}
.about2-faq-item summary::-webkit-details-marker { display: none; }
.about2-faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #8b5764;
  background: rgba(139, 87, 100, 0.08);
  flex-shrink: 0;
  transition: transform 200ms ease, background 200ms ease;
}
.about2-faq-item[open] summary::after {
  content: "?;
  background: rgba(139, 87, 100, 0.14);
}
.about2-faq-body {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(47, 38, 48, 0.72);
}
.about2-faq-body p { margin: 0 0 10px; }
.about2-faq-body p:last-child { margin-bottom: 0; }

/* CTA / Contact ===== */
.about2-cta {
  padding: 72px 0;
  background: #2f2630;
  color: #fff9f4;
}
.about2-cta-inner { text-align: center; }
.about2-cta-copy {
  max-width: 760px;
  margin: 0 auto 40px;
}
.about2-cta-desc {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 249, 244, 0.72);
}
.about2-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.about2-cta-card {
  padding: 22px 18px 20px;
  border-radius: 18px;
  background: rgba(255, 249, 244, 0.04);
  border: 1px solid rgba(255, 249, 244, 0.1);
  text-align: left;
}
.about2-cta-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff9f4;
  background: rgba(255, 249, 244, 0.12);
  margin-bottom: 10px;
}
.about2-cta-value {
  display: block;
  margin: 0 0 6px;
  font-size: 16.5px;
  line-height: 1.5;
  color: #fff9f4;
  font-weight: 700;
  word-break: break-word;
}
.about2-cta-card p {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 249, 244, 0.6);
}
.about2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about2-cta-actions .about2-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12.5px;
}
.about2-cta-note {
  margin: 0 auto;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 249, 244, 0.5);
  max-width: 720px;
}

/* Tablet (768..1023px) ===== */
@media (max-width: 1023px) {
  .about2-inner { padding: 0 20px; }
  .about2-hero { padding: 56px 0 44px; }
  .about2-hero-title { font-size: 36px; }
  .about2-section { padding: 52px 0; }
  .about2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 20px;
  }
  .about2-profile-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .about2-profile-figure { order: -1; max-width: 520px; }
  .about2-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
  }
  .about2-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
  }
  .about2-list { grid-template-columns: 1fr; gap: 10px; }
  .about2-cta { padding: 56px 0; }
  .about2-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Mobile (<=767px) ===== */
@media (max-width: 767px) {
  .about2-inner { padding: 0 16px; }
  .about2-eyebrow { letter-spacing: 0.14em; font-size: 11px; margin-bottom: 10px; }
  .about2-h2 { font-size: 24px; margin-bottom: 10px; }
  .about2-hero { padding: 40px 0 32px; }
  .about2-hero-title { font-size: 28px; line-height: 1.28; margin-bottom: 12px; }
  .about2-hero-lead { font-size: 14.5px; line-height: 1.8; margin-bottom: 20px; }
  .about2-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 24px;
  }
  .about2-hero-actions .about2-btn { width: 100%; padding: 0 10px; }
  .about2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
  }
  .about2-stat dt { font-size: 24px; }
  .about2-stat dd { font-size: 12px; }
  .about2-section { padding: 36px 0; }
  .about2-head { margin-bottom: 24px; }
  .about2-head-desc { font-size: 14px; line-height: 1.8; }
  .about2-profile-inner { gap: 20px; }
  .about2-lead { font-size: 14px; line-height: 1.85; margin-bottom: 14px; }
  .about2-profile-text h3 { font-size: 16px; margin-bottom: 8px; }
  .about2-profile-text p { font-size: 13.5px; line-height: 1.85; margin-bottom: 10px; }
  .about2-profile-figure { border-radius: 18px; }
  .about2-profile-figure figcaption { padding: 10px 14px 12px; }
  .about2-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
  }
  .about2-metric { padding: 18px 14px 16px; border-radius: 16px; }
  .about2-metric dt { font-size: 20px; }
  .about2-metric strong { font-size: 12.5px; }
  .about2-metric dd { font-size: 12px; }
  .about2-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }
  .about2-card { padding: 18px 16px; border-radius: 16px; }
  .about2-card h3 { font-size: 15px; margin-bottom: 6px; }
  .about2-card p { font-size: 13px; line-height: 1.78; }
  .about2-list { gap: 8px; }
  .about2-list li { font-size: 13.5px; line-height: 1.85; padding-left: 20px; }
  .about2-list li::before { left: 3px; top: 0.7em; width: 7px; height: 7px; }
  .about2-faq-item summary { padding: 15px 16px; font-size: 14px; }
  .about2-faq-item summary::after { width: 24px; height: 24px; font-size: 16px; }
  .about2-faq-body { padding: 0 16px 16px; font-size: 13.5px; line-height: 1.8; }
  .about2-cta { padding: 40px 0; }
  .about2-cta-copy { margin-bottom: 28px; }
  .about2-cta-desc { font-size: 14px; line-height: 1.8; }
  .about2-cta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }
  .about2-cta-card { padding: 18px 16px 16px; border-radius: 16px; }
  .about2-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .about2-cta-actions .about2-btn { width: 100%; }
  .about2-cta-note { font-size: 12px; line-height: 1.7; }
}
