/* Yuan Gou Materials Limited — site styles */

:root {
  --ink: #111820;
  --ink-2: #18222c;
  --ink-3: #22303c;
  --paper: #f4f2ee;
  --paper-2: #ebe7e0;
  --white: #ffffff;
  --line: #d8d2c8;
  --line-soft: #e6e1d9;
  --line-dark: rgba(255, 255, 255, 0.13);
  --text: #1a2129;
  --muted: #5a646e;
  --muted-dark: #9aa5af;
  --ember: #c24e17;
  --ember-hover: #a33f0f;
  --ember-tint: #f6e6dc;
  --ok: #2f6b3c;
  --err: #b42318;

  --font-sans: "IBM Plex Sans", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
  --radius: 2px;
}

html:lang(zh-Hans) {
  --font-sans: "IBM Plex Sans", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html:lang(zh-Hans) body { line-height: 1.75; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
html:lang(zh-Hans) :is(h1, h2, h3, h4) { letter-spacing: 0; line-height: 1.3; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--white); padding: 10px 14px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- type helpers ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
html:lang(zh-Hans) .eyebrow { letter-spacing: 0.04em; }

.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); max-width: 62ch; }
.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; text-decoration: none; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--ember); color: var(--white); }
.btn-primary:hover { background: var(--ember-hover); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost-light { border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: border-color .15s, color .15s;
}
.text-link:hover { color: var(--ember); border-color: var(--ember); }
.text-link svg { width: 14px; height: 14px; transition: transform .15s; }
.text-link:hover svg { transform: translateX(3px); }

/* ---------- header ---------- */

.topbar {
  background: var(--ink); color: var(--muted-dark);
  font-size: 13px;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 40px; }
.topbar a { text-decoration: none; color: #d5dbe0; }
.topbar a:hover { color: var(--white); }
.topbar-info { display: flex; gap: 28px; align-items: center; min-width: 0; }
.topbar-info span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-info svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; opacity: .7; }

.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  padding: 6px 8px; color: var(--muted-dark);
}
.lang-switch a[aria-current="true"] { color: var(--white); box-shadow: inset 0 -2px 0 var(--ember); }
.lang-switch a:hover { color: var(--white); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: saturate(1.2) blur(6px);
}
.site-header .wrap { display: flex; align-items: center; gap: 32px; height: var(--header-h); }
.brand { display: block; flex: none; line-height: 0; }
.brand img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 10px 14px; text-decoration: none; font-size: 15px; font-weight: 500; color: var(--text);
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { margin-left: 12px; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform .2s, background-color .2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { display: none; }

@media (max-width: 1020px) {
  .topbar-info .hide-md { display: none; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav {
    display: block; position: fixed; inset: calc(var(--header-h) + 40px) 0 0 0; z-index: 49;
    background: var(--white); padding: 12px var(--gutter) 32px; overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav-open .mobile-nav { opacity: 1; transform: none; visibility: visible; }
  .mobile-nav a.m-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; border-bottom: 1px solid var(--line-soft);
    text-decoration: none; font-size: 20px; font-weight: 500;
  }
  .mobile-nav a.m-link[aria-current="page"] { color: var(--ember); }
  .mobile-nav .btn { margin-top: 24px; width: 100%; }
  .mobile-nav .m-contact { margin-top: 28px; font-size: 14px; color: var(--muted); }
  .mobile-nav .m-contact a { color: var(--ink); }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .topbar-info { display: none; }
  .topbar .wrap { justify-content: flex-end; }
  .brand img { height: 36px; }
  :root { --header-h: 64px; }
}

/* ---------- sections ---------- */

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink-2); color: #cfd6dc; }
.section-dark :is(h1, h2, h3, h4) { color: var(--white); }
.section-dark .lead, .section-dark .muted { color: var(--muted-dark); }
.section-dark .eyebrow { color: #e0703a; }

.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 64px;
  align-items: end; margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); max-width: 18ch; }
html:lang(zh-Hans) .section-head h2 { max-width: 20em; }
.section-head .lead { justify-self: end; }
@media (max-width: 860px) {
  .section-head { grid-template-columns: minmax(0, 1fr); }
  .section-head .lead { justify-self: start; }
}

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: hidden;
  background: var(--ink-2); color: #cfd6dc;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, rgba(0,0,0,.4) 60%, transparent 100%);
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: 24px;
}
html:lang(ru) .hero h1, html:lang(tk) .hero h1 { font-size: clamp(30px, 4vw, 50px); max-width: 20ch; }
html:lang(zh-Hans) .hero h1 { max-width: 14em; letter-spacing: 0; }
.hero .lead { color: #aeb8c1; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-figure { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.hero-figure figure { margin: 0; position: relative; overflow: hidden; background: var(--ink-3); }
.hero-figure figure:first-child { grid-column: span 2; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.hero-figure figure:first-child img { aspect-ratio: 16 / 9; }
.hero-figure figcaption {
  position: absolute; left: 0; bottom: 0;
  background: rgba(17,24,32,.82); color: #dfe4e8;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .03em;
  padding: 6px 10px; white-space: pre;
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); }
  .hero-figure { max-width: 620px; }
}
@media (max-width: 480px) { .hero-figure figcaption { white-space: normal; } }

.facts {
  position: relative;
  border-top: 1px solid var(--line-dark);
  background: var(--ink-2);
}
.facts ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.facts li { padding: 26px 24px 28px 0; border-right: 1px solid var(--line-dark); }
.facts li + li { padding-left: 24px; }
.facts li:last-child { border-right: 0; }
.facts strong { display: block; font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
.facts span { font-size: 14px; color: var(--muted-dark); }
@media (max-width: 860px) {
  .facts ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts li { padding: 20px 16px 22px 0; }
  .facts li:nth-child(2n) { border-right: 0; padding-left: 16px; }
  .facts li:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .facts li:nth-child(3) { padding-left: 0; }
}

/* ---------- page header (inner pages) ---------- */

.page-head { background: var(--ink-2); color: #b8c2cb; position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, #000, transparent 80%);
}
.page-head .wrap { position: relative; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 76px); }
.page-head h1 { color: var(--white); font-size: clamp(32px, 4.2vw, 52px); max-width: 22ch; margin-bottom: 18px; }
html:lang(zh-Hans) .page-head h1 { max-width: 18em; }
.page-head .lead { color: #aeb8c1; }
.page-head.has-media .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px); gap: 56px; align-items: end; }
.page-head-media { margin: 0; }
.page-head-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 860px) {
  .page-head.has-media .wrap { grid-template-columns: minmax(0, 1fr); }
  .page-head-media { display: none; }
}

.breadcrumb { margin-bottom: 28px; font-size: 13px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--muted-dark); }
.breadcrumb li + li::before { content: "/"; opacity: .5; }
.breadcrumb a { color: #d0d7dd; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }

/* ---------- product category cards ---------- */

.cat-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.cat-card {
  position: relative; display: flex; flex-direction: column;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); text-decoration: none; color: inherit;
  transition: background-color .2s;
}
.cat-card:hover { background: var(--paper); }
.cat-card .cat-media { overflow: hidden; background: var(--paper-2); }
.cat-card .cat-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover .cat-media img { transform: scale(1.035); }
.cat-card .cat-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.cat-card .cat-num { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.cat-card h3 { font-size: 19px; margin-bottom: 10px; }
.cat-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.cat-card .cat-more {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-family: var(--font-mono); color: var(--muted);
  padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.cat-card .cat-more svg { width: 16px; height: 16px; color: var(--ember); transition: transform .2s; }
.cat-card:hover .cat-more svg { transform: translateX(4px); }
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px) { .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: minmax(0, 1fr); }
  .cat-card { flex-direction: row; }
  .cat-card .cat-media { width: 116px; flex: none; }
  .cat-card .cat-media img { height: 100%; aspect-ratio: auto; }
  .cat-card .cat-body { padding: 16px; }
  .cat-card p { display: none; }
  .cat-card h3 { font-size: 17px; }
}

/* ---------- industries ---------- */

.ind-list { border-top: 1px solid var(--line-dark); }
.ind-row {
  display: grid; grid-template-columns: 64px minmax(0, 1.1fr) minmax(0, 1.4fr) auto; gap: 24px;
  align-items: baseline; padding: 26px 0; border-bottom: 1px solid var(--line-dark);
}
.ind-row .ind-num { font-family: var(--font-mono); font-size: 13px; color: #e0703a; }
.ind-row h3 { font-size: 21px; }
.ind-row p { color: var(--muted-dark); font-size: 15px; margin: 0; }
.ind-row a { color: var(--white); font-size: 14px; white-space: nowrap; }
.ind-row a:hover { color: #e0703a; }
@media (max-width: 860px) {
  .ind-row { grid-template-columns: 40px minmax(0, 1fr); }
  .ind-row p, .ind-row .ind-links { grid-column: 2; }
}

/* industries page */
.industry {
  display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 6vw, 80px) 0; border-bottom: 1px solid var(--line);
}
.industry:first-child { padding-top: 0; }
.industry:last-child { border-bottom: 0; padding-bottom: 0; }
.industry-media { margin: 0; }
.industry-media { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; }
.industry-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-2); }
.industry h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 16px; }
.industry .ind-num { font-family: var(--font-mono); font-size: 13px; color: var(--ember); display: block; margin-bottom: 14px; }
.industry h3 { font-size: 13px; font-family: var(--font-mono); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 28px 0 12px; }
html:lang(zh-Hans) .industry h3 { letter-spacing: .02em; }
.zone-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
.zone-list li { padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: 15px; display: flex; gap: 10px; }
.zone-list li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 9px; background: var(--ember); }
.link-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.link-chips a {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px;
  border: 1px solid var(--line); text-decoration: none; font-size: 14px; background: var(--white);
  transition: border-color .15s, color .15s;
}
.link-chips a:hover { border-color: var(--ember); color: var(--ember); }
@media (max-width: 860px) {
  .industry { grid-template-columns: minmax(0, 1fr); }
  .industry-media { position: static; max-width: 520px; }
  .zone-list { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- split / process ---------- */

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.split h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 20px; }
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); } }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 4px 12px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 14px; color: var(--ember); padding-top: 2px;
}
.steps h3 { font-size: 18px; margin-bottom: 6px; }
.steps p { color: var(--muted); font-size: 15px; grid-column: 2; }
.steps h3 { grid-column: 2; grid-row: 1; }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding: 12px 0 12px 30px; border-top: 1px solid var(--line-soft); font-size: 15.5px; }
.checklist li:last-child { border-bottom: 1px solid var(--line-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 2px; top: 19px; width: 12px; height: 7px;
  border-left: 2px solid var(--ember); border-bottom: 2px solid var(--ember); transform: rotate(-45deg);
}

/* ---------- spec preview (home) ---------- */

.spec-preview { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.spec-preview figure { margin: 0; }
.spec-preview .sp-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 900px) { .spec-preview { grid-template-columns: minmax(0, 1fr); } }

/* ---------- spec tables ---------- */

.table-scroll {
  position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); background: var(--white);
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.spec-table caption {
  caption-side: top; text-align: left; padding: 14px 16px; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid var(--line); background: var(--paper);
}
.spec-table th, .spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.spec-table tbody tr:last-child :is(th, td) { border-bottom: 0; }
.spec-table thead th {
  background: var(--ink-2); color: var(--white); font-weight: 500; vertical-align: bottom; border-bottom: 0;
}
.spec-table thead th .code { display: block; font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: .01em; white-space: nowrap; }
.spec-table thead th .clabel { display: block; font-size: 12px; color: #a9b4be; font-weight: 400; margin-top: 3px; line-height: 1.35; min-width: 9ch; }
.spec-table thead th:first-child { background: var(--ink); }
.spec-table tbody th { font-weight: 500; color: var(--ink); background: var(--white); min-width: 180px; }
.spec-table tbody th .unit { color: var(--muted); font-weight: 400; }
.spec-table tbody th .cond { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--muted); font-weight: 400; }
.spec-table td { font-family: var(--font-mono); font-size: 13.5px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.spec-table td.wrap-cell { white-space: normal; font-family: var(--font-sans); font-size: 13.5px; min-width: 14ch; }
.spec-table tbody tr:nth-child(even) :is(td, th) { background: #faf9f7; }
.spec-table tbody tr:hover :is(td, th) { background: var(--ember-tint); }
.spec-table :is(th, td):first-child { position: sticky; left: 0; z-index: 1; box-shadow: 1px 0 0 var(--line-soft); }
.table-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.table-hint { display: none; font-size: 12px; color: var(--muted); font-family: var(--font-mono); margin-bottom: 8px; }
@media (max-width: 700px) { .table-hint { display: block; } .spec-table tbody th { min-width: 150px; } }

/* ---------- product category page ---------- */

.cat-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.cat-aside { position: sticky; top: calc(var(--header-h) + 28px); }
.cat-aside h2 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cat-aside ol { list-style: none; margin: 0 0 28px; padding: 0; border-left: 1px solid var(--line); }
.cat-aside li a {
  display: block; padding: 8px 0 8px 16px; margin-left: -1px; border-left: 2px solid transparent;
  text-decoration: none; font-size: 14.5px; color: var(--muted); line-height: 1.4;
}
.cat-aside li a:hover { color: var(--ink); }
.cat-aside li a.is-active { color: var(--ink); border-left-color: var(--ember); font-weight: 500; }
.aside-cta { padding: 20px; background: var(--paper); border: 1px solid var(--line-soft); }
.aside-cta p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.aside-cta .btn { width: 100%; min-height: 42px; font-size: 14px; }

.product { padding-bottom: clamp(48px, 6vw, 72px); margin-bottom: clamp(48px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.product:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.product-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 14px; }
.product-head .pnum { font-family: var(--font-mono); font-size: 13px; color: var(--ember); flex: none; }
.product h2 { font-size: clamp(24px, 2.6vw, 32px); }
.product > p { color: var(--muted); max-width: 70ch; font-size: 16.5px; margin-bottom: 28px; }
.product .spec-block + .spec-block { margin-top: 28px; }
.product-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-bottom: 28px; }
.gallery.count-1 { grid-template-columns: minmax(0, 520px); }
.gallery.count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery.count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery button {
  display: block; padding: 0; border: 0; background: var(--paper-2); cursor: zoom-in; position: relative; overflow: hidden;
}
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease, opacity .2s; }
.gallery button:hover img { transform: scale(1.04); }
.gallery button.is-drawing { background: var(--white); border: 1px solid var(--line-soft); }
.gallery button.is-drawing img { object-fit: contain; padding: 8px; }
.gallery .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; text-align: left;
  background: linear-gradient(to top, rgba(17,24,32,.78), rgba(17,24,32,0)); color: #fff;
  font-size: 12px; padding: 18px 10px 7px; line-height: 1.35;
  opacity: 0; transition: opacity .2s;
}
.gallery button:hover .g-cap, .gallery button:focus-visible .g-cap { opacity: 1; }
@media (max-width: 1100px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) {
  .gallery, .gallery.count-3, .gallery.count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery .g-cap { opacity: 1; font-size: 11px; }
}

.figure-drawing { margin: 0 0 28px; border: 1px solid var(--line); background: var(--white); padding: 16px; }
.figure-drawing img { margin: 0 auto; max-height: 460px; width: auto; }
.figure-drawing figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; }

.legend-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.legend-table th, .legend-table td { padding: 10px 12px; border-bottom: 1px solid var(--line-soft); text-align: left; }
.legend-table th { font-weight: 500; color: var(--muted); font-size: 13px; }

@media (max-width: 960px) {
  .cat-layout { grid-template-columns: minmax(0, 1fr); }
  .cat-aside { position: static; }
  .cat-aside ol { display: flex; flex-wrap: wrap; gap: 8px; border: 0; margin-bottom: 0; }
  .cat-aside li a { border: 1px solid var(--line); padding: 7px 12px; margin: 0; font-size: 13.5px; }
  .cat-aside li a.is-active { border-color: var(--ember); }
  .aside-cta { display: none; }
}

/* category nav strip at the bottom of product pages */
.cat-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cat-strip a {
  display: flex; gap: 12px; align-items: center; padding: 16px 18px; text-decoration: none;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); font-size: 14.5px; font-weight: 500;
}
.cat-strip a:hover { background: var(--paper); }
.cat-strip a[aria-current="page"] { color: var(--ember); }
.cat-strip .n { font-family: var(--font-mono); font-size: 12px; color: var(--muted); font-weight: 400; }
@media (max-width: 900px) { .cat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- about ---------- */

.about-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); }
.about-intro .big { font-size: clamp(21px, 2.1vw, 26px); line-height: 1.45; color: var(--ink); font-weight: 400; }
html:lang(zh-Hans) .about-intro .big { line-height: 1.7; }
@media (max-width: 900px) { .about-intro { grid-template-columns: minmax(0, 1fr); } }

.range-table { width: 100%; border-collapse: collapse; }
.range-table th, .range-table td { text-align: left; padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.range-table thead th { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-top: 0; }
.range-table tbody th { font-weight: 600; font-size: 16px; width: 32%; }
.range-table tbody th a { text-decoration: none; }
.range-table tbody th a:hover { color: var(--ember); }
.range-table td { color: var(--muted); font-size: 15px; }
@media (max-width: 700px) {
  .range-table thead { display: none; }
  .range-table tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .range-table th, .range-table td { display: block; width: auto !important; border: 0; padding: 2px 0; }
}

.office-card { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); background: var(--white); }
.office-card > div { padding: 26px 26px 28px; border-right: 1px solid var(--line); }
.office-card > div:last-child { border-right: 0; }
.office-card h3 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.office-card p { font-size: 16px; color: var(--ink); }
.office-card a { text-decoration: none; }
.office-card a:hover { color: var(--ember); }
@media (max-width: 860px) {
  .office-card { grid-template-columns: minmax(0, 1fr); }
  .office-card > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .office-card > div:last-child { border-bottom: 0; }
}

/* ---------- CTA band ---------- */

.cta-band { background: var(--ember); color: #fff; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); max-width: 24ch; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 60ch; }
.cta-band .btn { background: var(--ink); color: #fff; }
.cta-band .btn:hover { background: #000; }
.cta-band .btn-line { background: transparent; border-color: rgba(255,255,255,.55); }
.cta-band .btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }
@media (max-width: 860px) { .cta-band .wrap { flex-direction: column; align-items: flex-start; } }

/* ---------- contact ---------- */

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 960px) { .contact-layout { grid-template-columns: minmax(0, 1fr); } }

.form-card { background: var(--white); border: 1px solid var(--line); padding: clamp(22px, 3.5vw, 40px); }
.form-card h2 { font-size: 26px; margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }

.field label, .field .label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--ember); margin-left: 2px; }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.field input, .field select, .field textarea {
  display: block; width: 100%; min-height: 48px;
  padding: 11px 14px; background: var(--white);
  border: 1px solid #c7c0b4; border-radius: var(--radius);
  font-size: 16px; line-height: 1.4; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23111820' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9d958a; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(194,78,23,.18); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--err); }
.field .error { display: none; color: var(--err); font-size: 13px; margin-top: 6px; }
.field.invalid .error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label { margin: 0; position: relative; }
.field .radio-row input { position: absolute; left: 0; top: 0; width: 1px; height: 1px; min-height: 0; padding: 0; border: 0; opacity: 0; pointer-events: none; }
.radio-row span {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; font-size: 14px; font-weight: 400;
  border: 1px solid #c7c0b4; border-radius: var(--radius); cursor: pointer; background: var(--white);
}
.radio-row input:checked + span { border-color: var(--ink); background: var(--ink); color: #fff; }
.radio-row input:focus-visible + span { outline: 2px solid var(--ember); outline-offset: 2px; }

.field .consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 400; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--ember); }
.consent a { color: var(--ink); }

.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 8px; }
.form-footer .btn { min-width: 220px; }
.form-footer small { color: var(--muted); font-size: 13px; max-width: 42ch; }

.form-status { display: none; margin-top: 20px; padding: 14px 16px; font-size: 15px; border-left: 3px solid; }
.form-status.is-ok { display: block; background: #eef5ef; border-color: var(--ok); color: #1e4a29; }
.form-status.is-err { display: block; background: #fbeeec; border-color: var(--err); color: #7a1a12; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-block { border: 1px solid var(--line); padding: 24px; background: var(--white); }
.contact-block h3 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.contact-block .big-line { font-size: 22px; font-weight: 600; color: var(--ink); text-decoration: none; display: inline-block; margin-bottom: 6px; }
.contact-block .big-line:hover { color: var(--ember); }
.contact-block address { font-style: normal; font-size: 16px; line-height: 1.6; color: var(--ink); }
.contact-block .row-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.contact-block .row-actions .btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
.contact-block dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 15px; }
.contact-block dt { color: var(--muted); }
.contact-block dd { margin: 0; color: var(--ink); }
.contact-block.dark { background: var(--ink-2); border-color: var(--ink-2); color: #b8c2cb; }
.contact-block.dark h3 { color: var(--muted-dark); }
.contact-block.dark ol { margin: 0; padding-left: 18px; font-size: 14.5px; }
.contact-block.dark li + li { margin-top: 8px; }

/* ---------- prose (privacy) ---------- */

.prose { max-width: 72ch; }
.prose h2 { font-size: 22px; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #3b444d; }
.prose ul { padding-left: 20px; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: var(--muted-dark); font-size: 14.5px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-top: 64px; padding-bottom: 48px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 36ch; }
.site-footer h2 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 9px; }
.site-footer a { color: #c5cdd4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.65; }
.footer-bottom { border-top: 1px solid var(--line-dark); }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 20px; padding-bottom: 24px; font-size: 13px; }
.footer-bottom .lang-switch a { padding: 4px 6px; }
@media (max-width: 960px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: minmax(0, 1fr); } }

/* ---------- lightbox ---------- */

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw); max-height: 92vh; }
.lightbox::backdrop { background: rgba(10,14,18,.9); }
.lightbox img { max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto; background: #fff; }
.lightbox p { color: #e6eaee; text-align: center; font-size: 14px; margin: 12px 0 0; }
.lightbox .lb-close {
  position: fixed; top: 16px; right: 16px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35);
  background: transparent; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; border-radius: var(--radius);
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.12); }

/* ---------- misc ---------- */

.note-inline { font-size: 13px; color: var(--muted); border-left: 2px solid var(--line); padding-left: 12px; }
.section-dark .note-inline { color: var(--muted-dark); border-color: var(--line-dark); }

.center-404 { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px var(--gutter); }
.center-404 h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 12px; }
.center-404 ul { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.center-404 a { text-decoration: none; }

/* ---------- motion ---------- */

@keyframes yg-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes yg-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes yg-wipe { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes yg-settle { from { transform: scale(1.12); } to { transform: scale(1); } }
@keyframes yg-glow {
  0%, 100% { opacity: .5; transform: translate3d(-3%, 0, 0) scale(1); }
  50% { opacity: .9; transform: translate3d(3%, -2%, 0) scale(1.08); }
}
@keyframes yg-drift { from { background-position: 0 0, 0 0; } to { background-position: 80px 0, 0 80px; } }
@keyframes yg-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes yg-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }

/* hero: text rises in sequence, photos are uncovered by a wipe */
.hero::before { animation: yg-drift 60s linear infinite; }
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  left: -10%; bottom: -45%; width: 70%; height: 90%;
  background: radial-gradient(closest-side, rgba(214, 92, 30, .28), rgba(214, 92, 30, 0));
  animation: yg-glow 11s ease-in-out infinite;
}
.hero .wrap { z-index: 1; }
.hero .eyebrow { animation: yg-rise .7s cubic-bezier(.2,.7,.2,1) .05s both; }
.hero .eyebrow::before { transform-origin: left; animation: yg-line .6s cubic-bezier(.7,0,.2,1) .2s both; }
.hero h1 { animation: yg-rise .8s cubic-bezier(.2,.7,.2,1) .14s both; }
.hero .lead { animation: yg-rise .8s cubic-bezier(.2,.7,.2,1) .28s both; }
.hero-actions { animation: yg-rise .8s cubic-bezier(.2,.7,.2,1) .4s both; }
.hero-figure figure { animation: yg-wipe 1.1s cubic-bezier(.7,0,.2,1) both; }
.hero-figure figure img { animation: yg-settle 1.8s cubic-bezier(.2,.7,.2,1) both; }
.hero-figure figure:nth-child(1), .hero-figure figure:nth-child(1) img { animation-delay: .25s; }
.hero-figure figure:nth-child(2), .hero-figure figure:nth-child(2) img { animation-delay: .45s; }
.hero-figure figure:nth-child(3), .hero-figure figure:nth-child(3) img { animation-delay: .6s; }
.hero-figure figcaption { animation: yg-fade .5s ease both; }
.hero-figure figure:nth-child(1) figcaption { animation-delay: 1.1s; }
.hero-figure figure:nth-child(2) figcaption { animation-delay: 1.25s; }
.hero-figure figure:nth-child(3) figcaption { animation-delay: 1.4s; }

/* inner page headers */
.page-head .breadcrumb { animation: yg-fade .6s ease .05s both; }
.page-head .eyebrow { animation: yg-rise .7s cubic-bezier(.2,.7,.2,1) .08s both; }
.page-head h1 { animation: yg-rise .8s cubic-bezier(.2,.7,.2,1) .16s both; }
.page-head .lead { animation: yg-rise .8s cubic-bezier(.2,.7,.2,1) .28s both; }
.page-head-media { animation: yg-wipe 1s cubic-bezier(.7,0,.2,1) .2s both; }
.page-head-media img { animation: yg-settle 1.6s cubic-bezier(.2,.7,.2,1) .2s both; }

/* scroll reveal, staggered with --i */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* section eyebrows draw their rule when revealed */
.reveal .eyebrow::before, .reveal.eyebrow::before { transform: scaleX(0); transform-origin: left; transition: transform .6s cubic-bezier(.7,0,.2,1) .15s; }
.reveal.is-in .eyebrow::before, .reveal.is-in.eyebrow::before { transform: scaleX(1); }

/* header gains a shadow and a slightly smaller logo once the page scrolls */
.site-header { transition: box-shadow .25s ease, background-color .25s ease; }
.site-header .brand img { transition: transform .25s ease; transform-origin: left center; }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(17, 24, 32, .08); }
.site-header.is-scrolled .brand img { transform: scale(.9); }

/* category cards: ember rule grows along the bottom on hover */
.cat-card::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px; height: 3px;
  background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.7,0,.2,1);
}
.cat-card:hover::after, .cat-card:focus-visible::after { transform: scaleX(1); }

/* industry rows on the home page */
.ind-row { position: relative; transition: background-color .25s ease; }
.ind-row::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 100%;
  background: #e0703a; transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.ind-row:hover::before { transform: scaleX(1); }
.ind-row h3 { transition: transform .3s ease; }
.ind-row:hover h3 { transform: translateX(6px); }

/* buttons: arrow nudges on hover */
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* spec tables fade their rows in once visible */
.spec-block.reveal tbody tr { opacity: 0; transition: opacity .45s ease; transition-delay: calc(var(--r, 0) * 35ms + 150ms); }
.spec-block.reveal.is-in tbody tr { opacity: 1; }
.no-js .spec-block.reveal tbody tr { opacity: 1; }

/* lightbox */
.lightbox[open] { animation: yg-pop .25s cubic-bezier(.2,.7,.2,1); }
.lightbox[open]::backdrop { animation: yg-fade .25s ease; }

/* count-up figures keep their width while counting */
.facts strong[data-count] { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .spec-block.reveal tbody tr { opacity: 1 !important; transform: none !important; }
  .reveal .eyebrow::before, .reveal.eyebrow::before { transform: none !important; }
  .hero::after { display: none; }
}
