/* ═══════════════════════════════════════════════════════════════════════
   PIXELPRO PRODUCTIONS · DESIGN SYSTEM  (locked 2026-09-19)
   Single stylesheet. Formerly style.css + 3 review overlays; merged after
   the client locked v3.5. The pre-merge layers are kept in /.archive/ for
   provenance — do not load them.

   ── TYPOGRAPHY ────────────────────────────────────────────────────────
   Nav 16px / w600 / pure white.  Benchmarked against 9 competitor sites
   (measured with Playwright, 2026-09): AVI-SPL 15px, Jacobs 16, Ford AV 16,
   ROE Visual 16. Apple's 12px was the wrong reference for a Pro AV buyer
   in the 40-60 age band — do not shrink this back.
   Body 16px / 1.7.  H2 unified at 60px.  Hero 116px.
   Display face: Manrope 500.  Signature emphasis: Instrument Serif italic
   (CJK has no glyphs there — .zh .em falls back to the display face).

   ── CONTRAST POLARITY ─────────────────────────────────────────────────
   Dark hero + footer, LIGHT reading zones (.zone-light). Competitor body-
   area brightness measured at Turner 85%, ROE 79%, AVI-SPL 78%,
   Diversified 77%. An all-dark body (the original spec read ~5%) hurts
   sustained reading for the target age band; positive polarity is the
   researched default (NN/g; Piepenbrock 2013; Sethi 2023).

   ── RED DISCIPLINE (v3.5) ─────────────────────────────────────────────
   Red is a full brand colour on ACTION and SIGNATURE elements only, and
   is reverted on INFORMATION elements. Element count: v3 had 46, v3.5 has
   13 (-72%). Rationale: PixelPro red vs ROE Visual red measure ΔE 1.43
   (CIE76) — visually indistinguishable, so saturating the page invites a
   commercial collision with a brand we also sell alongside.
     --signal      #e30613  fills, borders, marks
     --signal-lift #f43b46  red TEXT on dark  (brand red is 3.99:1 = AA fail)
     --signal-deep #c2050e  hover on red fills (6.32:1)
   Every colour pair in this file was checked for WCAG 2.1 AA (4.5:1).
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Background */
  --bg: #0a0d12;
  --bg-2: #10141c;
  --bg-3: #161b25;
  --bg-4: #1e2431;

  /* Foreground — 4 levels */
  --fg: #f2f5fa;
  --fg-2: #c9d1de;
  --fg-3: #8792a3;
  --fg-4: #5a6478;

  /* Signal — LIMITED USE */
  --signal: #e30613;
  --signal-dim: #7a1418;

  /* Lines */
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.12);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  /* Type — swap --font-display to change the whole site's voice */
  --font-display: 'Manrope', 'HarmonyOS Sans SC', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Inter', 'HarmonyOS Sans SC', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-zh: 'HarmonyOS Sans SC', 'Noto Sans SC', system-ui, sans-serif;

  /* Layout */
  --canvas: 1440px;
  --gutter: 60px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
p,
figure,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  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: -100px;
  left: 16px;
  z-index: 200;
  background: var(--fg);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: top 160ms ease;
}
.skip-link:focus {
  top: 16px;
}

/* ─── Layout primitives ─────────────────────────────────── */
.wrap {
  max-width: var(--canvas);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 120px;
}
.section--tight {
  padding-block: 96px;
}
.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

/* ─── Typography utilities ──────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.mono {
  font-family: var(--font-mono);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Phase B visual signature: Instrument Serif italic connectives inside
   Manrope display headings. Do not colour these — they stay --fg. */
.em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.zh {
  font-family: var(--font-zh);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}

.h2-desc {
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease,
    box-shadow 200ms ease, color 200ms ease;
  white-space: nowrap;
}

/* Primary CTA — WHITE, never red. */
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn .arr {
  transition: transform 200ms ease;
}
.btn:hover .arr {
  transform: translateX(4px);
}

/* ─── Tags / dots ───────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg-2);
  border: 1px solid var(--line-2);
}

/* RED USE #2 — the hero eyebrow dot. */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  display: inline-block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease,
    backdrop-filter 220ms ease;
  padding-block: 18px;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--canvas);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-logo {
  display: block;
  flex-shrink: 0;
}
.brand-logo svg {
  height: 26px;
  width: auto;
}

/* ─── Desktop nav ───────────────────────────────────────── */
.nav-desktop {
  display: flex;
  gap: 36px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-2);
  padding-block: 12px;
  transition: color 200ms ease;
}
.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--fg);
}
.nav-link[aria-current='page'] {
  color: var(--fg);
}

/* accent underline slides in on hover */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 1px;
  width: 100%;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-item:hover .nav-link::after {
  transform: scaleX(1);
}

.nav-caret {
  width: 8px;
  height: 8px;
  opacity: 0.5;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 248px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--fg-2);
  transition: background 160ms ease, color 160ms ease;
}
.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
}

/* ─── Header right ──────────────────────────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lang-switch {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-4);
  letter-spacing: 0.06em;
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-switch a {
  transition: color 180ms ease;
}
.lang-switch a:hover {
  color: var(--fg-2);
}
.lang-switch .is-active {
  color: var(--fg);
  font-weight: 500;
}

.nav-cta {
  padding: 10px 20px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav-cta:hover {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

/* ─── Mobile menu ───────────────────────────────────────── */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--fg);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: background 180ms ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease;
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}
.menu-toggle[aria-expanded='true'] span {
  background: transparent;
}
.menu-toggle[aria-expanded='true'] span::before {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  overflow-y: auto;
  padding: 24px var(--gutter) 60px;
  z-index: 99;
}
.nav-mobile.is-open {
  display: block;
}

.nav-mobile details {
  border-bottom: 1px solid var(--line);
}
.nav-mobile summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}
.nav-mobile summary::-webkit-details-marker {
  display: none;
}
.nav-mobile summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--fg-4);
}
.nav-mobile details[open] summary::after {
  content: '−';
}
.nav-mobile details ul {
  padding-bottom: 16px;
}
.nav-mobile details li a {
  display: block;
  padding: 10px 0 10px 2px;
  font-size: 15px;
  color: var(--fg-3);
}
.nav-mobile details li a:hover {
  color: var(--fg);
}
.nav-mobile .mobile-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════
   HERO A · Fullbleed image
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 96px) 0 120px;
  overflow: hidden;
  background-color: var(--bg-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
/* Legibility scrim: dark on the left where the headline sits. */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(10, 13, 18, 0.96) 0%,
      rgba(10, 13, 18, 0.86) 34%,
      rgba(10, 13, 18, 0.5) 62%,
      rgba(10, 13, 18, 0.62) 100%
    ),
    linear-gradient(180deg, rgba(10, 13, 18, 0.7) 0%, transparent 28%, rgba(10, 13, 18, 0.98) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--canvas);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}

/* Single text flow so the red dot can never orphan onto its own line. */
.hero-eyebrow {
  margin-bottom: 32px;
  color: var(--fg-2);
  line-height: 1.7;
}
.hero-eyebrow .dot {
  margin-right: 12px;
  vertical-align: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 8.2vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 15ch;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 620px;
  margin: 32px 0 40px;
}

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

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-block: 36px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-item .check {
  color: var(--fg-3);
  font-size: 13px;
  line-height: 1.5;
  flex-shrink: 0;
}
.trust-item .k {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-item .v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg);
  margin-top: 3px;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════
   GEO DIRECT-ANSWER BOX
   ═══════════════════════════════════════════════════════════ */
.direct-answer {
  border-left: 2px solid var(--line-2);
  padding: 4px 0 4px 28px;
  max-width: 900px;
}
.direct-answer p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
  color: var(--fg-2);
}
.direct-answer strong {
  color: var(--fg);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   WEDGE CARDS
   ═══════════════════════════════════════════════════════════ */
.wedge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wedge-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.wedge-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}
.wedge-card:hover::before {
  transform: scaleX(1);
}
.wedge-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.wedge-card .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.wedge-card .icon-box {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  margin: 32px 0 24px;
  color: var(--fg);
}
.wedge-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 27px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  white-space: pre-line;
}
.wedge-card p {
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 14px;
}
.wedge-card .link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wedge-card:hover .link {
  color: var(--fg);
}
.wedge-card .link .arr {
  transition: transform 200ms ease;
}
.wedge-card:hover .link .arr {
  transform: translateX(4px);
}

/* Full-card click target without nesting interactive elements */
.stretch::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ═══════════════════════════════════════════════════════════
   FEATURED CASE STUDY
   ═══════════════════════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  position: relative;
}
.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Honest placeholder while client photography + releases are pending */
.media-pending {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
  background: repeating-linear-gradient(
    135deg,
    var(--bg-3),
    var(--bg-3) 12px,
    var(--bg-2) 12px,
    var(--bg-2) 24px
  );
}
.media-pending .mp-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.media-pending .mp-note {
  font-size: 13px;
  color: var(--fg-3);
  max-width: 34ch;
  line-height: 1.5;
}

.featured-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.featured-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding-block: 28px;
  border-block: 1px solid var(--line);
}
.metric .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.metric .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS 8-GRID
   ═══════════════════════════════════════════════════════════ */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sol-card {
  aspect-ratio: 1;
  padding: 26px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}
.sol-card:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
  transform: translateY(-2px);
}
.sol-card .idx {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.sol-card .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.015em;
  line-height: 1.16;
  margin-top: 14px;
  white-space: pre-line;
}
.sol-card .name .zh {
  display: block;
  font-family: var(--font-zh);
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-3);
  margin-top: 6px;
  letter-spacing: 0;
}
.sol-card .arr-icon {
  color: var(--fg-3);
  font-size: 18px;
  align-self: flex-end;
  transition: transform 250ms ease, color 250ms ease;
}
.sol-card:hover .arr-icon {
  color: var(--fg);
  transform: translate(3px, -3px);
}

/* RED USE #3 — the single signature vertical. */
.sol-card--signature {
  background: var(--bg-3);
  border-color: var(--signal);
}
.sol-card--signature .idx {
  color: var(--signal);
}
.sol-card--signature:hover {
  border-color: var(--signal);
  background: var(--bg-4);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS STRIP
   ═══════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  padding: 26px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 200ms ease, transform 200ms ease;
}
.product-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.product-card .series {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.product-card .desc {
  font-size: 13.5px;
  color: var(--fg-3);
  margin: 8px 0 20px;
  line-height: 1.5;
}
.product-card .specs {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-4);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   INSIGHTS
   ═══════════════════════════════════════════════════════════ */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.insight-card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-3);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.insight-card .body {
  padding: 26px 24px;
}
.insight-card .meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.insight-card .meta .cat {
  color: var(--fg-2);
}
.insight-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin: 16px 0 12px;
}
.insight-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
}

/* ═══════════════════════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════════════════════ */
.loc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.loc-chip {
  padding: 12px 22px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--fg-2);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.loc-chip:hover {
  border-color: var(--fg);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer-cta {
  padding-block: 128px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 82px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.footer-cta p {
  color: var(--fg-3);
  font-size: 17px;
  max-width: 52ch;
  margin: 0 auto 40px;
}
.footer-cta .ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: 72px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand svg {
  height: 24px;
  width: auto;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-3);
  margin-top: 18px;
  max-width: 300px;
}
.footer-brand address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--fg-3);
  margin-top: 20px;
}
.footer-brand address a:hover {
  color: var(--fg);
}
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col li {
  margin-bottom: 11px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color 180ms ease;
}
.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: var(--fg-2);
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 88px) 0 72px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a:hover {
  color: var(--fg-2);
}
.breadcrumb .sep {
  margin-inline: 8px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.page-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 660px;
  margin-top: 26px;
}

/* ═══════════════════════════════════════════════════════════
   CREDENTIALS PAGE
   ═══════════════════════════════════════════════════════════ */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cred-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
}
.cred-card .cred-kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.cred-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
  line-height: 1.2;
}
.cred-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
}
.cred-card .cred-id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.06em;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cred-card .cred-id a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--fg-4);
}
.cred-card .cred-id a:hover {
  text-decoration-color: var(--fg);
}

/* RED USE #4 — signature marker on the principal credential card. */
.cred-card--principal {
  border-left: 2px solid var(--signal);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.form-field .req {
  color: var(--fg-4);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 180ms ease, background 180ms ease;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--fg-3);
  background: var(--bg-3);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fg-4);
}
.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-3) 50%),
    linear-gradient(135deg, var(--fg-3) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-note {
  font-size: 13px;
  color: var(--fg-4);
  line-height: 1.6;
  margin-top: 16px;
}

.info-block {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 16px;
}
.info-block h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
  font-weight: 500;
  margin-bottom: 16px;
}
.info-block address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
}
.info-block a:hover {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info-block .legal-line {
  font-size: 13px;
  color: var(--fg-4);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 900px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -0.015em;
  line-height: 1.35;
  list-style: none;
  transition: color 180ms ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--fg);
}
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--fg-4);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-answer {
  padding-bottom: 28px;
  max-width: 76ch;
}
.faq-item .faq-answer p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-3);
}
.faq-item .faq-answer p + p {
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════════════════
   PROSE
   ═══════════════════════════════════════════════════════════ */
.prose {
  max-width: 72ch;
}
.prose p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--fg-2);
}
.prose p + p {
  margin-top: 20px;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 52px 0 18px;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
}
.prose ul {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.prose ul li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--fg-4);
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--fg-4);
  transition: text-decoration-color 180ms ease;
}
.prose a:hover {
  text-decoration-color: var(--fg);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root {
    --gutter: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 32px;
  }
  .section {
    padding-block: 88px;
  }
  .nav-desktop,
  .header-right .lang-switch,
  .header-right .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    min-height: 720px;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
  }
  .wedge-grid,
  .insight-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }
  .cred-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 22px;
  }
  .section {
    padding-block: 68px;
  }
  .hero {
    min-height: 600px;
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 80px;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 13, 18, 0.9) 0%,
      rgba(10, 13, 18, 0.78) 45%,
      rgba(10, 13, 18, 0.97) 100%
    );
  }
  .hero-sub {
    margin: 24px 0 32px;
  }
  .hero-ctas .btn,
  .footer-cta .ctas .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .wedge-grid,
  .insight-grid,
  .product-grid,
  .sol-grid {
    grid-template-columns: 1fr;
  }
  .wedge-card {
    min-height: 0;
  }
  .sol-card {
    aspect-ratio: auto;
    min-height: 132px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .featured-metrics {
    gap: 16px;
  }
  .metric .num {
    font-size: 32px;
  }
  .direct-answer {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── Motion / print ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ══════════════ LAYER 2 · light reading zones, nav & body scale ══════════════ */
:root {
  /* Light zone palette — warm-neutral, never pure #fff (reduces glare) */
  --lt-bg: #f4f6f9;
  --lt-bg-2: #ffffff;
  --lt-bg-3: #e9edf3;
  --lt-fg: #0d1117;
  --lt-fg-2: #333d4d;
  --lt-fg-3: #5b6776;
  --lt-fg-4: #606978; /* clears WCAG AA (4.5:1) on all three light backgrounds */
  --lt-line: rgba(13, 17, 23, 0.1);
  --lt-line-2: rgba(13, 17, 23, 0.22);
}

/* ═══════════════════════════════════════════
   1 · NAVIGATION — 14px/w500/grey → 16px/w600/white
   ═══════════════════════════════════════════ */
.nav-desktop {
  gap: 28px; /* was 36 — tighten as type grows */
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg); /* pure white, was --fg-2 grey */
  letter-spacing: -0.005em;
}
.nav-link:hover,
.nav-item:hover .nav-link {
  color: #ffffff;
}

.nav-caret {
  width: 9px;
  height: 9px;
  opacity: 0.6;
}

.nav-dropdown a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-2);
  padding: 11px 14px;
}

/* Language switch — was near-invisible at #5a6478 */
.lang-switch {
  font-size: 13px;
  color: var(--fg-3);
}

/* ═══════════════════════════════════════════
   2 · CTA — the highest-value pixels on the site
   ═══════════════════════════════════════════ */
.nav-cta {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  background: var(--fg); /* solid white, was transparent outline */
  color: var(--bg);
  border-color: var(--fg);
}
.nav-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.btn {
  font-size: 16px;
  font-weight: 700;
  padding: 17px 30px;
}

/* Mobile: keep a quote CTA visible in the bar instead of burying it */
@media (max-width: 1024px) {
  .header-right .nav-cta {
    display: inline-flex;
    font-size: 14px;
    padding: 10px 18px;
  }
  .header-inner {
    gap: 16px;
  }
}
@media (max-width: 420px) {
  .header-right .nav-cta {
    font-size: 13px;
    padding: 9px 14px;
  }
  .header-right {
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════
   3 · READING TYPE — 15px/1.6 → 16px/1.7
   ═══════════════════════════════════════════ */
.hero-sub {
  font-size: 20px;
  line-height: 1.6;
}

.h2-desc,
.wedge-card p,
.insight-card p,
.product-card .desc {
  font-size: 16px;
  line-height: 1.7;
}

.lead {
  font-size: 18.5px;
  line-height: 1.68;
}

.direct-answer p {
  font-size: 21px;
  line-height: 1.68;
}

/* Trust bar carries the core selling point — should not be the smallest text */
.trust-item .v {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.trust-item .k {
  font-size: 10.5px;
}

/* Unify the two competing H2 scales (68 vs 60) */
.h2 {
  font-size: clamp(36px, 4.4vw, 60px);
}

.sol-card .name {
  font-size: 22px;
}
.sol-card .name .zh {
  font-size: 13.5px;
}
.wedge-card h3 {
  font-size: 26px;
}
.insight-card h3 {
  font-size: 21px;
  line-height: 1.3;
}
.product-card .series {
  font-size: 24px;
  line-height: 1.25;
}
.wedge-card .link {
  font-size: 11.5px;
}

/* ═══════════════════════════════════════════
   4 · LIGHT READING ZONES
   Applied per-section. Dark Hero → light body → dark close.
   ═══════════════════════════════════════════ */
.zone-light {
  background: var(--lt-bg);
  color: var(--lt-fg-2);
  border-block: 1px solid var(--lt-line);
}
.zone-light + .zone-light {
  border-top: none;
}

.zone-light.zone-light--alt {
  background: var(--lt-bg-3);
}

/* — Headings and copy — */
.zone-light .h2,
.zone-light h2,
.zone-light h3,
.zone-light .page-title {
  color: var(--lt-fg);
}
.zone-light .em {
  color: var(--lt-fg);
}
.zone-light .eyebrow {
  color: var(--lt-fg-3);
}
.zone-light .h2-desc,
.zone-light p {
  color: var(--lt-fg-2);
}
.zone-light .lead {
  color: var(--lt-fg-2);
}

/* — Direct answer — */
.zone-light .direct-answer {
  border-left-color: var(--lt-line-2);
}
.zone-light .direct-answer p {
  color: var(--lt-fg-2);
}
.zone-light .direct-answer strong {
  color: var(--lt-fg);
}

/* — Cards — */
.zone-light .wedge-card,
.zone-light .sol-card,
.zone-light .insight-card,
.zone-light .product-card {
  background: var(--lt-bg-2);
  border-color: var(--lt-line);
}
.zone-light .wedge-card:hover,
.zone-light .insight-card:hover,
.zone-light .product-card:hover {
  border-color: var(--lt-line-2);
  box-shadow: 0 10px 34px rgba(13, 17, 23, 0.1);
}
.zone-light .sol-card:hover {
  background: var(--lt-bg-3);
  border-color: var(--lt-line-2);
}
.zone-light .wedge-card::before {
  background: var(--lt-fg);
}
.zone-light .wedge-card .idx,
.zone-light .sol-card .idx,
.zone-light .insight-card .meta {
  color: var(--lt-fg-4);
}
.zone-light .insight-card .meta .cat {
  color: var(--lt-fg-2);
}
.zone-light .wedge-card .icon-box {
  border-color: var(--lt-line-2);
  color: var(--lt-fg);
}
.zone-light .wedge-card .link {
  color: var(--lt-fg-3);
}
.zone-light .wedge-card:hover .link {
  color: var(--lt-fg);
}
.zone-light .sol-card .name {
  color: var(--lt-fg);
}
.zone-light .sol-card .name .zh,
.zone-light .sol-card .arr-icon {
  color: var(--lt-fg-3);
}
.zone-light .sol-card:hover .arr-icon {
  color: var(--lt-fg);
}
.zone-light .product-card .series {
  color: var(--lt-fg);
}
.zone-light .product-card .specs {
  color: var(--lt-fg-4);
  border-top-color: var(--lt-line);
}

/* RED USE #3 survives the light zone — still the one signature card */
.zone-light .sol-card--signature {
  background: var(--lt-bg-2);
  border-color: var(--signal);
}
.zone-light .sol-card--signature .idx {
  color: var(--signal);
}

/* — Buttons inside light zones invert — */
.zone-light .btn--primary {
  background: var(--lt-fg);
  color: var(--lt-bg-2);
}
.zone-light .btn--ghost {
  color: var(--lt-fg);
  border-color: var(--lt-line-2);
}
.zone-light .btn--ghost:hover {
  border-color: var(--lt-fg);
  background: rgba(13, 17, 23, 0.05);
}

/* — Metrics / featured — */
.zone-light .metric .num {
  color: var(--lt-fg);
}
.zone-light .metric .lbl {
  color: var(--lt-fg-3);
}
.zone-light .featured-metrics {
  border-block-color: var(--lt-line);
}
.zone-light .featured-visual {
  border-color: var(--lt-line);
  background: var(--lt-bg-3);
}
.zone-light .media-pending {
  background: repeating-linear-gradient(
    135deg,
    var(--lt-bg-3),
    var(--lt-bg-3) 12px,
    #dfe5ec 12px,
    #dfe5ec 24px
  );
}
.zone-light .media-pending .mp-label {
  color: var(--lt-fg-4);
}
.zone-light .media-pending .mp-note {
  color: var(--lt-fg-3);
}
.zone-light .insight-card .thumb {
  background: var(--lt-bg-3);
  border-bottom-color: var(--lt-line);
}

/* — Location chips — */
.zone-light .loc-chip {
  border-color: var(--lt-line-2);
  color: var(--lt-fg-2);
}
.zone-light .loc-chip:hover {
  border-color: var(--lt-fg);
  color: var(--lt-fg);
  background: rgba(13, 17, 23, 0.04);
}

/* Trust bar stays dark — it sits directly under the hero as one unit */

/* ═══════════════════════════════════════════
   5 · A/B toggle bar (sample page only)
   ═══════════════════════════════════════════ */
.zh {
  font-family: var(--font-zh);
  letter-spacing: 0;
}
.hero-title.zh,
.h2.zh,
.page-title.zh {
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.hero-sub.zh,
.direct-answer p.zh,
.h2-desc.zh,
.lead.zh,
.wedge-card p.zh,
.insight-card p.zh {
  line-height: 1.8;
}
.wedge-card h3.zh,
.sol-card .name.zh,
.insight-card h3.zh {
  line-height: 1.4;
}
/* The serif italic has no Chinese glyphs — keep it for Latin only and let
   Chinese emphasis fall back to the display face at full weight. */
.zh .em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
}

/* China-services grid (Chinese homepage only) */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.cs-item {
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}
.cs-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-4);
  margin-bottom: 14px;
}
.cs-item h3 {
  font-family: var(--font-zh);
  font-weight: 600;
  font-size: 20px;
  color: var(--fg);
  line-height: 1.4;
}
.cs-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-3);
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}


/* ══════════════ LAYER 3 · red as a full brand colour ══════════════ */
:root {
  --signal: #e30613; /* brand red — fills, borders, marks */
  --signal-lift: #f43b46; /* brightened — red TEXT on dark backgrounds */
  --signal-deep: #c2050e; /* deepened — hover on red fills, 6.32:1 */
  --signal-wash: rgba(227, 6, 19, 0.08);
  --signal-wash-2: rgba(227, 6, 19, 0.16);
}

/* ═══════════════════════════════════════════
   1 · PRIMARY CTA → RED
   ═══════════════════════════════════════════ */
.btn--primary,
.zone-light .btn--primary {
  background: var(--signal);
  color: #ffffff;
  border-color: var(--signal);
}
.btn--primary:hover,
.zone-light .btn--primary:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(227, 6, 19, 0.38);
}

.nav-cta {
  background: var(--signal);
  border-color: var(--signal);
  color: #ffffff;
}
.nav-cta:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

/* Ghost buttons pick up red on hover */
.btn--ghost:hover {
  border-color: var(--signal-lift);
  color: var(--signal-lift);
  background: var(--signal-wash);
}
.zone-light .btn--ghost:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: var(--signal-wash);
}

/* ═══════════════════════════════════════════
   2 · NAVIGATION — red active state + underline
   ═══════════════════════════════════════════ */
.nav-link::after {
  background: var(--signal);
  height: 2px;
  bottom: 4px;
}
.nav-link[aria-current='page'] {
  color: var(--signal-lift);
}
.nav-dropdown a:hover {
  background: var(--signal-wash);
  color: var(--signal-lift);
}
.lang-switch .is-active {
  color: var(--signal-lift);
}

/* ═══════════════════════════════════════════
   3 · EYEBROWS & LABELS — red is now the label colour
   ═══════════════════════════════════════════ */
.eyebrow {
  color: var(--signal-lift);
}
.zone-light .eyebrow {
  color: var(--signal);
}
.hero-eyebrow {
  color: var(--fg-2);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
}

/* ═══════════════════════════════════════════
   4 · TRUST BAR — red check marks
   ═══════════════════════════════════════════ */
.trust-item .check {
  color: var(--signal-lift);
  font-weight: 700;
}
.trust-bar {
  border-top: 2px solid var(--signal);
}

/* ═══════════════════════════════════════════
   5 · DIRECT ANSWER — red rule
   ═══════════════════════════════════════════ */
.direct-answer {
  border-left: 3px solid var(--signal);
}
.zone-light .direct-answer {
  border-left-color: var(--signal);
}

/* ═══════════════════════════════════════════
   6 · WEDGE CARDS — red top rule, icon, link
   ═══════════════════════════════════════════ */
.wedge-card::before,
.zone-light .wedge-card::before {
  background: var(--signal);
  height: 3px;
}
.wedge-card .icon-box {
  color: var(--signal-lift);
  border-color: rgba(227, 6, 19, 0.4);
}
.zone-light .wedge-card .icon-box {
  color: var(--signal);
  border-color: rgba(227, 6, 19, 0.35);
  background: var(--signal-wash);
}
.wedge-card .link {
  color: var(--signal-lift);
}
.zone-light .wedge-card .link {
  color: var(--signal);
}
.wedge-card:hover .link,
.zone-light .wedge-card:hover .link {
  color: var(--signal-deep);
}
.zone-light .wedge-card:hover .link {
  color: var(--signal-deep);
}
.wedge-card:hover,
.zone-light .wedge-card:hover {
  border-color: rgba(227, 6, 19, 0.45);
}

/* ═══════════════════════════════════════════
   7 · SOLUTIONS GRID
   The single-signature-card rule is withdrawn: every card now takes a
   red hover, and China Brand Events reads as a filled red tile instead
   of a lone outline.
   ═══════════════════════════════════════════ */
.sol-card:hover,
.zone-light .sol-card:hover {
  border-color: var(--signal);
  background: var(--signal-wash);
}
.sol-card:hover .arr-icon,
.zone-light .sol-card:hover .arr-icon {
  color: var(--signal);
}
.zone-light .sol-card:hover .name {
  color: var(--signal-deep);
}

/* Signature vertical — now a solid red tile */
.sol-card--signature,
.zone-light .sol-card--signature {
  background: var(--signal);
  border-color: var(--signal);
}
.sol-card--signature .idx,
.zone-light .sol-card--signature .idx {
  color: rgba(255, 255, 255, 0.85);
}
.sol-card--signature .name,
.zone-light .sol-card--signature .name {
  color: #ffffff;
}
.sol-card--signature .arr-icon,
.zone-light .sol-card--signature .arr-icon {
  color: #ffffff;
}
.sol-card--signature:hover,
.zone-light .sol-card--signature:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
}
.zone-light .sol-card--signature:hover .name {
  color: #ffffff;
}
.sol-card--signature:hover .arr-icon,
.zone-light .sol-card--signature:hover .arr-icon {
  color: #ffffff;
}

/* ═══════════════════════════════════════════
   8 · FEATURED CASE — red eyebrow, metrics, em
   ═══════════════════════════════════════════ */
.featured-content .eyebrow {
  color: var(--signal-lift);
}
#featured-h .em {
  color: var(--signal-lift);
}
.metric .num {
  color: var(--signal-lift);
}
.zone-light .metric .num {
  color: var(--signal);
}
.featured-metrics {
  border-block-color: rgba(227, 6, 19, 0.28);
}

/* ═══════════════════════════════════════════
   9 · PRODUCTS / INSIGHTS
   ═══════════════════════════════════════════ */
.product-card:hover,
.zone-light .product-card:hover {
  border-color: var(--signal);
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.14);
}
.zone-light .product-card:hover .series {
  color: var(--signal-deep);
}
.insight-card .meta .cat,
.zone-light .insight-card .meta .cat {
  color: var(--signal);
  font-weight: 500;
}
.insight-card:hover,
.zone-light .insight-card:hover {
  border-color: var(--signal);
}
.zone-light .insight-card:hover h3 a {
  color: var(--signal-deep);
}
.insight-card:hover h3 a {
  color: var(--signal-lift);
}

/* ═══════════════════════════════════════════
   10 · LOCATION CHIPS
   ═══════════════════════════════════════════ */
.loc-chip:hover,
.zone-light .loc-chip:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: var(--signal-wash);
}

/* ═══════════════════════════════════════════
   11 · FOOTER
   ═══════════════════════════════════════════ */
.footer-cta {
  border-top: 2px solid var(--signal);
}
.footer-cta h2 .em {
  color: var(--signal-lift);
}
.footer-col a:hover {
  color: var(--signal-lift);
}
.footer-brand address a:hover {
  color: var(--signal-lift);
}
.footer-bottom a:hover {
  color: var(--signal-lift);
}

/* ═══════════════════════════════════════════
   12 · MISC
   ═══════════════════════════════════════════ */
.tag {
  border-color: rgba(227, 6, 19, 0.4);
  color: var(--fg-2);
}
:focus-visible {
  outline-color: var(--signal-lift);
}
.skip-link {
  background: var(--signal);
  color: #ffffff;
}
.cred-card--principal {
  border-left-color: var(--signal);
}


/* ══════════════ LAYER 4 · red disciplined back to action + signature ══════════════ */
/* ═══════════════════════════════════════════
   REVERT · Section eyebrows → neutral
   Red labels everywhere made the page shout; now the CTA does.
   ═══════════════════════════════════════════ */
.eyebrow {
  color: var(--fg-3);
}
.zone-light .eyebrow {
  color: var(--lt-fg-3);
}
.featured-content .eyebrow {
  color: var(--fg-3);
}

/* ═══════════════════════════════════════════
   REVERT · Trust bar → neutral
   The credential strip should read as steady, not promotional.
   ═══════════════════════════════════════════ */
.trust-item .check {
  color: var(--fg-3);
  font-weight: 400;
}
.trust-bar {
  border-top: 1px solid var(--line);
}

/* ═══════════════════════════════════════════
   REVERT · Direct answer rule → neutral
   ═══════════════════════════════════════════ */
.direct-answer {
  border-left: 2px solid var(--line-2);
}
.zone-light .direct-answer {
  border-left: 2px solid var(--lt-line-2);
}

/* ═══════════════════════════════════════════
   REVERT · Wedge cards → neutral (hover stays red)
   ═══════════════════════════════════════════ */
.wedge-card::before,
.zone-light .wedge-card::before {
  background: var(--fg);
  height: 2px;
}
.zone-light .wedge-card::before {
  background: var(--lt-fg);
}
.wedge-card .icon-box {
  color: var(--fg);
  border-color: var(--line-2);
  background: transparent;
}
.zone-light .wedge-card .icon-box {
  color: var(--lt-fg);
  border-color: var(--lt-line-2);
  background: transparent;
}
.wedge-card .link {
  color: var(--fg-2);
}
.zone-light .wedge-card .link {
  color: var(--lt-fg-3);
}
/* Hover keeps red — it signals "this is clickable" */
.wedge-card:hover .link {
  color: var(--signal-lift);
}
.zone-light .wedge-card:hover .link {
  color: var(--signal);
}
.wedge-card:hover,
.zone-light .wedge-card:hover {
  border-color: var(--line-2);
}
.zone-light .wedge-card:hover {
  border-color: var(--lt-line-2);
}

/* ═══════════════════════════════════════════
   REVERT · Featured metrics — keep ONE red number
   "0 Sundays missed" is the single most persuasive figure on the page.
   ═══════════════════════════════════════════ */
.metric .num,
.zone-light .metric .num {
  color: var(--fg);
}
.zone-light .metric .num {
  color: var(--lt-fg);
}
/* The hero metric stays red */
.featured-metrics .metric:nth-child(2) .num {
  color: var(--signal-lift); /* brightened red — 5.15:1 on dark */
}
.zone-light .featured-metrics .metric:nth-child(2) .num {
  color: var(--signal); /* brand red — 4.88:1 on light, AA */
}
.featured-metrics {
  border-block-color: var(--line);
}
#featured-h .em {
  color: var(--fg);
}
/* The featured band is dark on /, but light on /zh/ — bind the emphasis
   colour to the surrounding zone so it never goes white-on-white. */
.zone-light #featured-h .em {
  color: var(--lt-fg);
}

/* ═══════════════════════════════════════════
   REVERT · Insight category tags → neutral
   ═══════════════════════════════════════════ */
.insight-card .meta .cat,
.zone-light .insight-card .meta .cat {
  color: var(--fg-2);
  font-weight: 400;
}
.zone-light .insight-card .meta .cat {
  color: var(--lt-fg-2);
}

/* ═══════════════════════════════════════════
   REVERT · Footer decoration → neutral (CTA rule stays)
   ═══════════════════════════════════════════ */
.footer-cta h2 .em {
  color: var(--fg);
}
.footer-col a:hover,
.footer-brand address a:hover,
.footer-bottom a:hover {
  color: var(--fg);
}

/* ═══════════════════════════════════════════
   REVERT · Tag borders → neutral
   ═══════════════════════════════════════════ */
.tag {
  border-color: var(--line-2);
}

/* ═══════════════════════════════════════════
   KEEP · Solutions grid — signature tile only
   Non-signature cards lose the red hover fill; the red tile stays.
   ═══════════════════════════════════════════ */
.sol-card:hover,
.zone-light .sol-card:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
}
.zone-light .sol-card:hover {
  border-color: var(--lt-line-2);
  background: var(--lt-bg-3);
}
.sol-card:hover .arr-icon,
.zone-light .sol-card:hover .arr-icon {
  color: var(--fg);
}
.zone-light .sol-card:hover .arr-icon {
  color: var(--lt-fg);
}
.zone-light .sol-card:hover .name {
  color: var(--lt-fg);
}

/* China Brand Events keeps the solid red tile — unchanged from v3 */

/* ═══════════════════════════════════════════
   KEEP · Product / location hovers → neutral outline
   ═══════════════════════════════════════════ */
.product-card:hover,
.zone-light .product-card:hover {
  border-color: var(--line-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.zone-light .product-card:hover {
  border-color: var(--lt-line-2);
  box-shadow: 0 10px 34px rgba(13, 17, 23, 0.1);
}
.zone-light .product-card:hover .series {
  color: var(--lt-fg);
}
.insight-card:hover,
.zone-light .insight-card:hover {
  border-color: var(--line-2);
}
.zone-light .insight-card:hover {
  border-color: var(--lt-line-2);
}
.insight-card:hover h3 a {
  color: var(--fg);
}
.zone-light .insight-card:hover h3 a {
  color: var(--lt-fg);
}
.loc-chip:hover,
.zone-light .loc-chip:hover {
  border-color: var(--fg);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
}
.zone-light .loc-chip:hover {
  border-color: var(--lt-fg);
  color: var(--lt-fg);
  background: rgba(13, 17, 23, 0.04);
}

/* ═══════════════════════════════════════════
   KEEP · Ghost buttons → neutral hover
   Only the primary CTA should read as red.
   ═══════════════════════════════════════════ */
.btn--ghost:hover {
  border-color: var(--fg);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
}
.zone-light .btn--ghost:hover {
  border-color: var(--lt-fg);
  color: var(--lt-fg);
  background: rgba(13, 17, 23, 0.05);
}

/* ═══════════════════════════════════════════
   KEEP (unchanged from v3) — red still owns:
     · .btn--primary / .nav-cta        (red fill, white text)
     · .nav-link underline + active    (action affordance)
     · .sol-card--signature            (China Brand Events tile)
     · .footer-cta top rule            (frames the closing ask)
     · logo mark + hero dot            (brand marks)
     · :focus-visible                  (accessibility)
   ═══════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════
   PRODUCTS · NovaStar dealer band
   The Products section is category-first (buyers search by category), so
   NovaStar cannot be one card in that grid without demoting a Top-5 US
   dealership to a line item. This band sits below the grid and carries the
   one brand relationship we can document. Red is used here as a SIGNATURE
   element, which is inside the v3.5 discipline.
   ══════════════════════════════════════════════════════════════════════ */
.dealer-band {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 44px;
  background: var(--lt-bg-2);
  border: 1px solid var(--lt-line);
  border-left: 3px solid var(--signal);
  border-radius: 4px;
}

.dealer-band__h {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lt-fg);
  margin: 10px 0 12px;
  max-width: 24ch;
}

.dealer-band__p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lt-fg-3);
  max-width: 56ch;
  margin: 0;
}

.dealer-band__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.dealer-band__cta .btn {
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .dealer-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
  .dealer-band__h {
    font-size: 25px;
    max-width: none;
  }
  .dealer-band__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .dealer-band__cta {
    flex-direction: column;
  }
  .dealer-band__cta .btn {
    width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════════════════
   PRODUCT GRID — fix for counts other than four
   The grid was hard-coded to 4 columns back when Products only ever held the
   four NovaStar series. Six category cards rendered 4 + 2, leaving two empty
   cells and a ragged second row; card heights also varied because .specs sat
   directly after a variable-length .desc instead of being pinned to the
   bottom. Both are fixed here rather than in the review block, because the
   live NovaStar grid benefits from the same rules.
   ══════════════════════════════════════════════════════════════════════ */
.product-grid {
  /* 3-up at desktop divides 6 evenly and still reads well at 4. */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Keep the original 4-up when exactly four cards are present, so the live
   NovaStar strip is unchanged. */
.product-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Five cards: 3 + 2 leaves a hole, so let the last row's two cards share the
   full width instead of stranding an empty cell. */
.product-grid:has(> :nth-child(5):last-child) > :nth-child(4) {
  grid-column: span 2;
}
.product-grid:has(> :nth-child(5):last-child) > :nth-child(5) {
  grid-column: span 1;
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card .desc {
  /* Absorb the slack so .specs aligns across every card in a row. */
  flex: 1 1 auto;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 10px 0 22px;
}
.product-card .specs {
  margin-top: auto;
}

/* Light reading zones need the light palette, not the dark one. */
.zone-light .product-card {
  background: var(--lt-bg-2);
  border-color: var(--lt-line);
}
.zone-light .product-card:hover {
  border-color: var(--lt-line-2);
}
.zone-light .product-card .series {
  color: var(--lt-fg);
}
.zone-light .product-card .desc {
  color: var(--lt-fg-2);
}
.zone-light .product-card .specs {
  color: var(--lt-fg-4);
  border-top-color: var(--lt-line);
}

@media (max-width: 1080px) {
  .product-grid,
  .product-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .product-grid,
  .product-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: 1fr;
  }
}




/* ══════════════════════════════════════════════════════════════════════
   NAVIGATION · Products mega panel
   Products is three levels deep (Products -> NovaStar / Other Brands ->
   lines). The third level is a persistent two-column panel, NOT a second
   hover step: nested hover menus force the pointer across a diagonal dead
   zone, have no touch equivalent, and add a tab stop for keyboard users.
   Everything opens on the first hover instead.
   ══════════════════════════════════════════════════════════════════════ */
.nav-item--mega {
  position: static;
}
.nav-dropdown--mega {
  left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 6px;
  min-width: 480px;
  padding: 16px;
}
.mega-col__head {
  display: flex !important;
  align-items: center;
  gap: 9px;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg) !important;
  padding: 8px 14px 10px !important;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0 !important;
  margin-bottom: 6px;
}
.mega-col__head:hover {
  background: transparent !important;
}
/* Flags the dealer line so the two columns do not read as peers. */
.mega-flag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
  background: var(--signal);
  padding: 2px 7px;
  border-radius: 2px;
  white-space: nowrap;
}
.mega-col__list a {
  font-size: 13.5px !important;
  padding: 8px 14px !important;
}

/* Mobile third level — nested <details>, tap-driven. */
.nav-sub > summary {
  font-size: 14px;
  opacity: 0.85;
  padding-left: 12px;
}
.nav-sub ul {
  padding-left: 14px;
}

@media (max-width: 1080px) {
  .nav-dropdown--mega {
    grid-template-columns: 1fr;
    min-width: 260px;
  }
}


/* ══════════════════════════════════════════════════════════════════════
   LIGHT-ZONE OVERRIDES · credentials & contact
   These components were authored for the dark canvas and inherit --fg /
   --fg-3 tokens. Inside .zone-light that produced white-on-white at 1.03:1
   (card headings, info-block headings) and several 2.7-3.1:1 body values.
   Every pair below was recomputed for WCAG 2.1 AA — 4.5:1 for body text,
   3:1 for large text — against the light surfaces they actually sit on.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Credential cards ─────────────────────────────────────── */
.zone-light .cred-card {
  background: var(--lt-bg-2);
  border-color: var(--lt-line);
}
.zone-light .cred-card .cred-kind {
  color: var(--lt-fg-4); /* 10px label — needs the darkest muted token */
}
.zone-light .cred-card h3 {
  color: var(--lt-fg); /* was --fg (white) = 1.03:1 on white */
}
.zone-light .cred-card p {
  color: var(--lt-fg-2);
}
.zone-light .cred-card .cred-id {
  color: var(--lt-fg-4);
  border-top-color: var(--lt-line);
}
.zone-light .cred-card .cred-id a {
  color: var(--signal); /* 4.88:1 on #fff — passes AA */
}
.zone-light .cred-card .cred-id a:hover {
  color: var(--signal-deep);
}

/* ── FAQ accordion ────────────────────────────────────────── */
.zone-light .faq-item {
  border-color: var(--lt-line);
}
.zone-light .faq-q,
.zone-light .faq-item summary {
  color: var(--lt-fg);
}
.zone-light .faq-a,
.zone-light .faq-a p {
  color: var(--lt-fg-2);
}

/* ── Enquiry form ─────────────────────────────────────────── */
.zone-light .form-field label {
  color: var(--lt-fg-2); /* 10px uppercase label */
}
.zone-light .form-field input,
.zone-light .form-field select,
.zone-light .form-field textarea {
  background: var(--lt-bg-2);
  border-color: var(--lt-line-2);
  color: var(--lt-fg);
}
.zone-light .form-field input::placeholder,
.zone-light .form-field textarea::placeholder {
  color: var(--lt-fg-4);
}
.zone-light .form-field input:focus,
.zone-light .form-field select:focus,
.zone-light .form-field textarea:focus {
  border-color: var(--signal);
  outline-color: var(--signal);
}

/* ── Contact info blocks ──────────────────────────────────── */
/* .info-block paints its own dark --bg-2. Darkening only the text left
   near-black on near-black (1.03:1); the surface has to flip too. */
.zone-light .info-block {
  background: var(--lt-bg-2);
  border-color: var(--lt-line);
}
.zone-light .info-block h3 {
  color: var(--lt-fg); /* was white on white */
}
.zone-light .info-block address,
.zone-light .info-block p {
  color: var(--lt-fg-2);
}
.zone-light .info-block a {
  color: var(--lt-fg);
}
.zone-light .legal-line {
  color: var(--lt-fg-4); /* 4.72:1 — the smallest text on the page */
}
.zone-light .legal-line a {
  color: var(--signal);
}
.zone-light .breadcrumb,
.zone-light .breadcrumb a {
  color: var(--lt-fg-4);
}


/* FAQ answers and section eyebrows still resolved to the dark-canvas muted
   token (#8792a3) inside light zones — 2.68:1 and 2.91:1. */
.zone-light .faq-answer,
.zone-light .faq-answer p,
.zone-light .faq-answer li {
  color: var(--lt-fg-2);
}
.zone-light .eyebrow {
  color: var(--lt-fg-4);
}

/* ══════════════════════════════════════════════════════════════════════
   BUILD-OUT GATE · non-interactive cards
   ══════════════════════════════════════════════════════════════════════
   Cards whose destination page has not shipped render as <div>/<span>
   instead of <a> (see LIVE_ROUTES in src/data/site.ts). They keep their
   copy — which is the part that carries the keywords and the visual
   rhythm — but must not pretend to be clickable: no lift, no border
   brighten, no pointer cursor. Slightly recessed so the difference reads
   as intentional rather than broken.

   Remove nothing here when pages ship; `.is-static` simply stops being
   emitted. ------------------------------------------------------------ */
.sol-card.is-static,
.product-card.is-static,
.loc-chip.is-static {
  cursor: default;
}
/* The card is a square flex column using space-between, with the ↗ icon as
   its bottom item. Dropping the icon on a static card left the whole lower
   half empty, which reads as a rendering fault rather than a design. With
   no second child, pack the content to the top and let the square shrink to
   the copy. */
.sol-card.is-static {
  aspect-ratio: auto;
  min-height: 132px;
  justify-content: flex-start;
}
.sol-card.is-static:hover,
.product-card.is-static:hover {
  border-color: var(--line);
  background: var(--bg-2);
  transform: none;
}
.product-card.is-static:hover {
  background: var(--bg);
}
.loc-chip.is-static:hover {
  border-color: var(--line-2);
  color: var(--fg-2);
  background: transparent;
}
/* The chip is an <a> when live and a <span> when not; span is inline by
   default, which would break the pill shape. */
span.loc-chip {
  display: inline-block;
}

/* Mobile nav: a top-level entry with no live children renders as a plain
   link rather than an empty <details>. Match the <summary> metrics so the
   list stays on one rhythm. */
.nav-mobile__leaf {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--fg);
}
