/* ==========================================================================
   QINGDAO STM — Targo motion system on OEM content
   Accent #15BCDF. Ground #F2F1F0. Display: Quantico.
   ========================================================================== */

:root {
  /* ground + ink */
  --ink: #2b3033;
  --ink-2: #1a1c1e;
  --paper: #F2F1F0;
  --mist: #F7F6F8;
  --cloud: #F7F6F8;

  /* accent — Targo cyan */
  --cyan: #15BCDF;
  --cyan-hover: #3fd0ef;
  --cyan-text: #0a7a90;
  --cyan-border: #0fa3c2;
  --cyan-tint: #d7f4fa;
  --blue: #15BCDF;
  --blue-hover: #3fd0ef;
  --blue-text: #0a7a90;
  --blue-tint: #d7f4fa;

  /* neutrals */
  --text: #4f5458;
  --slate: #5c6165;
  --nav: #3a3a3a;
  --border: #E3E8EF;
  --border-strong: #C9D3E0;

  /* semantic */
  --good: #1B7A54;
  --good-tint: #E4F3EC;
  --warn: #9A6206;
  --crit: #A32F2B;

  /* radius / shadow */
  --r: 12px;
  --r-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 30, 60, .05), 0 6px 18px -10px rgba(10, 30, 60, .14);
  --shadow: 0 4px 6px -1px rgba(10, 30, 60, .04), 0 12px 24px -6px rgba(10, 30, 60, .08);
  --shadow-lg: 0 2px 6px rgba(10, 30, 60, .07), 0 24px 60px -24px rgba(10, 30, 60, .30);
  --shadow-hover: 0 24px 48px -12px rgba(10, 30, 60, .18);

  /* layout */
  --maxw: 1200px;
  --header-h: 72px;
  --header-h-mobile: 60px;

  /* typography */
  --font-display: Quantico, "Noto Sans SC", "Arial Narrow", Helvetica, Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Noto Sans SC", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "Noto Sans SC", ui-monospace, SFMono-Regular, monospace;

  /* motion */
  --transition-fast: 0.15s ease;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-duration: 0.35s;
}

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

/* Reveal-on-load animation (sections already visible, then settle) */
.reveal {
  opacity: 0.96;
  transform: translateY(8px);
  transition: opacity var(--reveal-duration) cubic-bezier(0.4, 0, 0.2, 1),
              transform var(--reveal-duration) cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within a revealed container */
.reveal-children > * {
  opacity: 0.96;
  transform: translateY(10px);
  transition: opacity var(--reveal-duration) cubic-bezier(0.4, 0, 0.2, 1),
              transform var(--reveal-duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-children.is-visible > *,
.no-js .reveal-children > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 45ms; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 90ms; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 135ms; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 180ms; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 225ms; }
.reveal-children.is-visible > *:nth-child(7) { transition-delay: 270ms; }
.reveal-children.is-visible > *:nth-child(8) { transition-delay: 315ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal-children > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (scripting: none) {
  .reveal,
  .reveal-children > * {
    opacity: 1;
    transform: none;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: #F2F1F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: var(--ink);
}

.lang-zh h1,
.lang-zh h2,
.lang-zh h3,
.lang-zh h4 {
  letter-spacing: 0;
  line-height: 1.18;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--nav);
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

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

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

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
}

.skip-link:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 28px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 40px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1280px;
  }
}

/* Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--cyan-text);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 2.2vw, 16px);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: none;
}

.btn--primary {
  background: var(--cyan);
  color: #1a1c1e;
  border-color: var(--cyan-border);
  box-shadow: 0 0 0 1px rgba(21, 188, 223, 0.35), 0 10px 30px -12px rgba(15, 163, 194, 0.6);
}

.btn--primary::after {
  content: "";
  width: 22px;
  height: 1px;
  background: #1a1c1e;
  flex-shrink: 0;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--cyan-hover);
  border-color: var(--cyan-border);
  box-shadow: 0 0 0 1px rgba(63, 208, 239, 0.55), 0 16px 40px -12px rgba(15, 163, 194, 0.75);
  color: #1a1c1e;
}

.btn--secondary {
  background: var(--cyan-tint);
  color: var(--cyan-text);
  border-color: transparent;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: #D5EAFB;
  border-color: transparent;
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--mist);
  border-color: var(--cyan-text);
  color: var(--ink);
}

.btn--light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Header */
.util-bar {
  background: #1C2128;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.util-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.util-bar p {
  margin: 0;
}

.util-bar__links {
  display: flex;
  gap: 18px;
}

.util-bar a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.util-bar a:hover {
  color: #FFFFFF;
}

body.home .util-bar {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  background: #F2F1F0;
  color: var(--ink);
  border-bottom: 1px solid rgba(43, 48, 51, 0.08);
  box-shadow: none;
  transition: background-color var(--transition), box-shadow var(--transition);
}

body.home .site-header {
  position: sticky;
  left: auto;
  right: auto;
  background: #F2F1F0;
  border-bottom: 1px solid rgba(43, 48, 51, 0.08);
}

body.home .site-header .container {
  max-width: none;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

body.home .site-header.is-stuck {
  position: sticky;
  background: rgba(242, 241, 240, 0.94);
  box-shadow: 0 8px 24px -16px rgba(26, 28, 30, 0.35);
  backdrop-filter: blur(10px);
}

.site-header.is-stuck {
  background: rgba(242, 241, 240, 0.96);
  box-shadow: 0 8px 24px -16px rgba(26, 28, 30, 0.35);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h-mobile);
  padding: 10px 0;
}

@media (min-width: 900px) {
  .header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: var(--header-h);
    gap: 32px 56px;
    padding: 0;
  }
}

.site-branding {
  justify-self: start;
  min-width: 0;
}

.primary-nav {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  justify-self: end;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: stretch;
    min-width: 0;
    padding-right: 8px;
  }
}

.site-branding a,
.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.stm-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.stm-brand__mark {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.stm-brand__mark svg {
  display: block;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 6px 14px rgba(11, 28, 51, 0.18));
}

.stm-brand__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.stm-brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.stm-brand__meta {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--slate);
}

.site-footer .stm-brand__name {
  color: #FFFFFF;
}

.site-footer .stm-brand__meta {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .util-bar__note {
    display: none;
  }

  .stm-brand__meta {
    display: none;
  }

  .stm-logo svg {
    width: 108px;
    height: 34px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .eyebrow {
    white-space: normal;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .stm-brand__mark svg {
    width: 36px;
    height: 36px;
  }

  .stm-brand__name {
    font-size: 1.25rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0 8px;
}

.nav-menu a {
  display: block;
  padding: 22px 12px;
  color: var(--nav);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12px, 2.4vw, 15px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  perspective: 180px;
  transition: color var(--transition-fast);
}

@media (min-width: 1100px) {
  .nav-menu a {
    padding: 22px 16px;
  }
}

.nav-flip {
  display: inline-grid;
  overflow: hidden;
  height: 1.15em;
  vertical-align: -0.08em;
  perspective: 180px;
  transform-style: preserve-3d;
}

.nav-flip__face {
  grid-area: 1 / 1;
  line-height: 1.15;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: 50% 50%;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.32s ease;
}

.nav-menu .nav-flip__face:not(.nav-flip__face--alt) {
  color: var(--nav);
}

.nav-flip__face--alt {
  color: var(--cyan);
  transform: rotateX(-90deg);
  opacity: 0;
}

.nav-menu a:hover .nav-flip__face:not(.nav-flip__face--alt),
.nav-menu a:focus-visible .nav-flip__face:not(.nav-flip__face--alt),
.nav-menu .current-menu-item > a .nav-flip__face:not(.nav-flip__face--alt),
.nav-menu a[aria-current="page"] .nav-flip__face:not(.nav-flip__face--alt) {
  transform: rotateX(90deg);
  opacity: 0;
}

.nav-menu a:hover .nav-flip__face--alt,
.nav-menu a:focus-visible .nav-flip__face--alt,
.nav-menu .current-menu-item > a .nav-flip__face--alt,
.nav-menu a[aria-current="page"] .nav-flip__face--alt {
  transform: rotateX(0deg);
  opacity: 1;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu .current-menu-item > a,
.nav-menu a[aria-current="page"] {
  color: var(--cyan);
  background: transparent;
}

.nav-menu .current-menu-item > a::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: transparent;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1c1e;
  border-radius: 0;
}

.header__cta {
  display: none;
  padding: 14px 26px;
  font-size: clamp(12px, 2.4vw, 14px);
  letter-spacing: 0.14em;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.header__cta::after {
  display: none;
}

.header__cta .header__cta-icon {
  width: 17px;
  height: 13px;
  flex-shrink: 0;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 100%);
  background: #1a1c1e;
  color: #f2f1f0;
  z-index: 200;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition), visibility var(--transition);
  box-shadow: -12px 0 40px rgba(10, 30, 60, .12);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer__header {
  display: flex;
  justify-content: flex-end;
}

.menu-close {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  cursor: pointer;
  color: #f2f1f0;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-menu a {
  display: block;
  padding: 0;
  color: #f2f1f0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  perspective: 180px;
  transition: color var(--transition-fast);
}

.mobile-nav-menu .nav-flip__face:not(.nav-flip__face--alt) {
  color: #f2f1f0;
}

.mobile-nav-menu a:hover .nav-flip__face:not(.nav-flip__face--alt),
.mobile-nav-menu a:focus-visible .nav-flip__face:not(.nav-flip__face--alt),
.mobile-nav-menu .current-menu-item > a .nav-flip__face:not(.nav-flip__face--alt),
.mobile-nav-menu a[aria-current="page"] .nav-flip__face:not(.nav-flip__face--alt) {
  transform: rotateX(90deg);
  opacity: 0;
}

.mobile-nav-menu a:hover .nav-flip__face--alt,
.mobile-nav-menu a:focus-visible .nav-flip__face--alt,
.mobile-nav-menu .current-menu-item > a .nav-flip__face--alt,
.mobile-nav-menu a[aria-current="page"] .nav-flip__face--alt {
  transform: rotateX(0deg);
  opacity: 1;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus-visible,
.mobile-nav-menu .current-menu-item > a,
.mobile-nav-menu a[aria-current="page"] {
  background: transparent;
  color: var(--cyan);
}

.mobile-cta {
  margin-top: auto;
  justify-content: center;
}

@media (max-width: 899px) {
  body.home .menu-toggle {
    background: rgba(26, 28, 30, 0.55);
  }

  body.home .menu-toggle__bar {
    background: #fff;
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .header__cta {
    display: inline-flex;
  }

  .mobile-drawer {
    display: none;
  }
}

/* Sections */
.section {
  padding-block: 64px;
  position: relative;
  scroll-margin-top: 96px;
}

@media (min-width: 768px) {
  .section {
    padding-block: 84px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 100px;
  }
}

.section h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  max-width: 22ch;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.lang-zh .section h2 {
  letter-spacing: 0;
  line-height: 1.18;
}

.section-head {
  text-align: left;
  max-width: 42rem;
  margin: 0 0 56px;
}

.section-head .eyebrow {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.section-head h2 {
  max-width: none;
  margin: 0 0 16px;
}

.section-head .section-lead {
  margin: 0;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head--center .eyebrow {
  justify-content: center;
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 88% 18%, rgba(0, 120, 210, 0.10) 0%, transparent 42%),
    linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 58%);
  color: var(--text);
  padding-block: 72px 56px;
  overflow: visible;
  position: relative;
}

.hero::before {
  display: none;
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 620px;
}

.hero__heading {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero__subheading {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 48ch;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__certs {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

.hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: radial-gradient(ellipse at 50% 70%, #1E3F5F 0%, #0B1C33 72%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 36px 80px -28px rgba(11, 28, 51, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.16) 0%, transparent 46%);
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
  }

  .hero {
    padding-block: 96px 64px;
  }

  .hero__media {
    min-height: 500px;
  }
}

/* Credibility floating bar */
.credibility {
  padding-block: 0;
  padding-top: 24px;
  z-index: 2;
  background: transparent;
}

@media (min-width: 768px) {
  .credibility {
    padding-top: 40px;
  }
}

.stats__grid {
  list-style: none;
  margin: 0;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}

.stat__tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.stat__tile:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
  display: none;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat__value {
    font-size: 2.5rem;
  }

  .stat__tile:not(:last-child)::after {
    display: block;
  }
}

/* Credential strip — QC instruments */
.credential-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding-block: 32px;
}

.credential-strip__heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate);
  margin-bottom: 24px;
  text-align: center;
}

.credential-strip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.credential-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.credential-chip:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.credential-chip__icon {
  width: 28px;
  height: 28px;
  color: var(--cyan-text);
  flex-shrink: 0;
}

.credential-chip__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .credential-strip {
    padding-block: 40px;
  }

  .credential-strip__grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.card:hover,
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
  text-decoration: none;
}

.card:hover::before {
  transform: scaleX(1);
}

.card > svg,
.card-icon svg,
.pillar-card__icon,
.industry-card__icon {
  width: 52px;
  height: 52px;
  color: var(--cyan-text);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan-text);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  margin: 0;
}

.family-card__icon,
.pillar-card__icon,
.industry-card__icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan-text);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.industry-card__icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-bottom: 0;
}

/* Families */
.families {
  background: var(--mist);
}

.family-card {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.family-card__media {
  order: -1;
  margin: 0 -28px 20px -28px;
  border-radius: var(--r) var(--r) 0 0;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 38%, #2C3542 0%, #1A1F26 68%);
  aspect-ratio: 4 / 3;
}

.family-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  transition: transform var(--transition);
}

.family-card:hover .family-card__media img {
  transform: scale(1.03);
}

.family-card__icon {
  display: none;
}

.family-card__placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F1F6FC 0%, #FFFFFF 50%, #E8EEF5 100%);
  position: relative;
}

.family-card__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C1D2E6' stroke-width='1' stroke-opacity='0.5'%3E%3Cpath d='M0 20h40M20 0v40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.family-card__placeholder-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.family-card__icon,
.family-card__title {
  order: 0;
}

.family-card__spec {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 14px;
  order: 1;
}

.family-card__desc {
  color: var(--slate);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
  order: 2;
}

/* Pillars */
.pillars {
  background: var(--paper);
}

.pillar-card__desc {
  color: var(--slate);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Quality */
.quality {
  background: var(--mist);
}

.quality__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.quality__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: radial-gradient(ellipse at 50% 38%, #2C3542 0%, #1A1F26 68%);
  box-shadow: 0 28px 60px -28px rgba(11, 28, 51, .40);
}

.quality__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.quality__media::after {
  content: "In-house QC";
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.quality__content {
  max-width: 56ch;
}

.quality__content h2 {
  max-width: 22ch;
}

.rich-text p {
  color: var(--slate);
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.quality__points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.quality__points li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9375rem;
}

.quality__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005EA8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / 12px no-repeat;
}

@media (min-width: 768px) {
  .quality__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Clients */
.clients {
  background: var(--paper);
}

.clients__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.client-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--slate);
  min-height: 44px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.client-chip:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-text);
  color: var(--cyan-text);
  box-shadow: var(--shadow-sm);
}

.client-chip__logo {
  max-height: 28px;
  width: auto;
}

/* Process timeline */
.process {
  background: var(--mist);
}

.process__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  position: relative;
}

.process__step {
  position: relative;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.process__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan-text);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.process__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.process__detail {
  color: var(--slate);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.process__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--good);
  background: var(--good-tint);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .process__timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .process__connector {
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--border-strong) 100%);
    z-index: 0;
  }

  .process__step {
    z-index: 1;
    border-radius: 0;
    border-left: none;
    border-right: 1px solid var(--border);
    box-shadow: none;
  }

  .process__step:first-child {
    border-top-left-radius: var(--r);
    border-bottom-left-radius: var(--r);
  }

  .process__step:last-child {
    border-top-right-radius: var(--r);
    border-bottom-right-radius: var(--r);
    border-right: none;
  }

  .process__step:hover {
    box-shadow: none;
    transform: translateY(-6px);
  }
}

/* Case */
.case {
  background: var(--paper);
}

.case__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.case__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: radial-gradient(ellipse at 50% 38%, #2C3542 0%, #1A1F26 68%);
  box-shadow: 0 28px 60px -28px rgba(11, 28, 51, .40);
}

.case__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.case__content {
  background: var(--mist);
  border-radius: var(--r);
  padding: 36px;
  border: 1px solid var(--border);
}

.case__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-text);
  background: var(--cyan-tint);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 600;
}

.case__block {
  margin-bottom: 26px;
}

.case__block h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 10px;
  font-weight: 700;
}

.case__block p {
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.7;
}

.case__block--result {
  border-left: 3px solid var(--good);
  padding-left: 18px;
}

@media (min-width: 768px) {
  .case__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

/* Industries */
.industries {
  background: var(--mist);
}

.industries__grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Homepage industry pills stay compact; page cards are photo tiles. */

/* RFQ */
.rfq {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.rfq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 120, 210, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23FFFFFF' stroke-width='0.5' stroke-opacity='0.05' fill='none'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.rfq .container {
  position: relative;
  z-index: 1;
}

.rfq h2 {
  color: var(--paper);
  max-width: 32ch;
}

.rfq p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 65ch;
  margin-bottom: 40px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

.rfq__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rfq__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lang-zh .rfq__label {
  text-transform: none;
  letter-spacing: 0.02em;
}

.rfq__field input,
.rfq__field select,
.rfq__field textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  width: 100%;
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.rfq__field input::placeholder,
.rfq__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.rfq__field input:focus,
.rfq__field select:focus,
.rfq__field textarea:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 120, 210, 0.25);
}

.rfq__field select {
  color: rgba(255, 255, 255, 0.85);
}

.rfq__field select option {
  color: var(--text);
  background: var(--paper);
}

.rfq__field--file input {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.rfq__hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.rfq__field--message,
.rfq__field--file {
  margin-bottom: 18px;
}

.rfq__file-error {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: #FFB4B4;
  font-weight: 600;
}

.rfq__honeypot {
  position: absolute;
  left: -10000px;
}

.recaptcha-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-bottom: 18px;
  width: 100%;
  max-width: 304px;
}

.rfq__success,
.rfq__error {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
}

.rfq__success {
  background: rgba(27, 122, 84, 0.18);
  border: 1px solid var(--good);
  color: var(--paper);
}

.rfq__error {
  background: rgba(163, 47, 43, 0.18);
  border: 1px solid var(--crit);
  color: var(--paper);
}

.rfq__success[hidden],
.rfq__error[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .rfq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rfq__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rfq__field--file {
    grid-column: span 2;
  }

  .rfq__field--message {
    grid-column: span 3;
  }
}

/* Footer */
.site-footer {
  background: #1C2128;
  color: rgba(255, 255, 255, 0.7);
  padding-block: 72px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .stm-logo {
  color: var(--paper);
  margin-bottom: 18px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__brand .site-title-block--footer .site-title {
  font-size: 1.125rem;
  color: var(--paper);
}

.footer__brand .site-title-block--footer .site-tagline {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__address {
  font-style: normal;
  margin-bottom: 18px;
  max-width: 36ch;
  line-height: 1.7;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contacts a {
  color: var(--paper);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer__title {
  font-size: 0.8125rem;
  color: var(--paper);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.lang-zh .footer__title {
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer__company-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--paper);
  margin-bottom: 8px;
  margin-top: 0;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.lang-zh .footer__company-name {
  letter-spacing: 0;
  font-weight: 600;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer__links a:hover {
  color: var(--paper);
  transform: translateX(3px);
}

.footer__certs {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
  margin-bottom: 32px;
}

.cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
  }
}

/* Floating contact buttons */
.fab-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: #eaf7fb;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-cta, #0fa3c2);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Rebranded to the one-accent system: graphite body, cyan glyph + ring.
   No more third-colour green. */
.fab--whatsapp,
.fab--wechat {
  background: #1a1c1e;
}

.fab--whatsapp:hover,
.fab--wechat:hover {
  background: #24282b;
}

.fab__icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: #15BCDF;
}

.fab__label {
  white-space: nowrap;
}

/* On phones, collapse the contact buttons to compact circular icons so they
   never cover the hero stat values or body copy in the bottom-right corner. */
@media (max-width: 767px) {
  .fab-launcher {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .fab {
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
  }
  .fab__icon {
    width: 24px;
    height: 24px;
  }
  .fab__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
}

/* Responsive type */
@media (min-width: 1920px) {
  .container {
    max-width: 1280px;
  }
}

/* Ensure no horizontal overflow */
html, body {
  overflow-x: hidden;
}

.family-card__illus {
  display: none;
}

/* ==========================================================================
   Editorial plant photography v4
   Full-bleed hero, product bento, mosaic — real STM photos.
   ========================================================================== */

.section-lead {
  max-width: 48ch;
  color: var(--slate);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: -24px 0 40px;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 1fr);
  min-height: calc(100svh - var(--header-h));
  background: #0c1014;
  color: #f4f1ec;
  overflow: hidden;
}

.hero-stage__copy {
  position: relative;
  z-index: 2;
  isolation: isolate;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(32px, 5vw, 64px) clamp(28px, 6vw, 72px) clamp(32px, 5vw, 64px) clamp(20px, 4vw, 56px);
  background: transparent;
}

/* Soft radial behind the words only. No frosted slab, no hard edge. */
.hero-stage__copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: 4% -18% 6% -12%;
  background: radial-gradient(
    ellipse 78% 72% at 18% 48%,
    rgba(8, 12, 16, 0.78) 0%,
    rgba(8, 12, 16, 0.42) 44%,
    rgba(8, 12, 16, 0) 74%
  );
}

.hero-stage .eyebrow {
  color: var(--cyan);
}

.hero-stage__heading {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: #f4f1ec;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.7),
    0 1px 1px rgba(0, 0, 0, 0.5),
    0 12px 32px rgba(0, 0, 0, 0.45);
}

.hero-stage__line {
  display: block;
  white-space: nowrap;
}

.hero-stage__line--sub {
  display: block;
}

.hero-stage__heading em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 0 28px rgba(21, 188, 223, 0.28);
}

.hero-stage__lead {
  margin: 22px 0 0;
  max-width: 38ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: rgba(244, 241, 236, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-stage__cta {
  margin: 32px 0 0;
}

.hero-stage__theatre {
  position: relative;
  z-index: 0;
  isolation: isolate;
  grid-column: 1 / -1;
  grid-row: 1;
  background: #111111;
  min-height: 100%;
  overflow: hidden;
}

/* Cinematic real-plant hero backdrop */
.hero-stage__photo,
.hero-stage__photo picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  margin: 0;
}

.hero-stage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  filter: saturate(1.06) contrast(1.12) brightness(0.96);
  transform: scale(1.04);
  animation: stm-kenburns 20s ease-in-out infinite alternate;
}

/* Cinematic grade: photo stays sharp, type sits in a feathered dark veil. */
.hero-stage__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 16, 0.88) 0%,
      rgba(8, 12, 16, 0.62) 22%,
      rgba(8, 12, 16, 0.28) 44%,
      rgba(8, 12, 16, 0.08) 58%,
      rgba(8, 12, 16, 0) 72%
    ),
    linear-gradient(
      180deg,
      rgba(8, 12, 16, 0.22) 0%,
      rgba(8, 12, 16, 0) 24%,
      rgba(8, 12, 16, 0) 58%,
      rgba(8, 12, 16, 0.38) 100%
    );
}

/* Small "finished part" chip that ties product to the real line */
.hero-stage__chip {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  width: min(42%, 260px);
  margin: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 16, 20, 0.55);
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  animation: stm-float 8s ease-in-out infinite;
  will-change: transform;
}

.hero-stage__chip img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: lighten;
}

.hero-stage__chip figcaption {
  padding: 6px 12px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfeaf1;
}

@keyframes stm-kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(0, -2%, 0); }
}

@keyframes stm-float {
  0%, 100% { transform: translate3d(0, var(--float-scroll, 0px), 0); }
  50% { transform: translate3d(0, calc(var(--float-scroll, 0px) - 10px), 0); }
}

@media (max-width: 900px) {
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: calc(100svh - var(--header-h-mobile));
  }

  .hero-stage__theatre,
  .hero-stage__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-stage__theatre {
    min-height: 100%;
  }

  .hero-stage__copy {
    padding: 38svh 20px 40px;
    max-width: none;
    justify-content: flex-end;
  }

  .hero-stage__copy::before {
    inset: auto -16% -12% -16%;
    height: 78%;
    background: linear-gradient(
      180deg,
      rgba(8, 12, 16, 0) 0%,
      rgba(8, 12, 16, 0.45) 32%,
      rgba(8, 12, 16, 0.82) 100%
    );
  }

  .hero-stage__scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 12, 16, 0.16) 0%,
      rgba(8, 12, 16, 0.04) 30%,
      rgba(8, 12, 16, 0.38) 62%,
      rgba(8, 12, 16, 0.86) 100%
    );
  }

  .hero-stage__heading {
    font-size: clamp(28px, 7.2vw, 40px);
  }

  .hero-stage__line {
    white-space: normal;
  }

  .hero-stage__line--sub {
    white-space: normal;
  }

  .hero-float--c {
    display: none;
  }

  .hero-float--a {
    width: 72%;
    left: 16%;
    top: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float,
  .hero-stage__photo img,
  .hero-stage__chip {
    animation: none;
  }
  .hero-stage__photo img { transform: scale(1.04); }
}

.about-stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: linear-gradient(180deg, #F2F1F0 0%, #F7F6F8 18%, #F7F6F8 100%);
  padding: clamp(60px, 10vw, 140px) 0 clamp(30px, 5vw, 70px) clamp(20px, 9vw, 118px);
}

.about-stage__copy {
  flex: 1 1 420px;
  min-width: 300px;
}

.about-stage__heading {
  margin: 0;
  font-size: clamp(34px, 6.5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.about-stage__heading .stair {
  display: block;
}

.about-stage__heading .stair--in {
  padding-left: min(160px, 18vw);
  color: var(--cyan);
}

.about-stage__lead {
  max-width: 520px;
  margin: 32px 0 0 min(160px, 18vw);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--text);
}

.about-stage__cta {
  margin: 36px 0 0 min(160px, 18vw);
}

.about-stage__media {
  position: relative;
  flex: 1 1 360px;
  min-width: 280px;
  display: flex;
  justify-content: flex-end;
}

.about-stage__media video,
.about-stage__media img,
.about-stage__media picture {
  width: 100%;
  max-width: 644px;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-stage__tint {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 644px;
  height: 100%;
  background: rgba(21, 188, 223, 0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Product catalog */
.catalog-grid {
  display: grid;
  gap: 28px 24px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.catalog-card:hover,
.catalog-card:focus-visible {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.catalog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #111111;
  padding: 0;
}

.catalog-card__media picture,
.plant-mosaic__item picture,
.cap-card__media picture,
.quality-split__media picture,
.clients-split__media picture,
.case-proof__media picture,
.industry-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-card__media picture {
  position: absolute;
  inset: 0;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.28);
}

.catalog-card__title {
  margin: 0;
  padding: 16px 18px 4px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
}

.catalog-card__spec {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.55;
  text-align: left;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
  }
}

/* Plant mosaic */
.plant {
  background: var(--cloud);
}

.plant-mosaic {
  display: grid;
  gap: 12px;
}

.plant-mosaic__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  align-self: start; /* size to content so short images don't leave an empty strip */
}

.plant-mosaic__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  /* Unify the raw plant snapshots into one cool, graded set */
  filter: saturate(0.8) contrast(1.05) brightness(0.99);
}

.plant-mosaic__item:hover img {
  transform: scale(1.03);
}

.plant-mosaic__item figcaption {
  padding: 12px 14px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.plant-mosaic__item--wide img {
  height: 340px;
}

@media (min-width: 768px) {
  .plant-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .plant-mosaic__item {
    grid-column: span 2;
  }

  .plant-mosaic__item--wide {
    grid-column: span 4;
  }

  .plant-mosaic__item img,
  .plant-mosaic__item--wide img {
    height: 340px;
  }
}

/* Capabilities photo cards */
.cap-grid {
  display: grid;
  gap: 20px;
}

.cap-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cap-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.cap-card h3 {
  margin: 18px 20px 8px;
  font-size: 1.125rem;
}

.cap-card p {
  margin: 0 20px 22px;
  color: var(--slate);
}

@media (min-width: 768px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Quality split */
.quality-split {
  display: grid;
  gap: 36px;
  align-items: start;
}

.quality-split__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.qc-strip {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.qc-strip li {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.qc-strip img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  background: var(--paper);
  display: block;
  padding: 8px;
}

.qc-strip span {
  display: block;
  padding: 8px 10px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (min-width: 900px) {
  .quality-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

/* Clients + cages */
.clients-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

.clients-split__media {
  margin: 0;
}

.clients-split__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.clients-split__media figcaption {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--slate);
}

@media (min-width: 900px) {
  .clients-split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

/* Case proof */
.case-proof {
  display: grid;
  gap: 32px;
  align-items: center;
}

.case-proof__media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (min-width: 900px) {
  .case-proof {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

.industry-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.industry-pill:hover,
.industry-pill:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan-tint);
  color: var(--cyan-text);
}

.rfq-layout {
  display: grid;
  gap: 36px;
}

.rfq__plant {
  margin: 24px 0 0;
}

.rfq__plant img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  opacity: 0.92;
}

@media (min-width: 900px) {
  .rfq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }

  .rfq__plant img {
    height: 220px;
  }
}

.section--mist {
  background: var(--mist);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-switch__link {
  color: var(--slate);
  text-decoration: none;
  padding: 2px 0;
}

.lang-switch__link:hover,
.lang-switch__link:focus-visible {
  color: var(--cyan-text);
}

.lang-switch__link.is-active {
  color: var(--ink);
  font-weight: 600;
}

.lang-switch__sep {
  color: var(--border-strong);
  user-select: none;
}

.lang-switch--footer {
  color: inherit;
}

.lang-switch--drawer {
  margin-right: auto;
}

/* Trust row */
.trust-row {
  background: var(--ink);
  color: #fff;
  padding: 14px 0;
}

.trust-row__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}

.trust-chip {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

.trust-chip::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: middle;
}

/* Spec pillars Tolerance/Coating/Capacity */
.spec-pillars__grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.spec-pillar {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
}

.spec-pillar__index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-text);
  font-weight: 600;
}

.spec-pillar__title {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.spec-pillar__lead {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--ink-2);
}

.spec-pillar__body {
  margin: 0;
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .spec-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Quote path */
.quote-path__steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: none;
}

.quote-path__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--paper);
}

.quote-path__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan-text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
}

.quote-path__step h3 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  color: var(--ink);
}

.quote-path__step p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9375rem;
}

.quote-path__cta {
  margin: 32px 0 0;
  text-align: center;
}

@media (min-width: 900px) {
  .quote-path__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .quote-path__step {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* Logistics band */
.logistics-band__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.logistics-band__copy h2 {
  margin: 8px 0 14px;
}

.logistics-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.logistics-band__media {
  margin: 0;
}

.logistics-band__media img,
.logistics-band__placeholder {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.logistics-band__placeholder {
  background: linear-gradient(135deg, var(--mist), var(--border));
}

.logistics-band__media figcaption {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--slate);
}

.stock-grade img {
  filter: saturate(0.92) contrast(1.04);
}

@media (min-width: 900px) {
  .logistics-band__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
  }

  .logistics-band__media img {
    height: 360px;
  }
}

/* Shared page systems */
.comparison-table-wrap {
  margin: 40px 0 48px;
}

.comparison-table__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.comparison-table__note {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--slate);
}

.comparison-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--mist);
  color: var(--ink);
  font-weight: 600;
}

.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.8125rem;
  color: var(--slate);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--border-strong);
}

.breadcrumb a {
  color: var(--cyan-text);
  text-decoration: none;
}

.cap-grid,
.quality-instruments,
.catalog-grid--products {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 700px) {
  .cap-grid,
  .quality-instruments {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quality-instruments {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cap-card,
.quality-instrument {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.cap-card__media img,
.quality-instrument__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.quality-instrument__media img {
  object-fit: cover;
  object-position: center;
  background: #E8EDF2;
  height: 180px;
  padding: 0;
}

.cap-card h3,
.quality-instrument h3 {
  margin: 16px 16px 8px;
  font-size: 1.0625rem;
}

.cap-card p,
.quality-instrument p {
  margin: 0 16px 18px;
  color: var(--slate);
  font-size: 0.9375rem;
}

.quality-instrument__icon {
  padding: 16px 16px 0;
  color: var(--cyan-text);
}

.product-single {
  display: grid;
  gap: 32px;
}

.product-single__media,
.taxonomy-family__hero {
  background: #111111;
  overflow: hidden;
}

.product-single__media img,
.taxonomy-family__hero img,
.taxonomy-family__hero picture {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-single__image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.product-specs {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.product-specs div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.product-specs dt {
  font-weight: 600;
  color: var(--ink);
}

.product-specs dd {
  margin: 0;
  color: var(--slate);
}

@media (min-width: 900px) {
  .product-single {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--paper);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
}

.oem-upload {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--mist);
}

.oem-upload__hint {
  color: var(--slate);
  font-size: 0.875rem;
}

.credits-stock-list {
  margin: 24px 0 0;
  padding-left: 1.2em;
}

.credits-stock-list li {
  margin-bottom: 10px;
}

.page-404 {
  text-align: center;
  padding: 80px 0;
}

.lighthouse-gate-note {
  display: none;
}

.industry-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.industry-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 0 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.industry-card__media {
  position: relative;
  margin: 0 0 16px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E8EDF2;
}

.industry-card__media picture {
  position: absolute;
  inset: 0;
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.industry-card:has(.industry-card__media) .industry-card__icon {
  display: none;
}

.industry-card__icon {
  margin: 0 16px 8px;
  color: var(--cyan-text);
}

.industry-card h3 {
  margin: 0 16px 8px;
}

.industry-card p {
  margin: 0 16px;
  color: var(--slate);
  font-size: 0.9375rem;
}

@media (min-width: 700px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-split,
.oem-split {
  display: grid;
  gap: 32px;
  margin-top: 36px;
  align-items: start;
}

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 14px 0 0;
  margin: 0 auto 8px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: calc(var(--header-h, 72px) + 36px);
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.page-subnav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.page-subnav a:hover,
.page-subnav a:focus-visible {
  color: var(--cyan-text);
  border-bottom-color: var(--cyan);
}

.page-about__cta {
  margin-top: 32px;
}

.header__cta {
  white-space: nowrap;
}

.about-split__media img,
.oem-split__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.about-facts {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.about-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.about-facts dt {
  font-weight: 600;
}

.about-facts dd {
  margin: 0;
  color: var(--slate);
}

@media (min-width: 900px) {
  .about-split,
  .oem-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

.rfq__field--full {
  grid-column: 1 / -1;
}

.btn--ghost {
  background: transparent;
  color: var(--cyan-text);
  border: 1px solid var(--cyan-text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--cyan-tint);
}

.section--mist {
  background: var(--mist);
}

.resource-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.resource-item {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--paper);
}

.resource-item h3 {
  margin: 0 0 8px;
}

.resource-item p {
  margin: 0;
  color: var(--slate);
}

.news-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.news-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--paper);
}

.news-card__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.news-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.news-card__meta {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  color: var(--slate);
}

.news-card__excerpt {
  margin: 0;
  color: var(--slate);
}

@media (min-width: 800px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ============================================================
   Contact page — two-column info + enriched RFQ (v3.9.1)
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-split { grid-template-columns: 0.9fr 1.25fr; gap: 28px; }
}

.contact-aside {
  background: #121417;
  color: #eef3f5;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #23282c;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.contact-aside__promise {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #fff;
  padding-bottom: 18px;
  border-bottom: 1px solid #23282c;
}
.contact-aside__promise strong { color: var(--cyan); }
.contact-aside__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-aside__list li { display: flex; flex-direction: column; gap: 3px; }
.contact-aside__k {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8b91;
}
.contact-aside__v { font-size: 0.95rem; color: #eef3f5; line-height: 1.4; }
.contact-aside__v a { color: #eef3f5; border-bottom: 1px solid rgba(21,188,223,0.5); }
.contact-aside__v a:hover { color: var(--cyan); }
.contact-aside__logistics {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid #23282c;
}
.contact-aside__logi {
  flex: 1 1 auto; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: #9aa4a9;
  border: 1px solid #23282c; padding: 10px 12px;
}
.contact-aside__logi strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--cyan); letter-spacing: 0; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.contact-form__title { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); font-size: clamp(20px, 2.2vw, 26px); }
.contact-form__lead { margin: 0 0 22px; color: var(--text); font-size: 0.95rem; line-height: 1.55; max-width: 52ch; }
.contact-form .rfq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .contact-form .rfq__grid { grid-template-columns: 1fr; } }
.rfq__field--full { grid-column: 1 / -1; }
.rfq__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Contact form sits on a white card — override the dark-band RFQ styles */
.contact-form .rfq__label { color: var(--slate); }
.contact-form .rfq__field input,
.contact-form .rfq__field select,
.contact-form .rfq__field textarea {
  border: 1px solid #c4ccd1;
  background: #ffffff;
  color: var(--ink);
}
.contact-form .rfq__field input::placeholder,
.contact-form .rfq__field textarea::placeholder { color: #9aa4a9; }
.contact-form .rfq__field input:focus,
.contact-form .rfq__field select:focus,
.contact-form .rfq__field textarea:focus {
  border-color: var(--cyan);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 188, 223, 0.18);
}
.contact-form .rfq__hint { color: var(--slate); }
.contact-form .rfq__field { display: flex; flex-direction: column; gap: 7px; }

/* ============================================================
   Products page — per-family detail rows + refined table (v3.9.1)
   ============================================================ */
.product-detail { padding-block: clamp(40px, 6vw, 84px); }
.product-detail:nth-of-type(even) { background: var(--ground-alt, #F7F6F8); }

.prod-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 860px) {
  .prod-detail { grid-template-columns: 1fr 1fr; }
  .product-detail:nth-of-type(even) .prod-detail__media { order: 2; }
}

.prod-detail__media {
  background: #111;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.prod-detail__media img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  aspect-ratio: 3 / 2; transform: scale(1.02);
  transition: transform 0.6s ease;
}
.prod-detail:hover .prod-detail__media img { transform: scale(1.06); }

.prod-detail__body h2 {
  margin: 6px 0 0;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 1.04; color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
}
.prod-detail__lead { margin: 14px 0 0; color: var(--text); line-height: 1.6; max-width: 54ch; }

.prod-detail__specs { margin: 22px 0 0; display: grid; gap: 0; border-top: 1px solid var(--border); }
.prod-detail__row {
  display: grid; grid-template-columns: 40% 1fr; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.prod-detail__row dt {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate); margin: 0;
}
.prod-detail__row dd { margin: 0; color: var(--ink); font-size: 0.92rem; font-weight: 500; }

.prod-detail__apps { margin: 22px 0 0; }
.prod-detail__apps-label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate); margin: 0 0 10px;
}
.prod-detail__apps ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.prod-detail__apps li {
  font-size: 0.82rem; padding: 6px 12px; border: 1px solid var(--border);
  background: var(--paper); color: var(--ink);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.prod-detail__cta { margin: 26px 0 0; }

/* Refined coating table (moved below categories) */
.coating-section { background: var(--ground-alt, #F7F6F8); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; background: var(--paper); min-width: 760px; }
.comparison-table thead th {
  background: #121417; color: #fff; text-align: left;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 0.72rem; padding: 14px 16px;
  border-right: 1px solid #23282c;
}
.comparison-table thead th:first-child { position: sticky; left: 0; z-index: 1; }
.comparison-table tbody th[scope="row"] {
  text-align: left; font-weight: 600; color: var(--ink); background: var(--ground, #F2F1F0);
  padding: 12px 16px; white-space: nowrap; font-size: 0.8rem;
}
.comparison-table td { padding: 12px 16px; color: var(--text); border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); vertical-align: top; }
.comparison-table tbody tr:nth-child(even) td { background: #fafafb; }

/* Products closing CTA */
.products-cta { background: #121417; color: #fff; text-align: center; }
.products-cta__inner { max-width: 640px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.products-cta h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; color: #fff; font-size: clamp(22px, 3vw, 34px); margin: 0; }
.products-cta p { color: rgba(255,255,255,0.75); margin: 0; max-width: 48ch; }
.products-cta .btn { margin-top: 8px; }

/* Quality — inspection workflow + methods (v3.9.1) */
.qc-flow-section { background: var(--ground-alt, #F7F6F8); }
.qc-flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .qc-flow { grid-template-columns: repeat(5, 1fr); } }
.qc-flow__step {
  background: var(--paper); border: 1px solid var(--border); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.qc-flow__no { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--cyan); line-height: 1; }
.qc-flow__step h3 { margin: 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink); }
.qc-flow__step p { margin: 0; font-size: 0.83rem; color: var(--text); line-height: 1.5; }

.qc-methods { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .qc-methods { grid-template-columns: repeat(3, 1fr); } }
.qc-method {
  border: 1px solid var(--border); background: var(--paper); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px; border-left: 3px solid var(--cyan);
}
.qc-method__k { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); font-size: 0.9rem; }
.qc-method__v { font-size: 0.83rem; color: var(--slate); }

/* ============================================================
   Process-flow visualization (About / capabilities) — v3.9.2
   ============================================================ */
.flow-wrap { margin: 0 0 40px; }
.flow-wrap__label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate); margin: 0 0 18px;
}
.flow {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 22px;
  counter-reset: flow;
}
@media (min-width: 720px) {
  .flow { grid-template-columns: repeat(8, 1fr); gap: 0; }
}
.flow__node {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 8px;
}
/* connector line between nodes (desktop) */
@media (min-width: 720px) {
  .flow__node::before {
    content: ""; position: absolute; top: 26px; left: -50%; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue));
    opacity: 0.35; z-index: 0;
  }
  .flow__node:first-child::before { display: none; }
}
/* connector line (mobile, vertical) */
@media (max-width: 719px) {
  .flow__node { flex-direction: row; text-align: left; gap: 14px; align-items: flex-start; }
  .flow__node::before {
    content: ""; position: absolute; left: 26px; top: -22px; width: 2px; height: 22px;
    background: var(--blue); opacity: 0.35;
  }
  .flow__node:first-child::before { display: none; }
  .flow__body { display: contents; }
}
.flow__dot {
  position: relative; z-index: 1; flex: none;
  width: 54px; height: 54px; display: grid; place-items: center;
  background: #121417; color: var(--blue);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: var(--shadow-sm);
}
.flow__dot svg { width: 26px; height: 26px; }
.flow__no {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--blue);
  margin-top: 12px; letter-spacing: 0.04em;
}
.flow__title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 0.82rem; letter-spacing: 0.01em; color: var(--ink); margin-top: 4px; line-height: 1.15;
}
.flow__cap { font-size: 0.76rem; color: var(--slate); margin-top: 6px; line-height: 1.45; max-width: 22ch; }
@media (max-width: 719px) {
  .flow__no { margin-top: 0; }
  .flow__title, .flow__cap { max-width: none; }
}

/* ============================================================
   OEM timeline + Industries matrix visualizations — v3.9.2
   ============================================================ */
.section-head--tight { margin-bottom: 26px; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .timeline { grid-template-columns: repeat(5, 1fr); gap: 0; } }
.timeline__step { position: relative; padding: 0 10px; }
.timeline__no {
  display: inline-grid; place-items: center; width: 44px; height: 44px; position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; background: #121417;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
@media (min-width: 760px) {
  .timeline__step::before {
    content: ""; position: absolute; top: 22px; left: -50%; width: 100%; height: 2px;
    background: var(--blue); opacity: 0.35; z-index: 0;
  }
  .timeline__step:first-child::before { display: none; }
}
@media (max-width: 759px) {
  .timeline__step { padding-left: 60px; }
  .timeline__no { position: absolute; left: 0; top: 0; }
  .timeline__step::before { content: ""; position: absolute; left: 21px; top: 44px; bottom: -20px; width: 2px; background: var(--blue); opacity: 0.35; }
  .timeline__step:last-child::before { display: none; }
}
.timeline__dur {
  display: inline-block; margin: 12px 0 0; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan-text, #0a7a90);
  border: 1px solid var(--border); padding: 3px 9px; background: var(--paper);
}
.timeline__title { margin: 10px 0 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.01em; color: var(--ink); }
.timeline__desc { margin: 6px 0 0; font-size: 0.82rem; color: var(--slate); line-height: 1.5; max-width: 26ch; }

/* Industries matrix */
.matrix-section { background: var(--ground-alt, #F7F6F8); }
.matrix-scroll { overflow-x: auto; border: 1px solid var(--border); background: var(--paper); }
.matrix { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.85rem; }
.matrix thead th { background: #121417; color: #fff; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.03em; padding: 14px 12px; text-align: center; border-right: 1px solid #23282c; }
.matrix thead th.matrix__corner { text-align: left; }
.matrix tbody th[scope="row"] { text-align: left; font-weight: 600; color: var(--ink); background: var(--ground, #F2F1F0); padding: 12px 14px; white-space: nowrap; border-bottom: 1px solid var(--border); }
.matrix td { text-align: center; padding: 12px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.matrix tbody tr:nth-child(even) td { background: #fafafb; }
.matrix__yes span { color: var(--cyan-text, #0a7a90); font-weight: 700; font-size: 1.05rem; }
.matrix__no span { color: #c4ccd1; }

/* ============================================================
   Resources + News pages — v3.9.3
   ============================================================ */
.res-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .res-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .res-grid { grid-template-columns: repeat(3, 1fr); } }
.res-card {
  display: flex; flex-direction: column; gap: 10px; text-decoration: none;
  background: var(--paper); border: 1px solid var(--border); padding: 24px 22px; color: inherit;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.res-card__icon { width: 30px; height: 30px; color: var(--blue); }
.res-card__title { margin: 4px 0 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.01em; color: var(--ink); }
.res-card__desc { margin: 0; font-size: 0.85rem; color: var(--slate); line-height: 1.55; flex: 1; }
.res-card__cta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan-text, #0a7a90); font-weight: 500; }

.checklist-section { background: #121417; color: #fff; }
.checklist-wrap { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 820px) { .checklist-wrap { grid-template-columns: 1fr 1fr; gap: 56px; } }
.checklist-copy .eyebrow { color: var(--blue); }
.checklist-copy h2 { color: #fff; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(22px,3vw,32px); margin: 8px 0 0; }
.checklist-copy .section-lead { color: rgba(255,255,255,0.72); }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li {
  position: relative; padding: 14px 16px 14px 46px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12); color: #fff; font-size: 0.9rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.checklist li::before {
  content: ""; position: absolute; left: 16px; top: 50%; width: 16px; height: 9px; margin-top: -6px;
  border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg);
}

.post-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  display: flex; flex-direction: column; gap: 8px; background: var(--paper);
  border: 1px solid var(--border); border-top: 3px solid var(--blue); padding: 24px 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card__cat { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-text, #0a7a90); margin: 0; }
.post-card__title { margin: 2px 0 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; line-height: 1.15; letter-spacing: 0.01em; color: var(--ink); }
.post-card__excerpt { margin: 0; font-size: 0.85rem; color: var(--slate); line-height: 1.55; flex: 1; }
.post-card__more { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
