@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --space-950: #030712;
  --space-900: #07111f;
  --navy-900: #0f172a;
  --navy-800: #172033;
  --navy-700: #233049;
  --silver-100: #f8fafc;
  --silver-200: #e5e7eb;
  --silver-300: #cbd5e1;
  --muted: #64748b;
  --gold: #f6c453;
  --gold-strong: #f59e0b;
  --route-blue: #38bdf8;
  --trust-green: #22c55e;
  --action: #f97316;
  --ink: #101827;
  --line: rgba(148, 163, 184, 0.28);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(2, 6, 23, 0.28);
  --radius: 8px;
  --max: 1180px;
  --font-body: "Manrope", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Space Grotesk", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-utility: "Manrope", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--silver-100);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.72);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.1), 0 12px 28px rgba(15, 23, 42, 0.16);
}

.brand-name {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: white;
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

.nav-link,
.nav-parent {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #263244;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.lang-button {
  min-height: 28px;
  border: 0;
  border-radius: 6px;
  padding: 0 9px;
  background: transparent;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--navy-900);
  color: white;
}

.nav-link:hover,
.nav-parent:hover,
.nav-link.is-active {
  background: rgba(15, 23, 42, 0.07);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown a {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 6px;
}

.dropdown a:hover {
  background: #f1f5f9;
}

.dropdown strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.dropdown span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--action);
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
}

.button.light {
  background: white;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  color: white;
  background: var(--space-950);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(3, 7, 18, 0.94) 0%, rgba(3, 7, 18, 0.72) 34%, rgba(3, 7, 18, 0.36) 62%, rgba(3, 7, 18, 0.74) 100%), url("../img/hero-earth-poster.png");
  background-size: cover;
  background-position: center;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

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

.route-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 196, 83, 0), rgba(246, 196, 83, 0.9), rgba(56, 189, 248, 0.9), rgba(56, 189, 248, 0));
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
  transform-origin: left center;
  animation: routePulse 5s ease-in-out infinite;
}

.route-line.one {
  width: 360px;
  right: 13%;
  top: 35%;
  transform: rotate(-23deg);
}

.route-line.two {
  width: 430px;
  right: 5%;
  top: 56%;
  transform: rotate(12deg);
  animation-delay: 1.1s;
}

.route-line.three {
  width: 320px;
  right: 28%;
  top: 49%;
  transform: rotate(196deg);
  animation-delay: 2s;
}

.gold-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  animation: nodeRise 4s ease-in-out infinite;
}

.gold-node:nth-child(4) {
  right: 36%;
  top: 43%;
}

.gold-node:nth-child(5) {
  right: 42%;
  top: 58%;
  animation-delay: 0.6s;
}

.gold-node:nth-child(6) {
  right: 27%;
  top: 51%;
  animation-delay: 1.2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 760px;
  padding: 96px 0;
}

.hero-brand-lockup {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(246, 196, 83, 0.3);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.52);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-brand-lockup img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(246, 196, 83, 0.13), 0 0 36px rgba(246, 196, 83, 0.28);
}

.hero-brand-text {
  display: grid;
  gap: 5px;
}

.hero-brand-text strong {
  color: white;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-brand-text span {
  color: #fde68a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(246, 196, 83, 0.36);
  border-radius: 999px;
  background: rgba(246, 196, 83, 0.08);
  color: #fde68a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin-top: 0;
  text-wrap: pretty;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  font-size: clamp(50px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: #d8e2ef;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.68;
}

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

.hero-quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin-top: 54px;
}

.quick-card {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.66);
  backdrop-filter: blur(12px);
}

.quick-card strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.quick-card span {
  color: #b7c5d6;
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 92px 0;
}

.section.dark {
  background: var(--navy-900);
  color: white;
}

.section.soft {
  background: #eef2f7;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--action);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-lede {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.68;
}

.dark .section-lede {
  color: #b8c4d4;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.category-card,
.panel,
.process-step,
.rfq-panel,
.contact-card {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.category-card {
  display: grid;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.category-card.priority {
  border-color: rgba(249, 115, 22, 0.28);
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0) 38%),
    white;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0));
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.category-card,
.panel,
.process-step,
.contact-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-modules {
  display: grid;
  gap: 16px;
}

.product-module {
  overflow: clip;
  scroll-margin-top: 132px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-module.priority {
  border-color: rgba(249, 115, 22, 0.3);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.07), rgba(255, 255, 255, 0) 34%),
    white;
}

.product-module[open],
.product-module:hover {
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.13);
}

.product-module:hover {
  transform: translateY(-2px);
}

.product-module summary {
  display: grid;
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 250px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

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

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 214px;
  border-radius: var(--radius);
  background: #0f172a;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.16));
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-module:hover .product-media img,
.product-module[open] .product-media img {
  transform: scale(1.035);
}

.product-summary {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: 6px 8px 6px 0;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-title {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.module-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.module-action::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.14);
  color: #0369a1;
  font-size: 14px;
  line-height: 1;
}

.product-module[open] .module-action::before {
  content: "-";
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
}

.product-desc {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.product-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.product-detail > div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: var(--radius);
  background: #f8fafc;
}

.product-detail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.product-actions {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  min-height: auto !important;
  padding: 4px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.product-actions .button {
  width: auto;
}

.card-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card h3,
.panel h3,
.process-step h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.16;
}

.category-card p,
.panel p,
.process-step p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf2f7;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}

.dark .panel,
.dark .process-step {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.dark .panel p,
.dark .process-step p {
  color: #bdc8d7;
}

.process-step {
  padding: 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(246, 196, 83, 0.14);
  color: var(--gold);
  font-weight: 800;
}

.panel {
  padding: 26px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: var(--radius);
  background: white;
}

.proof-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--trust-green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.13);
}

.cta-band {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-900), #1d2842);
  color: white;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin-bottom: 12px;
}

.page-hero {
  padding: 96px 0 76px;
  background: radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.22), transparent 32%), linear-gradient(135deg, var(--space-950), var(--navy-900));
  color: white;
}

.page-hero h1 {
  max-width: 900px;
  margin: 16px 0;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1.02;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 700px;
  color: #cbd5e1;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.66;
}

.table-like {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background: white;
}

.table-row strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
}

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

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

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

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-field label {
  color: #273244;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  font-weight: 500;
  line-height: 1.45;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(249, 115, 22, 0.12);
  color: #9a3412;
}

.site-footer {
  padding: 46px 0;
  background: var(--space-950);
  color: white;
}

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

.footer-grid h3 {
  margin-bottom: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.footer-grid a,
.footer-grid p {
  color: #aebacc;
  font-size: 14px;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 8px;
}

body.lang-zh {
  word-break: auto-phrase;
  line-break: strict;
}

body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3,
body.lang-zh .product-title,
body.lang-zh .quick-card strong,
body.lang-zh .brand-name strong,
body.lang-zh .nav-link,
body.lang-zh .nav-parent,
body.lang-zh .button,
body.lang-zh .nav-cta,
body.lang-zh .module-action,
body.lang-zh .tag-list span,
body.lang-zh .card-label,
body.lang-zh .section-kicker {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3,
body.lang-zh .product-title,
body.lang-zh .hero h1,
body.lang-zh .section h2,
body.lang-zh .page-hero h1 {
  text-transform: none;
}

body.lang-zh p,
body.lang-zh .product-desc,
body.lang-zh .dropdown span,
body.lang-zh .quick-card span {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

body.lang-zh .page-hero h1 {
  max-width: 1120px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.12;
}

body.lang-zh .hero h1 {
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.08;
}

@keyframes routePulse {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  48% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0.24;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes nodeRise {
  0%,
  100% {
    opacity: 0.32;
    transform: translateY(18px) scale(0.9);
  }
  52% {
    opacity: 1;
    transform: translateY(-10px) scale(1.18);
  }
}




@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-link,
  .nav-parent,
  .nav-cta,
  .language-switch {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switch {
    grid-template-columns: repeat(2, 1fr);
  }

  .dropdown {
    position: static;
    width: 100%;
    margin: 4px 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8fafc;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-quick,
  .grid.three,
  .grid.two,
  .product-detail,
  .footer-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-band {
    align-items: start;
    flex-direction: column;
  }

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

  .product-module summary {
    grid-template-columns: minmax(180px, 36%) minmax(0, 1fr);
    gap: 18px;
    min-height: 220px;
  }

  .product-media,
  .product-media img {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .brand-name span {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-name strong {
    font-size: 19px;
  }

  .hero-brand-lockup {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 12px;
  }

  .hero-brand-lockup img {
    width: 58px;
    height: 58px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 62px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-quick {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .product-module summary {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .product-media,
  .product-media img {
    min-height: 220px;
  }

  .product-summary {
    padding: 4px 4px 8px;
  }

  .product-title-row {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .product-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .product-detail {
    padding: 0 12px 12px;
  }

  .section {
    padding: 68px 0;
  }

  .cta-band {
    padding: 26px;
  }
}

/* ─── News section: tech-feel redesign ─── */

/* Breadcrumbs — compact pill style */
.news-breadcrumbs {
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
}
.news-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.news-breadcrumbs li::after {
  content: "›";
  margin: 0 8px;
  color: var(--silver-300);
  font-weight: 400;
}
.news-breadcrumbs li:last-child::after { content: ""; }
.news-breadcrumbs a {
  color: var(--action);
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.news-breadcrumbs a:hover {
  background: rgba(249, 115, 22, 0.08);
  color: var(--action);
}
.news-breadcrumbs span[aria-current="page"] {
  color: var(--muted);
  padding: 3px 10px;
}

/* Hero — animated gradient mesh */
.compact-hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 108px) clamp(42px, 6vw, 72px);
  overflow: hidden;
}
.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(56, 189, 248, 0.18), transparent),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(249, 115, 22, 0.12), transparent),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(34, 197, 94, 0.08), transparent);
  animation: heroPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.compact-hero .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.08);
  color: var(--action);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compact-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--action);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
}
.compact-hero h1 {
  position: relative;
  max-width: 900px;
  margin: 20px 0;
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.08;
  text-transform: uppercase;
}
.compact-hero p {
  position: relative;
  max-width: 700px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.66;
}

/* Updated line — tech style */
.news-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* News grid — masonry-like staggered reveal */
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.server-news-grid {
  display: grid;
  gap: 20px;
}

.server-news-grid .news-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(2, 6, 23, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  animation: cardReveal 0.5s ease-out both;
}
.server-news-grid .news-card:nth-child(1)  { animation-delay: 0.0s; }
.server-news-grid .news-card:nth-child(2)  { animation-delay: 0.06s; }
.server-news-grid .news-card:nth-child(3)  { animation-delay: 0.12s; }
.server-news-grid .news-card:nth-child(4)  { animation-delay: 0.18s; }
.server-news-grid .news-card:nth-child(5)  { animation-delay: 0.24s; }
.server-news-grid .news-card:nth-child(6)  { animation-delay: 0.30s; }
.server-news-grid .news-card:nth-child(7)  { animation-delay: 0.36s; }
.server-news-grid .news-card:nth-child(8)  { animation-delay: 0.42s; }
.server-news-grid .news-card:nth-child(n+9) { animation-delay: 0.48s; }

.server-news-grid .news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--action), var(--route-blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.server-news-grid .news-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 8px 40px rgba(2, 6, 23, 0.08), 0 0 0 1px rgba(249, 115, 22, 0.1);
  transform: translateY(-2px);
}
.server-news-grid .news-card:hover::before {
  opacity: 1;
}

.server-news-grid .news-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.server-news-grid .news-card h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.server-news-grid .news-card h2 a:hover {
  color: var(--action);
}

/* Meta — source / date / category tags */
.news-meta,
.news-card-actions,
.article-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.news-source {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 700;
}
.news-date {
  color: var(--silver-300);
  font-size: 12px;
  font-weight: 500;
}
.news-category {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Category color coding */
.news-card:has(.news-category[data-i18n-en="Fasteners"]) .news-category,
.news-category[data-i18n-en="Fasteners"] {
  background: rgba(249, 115, 22, 0.08);
  color: var(--action);
}
.news-card:has(.news-category[data-i18n-en="Supply Chain"]) .news-category,
.news-category[data-i18n-en="Supply Chain"] {
  background: rgba(56, 189, 248, 0.08);
  color: #0284c7;
}
.news-card:has(.news-category[data-i18n-en="Trade & Tariffs"]) .news-category,
.news-category[data-i18n-en="Trade & Tariffs"] {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}
.news-card:has(.news-category[data-i18n-en="Manufacturing"]) .news-category,
.news-category[data-i18n-en="Manufacturing"] {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
}

/* Card description */
.news-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Buyer insight — glowing left border */
.news-insight {
  position: relative;
  padding: 14px 18px 14px 20px;
  border-left: 3px solid var(--action);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), rgba(56, 189, 248, 0.02));
  transition: border-color 0.3s, box-shadow 0.3s;
}
.news-card:hover .news-insight {
  border-color: var(--gold);
  box-shadow: -2px 0 12px rgba(249, 115, 22, 0.1);
}
.news-insight p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.news-insight-label {
  display: block;
  margin-bottom: 4px;
  color: var(--action);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Card actions */
.news-card-actions {
  padding-top: 4px;
}
.news-card-actions .related-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  background: var(--action);
  color: #fff;
}
.news-card-actions .related-link:hover {
  background: #e65c00;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  transform: translateY(-1px);
}
.news-card-actions .related-link.secondary {
  background: transparent;
  color: var(--action);
  border: 1px solid var(--line);
}
.news-card-actions .related-link.secondary:hover {
  background: rgba(249, 115, 22, 0.06);
  border-color: var(--action);
}

/* Pagination — tech pills */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.news-pagination a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}
.news-pagination a:hover {
  border-color: var(--action);
  color: var(--action);
  background: rgba(249, 115, 22, 0.04);
}
.news-pagination a[aria-current="page"] {
  border-color: var(--action);
  background: var(--action);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Article detail hero */
.container.narrow {
  max-width: 860px;
}
.news-article-hero h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(24px, 3.5vw, 40px);
  text-transform: none;
  line-height: 1.15;
}
.article-deck {
  max-width: 780px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

/* Analysis blocks — glass cards */
.news-analysis .narrow {
  display: grid;
  gap: 24px;
}
.analysis-block,
.analysis-method {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.analysis-block:hover,
.analysis-method:hover {
  border-color: rgba(249, 115, 22, 0.15);
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.05);
}
.analysis-block h2,
.analysis-method h2 {
  margin-top: 0;
  font-family: var(--font-display);
}
.analysis-block p,
.analysis-block li,
.analysis-method p,
.source-block blockquote {
  color: var(--muted);
  line-height: 1.8;
}
.action-block {
  border-color: rgba(249, 115, 22, 0.2);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.02), rgba(255, 255, 255, 0.85));
}
.source-block blockquote {
  margin: 16px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--route-blue);
  border-radius: 0 8px 8px 0;
  background: rgba(56, 189, 248, 0.03);
  font-style: normal;
}
.analysis-method {
  background: rgba(248, 250, 252, 0.8);
}
.news-empty {
  padding: 48px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

/* Mobile */
@media (max-width: 640px) {
  .news-card-actions,
  .article-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .news-card-actions a,
  .article-cta a {
    text-align: center;
    justify-content: center;
  }
  .server-news-grid .news-card {
    padding: 18px;
  }
}

/* Social links */
.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  color: #334155;
  transition: background 180ms, color 180ms, transform 180ms;
}

.social-link:hover {
  background: var(--action);
  border-color: var(--action);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social .social-link {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.18);
  color: #aebacc;
}

.footer-social .social-link:hover {
  background: var(--action);
  border-color: var(--action);
  color: white;
}

.contact-info-grid {
  display: grid;
  gap: 12px;
}

.contact-info-item {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background: white;
}

.contact-info-item strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.wechat-qr {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.1);
  margin-top: 8px;
}

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

@media (max-width: 640px) {
  .social-row {
    flex-wrap: wrap;
  }
}

/* Premium CTA button */
.button-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid rgba(246, 196, 83, 0.4);
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c453, #f59e0b, #f97316);
  color: #1a1a2e;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 4px 20px rgba(246, 196, 83, 0.3), 0 0 40px rgba(249, 115, 22, 0.15);
  text-decoration: none;
}

.button-premium::before {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  font-weight: 800;
  transition: transform 250ms ease, background 250ms ease;
}

.button-premium:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(246, 196, 83, 0.45), 0 0 60px rgba(249, 115, 22, 0.2);
}

.button-premium:hover::before {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.4);
}

.button-premium:active {
  transform: translateY(0) scale(0.98);
}

.button-premium::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 600ms ease;
}

.button-premium:hover::after {
  transform: translateX(100%);
}

.footer-premium-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(246, 196, 83, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.08), rgba(249, 115, 22, 0.08));
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  margin-top: 10px;
}

.footer-premium-link::before {
  content: "→";
  transition: transform 200ms;
}

.footer-premium-link:hover {
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.2), rgba(249, 115, 22, 0.2));
  transform: translateX(2px);
}
