/* ============================================================
   KHLT RFID — Design System
   ============================================================ */

/* Tokens are defined once in the Forge root block below.
   Legacy semantic names such as --bg / --surface / --ink remain
   available there as compatibility aliases, not as a second UI system. */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; font: inherit; }

/* === BODY === */
body {
  font-family: var(--forge-font-body);
  font-size: var(--forge-type-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 0% 0%,   rgba(11,123,102,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 0%,  rgba(214,124,47,.11) 0%, transparent 55%),
    linear-gradient(155deg, #f4efe6 0%, #ede5d4 100%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: var(--forge-leading-body);
  min-height: 100vh;
}

.site-locale-shell {
  font-family: var(--forge-font-body);
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-body);
  letter-spacing: normal;
}

/* === NAVIGATION === */
.site-header {
  --site-header-height: 80px;
  --site-nav-brand-size: 1.125rem;
  --site-nav-brand-tracking: -0.025em;
  --site-nav-logo-height: 36px;
  --site-nav-link-size: 0.9375rem;
  --site-nav-link-tracking: 0.1em;
  --site-nav-link-color: rgba(26,28,30,0.78);
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(148,163,184,0.18);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}
.site-header--compact,
.site-header--menu-open { box-shadow: 0 14px 32px rgba(15,23,42,0.08); }
.site-header--compact { --site-header-height: 64px; }
.site-locale-shell:lang(zh) .site-header { --site-nav-link-tracking: 0.02em; }
.nav-inner {
  max-width: var(--forge-max, var(--max));
  margin: 0 auto;
  padding: 0 28px;
  height: var(--site-header-height);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  transition: height .22s ease, padding .22s ease;
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--forge-font-headline);
  font-size: var(--site-nav-brand-size); font-weight: 800; letter-spacing: var(--site-nav-brand-tracking);
  line-height: 1;
  text-transform: none; text-decoration: none;
  color: var(--forge-on-surface); white-space: nowrap; flex-shrink: 0;
}
.nav-brand span { color: var(--forge-primary); }
.nav-logo { flex-shrink: 0; display: block; height: var(--site-nav-logo-height); width: auto; object-fit: contain; }
.nav-brand .nav-logo rect { fill: var(--forge-inverse-surface); }
.nav-brand .nav-logo path { stroke: var(--forge-primary-container); }
.nav-brand .nav-logo line,
.nav-brand .nav-logo circle {
  stroke: var(--forge-primary-soft);
  fill: var(--forge-primary-soft);
}
.site-nav {
  display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0;
}
.site-nav ul {
  display: flex; align-items: center; list-style: none; gap: 18px; flex: 1; min-width: 0;
}
.site-nav ul a {
  position: relative;
  display: inline-flex; align-items: center;
  height: calc(var(--site-header-height) - 28px);
  padding: 0;
  font-family: var(--forge-font-headline);
  font-size: var(--site-nav-link-size); font-weight: 800; letter-spacing: var(--site-nav-link-tracking); line-height: 1; text-transform: uppercase;
  color: var(--site-nav-link-color); text-decoration: none; border-radius: 0;
  transition: color .18s ease, opacity .18s ease;
}
.site-nav ul a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 2px;
  background: var(--forge-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.site-nav ul a:hover,
.site-nav ul a.active { color: var(--forge-primary); background: transparent; }
.site-nav ul a:hover::after,
.site-nav ul a.active::after { transform: scaleX(1); }
.site-nav ul a.active { box-shadow: none; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(148,163,184,0.18);
  background: transparent;
}
.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forge-secondary);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.nav-contact-item:hover { color: var(--forge-primary); }
.lang-switcher {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.74) 100%);
  color: var(--forge-on-surface);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  font-family: var(--forge-font-headline);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  transition:
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}
.lang-switcher__trigger:hover,
.lang-switcher__trigger.is-open {
  border-color: rgba(154, 70, 0, 0.38);
  color: var(--forge-primary);
  background: #fff;
  box-shadow: 0 12px 24px rgba(154, 70, 0, 0.12);
  transform: translateY(-1px);
}
.lang-switcher__label {
  max-width: 82px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 9999;
  min-width: 184px;
  padding: 8px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}
.lang-switcher__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(154, 70, 0, 0.14);
  border-left: 1px solid rgba(154, 70, 0, 0.14);
  background: rgba(255,255,255,0.98);
  transform: rotate(45deg);
}
.lang-switcher__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-body);
  text-align: left;
  transition: background .16s ease, color .16s ease;
}
.lang-switcher__option:hover {
  background: rgba(154, 70, 0, 0.07);
}
.lang-switcher__option.is-active {
  background: rgba(154, 70, 0, 0.1);
  color: var(--forge-primary);
}
.lang-switcher__option-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.lang-switcher__option-native {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
}
.lang-switcher__option-label {
  color: var(--forge-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
}
.lang-switcher__check {
  color: var(--forge-primary);
  font-weight: 900;
  flex-shrink: 0;
}
.nav-toggle {
  display: none; background: rgba(255,255,255,0.72); border: 1px solid rgba(148,163,184,0.2);
  align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: auto; border-radius: var(--forge-radius-sm);
  font-size: 1.2rem; color: var(--forge-on-surface);
  transition: background .18s ease, border-color .18s ease;
}
.nav-toggle:hover {
  background: rgba(255,139,61,0.08);
  border-color: rgba(154,70,0,0.22);
}
.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle.is-open .nav-toggle__icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__icon span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === BUTTONS === */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px;
  border: 1px solid transparent; border-radius: var(--forge-radius-sm);
  background: var(--color-primary);
  color: var(--forge-on-primary); text-decoration: none;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-button); font-weight: 700; letter-spacing: var(--forge-track-button); text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(154,70,0,0.16);
  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;
}
.button:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 14px 28px rgba(154,70,0,0.24);
  transform: translateY(-2px);
}
.button:active { transform: scale(0.98); }
.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  filter: grayscale(0.3);
  opacity: 0.62;
}

.button-soft {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px;
  background: rgba(255,139,61,0.1);
  color: var(--forge-primary); text-decoration: none;
  border: 1px solid rgba(154,70,0,0.2); border-radius: var(--forge-radius-sm);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-button); font-weight: 700; letter-spacing: var(--forge-track-button); text-transform: uppercase;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease;
}
.button-soft:hover {
  background: rgba(255,139,61,0.16);
  border-color: rgba(154,70,0,0.48);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.button-orange {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px;
  background: var(--color-primary);
  color: var(--forge-on-primary); text-decoration: none;
  border: 1px solid transparent; border-radius: var(--forge-radius-sm);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-button); font-weight: 700; letter-spacing: var(--forge-track-button); text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(154,70,0,0.16);
  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;
}
.button-orange:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 14px 28px rgba(154,70,0,0.24);
  transform: translateY(-2px);
}
.button-orange:active { transform: scale(0.98); }
.button-orange:disabled,
.button-orange[disabled] {
  cursor: not-allowed;
  filter: grayscale(0.3);
  opacity: 0.62;
}

.button-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--forge-primary); text-decoration: none;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-nav); font-weight: 700; letter-spacing: var(--forge-track-nav); text-transform: uppercase;
  transition: gap .18s ease, color .18s ease;
}
.button-link::after {
  content: "\2192";
  transition: transform .18s ease;
}
.button-link:hover {
  color: var(--forge-on-surface);
  gap: 8px;
}
.button-link:hover::after { transform: translateX(4px); }

.button--outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px;
  border: 1px solid rgba(154,70,0,0.42); border-radius: var(--forge-radius-sm);
  background: transparent;
  color: var(--forge-primary); text-decoration: none;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-button); font-weight: 700; letter-spacing: var(--forge-track-button); text-transform: uppercase;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease;
}
.button--outline:hover {
  background: rgba(255,139,61,0.08);
  border-color: var(--forge-primary);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.button--with-arrow { gap: 12px; }
.button--with-arrow::after {
  content: "\2192";
  transition: transform .18s ease;
}
.button--with-arrow:hover::after { transform: translateX(4px); }
.button svg,
.button-orange svg,
.button-soft svg,
.button--outline svg {
  transition: transform .18s ease;
}
.button:hover svg,
.button-orange:hover svg,
.button-soft:hover svg,
.button--outline:hover svg {
  transform: translateX(4px);
}

.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* === LAYOUT === */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 52px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-label); letter-spacing: var(--forge-track-label); text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 10px;
}
.section-title {
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-h2); font-weight: 700;
  color: var(--ink); line-height: var(--forge-leading-heading); letter-spacing: var(--forge-track-heading);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: var(--forge-type-body-lg); color: var(--muted); max-width: 580px; margin-bottom: 40px; line-height: 1.72;
}
.section-head { margin-bottom: 44px; }

.hero-grid      { display: grid; grid-template-columns: 1.12fr .88fr; gap: var(--gap); align-items: start; }
.two-col        { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.three-col      { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--gap); }
.four-col       { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--gap); }
.content-layout { display: grid; grid-template-columns: 1.04fr .96fr; gap: var(--gap); }
.cta-layout     { display: grid; grid-template-columns: 1fr .9fr; gap: var(--gap); }

/* === GLASS BASE === */
.glass {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* === HERO CARD === */
.hero-card {
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  overflow: hidden;
  position: relative;
}
.hero-card.hero-dark {
  background:
    radial-gradient(circle at 82% 14%, rgba(255,139,61,0.22), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(0,93,182,0.16), transparent 34%),
    linear-gradient(145deg, #2f3133 0%, #1a1c1e 56%, #321200 100%);
  border: 0;
  color: #fff;
  box-shadow: var(--forge-shadow-lg);
}
.hero-card.hero-dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08) 0%, transparent 24%),
    radial-gradient(#ffdbc9 0.6px, transparent 0.6px);
  background-size: auto, 22px 22px;
  opacity: 0.55;
  pointer-events: none;
}
.hero-card.hero-light {
  background: var(--forge-surface-lowest);
  border: 1px solid var(--forge-ghost-border);
  box-shadow: var(--forge-shadow-sm);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-label); letter-spacing: var(--forge-track-label); text-transform: uppercase;
  color: var(--forge-primary); background: rgba(255,139,61,0.1);
  border: 1px solid rgba(154,70,0,0.18); padding: 5px 10px; border-radius: var(--forge-radius-sm);
  margin-bottom: 20px; font-weight: 700;
}
.hero-card.hero-dark .hero-eyebrow { color: var(--forge-primary-soft); background: rgba(255,219,201,0.12); border-color: rgba(255,219,201,0.2); }
.hero-h1 {
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-h1); font-weight: 700; line-height: var(--forge-leading-display);
  letter-spacing: var(--forge-track-display); margin-bottom: 20px;
}
.hero-card.hero-dark .hero-h1 { color: #fff; }
.hero-h1 em { font-style: normal; color: var(--forge-primary-container); }
.hero-card.hero-dark .hero-h1 em { color: #7de0c8; }
.hero-sub { font-size: var(--forge-type-body-lg); color: var(--muted); margin-bottom: 32px; line-height: 1.75; }
.hero-card.hero-dark .hero-sub { color: rgba(255,255,255,.7); }

.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

.metric-unit,
.metric-label,
.metric-desc,
.signal-card__label,
.res-proto__card-kicker,
.res-proto__fact-label {
  font-size: var(--forge-type-overline);
}

.signal-card__title {
  font-size: var(--forge-type-title);
  line-height: 1.3;
}

.signal-card__copy,
.signal-list div,
.res-proto__fact-value {
  font-size: var(--forge-type-body-sm);
}

.signal-card__label,
.res-proto__card-kicker,
.res-proto__fact-label {
  letter-spacing: var(--forge-track-label);
}

.metric-unit,
.metric-label,
.metric-desc {
  line-height: var(--forge-leading-relaxed);
}

.metric-label,
.metric-desc {
  color: var(--muted);
}

.resource-detail-hero-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.resource-detail-hero {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  padding: 34px 36px;
}

.resource-detail-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.resource-detail-hero .hero-eyebrow {
  margin-bottom: 0;
}

.resource-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.resource-detail-hero__meta-item {
  display: grid;
  gap: 2px;
  min-width: 120px;
  padding: 10px 12px;
  border: 1px solid rgba(137, 115, 98, 0.18);
  border-radius: var(--forge-radius-sm);
  background: rgba(255, 255, 255, 0.78);
}

.resource-detail-hero__meta-item span {
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.resource-detail-hero__meta-item strong {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-body);
  font-size: var(--forge-type-body-sm);
  font-weight: 700;
  line-height: 1.35;
}

.resource-detail-hero .hero-h1 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: var(--forge-type-display-sm);
  line-height: 1.08;
}

.resource-detail-hero .hero-sub {
  max-width: 68ch;
  margin-bottom: 0;
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-relaxed);
}

.resource-detail-hero__actions {
  padding-top: 4px;
}

.resource-detail-hero .button,
.resource-detail-hero .button-soft {
  min-height: 42px;
  padding: 10px 20px;
}

@media (max-width: 980px) {
  .resource-detail-hero {
    padding: 28px 28px;
  }

  .resource-detail-hero__meta {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .resource-detail-hero {
    padding: 24px 20px;
    gap: 14px;
  }

  .resource-detail-hero__meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .resource-detail-hero__meta-item {
    min-width: 0;
  }

  .resource-detail-hero .hero-h1 {
    max-width: none;
    font-size: var(--forge-type-h2);
  }

  .resource-detail-hero .hero-sub {
    font-size: var(--forge-type-body-sm);
  }
}

/* === FEATURE CARD === */
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform .22s, box-shadow .22s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card.soft { background: rgba(215,239,233,.6); border-color: rgba(11,123,102,.15); }
.feature-card.orange { background: rgba(255,228,203,.55); border-color: rgba(214,124,47,.2); }
.card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.card-label { font-family: var(--forge-font-mono); font-size: var(--forge-type-label); letter-spacing: var(--forge-track-label); text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.card-title { font-family: var(--forge-font-headline); font-size: var(--forge-type-title); font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.34; }
.card-body { font-size: var(--forge-type-body-sm); color: var(--muted); line-height: 1.72; }

/* === METRIC CARD === */
.metric-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.metric-num { font-size: 2.2rem; font-weight: 800; color: var(--teal); letter-spacing: -.03em; line-height: 1; }
.metric-unit { font-size: var(--forge-type-label); color: var(--teal); font-weight: 700; }
.metric-label { font-size: var(--forge-type-overline); color: var(--muted); letter-spacing: var(--forge-track-label); text-transform: uppercase; margin-top: 6px; }
.metric-desc { font-size: var(--forge-type-caption); color: var(--muted); margin-top: 4px; }

/* === RESOURCE CARD === */
.resource-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.resource-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.resource-type {
  display: inline-block; font-size: var(--forge-type-overline); letter-spacing: var(--forge-track-label); text-transform: uppercase;
  font-weight: 700; padding: 3px 10px; border-radius: 20px;
}
.type-guide    { background: var(--teal-soft); color: var(--teal); }
.type-faq      { background: rgba(214,124,47,.12); color: var(--orange); }
.type-deploy   { background: rgba(232,220,200,.8); color: #7a5c2e; }
.type-case     { background: rgba(15,64,55,.1); color: var(--teal-deep); }
.type-download { background: #e8f0ee; color: var(--teal-deep); }

/* === TIMELINE CARD === */
.timeline-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

/* === FAQ CARD === */
.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.faq-card:hover { box-shadow: var(--shadow-md); }
.faq-card summary {
  padding: 20px 24px;
  font-size: .92rem; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: '+'; font-size: 1.2rem; color: var(--teal);
  transition: transform .2s; flex-shrink: 0; margin-left: 12px;
}
.faq-card[open] summary::after { transform: rotate(45deg); }
.faq-card[open] summary { color: var(--teal); }
.faq-body {
  padding: 0 24px 20px;
  font-size: .88rem; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* === FORM CARD === */
.form-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--forge-font-headline); font-size: var(--forge-type-title); font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.34; }
.form-sub { font-size: var(--forge-type-body-sm); color: var(--muted); margin-bottom: 28px; line-height: 1.68; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--forge-font-mono); font-size: var(--forge-type-label); letter-spacing: var(--forge-track-label); text-transform: uppercase; color: var(--muted); font-weight: 600; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 14px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(4px);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font: inherit; font-size: var(--forge-type-body-sm); color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,123,102,.12);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-actions { margin-top: 20px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* === LISTS === */
.spec-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.spec-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.spec-item:last-child { border-bottom: none; }
.spec-key { color: var(--muted); font-size: var(--forge-type-body-sm); flex-shrink: 0; padding-right: 16px; }
.spec-val { color: var(--ink); font-weight: 500; text-align: right; }

.step-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.step-item { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.step-content { flex: 1; }
.step-label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.step-desc { font-size: .83rem; color: var(--muted); margin-top: 3px; }

.detail-list { display: flex; flex-direction: column; gap: 0; }
.detail-item {
  display: flex; gap: 12px; padding: 9px 0;
  border-bottom: 1px solid var(--border); font-size: .86rem;
}
.detail-item:last-child { border-bottom: none; }
.detail-key { color: var(--muted); min-width: 120px; flex-shrink: 0; font-size: var(--forge-type-body-sm); }
.detail-val { color: var(--ink); font-weight: 500; }

.timeline-list { list-style: none; display: flex; flex-direction: column; gap: 20px; position: relative; }
.timeline-list::before {
  content: ''; position: absolute; left: 13px; top: 14px; bottom: 14px;
  width: 2px; background: var(--teal-soft);
}
.timeline-item { display: flex; gap: 16px; position: relative; }
.tl-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-deep); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.tl-content { flex: 1; padding-top: 4px; }
.tl-label { font-size: .9rem; font-weight: 700; color: var(--ink); }
.tl-desc { font-size: .83rem; color: var(--muted); margin-top: 3px; }

/* === DEMAND BAR === */
.demand-row { display: flex; flex-direction: column; gap: 6px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.demand-row:last-child { border-bottom: none; }
.demand-meta { display: flex; justify-content: space-between; align-items: center; }
.demand-name { font-size: .85rem; font-weight: 600; color: var(--ink); }
.demand-pct { font-size: .85rem; font-weight: 700; color: var(--teal); }
.demand-track { height: 5px; background: var(--sand); border-radius: 3px; }
.demand-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--teal-deep) 100%); }

/* === TAGS === */
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .68rem; letter-spacing: .05em; font-weight: 600;
  background: var(--teal-soft); color: var(--teal);
  border: 1px solid rgba(11,123,102,.2);
}
.tag.orange { background: var(--orange-soft); color: var(--orange); border-color: rgba(214,124,47,.25); }
.tag.sand   { background: var(--sand); color: var(--muted); border-color: rgba(22,33,31,.12); }

.tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* === DIVIDER === */
.divider { height: 1px; background: var(--border); margin: 0; }

/* === PAIN CARD === */
.pain-card {
  background: rgba(255,252,246,.7);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
}
.pain-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pain-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* === ROI CARD === */
.roi-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.roi-icon { font-size: 1.4rem; margin-bottom: 10px; }
.roi-label { font-size: .9rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 6px; }
.roi-desc { font-size: .82rem; color: var(--muted); }

/* === ARCH BOX === */
.arch-box {
  background: var(--teal-deep);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  color: rgba(255,255,255,.9);
}
.arch-layer {
  display: flex; gap: 10px; margin-bottom: 12px; align-items: center;
}
.arch-layer:last-child { margin-bottom: 0; }
.arch-arrow { color: rgba(255,255,255,.3); font-size: .8rem; text-align: center; padding: 4px 0 2px; }
.arch-badge {
  padding: 6px 14px; border-radius: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.15);
}
.arch-badge.highlight { background: rgba(11,123,102,.5); border-color: rgba(11,123,102,.6); }

/* === INTENT TABLE === */
.intent-wrap { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.intent-table { width: 100%; border-collapse: collapse; }
.intent-table th {
  background: var(--surface-soft);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  padding: 12px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.intent-table td { padding: 14px 18px; font-size: .88rem; border-bottom: 1px solid var(--border); }
.intent-table tr:last-child td { border-bottom: none; }
.intent-table tr:hover td { background: rgba(11,123,102,.04); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
}
.badge-low  { background: rgba(98,112,107,.12); color: var(--muted); }
.badge-mid  { background: var(--orange-soft); color: var(--orange); }
.badge-high { background: var(--teal-soft); color: var(--teal); }

/* === CROSS-LINK STRIP === */
.crosslink {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0d2d24 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.crosslink-text h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.crosslink-text p  { font-size: .88rem; color: rgba(255,255,255,.65); }
.crosslink-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.crosslink .button-soft {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25);
  color: #fff; backdrop-filter: none;
}
.crosslink .button-soft:hover { background: rgba(255,255,255,.2); }

/* === BREADCRUMB === */
.breadcrumb-bar {
  background: rgba(255,252,246,0.7);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.breadcrumb li + li::before {
  content: '/';
  margin: 0 8px;
  color: var(--sand);
}
.breadcrumb a {
  text-decoration: none;
  color: var(--muted);
  transition: color .18s;
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb li[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* === CATALOG LAYOUT === */
.catalog-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 40px 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}
.catalog-sidebar {
  position: sticky;
  top: 80px;
}
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 4px;
}
.filter-title { font-size: var(--forge-type-body-lg); font-weight: 700; color: var(--ink); line-height: var(--forge-leading-heading); }
.filter-reset {
  display: flex; align-items: center; gap: 4px;
  font-size: var(--forge-type-overline); letter-spacing: var(--forge-track-label); color: var(--muted);
  background: none; border: none; cursor: pointer;
  transition: color .18s;
}
.filter-reset::before { content: '↺'; font-size: .9rem; }
.filter-reset:hover { color: var(--teal); }
.filter-section {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.filter-section summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 4px 11px 0;
  font-size: .82rem; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none; user-select: none;
  border-radius: 6px;
  transition: color .15s;
}
.filter-section summary:hover { color: var(--teal); }
.filter-section summary::-webkit-details-marker { display: none; }
.filter-section summary::after {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  background-color: var(--muted);
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
  transition: transform .2s, background-color .15s;
}
.filter-section summary:hover::after { background-color: var(--teal); }
.filter-section[open] summary::after { transform: rotate(180deg); }
.filter-check-list {
  list-style: none; padding-bottom: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.filter-check-list li {
  display: flex; align-items: center;
}
.filter-check-list li a {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 6px 8px;
  font-size: .8rem; color: var(--ink); text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.filter-check-list li a:hover { background: var(--teal-soft); color: var(--teal); }
/* custom checkbox indicator */
.filter-check-list li a::before {
  content: '';
  flex-shrink: 0;
  width: 15px; height: 15px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background: #fff;
  transition: background .15s, border-color .15s;
}
.filter-check-list li a.active {
  color: var(--teal); font-weight: 600;
}
.filter-check-list li a.active::before {
  background: var(--teal); border-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
/* count badge */
.filter-count {
  margin-left: auto; flex-shrink: 0;
  font-size: .69rem; font-weight: 500;
  color: var(--muted);
  background: rgba(22,33,31,0.06);
  padding: 1px 7px; border-radius: 10px;
}
.filter-check-list li a.active .filter-count {
  background: rgba(11,123,102,0.12);
  color: var(--teal);
}
/* category color dot */
.filter-dot {
  flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-strong);
}
.filter-dot--teal   { background: var(--teal); }
.filter-dot--orange { background: var(--orange); }
.filter-dot--sand   { background: #9e8e74; }

/* === PRODUCT LIST === */
.catalog-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.catalog-count { font-size: var(--forge-type-body-lg); font-weight: 700; color: var(--ink); line-height: var(--forge-leading-heading); }
.catalog-count em { font-style: normal; color: var(--teal); }
.product-list { display: flex; flex-direction: column; gap: 10px; }

/* === PRODUCT CARD GRID (方案二) === */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  display: flex; flex-direction: column;
  background: rgba(255,252,246,.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__img {
  width: 100%; aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(135deg, var(--teal-soft) 0%, rgba(215,239,233,.3) 100%);
}
.product-card__img--orange {
  background: linear-gradient(135deg, rgba(255,228,203,.9) 0%, rgba(255,228,203,.3) 100%);
}
.product-card__img--sand {
  background: linear-gradient(135deg, rgba(232,220,200,.86) 0%, rgba(255,252,246,.4) 100%);
}
.product-card__img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--teal); opacity: .55;
}
.product-card__body {
  padding: 14px 16px 10px; flex: 1;
  display: flex; flex-direction: column; gap: 3px;
}
.product-card__family {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--teal);
}
.product-card__name {
  font-size: .92rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
}
.product-card__sub {
  font-size: .75rem; color: var(--muted); line-height: 1.5;
  margin-top: 2px; flex: 1;
}
.product-card__sku {
  display: inline-block; margin-top: 8px;
  font-size: .68rem; font-weight: 600; color: var(--teal);
  background: var(--teal-soft); padding: 2px 8px; border-radius: 10px;
  align-self: flex-start;
}
.product-card__footer {
  padding: 10px 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border);
}
.product-card__actions { display: flex; gap: 6px; }
.product-card__actions .btn-detail,
.product-card__actions .btn-manual {
  flex: 1; font-size: .72rem; padding: 7px 10px;
}
/* === CASE SCENE DIVIDER (方案三) === */
.case-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.case-hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,64,55,.82) 0%, rgba(11,123,102,.52) 100%);
}
.case-scene-divider {
  position: relative; overflow: hidden; margin: 0;
}
.case-scene-divider img {
  display: block; width: 100%; height: 300px; object-fit: cover;
}
.case-scene-divider__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,64,55,.62) 0%, transparent 65%);
  display: flex; align-items: flex-end; padding: 28px 40px;
}
.case-scene-divider__caption {
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .04em; text-transform: uppercase;
}
@media (max-width: 1100px) {
  .product-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .product-card-grid { grid-template-columns: 1fr; }
  .case-scene-divider img { height: 180px; }
}

.product-row {
  display: grid;
  grid-template-columns: 110px 1fr 200px 130px;
  gap: 20px; align-items: center;
  padding: 18px 22px;
  background: rgba(255,252,246,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow .2s, transform .2s;
}
.product-row:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.product-row.hidden { display: none; }
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-soft) 0%, rgba(215,239,233,.4) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: .62rem; letter-spacing: .06em;
  text-transform: uppercase; font-weight: 700;
}
.product-name { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.product-sub { font-size: .78rem; color: var(--muted); }
.product-specs { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.product-specs li {
  font-size: .78rem; color: var(--muted);
  display: flex; align-items: baseline; gap: 5px;
}
.product-specs li::before {
  content: '●'; font-size: .35rem; color: var(--teal);
  flex-shrink: 0; position: relative; top: -1px;
}
.product-specs .sl { flex-shrink: 0; }
.product-actions { display: flex; flex-direction: column; gap: 7px; }
.btn-detail {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  background: var(--teal); color: #fff; text-decoration: none;
  border-radius: 20px; font-size: .75rem; font-weight: 600;
  transition: background .18s;
}
.btn-detail:hover { background: var(--teal-deep); }
.btn-manual {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 14px;
  background: transparent; color: var(--ink); text-decoration: none;
  border: 1px solid var(--border-strong); border-radius: 20px;
  font-size: .75rem; font-weight: 500;
  transition: border-color .18s, color .18s;
}
.btn-manual:hover { border-color: var(--teal); color: var(--teal); }

.product-img--teal {
  background: linear-gradient(135deg, rgba(215,239,233,.95) 0%, rgba(215,239,233,.38) 100%);
}

.product-img--orange {
  background: linear-gradient(135deg, rgba(255,228,203,.9) 0%, rgba(255,228,203,.34) 100%);
}

.product-img--sand {
  background: linear-gradient(135deg, rgba(232,220,200,.86) 0%, rgba(255,252,246,.56) 100%);
}

/* === PAGINATION === */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; margin-top: 32px;
}
.page-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 600;
  border: none; background: transparent; color: var(--muted);
  cursor: pointer; transition: background .18s, color .18s;
}
.page-btn:hover { background: var(--teal-soft); color: var(--teal); }
.page-btn.active { background: var(--teal); color: #fff; }
.page-ellipsis { font-size: .85rem; color: var(--muted); padding: 0 2px; }

/* === PRODUCTS PAGE === */
.products-catalog-section {
  padding-top: 18px;
  padding-bottom: 40px;
}

.products-catalog-wrap {
  padding-top: 10px;
  padding-bottom: 0;
}

.products-sidebar-shell {
  padding: 12px 0 0;
}

.products-buyer-ask-card {
  margin-top: 22px;
  padding: 20px 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(22,33,31,.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.products-buyer-ask-card__title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}

.products-buyer-ask-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.products-buyer-ask-list li {
  position: relative;
  padding-left: 14px;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--muted);
}
.products-buyer-ask-cta {
  display: block; margin-top: 14px;
  padding: 8px 14px; text-align: center;
  font-size: .78rem; font-weight: 600;
  color: var(--teal); text-decoration: none;
  border: 1.5px solid var(--teal);
  border-radius: 20px;
  transition: background .18s, color .18s;
}
.products-buyer-ask-cta:hover {
  background: var(--teal); color: #fff;
}

.products-buyer-ask-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.products-catalog-header {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.products-catalog-intro {
  display: grid;
  gap: 6px;
}

.products-catalog-copy {
  font-size: .82rem;
  line-height: 1.65;
  color: var(--muted);
}

.products-sort-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(22,33,31,.08);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.products-shortlist-section {
  padding-top: 28px;
  padding-bottom: 56px;
}

/* === PRODUCT DETAIL PAGE === */
.product-detail-showcase {
  padding: 26px 0 0;
}

.product-spotlight {
  display: grid;
  grid-template-columns: .96fr 1.18fr .56fr;
  gap: 24px;
  align-items: center;
  padding: 12px 0 0;
}

.product-spotlight__intro {
  padding: 20px 8px 20px 10px;
}

.product-spotlight__code {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.product-spotlight__title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.05em;
  color: var(--ink);
  margin-bottom: 10px;
}

.product-spotlight__subtitle {
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 22px;
}

.product-spotlight__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(22,33,31,.08);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-spotlight__meta {
  display: grid;
  gap: 10px;
}

.product-spotlight__meta div {
  display: grid;
  gap: 4px;
}

.product-spotlight__meta strong {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-spotlight__meta span {
  font-size: .94rem;
  line-height: 1.65;
  color: var(--ink);
}

.product-spotlight__visual {
  display: flex;
  justify-content: center;
}

.product-spotlight__visual-card {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 24px 40px;
  border-radius: 28px;
  border: 1px solid rgba(22,33,31,.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(11,123,102,.09) 0%, transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(214,124,47,.08) 0%, transparent 28%),
    linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(246,240,231,.92) 100%);
  box-shadow: var(--shadow-sm);
}

.product-spotlight__visual-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 62%;
  height: 92px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 34%, 82% 100%, 18% 100%, 0% 34%);
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow:
    inset 0 -14px 0 rgba(0,0,0,.12),
    0 18px 34px rgba(15,64,55,.14);
}

.product-spotlight__visual-card img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(22,33,31,.18));
}

.product-spotlight__chip {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15,64,55,.88);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-spotlight__cta {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.product-quote-badge {
  width: 170px;
  aspect-ratio: 1 / 1;
  clip-path: polygon(50% 0%, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: 0 18px 28px rgba(15,64,55,.22);
  transition: transform .18s, box-shadow .18s;
}

.product-quote-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(15,64,55,.28);
}

.product-quote-badge span {
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 700;
}

.product-spotlight__cta-links {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.product-benefit-bar {
  margin-top: 18px;
  background: linear-gradient(90deg, var(--teal-deep) 0%, #136a59 54%, var(--teal) 100%);
}

.product-benefit-bar__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(6, 1fr);
  align-items: stretch;
}

.product-benefit-bar__label,
.product-benefit-item {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 18px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.32);
}

.product-benefit-bar__label {
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
}

.product-benefit-item {
  font-size: .84rem;
  line-height: 1.45;
}

.product-benefit-item:last-child {
  border-right: none;
}

.product-feature-section {
  padding-top: 28px;
}

.product-feature-layout {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 28px;
  align-items: start;
}

.product-feature-block,
.product-application-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.product-section-heading {
  font-size: 2rem;
  line-height: 1.08;
  color: var(--teal-deep);
  margin-bottom: 18px;
}

.product-feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-bullet-list {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.product-bullet-list li {
  font-size: .92rem;
  line-height: 1.72;
  color: var(--ink);
}

.product-gallery-section {
  margin-top: 28px;
  padding: 36px 0 34px;
  background:
    linear-gradient(180deg, rgba(255,252,246,.44) 0%, rgba(232,220,200,.34) 100%);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: center;
}

.product-gallery-card {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(22,33,31,.06);
  background: rgba(255,253,248,.74);
  box-shadow: 0 10px 28px rgba(22,33,31,.05);
}

.product-gallery-card img {
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(22,33,31,.12));
}

.product-gallery-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.product-gallery-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(22,33,31,.18);
}

.product-gallery-dots span.active {
  background: var(--teal);
}

.product-overview-section {
  padding-top: 22px;
}

.product-overview-copy {
  max-width: 760px;
}

.product-overview-copy p {
  font-size: .95rem;
  line-height: 1.82;
  color: var(--ink);
  margin-bottom: 16px;
}

.product-overview-copy p:last-child {
  margin-bottom: 0;
}

.product-spec-section {
  padding-top: 10px;
  padding-bottom: 56px;
}

.product-spec-shell {
  display: grid;
  gap: 20px;
}

.product-spec-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-spec-tab {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(15,64,55,.10);
  background: rgba(15,64,55,.08);
  color: var(--teal-deep);
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .02em;
}

.product-spec-tab.active {
  border-color: transparent;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
}

.product-spec-table {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 18px 0;
  margin: 0 24px;
  border-bottom: 1px solid rgba(22,33,31,.08);
}

.product-spec-row:last-child {
  border-bottom: none;
}

.product-spec-key {
  font-size: var(--forge-type-body-sm);
  font-weight: 700;
  color: var(--ink);
}

.product-spec-value {
  font-size: .9rem;
  line-height: 1.72;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .product-spotlight {
    grid-template-columns: 1fr 1fr;
  }

  .product-spotlight__cta {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
  }

  .product-spotlight__cta-links {
    justify-items: start;
  }

  .product-benefit-bar__inner,
  .product-feature-layout,
  .product-feature-columns,
  .product-gallery,
  .product-spec-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .product-benefit-bar__label {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.32);
  }
}

@media (max-width: 900px) {
  .product-detail-showcase {
    padding-top: 18px;
  }

  .product-spotlight,
  .product-feature-layout,
  .product-feature-columns,
  .product-gallery,
  .product-spec-tabs {
    grid-template-columns: 1fr;
  }

  .product-spotlight__intro {
    padding: 0;
  }

  .product-spotlight__title {
    font-size: 2.5rem;
  }

  .product-spotlight__visual-card {
    min-height: 260px;
    padding: 20px 16px 34px;
  }

  .product-spotlight__visual-card::before {
    width: 72%;
    height: 72px;
  }

  .product-spotlight__chip {
    bottom: 76px;
  }

  .product-spotlight__cta {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-spotlight__cta-links {
    justify-items: center;
  }

  .product-benefit-bar__inner {
    grid-template-columns: 1fr;
  }

  .product-benefit-bar__label,
  .product-benefit-item {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .product-benefit-item:last-child {
    border-bottom: none;
  }

  .product-feature-block,
  .product-application-card {
    padding: 22px 20px;
  }

  .product-gallery-card {
    min-height: 180px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 16px;
    padding: 16px 0;
  }
}

/* === CATALOG RESPONSIVE === */
@media (max-width: 900px) {
  .catalog-wrap { grid-template-columns: 1fr; padding: 20px; }
  .catalog-sidebar { position: static; }
  .product-row { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; }
  .product-specs { grid-column: 1 / -1; }
  .product-actions { grid-column: 1 / -1; flex-direction: row; }
  .products-catalog-header { flex-direction: column; }
  .products-shortlist-section { padding-top: 18px; padding-bottom: 32px; }
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--teal-deep);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  display: flex; align-items: center; justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
  font-size: 1.6rem; font-weight: 800; color: #fff;
  letter-spacing: -.03em; line-height: 1;
}
.trust-num span { font-size: 1rem; font-weight: 600; }
.trust-label { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* === SCENARIO CARD === */
.scenario-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0;
  backdrop-filter: blur(12px);
  transition: transform .22s, box-shadow .22s;
}
.scenario-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.scenario-pain {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-style: italic;
}
.scenario-pain::before { content: '"'; color: var(--orange); font-size: 1.2rem; line-height: 0; vertical-align: -.3em; margin-right: 3px; }
.scenario-pain::after  { content: '"'; color: var(--orange); font-size: 1.2rem; line-height: 0; vertical-align: -.3em; margin-left: 3px; }
.scenario-fix { font-size: .85rem; color: var(--ink); margin-bottom: 14px; line-height: 1.6; }
.scenario-meta {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px;
}
.scenario-meta-tag {
  font-size: .68rem; letter-spacing: .04em; padding: 3px 9px;
  background: var(--teal-soft); color: var(--teal);
  border-radius: 20px; border: 1px solid rgba(11,123,102,.15);
}

/* === LAYERED CTA === */
.cta-tiers {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px;
}
.cta-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.cta-tier-badge {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 20px; margin-bottom: 4px;
}
.cta-tier-badge.low  { background: rgba(98,112,107,.1); color: var(--muted); }
.cta-tier-badge.mid  { background: var(--orange-soft); color: var(--orange); }
.cta-tier-badge.high { background: var(--teal-soft); color: var(--teal); }
.cta-tier-label { font-size: .88rem; font-weight: 700; color: var(--ink); }
.cta-tier-desc  { font-size: .78rem; color: var(--muted); flex: 1; }

/* === STICKY CTA BAR === */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,64,55,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: .85rem; color: rgba(255,255,255,.8); }
.sticky-cta-text strong { color: #fff; }
.sticky-cta-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sticky-cta .button-soft {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25);
  color: #fff;
}

/* === BEFORE/AFTER STRIP === */
.ba-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
}
.ba-col {
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.ba-col.before { background: rgba(232,220,200,.4); }
.ba-col.after  { background: rgba(215,239,233,.5); }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-soft); padding: 0 16px;
  font-size: 1.4rem; color: var(--teal);
}
.ba-label {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 4px;
}
.ba-col.before .ba-label { color: var(--muted); }
.ba-col.after  .ba-label { color: var(--teal); }
.ba-item {
  font-size: .82rem; color: var(--ink); display: flex; align-items: baseline; gap: 7px;
}
.ba-item::before { content: '—'; color: var(--muted); font-size: .75rem; flex-shrink: 0; }
.ba-col.after .ba-item::before { content: '✓'; color: var(--teal); }

@media (max-width: 900px) {
  .cta-tiers { grid-template-columns: 1fr; }
  .sticky-cta { padding: 12px 20px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { padding: 12px; transform: rotate(90deg); }
  .trust-divider { display: none; }
}

/* ============================================================
   SOLUTIONS PAGE FRAMEWORK
   ============================================================ */

/* --- Hero with side visual --- */
.sol-hero-wrap {
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(11,123,102,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(214,124,47,.12) 0%, transparent 55%),
    linear-gradient(140deg, var(--teal-deep) 0%, #0a2e25 55%, #071d16 100%);
  padding: 72px 0 0;
  overflow: hidden;
  min-height: 520px;
}
.sol-hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: end;
}
.sol-hero-text { padding-bottom: 72px; }
.sol-hero-eyebrow {
  display: inline-block;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-soft); background: rgba(214,124,47,.15);
  border: 1px solid rgba(214,124,47,.3); padding: 4px 12px; border-radius: 20px;
  margin-bottom: 20px; font-weight: 700;
}
.sol-hero-h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 800; color: #fff;
  line-height: 1.12; letter-spacing: -.03em; margin-bottom: 18px;
}
.sol-hero-h1 em { font-style: normal; color: #7de0c8; }
.sol-hero-sub { font-size: var(--forge-type-hero-sub); color: rgba(255,255,255,.65); line-height: var(--forge-leading-loose); margin-bottom: 36px; max-width: 480px; }
.sol-hero-visual {
  align-self: center;
  justify-self: center;
  width: min(100%, 860px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding-bottom: 0;
  margin-top: -18px;
}
.sol-hw-card {
  border-radius: 14px; padding: 18px 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px); transition: transform .3s;
}
.sol-hw-card:hover { transform: translateY(-4px); }
.sol-hw-card.accent { background: rgba(11,123,102,.3); border-color: rgba(11,123,102,.45); }
.sol-hw-card.wide { grid-column: 1 / -1; }
.sol-hw-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 6px; font-weight: 700; }
.sol-hw-name  { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 4px; }
.sol-hw-spec  { font-size: .72rem; color: rgba(255,255,255,.5); }
.sol-hw-dot   { width: 32px; height: 4px; border-radius: 2px; background: #7de0c8; margin-bottom: 12px; }

/* --- Feature Strip --- */
.sol-strip {
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.sol-strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex;
}
.sol-strip-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 26px 16px;
  border-right: 1px solid var(--border);
  transition: background .2s;
  text-decoration: none;
}
.sol-strip-item:last-child { border-right: none; }
.sol-strip-item:hover { background: var(--teal-soft); }
.sol-strip-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  transition: background .2s, color .2s;
}
.sol-strip-item:hover .sol-strip-icon { background: var(--teal); color: #fff; }
.sol-strip-label { font-size: .78rem; font-weight: 700; color: var(--ink); letter-spacing: .04em; }
.sol-strip-desc  { font-size: .7rem; color: var(--muted); text-align: center; }

/* --- Gallery Grid --- */
.sol-gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.sol-gallery-card {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px 16px; position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s; cursor: pointer;
}
.sol-gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sol-gc-1  { background: linear-gradient(135deg, #d7efe9 0%, #eaf6f2 100%); }
.sol-gc-2  { background: linear-gradient(135deg, #ffe4cb 0%, #fff3e8 100%); }
.sol-gc-3  { background: linear-gradient(135deg, #e8dcc8 0%, #f4ede0 100%); }
.sol-gc-4  { background: linear-gradient(135deg, #d7efe9 0%, #c8e8df 100%); }
.sol-gc-5  { background: linear-gradient(135deg, #f0ece4 0%, #ebe5d8 100%); }
.sol-gc-6  { background: linear-gradient(135deg, #ffe4cb 0%, #ffd4aa 100%); }
.sol-gc-7  { background: linear-gradient(135deg, #d7efe9 0%, #b8e0d4 100%); }
.sol-gc-8  { background: linear-gradient(135deg, #e8dcc8 0%, #d4c8b0 100%); }
.sol-gc-9  { background: linear-gradient(135deg, #ffe4cb 0%, #f5d8b0 100%); }
.sol-gc-10 { background: linear-gradient(135deg, #d7efe9 0%, #aad8cb 100%); }
.sol-gc-11 { background: linear-gradient(135deg, #f4efe6 0%, #ede5d4 100%); }
.sol-gc-12 { background: linear-gradient(135deg, var(--teal-soft) 0%, rgba(11,123,102,.25) 100%); }
.sol-gallery-card-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-deep); background: rgba(255,255,255,.85);
  padding: 3px 9px; border-radius: 20px; align-self: flex-start;
}
.sol-gallery-card-name {
  font-size: .82rem; font-weight: 700; color: var(--ink); margin-top: 6px;
}
.sol-gallery-card-icon {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}

/* --- Specialty (Expertise) Cards --- */
.sol-spec-section { background: var(--surface-soft); }
.sol-spec-head { text-align: center; padding: 64px 40px 0; }
.sol-spec-title { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.sol-spec-sub { font-size: .92rem; color: var(--muted); max-width: 560px; margin: 0 auto 48px; }
.sol-spec-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 40px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.sol-spec-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg); padding: 36px 40px;
  box-shadow: var(--shadow-sm); display: flex; gap: 24px; align-items: flex-start;
  transition: transform .22s, box-shadow .22s;
}
.sol-spec-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sol-spec-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.sol-spec-icon-wrap.teal   { background: var(--teal-soft); }
.sol-spec-icon-wrap.orange { background: var(--orange-soft); }
.sol-spec-card-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.sol-spec-card-body  { font-size: .86rem; color: var(--muted); line-height: 1.7; }
.sol-spec-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.sol-spec-list li {
  font-size: .82rem; color: var(--ink); display: flex; align-items: baseline; gap: 8px;
}
.sol-spec-list li::before { content: '✓'; color: var(--teal); font-size: .8rem; flex-shrink: 0; }

/* --- Feature Wheel / Ring --- */
.sol-wheel-section { background: var(--bg); }
.sol-wheel-head { text-align: center; padding: 64px 40px 0; }
.sol-wheel-wrap {
  max-width: var(--max); margin: 0 auto; padding: 48px 40px 64px;
  display: grid; grid-template-columns: 1fr 280px 1fr; gap: 32px; align-items: center;
}
.sol-wheel-col { display: flex; flex-direction: column; gap: 14px; }
.sol-wheel-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 16px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.sol-wheel-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.sol-wheel-col.right .sol-wheel-item { flex-direction: row-reverse; }
.sol-wheel-col.right .sol-wheel-item:hover { transform: translateX(-4px); }
.sol-wheel-item-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.sol-wheel-col.right .sol-wheel-item-icon { background: var(--orange-soft); color: var(--orange); }
.sol-wheel-item-label { font-size: .83rem; font-weight: 700; color: var(--ink); }
.sol-wheel-item-desc  { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.sol-wheel-center {
  width: 280px; height: 280px; border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-deep), #071d16);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  box-shadow:
    0 0 0 16px rgba(11,123,102,.07),
    0 0 0 32px rgba(11,123,102,.04),
    var(--shadow-lg);
  text-align: center; padding: 20px;
}
.sol-wheel-center-icon { font-size: 2rem; margin-bottom: 8px; }
.sol-wheel-center-title { font-size: .85rem; font-weight: 800; color: #fff; letter-spacing: .04em; }
.sol-wheel-center-sub   { font-size: .68rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }

/* --- Stats Strip --- */
.sol-stats-wrap {
  background: var(--surface-soft);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.sol-stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.sol-stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.sol-stat-item:last-child { border-right: none; }
.sol-stat-num  { font-size: 2.6rem; font-weight: 800; color: var(--teal); letter-spacing: -.04em; line-height: 1; }
.sol-stat-unit { font-size: 1.1rem; font-weight: 700; color: var(--teal); }
.sol-stat-label{ font-size: .82rem; font-weight: 700; color: var(--ink); margin-top: 6px; }
.sol-stat-desc { font-size: .72rem; color: var(--muted); margin-top: 3px; }

/* --- Integration Section --- */
.sol-int-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.sol-int-topo {
  background: var(--teal-deep); border-radius: var(--radius-lg);
  padding: 32px 36px; display: flex; flex-direction: column; gap: 10px;
}
.sol-int-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sol-int-badge {
  padding: 7px 14px; border-radius: 8px;
  font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
}
.sol-int-badge.hl { background: rgba(11,123,102,.45); border-color: rgba(11,123,102,.55); color: #7de0c8; }
.sol-int-badge.org { background: rgba(214,124,47,.2); border-color: rgba(214,124,47,.35); color: var(--orange-soft); }
.sol-int-arrow { font-size: .7rem; color: rgba(255,255,255,.3); padding: 2px 0; }

/* --- Diagnostic / Assessment --- */
.sol-diag-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
.sol-diag-card {
  background: var(--surface-strong); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 36px 40px; box-shadow: var(--shadow-md);
}
.sol-diag-list { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.sol-diag-item { display: flex; align-items: flex-start; gap: 12px; }
.sol-diag-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  position: relative;
}
.sol-diag-check::before { content: '✓'; font-size: .72rem; line-height: 1; }
.sol-diag-text { font-size: .85rem; color: var(--ink); line-height: 1.6; }

/* --- CTA Banner --- */
.sol-cta-banner {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(11,123,102,.4) 0%, transparent 60%),
    linear-gradient(140deg, var(--teal-deep) 0%, #071d16 100%);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.sol-cta-banner::after {
  content: 'RFID'; position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  font-size: 14rem; font-weight: 900; color: rgba(255,255,255,.02);
  letter-spacing: .2em; pointer-events: none; user-select: none;
}
.sol-cta-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 12px; }
.sol-cta-title em { font-style: normal; color: #7de0c8; }
.sol-cta-sub   { font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

.sol-delivery-section {
  background: linear-gradient(180deg, #0a2f27 0%, #08251f 100%);
  padding: 72px 0;
}

.sol-delivery-section .section-title,
.sol-delivery-section .section-subtitle {
  color: #fff;
}

.sol-delivery-section .section-subtitle {
  opacity: .7;
}

.sol-delivery-head {
  text-align: center;
  margin-bottom: 34px;
}

.sol-delivery-strip {
  margin-bottom: 26px;
}

.sol-delivery-strip .process-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
}

.sol-delivery-strip .process-step__title {
  color: #fff;
}

.sol-delivery-strip .process-step__copy {
  color: rgba(255,255,255,.66);
}

.sol-delivery-strip .process-step__num {
  background: rgba(255,255,255,.1);
  color: #7de0c8;
}

.sol-delivery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sol-delivery-card {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-sm);
}

.sol-delivery-card .card-title {
  color: #fff;
}

.sol-delivery-card .sol-spec-list li {
  color: rgba(255,255,255,.78);
}

.sol-integration-list {
  margin-top: 8px;
}

.sol-ready-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sol-ready-grid .sol-diag-card:last-child {
  grid-column: 1 / 2;
}

.sol-contact-layout {
  gap: 28px;
}

.sol-contact-points {
  display: grid;
  gap: 0;
  margin-bottom: 20px;
}

.sol-contact-support {
  display: none;
}

/* --- Solutions Responsive --- */
@media (max-width: 1100px) {
  .sol-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .sol-wheel-wrap { grid-template-columns: 1fr; justify-items: center; }
  .sol-wheel-center { width: 200px; height: 200px; }
  .sol-stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .sol-stat-item:nth-child(2) { border-right: none; }
  .sol-stat-item:nth-child(3),
  .sol-stat-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 24px; }
  .sol-delivery-cards,
  .sol-ready-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .sol-hero-inner { grid-template-columns: 1fr; }
  .sol-hero-visual { display: none; }
  .sol-hero-text { padding-bottom: 48px; }
  .sol-strip-inner { flex-wrap: wrap; }
  .sol-strip-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .sol-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-spec-grid { grid-template-columns: 1fr; }
  .sol-spec-head, .sol-wheel-head { padding: 40px 20px 0; }
  .sol-spec-grid, .sol-wheel-wrap { padding-left: 20px; padding-right: 20px; }
  .sol-int-grid, .sol-diag-grid { grid-template-columns: 1fr; }
  .sol-stats-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .sol-diag-card { padding: 24px 20px; }
  .sol-cta-banner { padding: 56px 20px; }
  .sol-delivery-cards,
  .sol-ready-grid { grid-template-columns: 1fr; }
  .sol-ready-grid .sol-diag-card:last-child { grid-column: auto; }
  .sol-delivery-section { padding: 56px 0; }
}

/* === FOOTER === */
footer {
  background: #1E3F37;
  color: rgba(255,255,255,.7);
  padding: 40px 0 28px;
}
.site-footer {
  position: relative;
  margin-top: 56px;
  padding: 0;
  overflow: hidden;
  background: #1E3F37;
  color: rgba(255,255,255,.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 96px;
  width: 360px;
  height: 110px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.16) 0 10%, transparent 11%),
    radial-gradient(circle at 44% 44%, rgba(255,255,255,.12) 0 9%, transparent 10%),
    radial-gradient(circle at 72% 52%, rgba(255,255,255,.10) 0 11%, transparent 12%);
  opacity: .16;
  filter: blur(1px);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 40px 18px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.12fr 1.02fr .9fr;
  gap: 56px;
  padding-bottom: 44px;
}

.site-footer__column { min-width: 0; }

.site-footer__title {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.site-footer__subtitle {
  margin-bottom: 10px;
  font-size: .98rem;
  font-weight: 800;
  color: #fff;
}

.site-footer__link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.site-footer__link-grid a,
.site-footer__quick-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .18s, transform .18s;
}

.site-footer__link-grid a::before,
.site-footer__quick-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #c85834;
  border-right: 1.5px solid #c85834;
  transform: rotate(45deg);
  opacity: .92;
}

.site-footer__link-grid a:hover,
.site-footer__quick-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.site-footer__company {
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__contact-list {
  display: grid;
  gap: 10px;
}

.site-footer__contact-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: start;
}

.site-footer__contact-row span {
  color: rgba(255,255,255,.56);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__contact-row a,
.site-footer__contact-row p {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  line-height: 1.7;
}

.site-footer__social-grid {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.site-footer__social-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 92px;
}

.site-footer__social-card span {
  font-size: .86rem;
  color: rgba(255,255,255,.82);
}

.site-footer__qr {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19,19,19,.12) 50%, transparent 50%),
    linear-gradient(rgba(19,19,19,.12) 50%, transparent 50%),
    linear-gradient(135deg, #faf8f3 0%, #ddd5c8 100%);
  background-size: 10px 10px, 10px 10px, auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 12px 22px rgba(0,0,0,.2);
}

.site-footer__qr::before,
.site-footer__qr::after {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.site-footer__qr::before {
  content: "";
  inset: 12px;
  border: 6px solid rgba(22,33,31,.08);
  border-radius: 14px;
}

.site-footer__qr::after {
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.site-footer__qr--wechat::after {
  content: "WX";
  background: linear-gradient(135deg, #0b7b66 0%, #0f4037 100%);
}

.site-footer__qr--linkedin::after {
  content: "IN";
  background: linear-gradient(135deg, #d67c2f 0%, #b85c1c 100%);
}

/* ── Social Icon Strip ── */
.site-footer__icon-strip {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.sfi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  text-decoration: none;
  flex-shrink: 0;
}

.sfi svg {
  width: 18px;
  height: 18px;
}

.sfi:hover {
  transform: translateY(-2px);
  border-color: transparent;
  color: #fff;
}

.sfi--linkedin:hover { background: #0A66C2; }
.sfi--youtube:hover  { background: #FF0000; }
.sfi--facebook:hover { background: #1877F2; }
.sfi--x:hover        { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); }
.sfi--whatsapp:hover { background: #25D366; }

/* ── Social Connect Cards (方案B) ── */
.sf-connect__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.sf-connect__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 10px 10px 13px;
  border-radius: 8px;
  border-left: 2.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s;
  overflow: visible;
}

.sf-connect__card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-2px);
}

.sf-connect__card[data-brand="linkedin"] { border-left-color: #0A66C2; }
.sf-connect__card[data-brand="youtube"]  { border-left-color: #FF0000; }
.sf-connect__card[data-brand="whatsapp"] { border-left-color: #25D366; }
.sf-connect__card[data-brand="x"]        { border-left-color: rgba(255,255,255,.5); }
.sf-connect__card[data-brand="wechat"]   { border-left-color: #07C160; }

.sf-connect__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -.02em;
}

.sf-connect__card[data-brand="linkedin"] .sf-connect__icon { background: #0A66C2; }
.sf-connect__card[data-brand="youtube"]  .sf-connect__icon { background: #FF0000; font-size: .8rem; }
.sf-connect__card[data-brand="whatsapp"] .sf-connect__icon { background: #25D366; }
.sf-connect__card[data-brand="x"]        .sf-connect__icon { background: rgba(255,255,255,.12); font-size: .82rem; }
.sf-connect__card[data-brand="wechat"]   .sf-connect__icon { background: #07C160; }

.sf-connect__name {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.sf-connect__desc {
  font-size: .7rem;
  color: rgba(255,255,255,.46);
  line-height: 1.35;
}


/* WeChat QR popup */
.sf-connect__card--wechat { position: relative; }

.sf-connect__qr-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,.38);
  z-index: 20;
}

.sf-connect__qr-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}

.sf-connect__card--wechat:hover .sf-connect__qr-popup {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .sf-connect__row { grid-template-columns: repeat(2, 1fr); }
}

.site-footer__newsletter p {
  margin-bottom: 14px;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

.site-footer__subscribe {
  display: grid;
  grid-template-columns: 1fr 108px;
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.site-footer__subscribe input {
  height: 46px;
  padding: 0 14px;
  border: 0;
  color: #fff;
  background: transparent;
  outline: none;
}

.site-footer__subscribe input::placeholder {
  color: rgba(255,255,255,.46);
}

.site-footer__subscribe button {
  border: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #cb4a2a 0%, #a83622 100%);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.site-footer__quick-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer__quick-links > span {
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

.site-footer__copyright {
  font-size: .74rem;
  color: rgba(255,255,255,.46);
  white-space: nowrap;
}


/* === ANIMATIONS === */
.reveal { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s ease; }
html[data-reveal-ready="true"] .reveal { opacity: 0; transform: translateY(20px); }
html[data-reveal-ready="true"] .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }
.delay-4 { transition-delay: .24s; }
.delay-5 { transition-delay: .30s; }

/* === RESPONSIVE === */
@media (max-width: 1180px) {
  .hero-grid, .two-col, .three-col, .four-col,
  .content-layout, .cta-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__column:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .site-header { --site-header-height: 72px; }
  .site-header--compact { --site-header-height: 60px; }
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: calc(var(--site-header-height) - 1px); left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: var(--forge-radius-sm);
    box-shadow: 0 24px 48px rgba(15,23,42,0.12);
    padding: 16px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav ul a {
    height: auto;
    padding: 12px 0;
    justify-content: flex-start;
  }
  .site-nav ul a::after {
    right: auto;
    bottom: 6px;
    width: 24px;
    transform-origin: left;
  }
  .nav-actions {
    flex-direction: column; align-items: flex-start; gap: 10px;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(148,163,184,0.14);
  }
  .nav-actions .button { width: 100%; text-align: center; justify-content: center; }
  .nav-actions > div { width: 100%; }
  .lang-switcher__trigger {
    width: 100%;
    justify-content: flex-start;
  }
  .lang-switcher__label {
    max-width: none;
    flex: 1;
    text-align: left;
  }
  .lang-switcher__menu {
    right: 0;
    left: 0;
    min-width: 0;
  }
  .hero-card { padding: 32px 24px; }
  .hero-h1 { font-size: 1.55rem; }
  .section { padding: 32px 0; }
  .form-card { padding: 24px 20px; }
  .crosslink { padding: 28px 24px; }
  .site-footer__inner { padding: 40px 20px 18px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 28px; }
  .site-footer__column:last-child { grid-column: auto; }
  .site-footer__link-grid { grid-template-columns: 1fr; gap: 14px; }
  .site-footer__social-grid { gap: 14px; }
  .site-footer__subscribe { grid-template-columns: 1fr; }
  .site-footer__subscribe button { height: 46px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .site-footer__copyright { white-space: normal; }
}

/* ============================================================
   IMAGE-BASED HOMEPAGE CARDS — Solutions & Products
   ============================================================ */

.img-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .img-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .img-card-grid { grid-template-columns: 1fr; } }

/* --- Solution image card --- */
.img-sol-card {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}
.img-sol-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.img-sol-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--teal-deep);
}
.img-sol-card__img img, .img-sol-card__img svg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.img-sol-card:hover .img-sol-card__img img,
.img-sol-card:hover .img-sol-card__img svg { transform: scale(1.04); }
.img-sol-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.img-sol-card__label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal);
}
.img-sol-card__title {
  font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.img-sol-card__rows { display: flex; flex-direction: column; gap: 8px; }
.img-sol-card__row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; }
.img-sol-card__row-key {
  flex-shrink: 0; width: 58px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding-top: 2px; color: var(--muted);
}
.img-sol-card__row-val { color: var(--ink); }
.img-sol-card__result {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.img-sol-card__metric { font-size: 26px; font-weight: 800; color: var(--teal); line-height: 1; }
.img-sol-card__metric-label { font-size: 12px; color: var(--muted); line-height: 1.4; }
.img-sol-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-size: 13px; font-weight: 700; color: var(--teal);
  text-decoration: none; transition: gap .2s;
}
.img-sol-card__cta::after { content: "→"; }
.img-sol-card:hover .img-sol-card__cta { gap: 10px; }

/* --- Product image card --- */
.img-prod-card {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}
.img-prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.img-prod-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-soft);
}
.img-prod-card__img img, .img-prod-card__img svg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.img-prod-card:hover .img-prod-card__img img,
.img-prod-card:hover .img-prod-card__img svg { transform: scale(1.04); }
.img-prod-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.img-prod-card__category {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
}
.img-prod-card__model { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .4px; }
.img-prod-card__name { font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.img-prod-card__specs { display: flex; flex-direction: column; gap: 0; margin-top: 6px; }
.img-prod-card__spec {
  display: flex; justify-content: space-between;
  font-size: 12.5px; padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.img-prod-card__spec-key { color: var(--muted); }
.img-prod-card__spec-val { font-weight: 600; color: var(--ink); }
.img-prod-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.img-prod-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 14px;
  font-size: 13px; font-weight: 700; color: var(--teal);
  text-decoration: none; transition: gap .2s;
}
.img-prod-card__cta::after { content: "→"; }
.img-prod-card:hover .img-prod-card__cta { gap: 10px; }

/* ============================================================
   NAV LOGO · CONTACT · LANGUAGE SWITCHER
   ============================================================ */

.nav-logo { flex-shrink: 0; display: block; }

.nav-contact-sep {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* Language switcher */
.nav-lang-select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 84px;
  height: 40px;
  padding: 0 38px 0 16px;
  border: 1px solid rgba(22,33,31,.12);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.25 4.5 6 8.25 9.75 4.5' fill='none' stroke='%230f4037' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(242,247,245,.9) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 14px center, center;
  background-size: 12px 12px, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 24px rgba(15,64,55,.08);
  cursor: pointer;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s, transform .2s, color .2s;
}
.nav-lang-select:hover,
.nav-lang-select:focus {
  border-color: rgba(11,123,102,.42);
  color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(11,123,102,.1), 0 12px 26px rgba(15,64,55,.1);
}
.nav-lang-select option { color: var(--ink); }

@media (max-width: 1024px) { .nav-contact { display: none; } }
@media (max-width: 768px) { .nav-lang-select { width: 100%; min-width: 0; } }

/* ============================================================
   Homepage Reconstruction
   ============================================================ */

.home-hero {
  padding-top: 0;
  padding-bottom: 56px;
}

.hero-stage {
  display: block;
  width: 100%;
}

.hero-stage__copy,
.proof-strip,
.home-solution-card,
.product-showcase-card,
.evidence-card,
.next-step-shell,
.next-step-note {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.hero-stage__copy {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 560px;
  color: #fff;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(214,124,47,.18), transparent 26%),
    radial-gradient(ellipse 82% 58% at 12% 100%, rgba(11,123,102,.38), transparent 66%),
    linear-gradient(142deg, #102823 0%, #0d4d42 52%, #082a22 100%);
}

.hero-stage__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 40px 68px;
}

.hero-stage__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08) 0%, transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(125,224,200,.12), transparent 24%);
  pointer-events: none;
}

.hero-stage__copy::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,224,200,.22), transparent 62%);
  pointer-events: none;
}

.hero-stage__inner > * {
  position: relative;
  z-index: 1;
}

.hero-stage__title {
  font-size: clamp(2.85rem, 4.2vw, 4.35rem);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -.045em;
  max-width: 940px;
  margin-bottom: 20px;
}

.hero-stage__lead {
  max-width: 720px;
  font-size: 1.04rem;
  color: rgba(255,255,255,.76);
  line-height: 1.82;
  margin-bottom: 44px;
}

.proof-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(22,33,31,.08);
}

.proof-strip__item {
  padding: 20px 22px;
  background: rgba(255,255,255,.84);
}

.proof-strip__item strong {
  display: block;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.proof-strip__item span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.home-scenarios {
  background: rgba(11,123,102,.045);
}

.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-solution-card {
  overflow: hidden;
  background: rgba(255,255,255,.88);
}

.home-solution-card__img {
  height: 220px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 34%),
    linear-gradient(160deg, #faf6ef 0%, #f2eadc 100%);
  border-bottom: 1px solid rgba(22,33,31,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.home-solution-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-solution-card__body {
  padding: 24px 24px 26px;
}

.home-solution-card__title {
  font-size: 1.24rem;
  font-weight: 720;
  line-height: 1.24;
  margin-bottom: 10px;
}

.home-solution-card__signal {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11,123,102,.06);
  border: 1px solid rgba(11,123,102,.08);
  color: var(--teal-deep);
  font-size: .8rem;
  line-height: 1.62;
}

.home-inline-specs {
  margin: 16px 0 18px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-scenarios,
.home-products,
.home-proof,
.home-evidence,
.home-cta {
  padding-top: 56px;
  padding-bottom: 56px;
}

.home-proof .section-head {
  margin-bottom: 34px;
}

.home-proof .three-col {
  margin-bottom: 38px;
}

.home-evidence {
  padding-top: 8px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-showcase-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.9);
}

.product-showcase-card__media {
  position: relative;
  min-height: 320px;
  padding: 30px 30px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(11,123,102,.1) 0%, rgba(11,123,102,0) 34%),
    radial-gradient(circle at 50% 52%, rgba(214,124,47,.12) 0%, rgba(214,124,47,0) 44%),
    linear-gradient(160deg, #fbf7f0 0%, #f4eadc 100%);
  border-bottom: 1px solid rgba(22,33,31,.08);
}

.product-showcase-card__media--teal {
  background:
    radial-gradient(circle at 50% 52%, rgba(11,123,102,.14) 0%, rgba(11,123,102,0) 34%),
    radial-gradient(circle at 50% 52%, rgba(214,124,47,.1) 0%, rgba(214,124,47,0) 44%),
    linear-gradient(160deg, #eef6f3 0%, #e4efe8 100%);
}

.product-showcase-card__media img {
  max-height: 215px;
  width: 100%;
  object-fit: contain;
}

.product-showcase-card__caption {
  position: absolute;
  inset: auto 24px 18px;
  text-align: center;
}

.product-showcase-card__caption span {
  display: block;
  margin-bottom: 4px;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(22,33,31,.45);
  font-weight: 700;
}

.product-showcase-card__caption strong {
  display: block;
  font-size: .74rem;
  color: var(--muted);
  font-weight: 500;
}

.product-showcase-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,252,246,.98) 100%);
}

.product-showcase-card__sku {
  margin-bottom: 8px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

.product-showcase-card__title {
  font-size: 1.34rem;
  line-height: 1.16;
  margin-bottom: 14px;
}

.product-showcase-card .tags {
  margin-top: 16px;
}

.product-showcase-card .button-link {
  margin-top: auto;
  padding-top: 20px;
}

.home-trust-strip {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.home-trust-strip__item {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(22,33,31,.08);
  color: var(--muted);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}

.evidence-card {
  padding: 30px;
  background: rgba(255,255,255,.88);
}

.evidence-card--case {
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.16), transparent 26%),
    linear-gradient(145deg, #fff7ee 0%, #fffdf8 100%);
}

.mini-proof-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 20px 0 22px;
}

.mini-proof-stats div {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(22,33,31,.08);
}

.mini-proof-stats strong {
  display: block;
  color: var(--teal);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.mini-proof-stats span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.mini-product-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.mini-product {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11,123,102,.06);
  border: 1px solid rgba(11,123,102,.08);
}

.mini-product strong {
  display: block;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.mini-product span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.55;
}

.next-step-shell {
  padding: 34px 36px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15,64,55,.96) 0%, rgba(11,123,102,.98) 58%, rgba(9,72,60,.96) 100%);
}

.next-step-shell .section-title,
.next-step-shell .section-subtitle {
  color: #fff;
}

.next-step-shell .section-subtitle {
  opacity: .74;
}

.next-step-head {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 18px;
  align-items: start;
}

.next-step-note {
  padding: 22px 24px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.next-step-note__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-soft);
  font-weight: 700;
}

.next-step-note strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.42;
  color: #fff;
  margin-bottom: 8px;
}

.next-step-note small {
  display: block;
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.next-step-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.78);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.next-step-card--primary {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.18), transparent 24%),
    linear-gradient(160deg, #fffdf9 0%, #eef7f4 100%);
  border-color: rgba(11,123,102,.14);
}

.next-step-card__title {
  font-size: 1.18rem;
  line-height: 1.28;
  margin-bottom: 10px;
}

.next-step-card__details {
  margin: 18px 0 20px;
}

.next-step-card__details .detail-item {
  border-bottom-color: rgba(22,33,31,.08);
}

.next-step-card__details .detail-key {
  min-width: 102px;
}

.next-step-card .button,
.next-step-card .button-soft {
  margin-top: auto;
}

@media (max-width: 1180px) {
  .proof-strip,
  .home-solution-grid,
  .product-showcase-grid,
  .evidence-grid,
  .next-step-head,
  .next-step-grid,
  .home-trust-strip,
  .mini-proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stage__copy {
    min-height: auto;
  }

  .hero-stage__inner {
    padding: 64px 32px 56px;
  }

  .proof-strip {
    gap: 1px;
  }
}

@media (max-width: 900px) {
  .home-hero {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .home-scenarios,
  .home-products,
  .home-proof,
  .home-evidence,
  .home-cta {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-proof .section-head {
    margin-bottom: 24px;
  }

  .home-proof .three-col {
    margin-bottom: 24px;
  }

  .home-evidence {
    padding-top: 12px;
  }

  .hero-stage__inner,
  .evidence-card,
  .next-step-shell,
  .next-step-card {
    padding: 24px;
  }

  .hero-stage__title {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .proof-strip,
  .home-solution-grid,
  .product-showcase-grid,
  .evidence-grid,
  .next-step-head,
  .next-step-grid,
  .home-trust-strip,
  .mini-proof-stats {
    grid-template-columns: 1fr;
  }

  .product-showcase-card__media {
    min-height: 280px;
    padding: 26px 20px 70px;
  }

  .next-step-shell {
    padding: 24px;
  }
}

/* ============================================================
   Inner Page Reconstruction
   ============================================================ */

.page-hero {
  padding-top: 42px;
  padding-bottom: 30px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: stretch;
}

.page-hero__copy,
.page-hero__panel,
.slab-card,
.catalog-card,
.compare-card,
.process-step,
.hub-card,
.library-card,
.trust-card,
.cta-banner,
.quote-panel,
.stack-panel__main,
.stack-panel__side {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.page-hero__copy {
  position: relative;
  overflow: hidden;
  padding: 48px 44px;
  background:
    radial-gradient(circle at 85% 15%, rgba(214,124,47,.18), transparent 24%),
    linear-gradient(145deg, #103f37 0%, #0d2d26 55%, #0a201c 100%);
  color: #fff;
}

.page-hero__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(125,224,200,.16), transparent 34%);
  pointer-events: none;
}

.page-hero__copy > * {
  position: relative;
  z-index: 1;
}

.page-hero__copy .hero-eyebrow {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.page-hero__copy .hero-h1 {
  color: #fff;
  max-width: 14ch;
}

.page-hero__copy .hero-h1 em {
  color: #7de0c8;
}

.page-hero__copy .hero-sub {
  color: rgba(255,255,255,.72);
  max-width: 58ch;
  font-size: var(--forge-type-hero-sub);
  line-height: var(--forge-leading-loose);
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.hero-metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.hero-metric strong {
  display: block;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-kpi-value);
  line-height: var(--forge-leading-heading);
  letter-spacing: var(--forge-track-tight);
  color: #fff;
  margin-bottom: 4px;
}

.hero-metric span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: var(--forge-type-kpi-meta);
  line-height: var(--forge-leading-relaxed);
}

.page-hero__panel {
  padding: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.68);
  display: grid;
  gap: 14px;
}

.signal-card {
  padding: 20px 20px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
}

.signal-card--accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.16), transparent 28%),
    linear-gradient(145deg, #fff8ef 0%, #fffdf9 100%);
  border-color: rgba(214,124,47,.18);
}

.signal-card__label {
  display: inline-block;
  font-size: var(--forge-type-overline);
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.signal-card__title {
  font-size: var(--forge-type-title);
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.signal-card__copy {
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-relaxed);
  color: var(--muted);
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(22,33,31,.08);
  font-size: var(--forge-type-body-sm);
}

.signal-list div:last-child {
  border-bottom: none;
}

.signal-list strong {
  color: var(--ink);
  font-weight: 700;
}

.signal-list span {
  color: var(--muted);
  text-align: right;
}

.slab-grid,
.catalog-grid,
.compare-grid,
.hub-grid,
.library-grid,
.trust-grid,
.outline-grid {
  display: grid;
  gap: 18px;
}

.slab-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-grid {
  grid-template-columns: repeat(4, 1fr);
}

.compare-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hub-grid,
.outline-grid {
  grid-template-columns: repeat(3, 1fr);
}

.library-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.slab-card,
.catalog-card,
.compare-card,
.hub-card,
.library-card,
.trust-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  overflow: hidden;
}

.slab-card {
  padding: 28px 26px;
}

.slab-card--dark {
  background:
    linear-gradient(145deg, rgba(15,64,55,.98) 0%, rgba(11,123,102,.9) 100%);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.slab-card--dark .card-title,
.slab-card--dark .card-body,
.slab-card--dark .card-label {
  color: #fff;
}

.slab-card--dark .card-body {
  color: rgba(255,255,255,.7);
}

.catalog-card {
  display: flex;
  flex-direction: column;
}

.catalog-card__media {
  min-height: 220px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.16), transparent 26%),
    linear-gradient(160deg, #fbf7f0 0%, #f3eadb 100%);
  border-bottom: 1px solid rgba(22,33,31,.08);
}

.catalog-card__media--teal {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.24), transparent 24%),
    linear-gradient(160deg, #eff7f4 0%, #dfeee9 100%);
}

.catalog-card__body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.catalog-card__body .card-title {
  margin-bottom: 10px;
}

.catalog-card__body .spec-list {
  margin: 14px 0 18px;
}

#article-list .catalog-grid {
  align-items: stretch;
}

#article-list .catalog-card {
  height: 100%;
  min-height: 360px;
}

#article-list .catalog-card__body {
  min-height: 360px;
}

#article-list .catalog-card__body .card-label,
#article-list .catalog-card__body .card-title,
#article-list .catalog-card__body .card-body {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

#article-list .catalog-card__body .card-label {
  -webkit-line-clamp: 2;
  min-height: calc(1.35em * 2);
}

#article-list .catalog-card__body .card-title {
  -webkit-line-clamp: 2;
  min-height: calc(1.3em * 2);
}

#article-list .catalog-card__body .card-body {
  -webkit-line-clamp: 4;
  min-height: calc(1.6em * 4);
}

#article-list .article-card-meta {
  margin: auto 0 1rem;
}

#article-list .catalog-card__body .button-link {
  align-self: flex-start;
}

.compare-card {
  padding: 26px;
}

.compare-card__media {
  height: 172px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(214,124,47,.16), transparent 28%),
    linear-gradient(145deg, #f7efe3 0%, #fffcf7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.fit-item {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(11,123,102,.06);
  border: 1px solid rgba(11,123,102,.08);
}

.fit-item strong {
  display: block;
  font-size: .82rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.fit-item span {
  display: block;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.55;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-strip--five {
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  padding: 22px 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.72);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: rgba(11,123,102,.12);
  color: var(--teal);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.process-step__title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-step__copy {
  font-size: .8rem;
  line-height: 1.62;
  color: var(--muted);
}

.stack-panel {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 18px;
}

.stack-panel__main,
.stack-panel__side {
  padding: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
}

.stack-panel__main {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.2), transparent 28%),
    linear-gradient(145deg, #fbf8f2 0%, #fffdf8 100%);
}

.layer-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.layer-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: stretch;
}

.layer-row__label {
  padding: 16px;
  border-radius: 18px;
  background: rgba(15,64,55,.94);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.layer-row__body {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(22,33,31,.08);
  font-size: .82rem;
  line-height: 1.65;
  color: var(--muted);
}

.layer-row__body strong {
  color: var(--ink);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
}

.summary-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11,123,102,.05);
  border: 1px solid rgba(11,123,102,.08);
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.summary-list strong {
  color: var(--ink);
}

.hub-card,
.library-card,
.trust-card {
  padding: 26px;
}

.library-card .button-link,
.hub-card .button-link {
  margin-top: 14px;
}

.library-card__meta {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(214,124,47,.12);
  border: 1px solid rgba(214,124,47,.16);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 16% 82%, rgba(125,224,200,.18) 0%, transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(214,124,47,.10) 0%, transparent 22%),
    linear-gradient(90deg, rgba(13,53,45,.98) 0%, rgba(16,83,70,.96) 46%, rgba(9,72,60,.94) 100%);
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.05) 0%, transparent 22%),
    linear-gradient(90deg, transparent 0%, transparent 52%, rgba(255,255,255,.035) 52%, rgba(255,255,255,.035) 53%, transparent 53%);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner__copy p {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  line-height: 1.7;
  margin-top: 10px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.cta-banner .button-soft {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.quote-panel {
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 28%),
    linear-gradient(145deg, #fff7ef 0%, #fffdf9 100%);
  border: 1px solid rgba(214,124,47,.16);
}

.quote-panel blockquote {
  font-size: 1.14rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
}

.quote-panel p {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--muted);
}

.band-surface {
  background: rgba(11,123,102,.04);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.detail-card {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}

.detail-card strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.detail-card span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .page-hero__grid,
  .stack-panel,
  .cta-banner,
  .catalog-grid,
  .compare-grid,
  .hub-grid,
  .library-grid,
  .trust-grid,
  .outline-grid,
  .detail-grid,
  .hero-metric-grid,
  .slab-grid,
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-strip,
  .process-strip--five {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .page-hero__grid,
  .stack-panel,
  .cta-banner,
  .catalog-grid,
  .compare-grid,
  .hub-grid,
  .library-grid,
  .trust-grid,
  .outline-grid,
  .detail-grid,
  .hero-metric-grid,
  .slab-grid,
  .fit-grid,
  .process-strip,
  .process-strip--five {
    grid-template-columns: 1fr;
  }

  .page-hero__copy,
  .page-hero__panel,
  .stack-panel__main,
  .stack-panel__side,
  .cta-banner,
  .slab-card,
  .hub-card,
  .library-card,
  .trust-card,
  .compare-card {
    padding: 24px;
  }

  .page-hero__copy {
    padding: 36px 24px;
  }

  .layer-row {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    justify-content: flex-start;
  }
}

/* ============================================================
   Warehouse Solution Detail Page
   ============================================================ */

.warehouse-hero {
  padding-top: 42px;
  padding-bottom: 34px;
}

.warehouse-hero-grid,
.warehouse-overview-grid,
.warehouse-architecture-layout,
.warehouse-contact-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 18px;
}

.warehouse-hero-copy,
.warehouse-hero-visual,
.warehouse-pain-card,
.warehouse-overview-copy,
.warehouse-overview-proof,
.warehouse-architecture-card,
.warehouse-media-card,
.warehouse-function-card,
.warehouse-use-case-card,
.warehouse-related-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.warehouse-hero-copy {
  position: relative;
  overflow: hidden;
  padding: 52px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 14%, rgba(214,124,47,.18), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(125,224,200,.18), transparent 30%),
    linear-gradient(145deg, #103f37 0%, #0d2d26 54%, #081f1a 100%);
}

.warehouse-hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.06) 0%, transparent 24%),
    linear-gradient(90deg, transparent 0%, transparent 56%, rgba(255,255,255,.03) 56%, rgba(255,255,255,.03) 57%, transparent 57%);
  pointer-events: none;
}

.warehouse-hero-copy > * {
  position: relative;
  z-index: 1;
}

.warehouse-hero-copy .hero-eyebrow {
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.warehouse-hero-copy .hero-h1 {
  color: #fff;
  max-width: 13ch;
}

.warehouse-hero-copy .hero-sub {
  color: rgba(255,255,255,.74);
  max-width: 62ch;
  font-size: var(--forge-type-hero-sub);
  line-height: var(--forge-leading-loose);
}

.warehouse-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.warehouse-kpi {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.warehouse-kpi strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-kpi-value);
  line-height: var(--forge-leading-heading);
  letter-spacing: var(--forge-track-tight);
  color: #fff;
}

.warehouse-kpi span {
  display: block;
  font-size: var(--forge-type-kpi-meta);
  line-height: var(--forge-leading-relaxed);
  color: rgba(255,255,255,.66);
}

.warehouse-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.warehouse-link-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .18s, transform .18s;
}

.warehouse-link-chip:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.warehouse-proof-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.warehouse-proof-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.warehouse-proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: .92rem;
  color: #fff;
}

.warehouse-proof-item span {
  display: block;
  font-size: .8rem;
  line-height: 1.58;
  color: rgba(255,255,255,.68);
}

.warehouse-hero-visual {
  padding: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.68);
}

.warehouse-visual-card {
  height: 100%;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fffaf3 0%, #f7efe2 100%);
  border: 1px solid rgba(22,33,31,.08);
  display: grid;
  align-content: center;
  gap: 20px;
}

.warehouse-flow-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.warehouse-flow-node {
  min-height: 132px;
  padding: 18px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(22,33,31,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.warehouse-flow-node span {
  display: block;
  margin-bottom: 8px;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.warehouse-flow-node strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}

.warehouse-flow-node--teal {
  background: linear-gradient(160deg, rgba(11,123,102,.12) 0%, rgba(255,255,255,.86) 100%);
}

.warehouse-flow-node--sand {
  background: linear-gradient(160deg, rgba(214,124,47,.12) 0%, rgba(255,255,255,.88) 100%);
}

.warehouse-flow-arrow {
  width: 30px;
  height: 2px;
  background: rgba(15,64,55,.22);
  position: relative;
}

.warehouse-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(15,64,55,.42);
  border-right: 2px solid rgba(15,64,55,.42);
  transform: translateY(-50%) rotate(45deg);
}

.warehouse-visual-summary {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(22,33,31,.08);
}

.warehouse-visual-summary small {
  display: block;
  margin-bottom: 8px;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.warehouse-visual-summary strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink);
}

.warehouse-visual-summary p {
  margin-top: 8px;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
}

.warehouse-pain-section {
  padding-top: 18px;
}

.warehouse-pain-grid,
.warehouse-function-grid,
.warehouse-use-case-grid,
.warehouse-bundle-grid,
.warehouse-related-grid {
  display: grid;
  gap: 18px;
}

.warehouse-pain-grid {
  grid-template-columns: repeat(3, 1fr);
}

.warehouse-pain-card {
  padding: 28px 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  border-top: 3px solid rgba(214,124,47,.72);
}

.warehouse-overview-copy,
.warehouse-overview-proof,
.warehouse-architecture-card,
.warehouse-media-card {
  padding: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
}

.warehouse-overview-copy {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.16), transparent 28%),
    linear-gradient(145deg, #fcfaf4 0%, #fffdf8 100%);
}

.warehouse-overview-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.warehouse-overview-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(22,33,31,.08);
}

.warehouse-overview-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: .92rem;
  color: var(--ink);
}

.warehouse-overview-item span {
  display: block;
  font-size: .82rem;
  line-height: 1.58;
  color: var(--muted);
}

.warehouse-overview-proof {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(145deg, #fff8ef 0%, #fffdf8 100%);
}

.warehouse-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.warehouse-proof-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(22,33,31,.08);
}

.warehouse-proof-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: .84rem;
  color: var(--ink);
}

.warehouse-proof-grid span {
  display: block;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--muted);
}

.warehouse-architecture-layout {
  align-items: start;
}

.warehouse-architecture-card {
  background:
    linear-gradient(145deg, rgba(15,64,55,.98) 0%, rgba(11,123,102,.92) 100%);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.warehouse-architecture-card .card-label,
.warehouse-architecture-card .card-title {
  color: #fff;
}

.warehouse-architecture-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.warehouse-architecture-layer {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 14px;
  align-items: stretch;
}

.warehouse-layer-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.warehouse-layer-body {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.warehouse-layer-body strong {
  display: block;
  margin-bottom: 6px;
  font-size: .95rem;
  color: #fff;
}

.warehouse-layer-body p {
  font-size: .82rem;
  line-height: 1.62;
  color: rgba(255,255,255,.72);
}

.warehouse-media-column {
  display: grid;
  gap: 18px;
}

.warehouse-media-card {
  display: grid;
  gap: 18px;
  background: rgba(255,255,255,.9);
}

.warehouse-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.warehouse-media-frame {
  min-height: 190px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fbf6ee 0%, #f2e8d9 100%);
  border: 1px solid rgba(22,33,31,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.warehouse-media-frame--soft {
  min-height: 250px;
}

.warehouse-media-frame--teal {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.18), transparent 24%),
    linear-gradient(160deg, #eef7f4 0%, #deede7 100%);
}

.warehouse-media-frame--sand {
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.16), transparent 24%),
    linear-gradient(160deg, #fcf5ee 0%, #f3e7d8 100%);
}

.warehouse-media-frame img,
.warehouse-use-case-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.warehouse-media-copy {
  display: grid;
  gap: 8px;
}

.warehouse-function-grid {
  grid-template-columns: repeat(4, 1fr);
}

.warehouse-function-card {
  padding: 24px 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
}

.warehouse-function-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(11,123,102,.12);
  color: var(--teal);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.warehouse-use-case-section {
  background: rgba(11,123,102,.04);
}

.warehouse-use-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.warehouse-use-case-card {
  overflow: hidden;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.7);
}

.warehouse-use-case-media {
  height: 240px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fbf6ee 0%, #f2e8d9 100%);
  border-bottom: 1px solid rgba(22,33,31,.08);
}

.warehouse-use-case-media--teal {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.18), transparent 24%),
    linear-gradient(160deg, #eef7f4 0%, #deede7 100%);
}

.warehouse-use-case-media--sand {
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.16), transparent 24%),
    linear-gradient(160deg, #fff8ef 0%, #f3e7d8 100%);
}

.warehouse-use-case-body {
  padding: 24px;
}

.warehouse-bundle-grid {
  grid-template-columns: repeat(3, 1fr);
}

.warehouse-related-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.warehouse-related-card {
  padding: 22px 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.7);
  text-decoration: none;
  color: inherit;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.warehouse-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,123,102,.18);
}

.warehouse-related-card span {
  display: block;
  margin-bottom: 8px;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.warehouse-related-card strong {
  display: block;
  font-size: .96rem;
  line-height: 1.48;
  color: var(--ink);
}

.warehouse-contact-layout {
  align-items: start;
}

.warehouse-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.sol-gallery-card--link {
  display: block;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .warehouse-hero-grid,
  .warehouse-overview-grid,
  .warehouse-architecture-layout,
  .warehouse-contact-layout,
  .warehouse-pain-grid,
  .warehouse-function-grid,
  .warehouse-use-case-grid,
  .warehouse-bundle-grid,
  .warehouse-related-grid,
  .warehouse-kpi-grid,
  .warehouse-proof-strip,
  .warehouse-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .warehouse-flow-diagram,
  .warehouse-media-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-flow-arrow {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }

  .warehouse-flow-arrow::after {
    top: auto;
    bottom: -1px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }
}

@media (max-width: 900px) {
  .warehouse-hero {
    padding-top: 28px;
  }

  .warehouse-hero-grid,
  .warehouse-overview-grid,
  .warehouse-architecture-layout,
  .warehouse-contact-layout,
  .warehouse-pain-grid,
  .warehouse-function-grid,
  .warehouse-use-case-grid,
  .warehouse-bundle-grid,
  .warehouse-related-grid,
  .warehouse-kpi-grid,
  .warehouse-proof-strip,
  .warehouse-proof-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-hero-copy,
  .warehouse-hero-visual,
  .warehouse-overview-copy,
  .warehouse-overview-proof,
  .warehouse-architecture-card,
  .warehouse-media-card,
  .warehouse-function-card,
  .warehouse-pain-card,
  .warehouse-related-card {
    padding: 24px;
  }

  .warehouse-visual-card {
    padding: 18px;
  }

  .warehouse-media-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-architecture-layer {
    grid-template-columns: 1fr;
  }

  .warehouse-use-case-media {
    height: 210px;
  }
}

/* ============================================================
   Case Studies Hub
   ============================================================ */

.casehub-hero {
  padding: 16px 0 0;
}

.casehub-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 18px;
  padding: 56px 40px 44px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background:
    radial-gradient(circle at 84% 16%, rgba(214,124,47,.12), transparent 22%),
    radial-gradient(circle at 0% 100%, rgba(125,224,200,.12), transparent 28%),
    linear-gradient(145deg, #0f4138 0%, #0b2f28 56%, #08211c 100%);
  color: #fff;
}

.casehub-hero-copy,
.casehub-hero-panel,
.casehub-story-card,
.casehub-feature-card,
.casehub-insight-card,
.casehub-similar-shell {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.casehub-hero-copy .hero-eyebrow {
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.casehub-hero-copy .hero-h1 {
  color: #fff;
  max-width: 10ch;
  margin-bottom: 18px;
}

.casehub-hero-copy .hero-h1 em {
  font-style: normal;
  color: #7de0c8;
}

.casehub-hero-copy .hero-sub {
  max-width: 58ch;
  color: rgba(255,255,255,.74);
  font-size: var(--forge-type-hero-sub);
  line-height: var(--forge-leading-loose);
  margin-bottom: 28px;
}

.casehub-hero-copy .button-soft {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.casehub-hero-panel {
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 12px;
}

.casehub-latest-card,
.casehub-fact-card {
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.casehub-latest-card {
  padding: 20px 22px;
  min-height: 112px;
}

.casehub-latest-line {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: #7de0c8;
}

.casehub-latest-card .card-label,
.casehub-fact-card span {
  color: rgba(255,255,255,.56);
}

.casehub-latest-card .card-title,
.casehub-fact-card strong {
  color: #fff;
}

.casehub-latest-card .card-body,
.casehub-fact-card small {
  color: rgba(255,255,255,.68);
}

.casehub-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.casehub-fact-card {
  padding: 18px;
  min-height: 102px;
}

.casehub-fact-card span,
.casehub-fact-card small {
  display: block;
}

.casehub-fact-card span {
  margin-bottom: 10px;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.casehub-fact-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.casehub-fact-card small {
  margin-top: 6px;
  font-size: .76rem;
  line-height: 1.5;
}

.casehub-track-strip {
  background: rgba(255,252,246,.92);
  border-bottom: 1px solid rgba(22,33,31,.08);
}

.casehub-track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.casehub-track-item {
  padding: 20px 16px 22px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(22,33,31,.08);
  transition: background .18s, transform .18s;
}

.casehub-track-item:first-child {
  border-left: 1px solid rgba(22,33,31,.08);
}

.casehub-track-item.active {
  background: rgba(125,224,200,.22);
}

.casehub-track-item:hover {
  background: rgba(11,123,102,.05);
}

.casehub-track-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: rgba(11,123,102,.08);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.casehub-track-item.active .casehub-track-icon {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
}

.casehub-track-item strong,
.casehub-track-item span {
  display: block;
}

.casehub-track-item strong {
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.casehub-track-item span {
  font-size: .76rem;
  color: var(--muted);
}

.casehub-library-section,
.casehub-feature-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(214,124,47,.12), transparent 18%),
    radial-gradient(circle at 88% 36%, rgba(125,224,200,.1), transparent 18%);
}

.casehub-card-grid,
.casehub-stats-grid {
  display: grid;
  gap: 18px;
}

.casehub-card-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.casehub-story-card {
  --casehub-accent: #0b7b66;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  padding: 18px 18px 20px;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 139, 61, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(250,248,245,.94) 100%);
  border: 1px solid rgba(154, 70, 0, 0.12);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.04);
}

.casehub-story-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--casehub-accent) 0%, rgba(255, 139, 61, 0.85) 100%);
}

.casehub-story-card--orange {
  --casehub-accent: #9a4600;
}

.casehub-story-card--teal {
  --casehub-accent: #0b7b66;
}

.casehub-story-card--mint {
  --casehub-accent: #1d7f72;
}

.casehub-story-card--sand {
  --casehub-accent: #7b5a25;
}

.casehub-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 12px;
}

.casehub-story-tag,
.casehub-story-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.casehub-story-tag {
  background: color-mix(in srgb, var(--casehub-accent) 10%, #ffffff);
  color: var(--casehub-accent);
  border: 1px solid color-mix(in srgb, var(--casehub-accent) 18%, #ffffff);
}

.casehub-story-status {
  background: rgba(22,33,31,.05);
  color: rgba(22,33,31,.42);
  border: 1px solid rgba(22,33,31,.08);
}

.casehub-story-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: calc(1.35em * 2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}

.casehub-story-copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  min-height: calc(1.65em * 4);
  font-size: .8rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}

.case-story-richtext-shell {
  padding: 24px 26px;
  border-radius: 24px;
}

.case-story-section {
  padding-top: 20px;
  padding-bottom: 14px;
}

.case-story-richtext-shell .section-label {
  margin-bottom: 14px;
}

.case-story-richtext {
  max-width: 76ch;
  color: var(--forge-ink);
  line-height: 1.74;
}

.case-story-richtext > :first-child {
  margin-top: 0;
}

.case-story-richtext > :last-child {
  margin-bottom: 0;
}

.case-story-richtext h2,
.case-story-richtext h3,
.case-story-richtext h4 {
  color: var(--forge-ink);
  margin: 1.35em 0 0.45em;
  line-height: 1.2;
}

.case-story-richtext h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.case-story-richtext h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
}

.case-story-richtext p,
.case-story-richtext ul,
.case-story-richtext ol,
.case-story-richtext blockquote {
  margin: 0 0 0.82rem;
}

.case-story-richtext ul,
.case-story-richtext ol {
  padding-left: 1.2rem;
}

.case-story-richtext li + li {
  margin-top: 0.4rem;
}

.case-story-richtext a {
  color: var(--forge-primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.case-story-richtext blockquote {
  padding: 1rem 1.15rem;
  border-left: 3px solid rgba(154, 70, 0, 0.28);
  background: rgba(154, 70, 0, 0.04);
  color: #374151;
}

.case-story-richtext figure,
.case-story-figure {
  margin: 1.05rem 0;
}

.case-story-richtext img,
.case-story-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(154, 70, 0, 0.12);
  background: linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(247,244,239,.95) 100%);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
}

.case-story-richtext figcaption,
.case-story-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #6b7280;
  text-align: center;
}

.casehub-story-specs {
  display: grid;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 16px;
}

.casehub-story-specs div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding-top: 8px;
  border-top: 1px solid rgba(22,33,31,.08);
}

.casehub-story-specs span {
  font-size: .74rem;
  color: var(--muted);
}

.casehub-story-specs strong {
  font-size: .76rem;
  color: var(--ink);
  text-align: right;
}

.casehub-stats-strip {
  padding: 0 0 8px;
}

.casehub-stats-grid {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(22,33,31,.08);
  border-bottom: 1px solid rgba(22,33,31,.08);
}

.casehub-stat {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(22,33,31,.08);
}

.casehub-stat:last-child {
  border-right: none;
}

.casehub-stat strong,
.casehub-stat span,
.casehub-stat small {
  display: block;
}

.casehub-stat strong {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.casehub-stat span {
  margin-top: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
}

.casehub-stat small {
  margin-top: 4px;
  font-size: .72rem;
  color: var(--muted);
}

.casehub-feature-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 18px;
}

.casehub-feature-left,
.casehub-feature-right {
  display: grid;
  gap: 18px;
}

.casehub-feature-card,
.casehub-insight-card {
  padding: 28px 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,33,31,.08);
}

.casehub-feature-card--warm {
  background: linear-gradient(160deg, rgba(255,241,226,.96) 0%, rgba(255,252,246,.98) 100%);
}

.casehub-feature-actions {
  margin-top: 20px;
}

.casehub-insight-card--mint {
  background: linear-gradient(160deg, rgba(231,247,243,.94) 0%, rgba(246,252,249,.98) 100%);
}

.casehub-similar-cta {
  padding: 32px 0 0;
}

.casehub-similar-shell {
  padding: 72px 24px 78px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(125,224,200,.1), transparent 30%),
    linear-gradient(145deg, #0f4138 0%, #0b2f28 56%, #08211c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.casehub-similar-shell::before {
  content: "RFID";
  position: absolute;
  inset: auto 0 38px;
  text-align: center;
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.03);
  pointer-events: none;
}

.casehub-similar-shell > * {
  position: relative;
  z-index: 1;
}

.casehub-similar-shell .section-title {
  color: #fff;
  margin-bottom: 14px;
}

.casehub-similar-shell .section-title em {
  font-style: normal;
  color: #7de0c8;
}

.casehub-similar-shell .section-subtitle {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.74);
}

.casehub-similar-shell .button-soft {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

.case-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-detail-band {
  padding: 0 0 18px;
}

.case-detail-band--context,
.case-detail-band--outcome {
  padding-bottom: 22px;
}

.case-detail-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 139, 61, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(248,245,240,.96) 100%);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.05);
}

.case-detail-band--challenge .case-detail-card,
.case-detail-band--deployment .case-detail-card,
.case-detail-band--solution .case-detail-card,
.case-detail-band--hardware .case-detail-card,
.case-detail-band--generic .case-detail-card,
.case-detail-band--narrative .case-detail-card {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 139, 61, 0.05), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,.99) 0%, rgba(250,248,244,.95) 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.case-detail-band--outcome .case-detail-card {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 139, 61, 0.11), transparent 24%),
    linear-gradient(145deg, #fffaf3 0%, rgba(255,255,255,.98) 100%);
}

.case-detail-card--soft {
  padding: 18px 18px 16px;
  border-radius: 20px;
}

.case-detail-card--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.78fr);
  gap: 18px;
  align-items: start;
}

.case-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 10px 24px;
  align-items: end;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(154, 70, 0, 0.1);
}

.case-detail-head .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.case-detail-head .section-title {
  max-width: 15ch;
  margin-bottom: 0;
}

.case-detail-head .section-subtitle {
  max-width: none;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(154, 70, 0, 0.1);
}

.case-detail-context-grid,
.case-detail-outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.case-detail-context-copy .section-subtitle {
  max-width: none;
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.68;
}

.case-detail-context-stats,
.case-detail-outcome-metrics {
  display: grid;
  gap: 12px;
}

.case-detail-context-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-detail-context-stat,
.case-detail-outcome-metric {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(154, 70, 0, 0.1);
}

.case-detail-context-stat strong,
.case-detail-outcome-metric strong {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1;
  color: var(--forge-ink);
}

.case-detail-context-stat span,
.case-detail-outcome-metric span {
  font-size: 0.82rem;
  color: #6b7280;
}

.case-detail-media-frame,
.case-detail-inline-media,
.case-detail-hardware-media {
  position: relative;
  min-height: 170px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(154, 70, 0, 0.12);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 139, 61, 0.14), transparent 26%),
    linear-gradient(145deg, #fff7ef 0%, rgba(255,255,255,.96) 100%);
}

.case-detail-media-frame {
  min-height: 210px;
}

.case-detail-inline-media {
  min-height: 170px;
}

.case-detail-hardware-media {
  min-height: 132px;
  margin-bottom: 14px;
}

.case-detail-grid {
  display: grid;
  gap: 14px;
}

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

.case-detail-grid--deploy,
.case-detail-grid--generic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.case-detail-band--solution .case-detail-card--split {
  grid-template-columns: minmax(0, 1fr) 168px;
}

.case-detail-band--deployment .case-detail-card-copy,
.case-detail-band--solution .case-detail-card-copy,
.case-detail-band--narrative .case-detail-card-copy {
  max-width: 60ch;
}

.case-detail-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.case-detail-card h3 {
  margin: 0;
  font-size: clamp(1rem, 1.24vw, 1.18rem);
  line-height: 1.25;
  color: var(--forge-ink);
}

.case-detail-card p {
  margin: 0;
  color: #566271;
  font-size: 0.92rem;
  line-height: 1.64;
}

.case-detail-chip,
.case-detail-index,
.case-detail-step {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  background: rgba(255,255,255,.82);
  color: var(--forge-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-detail-list {
  margin: 0;
  padding-left: 0.95rem;
  color: #374151;
  display: grid;
  gap: 0.38rem;
  font-size: 0.88rem;
}

.case-detail-link-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
}

.case-detail-quote {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.case-detail-quote span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a4600;
  font-weight: 700;
}

.case-detail-quote p {
  font-size: 0.96rem;
  color: #1f2937;
}

.case-proto-hero {
  padding: 24px 0 94px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 139, 61, 0.16), transparent 24%),
    linear-gradient(180deg, #8b4308 0%, #743505 100%);
  color: #ffffff;
}

.case-proto-hero-shell {
  display: grid;
  gap: 0;
  max-width: 960px;
}

.case-proto-hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.case-proto-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1;
  text-decoration: none;
}

.case-proto-back:hover {
  color: #ffffff;
}

.case-proto-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: var(--forge-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-proto-title {
  max-width: 20ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.case-proto-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-proto-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.case-proto-cover-band {
  background: #ffffff;
}

.case-proto-cover {
  position: relative;
  min-height: clamp(240px, 32vw, 390px);
  margin-top: -64px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 139, 61, 0.16), transparent 26%),
    linear-gradient(145deg, #fff7ef 0%, rgba(255,255,255,.98) 100%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.case-proto-cover-fallback,
.case-proto-related-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
}

.case-proto-content {
  padding: 42px 0 46px;
  background:
    linear-gradient(180deg, #fbfbfc 0%, var(--forge-surface-low) 100%);
}

.case-proto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.82fr);
  gap: 38px;
  align-items: start;
}

.case-proto-main {
  display: grid;
  gap: 34px;
}

.case-proto-block {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(154, 70, 0, 0.1);
}

.case-proto-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-proto-block-title {
  margin: 0 0 14px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.35rem, 2vw, 1.82rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.case-proto-copy {
  max-width: 72ch;
  margin: 0;
  color: #5b6674;
  font-size: 0.98rem;
  line-height: 1.78;
}

.case-proto-challenge-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.case-proto-challenge-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #5b6674;
  font-size: 0.96rem;
  line-height: 1.7;
}

.case-proto-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(154, 70, 0, 0.1);
  color: #9a4600;
  font-size: 0.8rem;
  line-height: 1;
}

.case-proto-feature-grid,
.case-proto-stat-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

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

.case-proto-feature-box,
.case-proto-stat-box {
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(154, 70, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.case-proto-feature-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--forge-on-surface);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.case-proto-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(154, 70, 0, 0.08);
  color: #9a4600;
  font-size: 1.05rem;
  line-height: 1;
}

.case-proto-stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.case-proto-stat-box strong {
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.case-proto-stat-box span {
  margin-top: 8px;
  color: #5b6674;
  font-size: 0.84rem;
  line-height: 1.45;
}

.case-proto-sidebar {
  display: grid;
  gap: 18px;
}

.case-proto-side-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(154, 70, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.case-proto-side-card h3 {
  margin: 0 0 16px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.08rem;
  line-height: 1.2;
}

.case-proto-side-card p {
  margin: 0 0 16px;
  color: #5b6674;
  font-size: 0.9rem;
  line-height: 1.68;
}

.case-proto-side-card--accent {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 139, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #fff7ef 0%, #fffdf9 100%);
}

.case-proto-side-card--accent .button {
  width: 100%;
  justify-content: center;
}

.case-proto-info-list {
  display: grid;
  gap: 12px;
}

.case-proto-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(154, 70, 0, 0.08);
}

.case-proto-info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-proto-info-row span,
.case-proto-info-row strong {
  font-size: 0.88rem;
  line-height: 1.5;
}

.case-proto-info-row span {
  color: #7a8492;
}

.case-proto-info-row strong {
  color: var(--forge-on-surface);
  text-align: right;
}

.case-proto-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-proto-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(154, 70, 0, 0.06);
  color: #6c737f;
  font-size: 0.78rem;
  line-height: 1;
}

.case-proto-similar {
  padding: 14px 0 56px;
  background: #ffffff;
}

.case-proto-similar-head {
  margin-bottom: 22px;
  text-align: center;
}

.case-proto-similar-head .section-title {
  margin-bottom: 0;
}

.case-proto-similar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.case-proto-related-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(154, 70, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.case-proto-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 70, 0, 0.22);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.08);
}

.case-proto-related-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 139, 61, 0.14), transparent 26%),
    linear-gradient(145deg, #fff7ef 0%, rgba(255,255,255,.96) 100%);
}

.case-proto-related-copy {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
}

.case-proto-related-tag {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(154, 70, 0, 0.08);
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-proto-related-copy h3 {
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.1rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.case-proto-related-link {
  color: var(--forge-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .casehub-hero-grid,
  .casehub-feature-grid,
  .casehub-card-grid,
  .casehub-stats-grid,
  .casehub-track-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-proto-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
  }

  .case-proto-title {
    max-width: 22ch;
  }

  .case-detail-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-detail-head .section-title {
    max-width: none;
  }

  .case-detail-head .section-subtitle {
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid rgba(154, 70, 0, 0.1);
  }
}

@media (max-width: 900px) {
  .casehub-hero-grid,
  .casehub-feature-grid,
  .casehub-card-grid,
  .casehub-stats-grid,
  .casehub-track-grid,
  .casehub-fact-grid {
    grid-template-columns: 1fr;
  }

  .case-proto-hero {
    padding: 20px 0 76px;
  }

  .case-proto-cover {
    min-height: 220px;
    margin-top: -52px;
  }

  .case-proto-content {
    padding: 32px 0 36px;
  }

  .case-proto-layout,
  .case-proto-similar-grid,
  .case-proto-feature-grid,
  .case-proto-stat-grid {
    grid-template-columns: 1fr;
  }

  .case-proto-main {
    gap: 26px;
  }

  .case-proto-block {
    padding-bottom: 24px;
  }

  .case-proto-side-card {
    padding: 20px;
  }

  .case-proto-related-media {
    min-height: 190px;
  }

  .casehub-hero-grid {
    padding: 36px 20px 30px;
  }

  .casehub-hero-panel,
  .casehub-story-card,
  .casehub-feature-card,
  .casehub-insight-card {
    padding: 24px 20px;
  }

  .casehub-story-card {
    min-height: 0;
  }

  .casehub-story-title,
  .casehub-story-copy {
    min-height: 0;
  }

  .casehub-story-copy {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .case-detail-card,
  .case-story-richtext-shell {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .case-proto-title {
    max-width: none;
    font-size: clamp(1.55rem, 6.6vw, 2rem);
    line-height: 1.12;
  }

  .case-proto-meta {
    gap: 8px;
  }

  #article-list .catalog-card,
  #article-list .catalog-card__body {
    min-height: 0;
  }

  #article-list .catalog-card__body .card-label,
  #article-list .catalog-card__body .card-title,
  #article-list .catalog-card__body .card-body {
    min-height: 0;
  }

  #article-list .catalog-card__body .card-body {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  #article-list .article-card-meta {
    margin: 1rem 0;
  }

  .case-proto-meta span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .case-story-section {
    padding-top: 16px;
    padding-bottom: 10px;
  }

  .case-detail-band {
    padding-bottom: 14px;
  }

  .case-detail-card--split,
  .case-detail-context-grid,
  .case-detail-outcome-grid,
  .case-detail-grid--challenge,
  .case-detail-grid--deploy,
  .case-detail-grid--hardware,
  .case-detail-grid--generic {
    grid-template-columns: 1fr;
  }

  .case-detail-stack {
    grid-template-columns: 1fr;
  }

  .case-detail-inline-media {
    min-height: 180px;
  }

  .case-detail-hardware-media {
    min-height: 150px;
  }

  .case-proto-similar {
    padding-bottom: 42px;
  }

  .casehub-track-item,
  .casehub-stat {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(22,33,31,.08);
  }

  .casehub-track-grid,
  .casehub-stats-grid {
    border-left: 1px solid rgba(22,33,31,.08);
    border-right: 1px solid rgba(22,33,31,.08);
  }

  .casehub-similar-shell {
    padding: 52px 20px 58px;
  }

  .casehub-similar-shell::before {
    font-size: 4.8rem;
    bottom: 46px;
  }
}

/* ============================================================
   Warehouse Solution V3
   ============================================================ */

.wh3-hero {
  padding-top: 26px;
  padding-bottom: 28px;
}

.wh3-hero-card {
  padding: 42px 42px 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(214,124,47,.12), transparent 22%),
    radial-gradient(circle at 0% 100%, rgba(125,224,200,.12), transparent 26%),
    linear-gradient(90deg, transparent 0%, transparent 58%, rgba(255,255,255,.03) 58%, rgba(255,255,255,.03) 58.3%, transparent 58.3%),
    linear-gradient(145deg, #103f37 0%, #0d2d26 56%, #081f1a 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.wh3-hero-card .hero-eyebrow {
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.wh3-hero-card .hero-h1 {
  color: #fff;
  max-width: none;
  white-space: nowrap;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}

.wh3-hero-card .hero-sub {
  color: rgba(255,255,255,.74);
  max-width: 64ch;
  font-size: .98rem;
  line-height: 1.78;
  margin-bottom: 24px;
}

.wh3-hero-card .button-soft {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.wh3-hero-card .btn-group {
  margin-bottom: 22px;
}

.wh3-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.wh3-hero-proof__item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.wh3-hero-proof__item strong,
.wh3-hero-proof__item span {
  display: block;
}

.wh3-hero-proof__item strong {
  margin-bottom: 5px;
  font-size: .82rem;
  color: #fff;
}

.wh3-hero-proof__item span {
  font-size: .74rem;
  line-height: 1.5;
  color: rgba(255,255,255,.64);
}

.wh3-pain-grid,
.wh3-flow-grid,
.wh3-hardware-grid,
.wh3-mw-grid,
.wh3-proof-stats,
.wh3-proof-grid {
  display: grid;
  gap: 18px;
}

.wh3-pain-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wh3-pain-card,
.wh3-side-card,
.wh3-flow-card,
.wh3-hardware-card,
.wh3-mw-card,
.wh3-proof-stat,
.wh3-proof-card {
  border-radius: 22px;
  border: 1px solid rgba(22,33,31,.08);
  box-shadow: var(--shadow-sm);
}

.wh3-pain-card {
  position: relative;
  padding: 22px 22px 18px;
  background: rgba(255,255,255,.92);
}

.wh3-pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal) 0%, rgba(125,224,200,.5) 100%);
}

.wh3-pain-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(22,33,31,.07);
  line-height: 1;
}

.wh3-system-grid {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 18px;
  align-items: stretch;
}

.wh3-system-core {
  padding: 36px 34px 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(145deg, #103f37 0%, #0d2d26 56%, #081f1a 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.wh3-system-core .card-label,
.wh3-system-core .card-title {
  color: #fff;
}

.wh3-system-core .card-title {
  font-size: 1.9rem;
  line-height: 1.22;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.wh3-system-summary {
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 52ch;
  font-size: .95rem;
  line-height: 1.9;
  color: rgba(255,255,255,.76);
}

.wh3-core-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.wh3-core-list li {
  padding-left: 26px;
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: .92rem;
  line-height: 1.78;
}

.wh3-core-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .08em;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #7de0c8;
  font-size: .7rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.wh3-system-side {
  display: grid;
  gap: 14px;
}

.wh3-side-card {
  padding: 18px 20px;
  background: rgba(255,255,255,.92);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
}

.wh3-side-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(125,224,200,.18) 0%, rgba(255,255,255,.9) 100%);
  border: 1px solid rgba(11,123,102,.08);
  color: var(--teal);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.wh3-side-copy span,
.wh3-side-copy strong,
.wh3-side-copy small {
  display: block;
}

.wh3-side-copy span {
  margin-bottom: 6px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.wh3-side-copy strong {
  font-size: 1rem;
  line-height: 1.42;
  color: var(--ink);
}

.wh3-side-copy small {
  margin-top: 6px;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--muted);
}

.wh3-architecture-image {
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(15,64,55,.98) 0%, rgba(11,123,102,.92) 100%);
  box-shadow: var(--shadow-lg);
  max-width: 1380px;
}

.wh3-architecture-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.wh3-architecture-board {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  height: 460px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.wh3-architecture-board img {
  width: 100%;
  height: 460px;
  max-width: 1380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.wh3-architecture-caption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.wh3-architecture-caption div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.wh3-architecture-caption strong,
.wh3-architecture-caption span {
  display: block;
}

.wh3-architecture-caption strong {
  margin-bottom: 4px;
  font-size: .86rem;
  color: #fff;
}

.wh3-architecture-caption span {
  font-size: .76rem;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}

.wh3-flow-grid {
  grid-template-columns: repeat(5, 1fr);
}

.wh3-flow-card {
  padding: 18px;
  background: rgba(255,255,255,.92);
}

.wh3-flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(11,123,102,.12);
  color: var(--teal);
  font-size: .74rem;
  font-weight: 800;
}

.wh3-hardware {
  background: rgba(11,123,102,.03);
}

.wh3-hardware-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wh3-hardware-card {
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.94);
}

.wh3-hardware-card--warm {
  background: linear-gradient(160deg, rgba(255,242,229,.96) 0%, rgba(255,252,246,.98) 100%);
}

.wh3-hardware-card--cool {
  background: linear-gradient(160deg, rgba(233,247,243,.96) 0%, rgba(247,252,250,.98) 100%);
}

.wh3-hardware-media {
  height: 180px;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fbf7f0 0%, #f2eadc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh3-hardware-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wh3-hardware-specs {
  display: grid;
  gap: 8px;
  margin: 16px 0 12px;
}

.wh3-hardware-specs div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(22,33,31,.08);
}

.wh3-hardware-specs span {
  font-size: .74rem;
  color: var(--muted);
}

.wh3-hardware-specs strong {
  font-size: .76rem;
  color: var(--ink);
}

.wh3-hardware-bundle {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(215,239,233,.72) 0%, rgba(255,252,246,.96) 100%);
  border: 1px solid rgba(11,123,102,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wh3-bundle-copy {
  font-size: .84rem;
  line-height: 1.58;
  color: var(--muted);
}

.wh3-bundle-copy strong {
  color: var(--ink);
}

.wh3-bundle-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Hardware Card B (方案B: 上图下文4列) ─────────────────── */
.sol-hw-b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sol-hw-b-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(22,33,31,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.sol-hw-b-card:hover {
  box-shadow: 0 8px 32px rgba(22,33,31,.1);
  transform: translateY(-2px);
}
.sol-hw-b-media {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, #fbf7f0 0%, #f2eadc 100%);
  overflow: hidden;
}
.sol-hw-b-media--cool { background: linear-gradient(160deg, #e9f7f3 0%, #f7fcfa 100%); }
.sol-hw-b-media--blue { background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%); }
.sol-hw-b-media-icon { font-size: 3.2rem; line-height: 1; opacity: .55; position: relative; z-index: 1; }
.sol-hw-b-media-deco { position: absolute; inset: 0; pointer-events: none; }
.sol-hw-b-media-deco::before {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  top: -20px; right: -20px;
  background: rgba(11,123,102,.07);
}
.sol-hw-b-media-deco::after {
  content: '';
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  bottom: -10px; left: 10px;
  background: rgba(214,124,47,.06);
}
.sol-hw-b-body { padding: 16px 16px 20px; flex: 1; display: flex; flex-direction: column; }
.sol-hw-b-type {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.sol-hw-b-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.sol-hw-b-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; flex: 1; }
.sol-hw-b-chip {
  font-size: .7rem;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(11,123,102,.08);
  color: var(--primary);
  white-space: nowrap;
}
.sol-hw-b-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.sol-hw-b-link:hover { text-decoration: underline; }

/* ── Feature Tab Panel (方案B: 左菜单+右展示) ─────────────── */
.sol-feat-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(22,33,31,.08);
  min-height: 400px;
}
.sol-feat-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid rgba(22,33,31,.07);
  padding: 8px 0;
}
.sol-feat-tab {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 16px;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s;
}
.sol-feat-tab:hover { background: rgba(11,123,102,.04); }
.sol-feat-tab.active { background: rgba(11,123,102,.06); border-left-color: var(--primary); }
.sol-feat-tab-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.sol-feat-tab-label { font-size: .88rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.sol-feat-tab.active .sol-feat-tab-label { font-weight: 700; }
.sol-feat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  position: relative;
  gap: 24px;
  transition: background .3s;
}
.sol-feat-illus { position: relative; display: flex; align-items: center; justify-content: center; }
.sol-feat-illus-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.sol-feat-illus-icon { font-size: 3.5rem; line-height: 1; }
.sol-feat-illus-deco { position: absolute; inset: -30px; pointer-events: none; }
.sol-feat-illus-dot { position: absolute; border-radius: 50%; }
.sol-feat-illus-dot:nth-child(1) { width:8px;  height:8px;  top:0;      left:50%; }
.sol-feat-illus-dot:nth-child(2) { width:10px; height:10px; top:20%;    right:0; }
.sol-feat-illus-dot:nth-child(3) { width:6px;  height:6px;  bottom:10%; right:15%; }
.sol-feat-illus-dot:nth-child(4) { width:12px; height:12px; bottom:0;   left:30%; }
.sol-feat-illus-dot:nth-child(5) { width:7px;  height:7px;  bottom:20%; left:0; }
.sol-feat-illus-dot:nth-child(6) { width:9px;  height:9px;  top:15%;    left:10%; }
.sol-feat-detail { text-align: center; max-width: 460px; }
.sol-feat-detail-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sol-feat-detail-body { font-size: .92rem; line-height: 1.7; color: var(--muted); }
.sol-feat-dots { display: flex; gap: 8px; margin-top: 8px; }
.sol-feat-dot {
  all: unset;
  cursor: pointer;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(22,33,31,.15);
  transition: background .2s, transform .2s;
}
.sol-feat-dot.active { transform: scale(1.25); }

@media (max-width: 900px) {
  .sol-hw-b-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-feat-panel { grid-template-columns: 1fr; }
  .sol-feat-menu {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(22,33,31,.07);
    overflow-x: auto;
  }
  .sol-feat-tab {
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }
  .sol-feat-tab.active { border-left-color: transparent; border-bottom-color: var(--primary); }
  .sol-feat-content { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .sol-hw-b-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sol-hw-b-media { height: 120px; }
}

/* ── (原有) ── */
.wh3-mw-grid {
  grid-template-columns: repeat(2, 1fr);
}

.wh3-mw-card {
  padding: 22px;
  background: rgba(255,255,255,.92);
}

.wh3-mw-strip {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,33,31,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wh3-mw-strip-copy {
  font-size: .82rem;
  line-height: 1.58;
  color: var(--muted);
}

.wh3-mw-strip-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.wh3-proof {
  background:
    radial-gradient(circle at 10% 14%, rgba(214,124,47,.1), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(125,224,200,.08), transparent 18%);
}

.wh3-proof-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.wh3-proof-stat {
  padding: 22px 20px;
  text-align: center;
  background: rgba(255,255,255,.94);
}

.wh3-proof-stat strong,
.wh3-proof-stat span {
  display: block;
}

.wh3-proof-stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.wh3-proof-stat span {
  margin-top: 8px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
}

.wh3-proof-grid {
  grid-template-columns: 1.04fr .96fr;
}

.wh3-proof-card {
  padding: 24px;
  background: rgba(255,255,255,.94);
}

.wh3-proof-card--warm {
  background: linear-gradient(160deg, rgba(255,241,226,.96) 0%, rgba(255,252,246,.98) 100%);
}

.wh3-check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 18px 0 14px;
}

.wh3-check-list li {
  padding-left: 18px;
  position: relative;
  font-size: .84rem;
  line-height: 1.58;
  color: var(--muted);
}

.wh3-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.wh3-contact-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 18px;
  align-items: start;
}

.wh3-contact-copy {
  padding: 8px 0;
}

.wh3-contact-list {
  margin-top: 8px;
}

.wh3-contact-metrics {
  display: flex;
  gap: 0;
  margin-top: 26px;
  max-width: 420px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.wh3-contact-metrics div {
  flex: 1;
  padding: 16px 14px 14px;
  background: linear-gradient(145deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-right: 1px solid rgba(255,255,255,.08);
}

.wh3-contact-metrics div:last-child {
  border-right: none;
}

.wh3-contact-metrics strong,
.wh3-contact-metrics span {
  display: block;
}

.wh3-contact-metrics strong {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}

.wh3-contact-metrics span {
  margin-top: 6px;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
}

@media (max-width: 1180px) {
  .wh3-pain-grid,
  .wh3-flow-grid,
  .wh3-hardware-grid,
  .wh3-proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .wh3-system-grid,
  .wh3-proof-grid,
  .wh3-contact-grid {
    grid-template-columns: 1fr;
  }

  .wh3-architecture-caption,
  .wh3-mw-grid,
  .wh3-hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .wh3-hardware-bundle,
  .wh3-mw-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .wh3-hero-card,
  .wh3-pain-card,
  .wh3-system-core,
  .wh3-side-card,
  .wh3-flow-card,
  .wh3-hardware-card,
  .wh3-mw-card,
  .wh3-proof-card {
    padding: 22px 20px;
  }

  .wh3-pain-grid,
  .wh3-flow-grid,
  .wh3-hardware-grid,
  .wh3-mw-grid,
  .wh3-proof-stats,
  .wh3-proof-grid,
  .wh3-architecture-caption,
  .wh3-hero-proof {
    grid-template-columns: 1fr;
  }

  .wh3-system-grid,
  .wh3-contact-grid {
    grid-template-columns: 1fr;
  }

  .wh3-hero-card {
    padding: 32px 24px;
  }

  .wh3-hero-card .hero-h1 {
    white-space: normal;
  }

  .wh3-architecture-image {
    padding: 18px;
  }

  .wh3-architecture-board {
    min-height: auto;
    padding: 14px;
    height: auto;
  }

  .wh3-architecture-board img {
    height: auto;
    min-height: 180px;
  }

  .wh3-hardware-media {
    height: 150px;
  }

  .wh3-contact-metrics {
    max-width: none;
    flex-direction: column;
  }
}

/* ============================================================
   Resources Download Center
   ============================================================ */

.res-hero {
  padding: 18px 0 0;
}

.res-hero-grid,
.res-feature-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 18px;
}

.res-hero-copy,
.res-hero-panel,
.res-card,
.res-feature-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.res-hero-copy {
  padding: 52px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(214,124,47,.14), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(125,224,200,.16), transparent 28%),
    linear-gradient(145deg, #103f37 0%, #0d2d26 56%, #081f1a 100%);
}

.res-hero-copy .hero-eyebrow {
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.res-hero-copy .hero-h1 {
  color: #fff;
  max-width: none;
  max-width: 14ch;
  white-space: normal;
  line-height: var(--forge-leading-display);
  letter-spacing: var(--forge-track-display);
}

.res-hero-copy .hero-sub {
  color: rgba(255,255,255,.74);
  max-width: 60ch;
  font-size: var(--forge-type-hero-sub);
  line-height: var(--forge-leading-loose);
  margin-bottom: 28px;
}

.res-hero-copy .button-soft {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.res-hero-panel {
  padding: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  display: grid;
  gap: 14px;
}

.res-hero-copy--full {
  grid-column: 1 / -1;
  height: 460px;
  max-width: 1380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-featured-card {
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fff8ef 0%, #fffdf9 100%);
  border: 1px solid rgba(214,124,47,.16);
}

.res-doc-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 20px;
}

.res-doc-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(22,33,31,.08);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.res-mini-grid {
  display: grid;
  gap: 12px;
}

.res-mini-doc {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(11,123,102,.04);
  border: 1px solid rgba(11,123,102,.08);
}

.res-mini-doc span,
.res-mini-doc strong,
.res-mini-doc small {
  display: block;
}

.res-mini-doc span {
  margin-bottom: 6px;
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.res-mini-doc strong {
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.res-mini-doc small {
  font-size: .78rem;
  color: var(--muted);
}

.res-category-section {
  padding: 22px 0 6px;
}

.res-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.res-category-item {
  padding: 20px 14px 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,33,31,.08);
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, background .18s;
}

.res-category-item:hover,
.res-category-item.active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(215,239,233,.54);
}

.res-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: rgba(11,123,102,.08);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 800;
}

.res-category-item strong,
.res-category-item span {
  display: block;
}

.res-category-item strong {
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.res-category-item span {
  font-size: .76rem;
  line-height: 1.5;
  color: var(--muted);
}

.res-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.res-card {
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,33,31,.08);
}

.res-card-visual {
  padding: 22px;
  min-height: 210px;
  border-bottom: 1px solid rgba(22,33,31,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-card-visual--teal {
  background: linear-gradient(160deg, #eef7f4 0%, #dfeee8 100%);
}

.res-card-visual--sand {
  background: linear-gradient(160deg, #fbf6ee 0%, #f3e7d8 100%);
}

.res-card-visual--mint {
  background: linear-gradient(160deg, #edf8f4 0%, #e1efe8 100%);
}

.res-card-visual--warm {
  background: linear-gradient(160deg, #fff4ea 0%, #f4eadf 100%);
}

.res-doc-sheet {
  width: 100%;
  min-height: 158px;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(22,33,31,.08);
  box-shadow: 0 12px 32px rgba(22,33,31,.08);
  position: relative;
}

.res-doc-sheet::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(11,123,102,.16) 0%, rgba(11,123,102,.05) 100%);
}

.res-doc-type,
.res-doc-sheet strong,
.res-doc-sheet small {
  display: block;
}

.res-doc-type {
  margin-bottom: 12px;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.res-doc-sheet strong {
  font-size: 1rem;
  line-height: 1.38;
  color: var(--ink);
  margin-bottom: 8px;
}

.res-doc-sheet small {
  font-size: .8rem;
  line-height: 1.58;
  color: var(--muted);
}

.res-card-body {
  padding: 22px 22px 24px;
}

.res-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.res-card-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11,123,102,.06);
  border: 1px solid rgba(11,123,102,.08);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}

.res-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.res-feature-grid {
  align-items: stretch;
}

.res-feature-panel {
  padding: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,33,31,.08);
}

.res-feature-panel--soft {
  background: linear-gradient(160deg, rgba(238,247,244,.96) 0%, rgba(255,253,248,.98) 100%);
}

.res-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

.res-modal.open {
  display: block;
}

.res-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,26,22,.54);
  backdrop-filter: blur(6px);
}

.res-modal__dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  margin: 8vh auto 0;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,253,248,.98);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 28px 90px rgba(22,33,31,.2);
}

.res-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(22,33,31,.08);
  background: rgba(11,123,102,.06);
  color: var(--teal);
  font-size: 1.3rem;
  line-height: 1;
}

.res-modal__resource {
  margin: 16px 0 24px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11,123,102,.06);
  border: 1px solid rgba(11,123,102,.08);
  color: var(--teal-deep);
  font-size: .9rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .res-hero-grid,
  .res-feature-grid,
  .res-card-grid,
  .res-category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .res-hero-grid,
  .res-feature-grid,
  .res-card-grid,
  .res-category-grid {
    grid-template-columns: 1fr;
  }

  .res-hero-copy,
  .res-hero-panel,
  .res-feature-panel,
  .res-modal__dialog {
    padding: 24px 20px;
  }

  .res-card-body {
    padding: 20px;
  }

  .res-card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .res-hero-copy--full {
    height: auto;
  }

  .res-hero-copy .hero-h1 {
    max-width: none;
  }
}

.res-proto {
  padding-bottom: 0;
}

.res-proto__hero {
  padding: 26px 0 18px;
}

.res-proto__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 26px;
  align-items: stretch;
  min-height: 560px;
}

.res-proto__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 248px;
  padding: 8px 0;
}

.res-proto__eyebrow {
  margin-bottom: 18px;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.res-proto__hero-title {
  max-width: 16ch;
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.85rem, 2.45vw, 2.55rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.res-proto__hero-title em {
  font-style: normal;
  color: var(--forge-primary);
}

.res-proto__hero-subtitle {
  max-width: 34rem;
  margin: 26px 0 0;
  color: #5f6874;
  font-size: 1.12rem;
  line-height: 1.68;
}

.res-proto__featured-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(18, 26, 35, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(68, 165, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #10222b 0%, #0f3343 54%, #0a1a23 100%);
  box-shadow: 0 22px 48px rgba(18, 26, 35, 0.12);
}

.res-proto__featured-media,
.res-proto__featured-overlay {
  position: absolute;
  inset: 0;
}

.res-proto__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-proto__featured-overlay {
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.1) 0%, rgba(8, 16, 22, 0.52) 44%, rgba(8, 16, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(9, 17, 23, 0.76) 0%, rgba(9, 17, 23, 0.26) 62%, rgba(9, 17, 23, 0.3) 100%);
}

.res-proto__visual-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.res-proto__visual-node,
.res-proto__visual-chip {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 25px;
  max-width: 15rem;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 18, 25, 0.5);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--forge-font-mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.res-proto__visual-node {
  position: absolute;
  border-radius: 4px;
}

.res-proto__visual-node--primary {
  top: 34px;
  right: 32px;
  max-width: min(32%, 14rem);
  background: rgba(157, 73, 0, 0.68);
}

.res-proto__visual-node--secondary {
  top: 43%;
  right: 42px;
  max-width: min(31%, 13rem);
  color: rgba(255, 255, 255, 0.78);
}

.res-proto__visual-chip-stack {
  position: absolute;
  right: 32px;
  bottom: 92px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: min(58%, 25rem);
}

.res-proto__visual-chip {
  max-width: 13rem;
  border-radius: 999px;
  background: rgba(7, 18, 25, 0.42);
  color: rgba(255, 255, 255, 0.8);
}

.res-proto__visual-layer--cases .res-proto__visual-node--secondary,
.res-proto__visual-layer--faq .res-proto__visual-node--secondary {
  background: rgba(20, 105, 94, 0.62);
}

.res-proto__visual-layer--articles .res-proto__visual-node--secondary,
.res-proto__visual-layer--resources .res-proto__visual-node--secondary {
  right: 34px;
}

.res-proto__visual-layer--articles .res-proto__visual-chip-stack,
.res-proto__visual-layer--faq .res-proto__visual-chip-stack {
  bottom: 94px;
}

.res-proto__featured-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 28px 28px 26px;
}

.res-proto__featured-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px 6px;
  border-radius: 2px;
  background: var(--forge-primary);
  color: #fff;
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.res-proto__featured-title {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-family: var(--forge-font-headline);
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.res-proto__featured-summary {
  max-width: 30rem;
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.58;
}

.res-proto__featured-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.res-proto__featured-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: auto;
}

.res-proto__featured-actions .res-proto__featured-extra {
  flex-wrap: nowrap;
  margin: 0;
}

.res-proto__featured-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forge-primary-soft);
  font-family: var(--forge-font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.res-proto__featured-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.res-proto__featured-link:hover::after {
  transform: translateX(4px);
}

.res-proto__featured-link--muted {
  color: rgba(255, 255, 255, 0.72);
}

.res-proto__featured-link--muted::after {
  opacity: 0.72;
}

.res-proto__featured-actions .res-proto__featured-link {
  white-space: nowrap;
}

.intent-hero__extras {
  width: 100%;
  max-width: 46rem;
  margin-top: 24px;
}

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

.intent-hero__label {
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intent-hero__label--secondary {
  margin-top: 6px;
  color: #6b7280;
}

.intent-hero__chip-grid,
.intent-resource-grid,
.intent-stat-grid {
  display: grid;
  gap: 10px;
}

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

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

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

.intent-chip,
.intent-pill,
.intent-latest__item,
.intent-stat {
  min-width: 0;
  border: 1px solid rgba(18, 26, 35, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(18, 26, 35, 0.06);
  text-decoration: none;
}

.intent-chip {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--forge-on-surface);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.intent-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 117, 104, 0.24);
  background: #fff;
}

.intent-chip strong,
.intent-chip span,
.intent-stat strong,
.intent-stat span,
.intent-stat small,
.intent-latest__item strong,
.intent-latest__item span {
  display: block;
  overflow-wrap: anywhere;
}

.intent-chip strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.intent-chip span {
  color: #667085;
  font-size: 0.76rem;
  line-height: 1.45;
}

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

.intent-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--forge-on-surface);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.intent-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 117, 104, 0.26);
}

.intent-stat {
  padding: 14px;
  border-radius: 12px;
}

.intent-stat--link {
  color: var(--forge-on-surface);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.intent-stat--link:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 117, 104, 0.24);
  background: #fff;
}

.intent-stat strong {
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  line-height: 1;
}

.intent-stat--link strong {
  font-size: 0.96rem;
  line-height: 1.22;
}

.intent-stat span {
  margin-top: 7px;
  color: var(--forge-on-surface);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.intent-stat small {
  margin-top: 5px;
  color: #667085;
  font-size: 0.7rem;
  line-height: 1.35;
}

.intent-search-panel {
  display: grid;
  gap: 10px;
}

.intent-resource-compact {
  display: grid;
  gap: 10px;
}

.intent-search {
  width: 100%;
  min-width: 0;
}

.intent-search__input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(18, 26, 35, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--forge-on-surface);
  font-family: var(--forge-font-body);
  font-size: 0.92rem;
  outline: none;
  box-shadow: 0 14px 32px rgba(18, 26, 35, 0.06);
}

.intent-search__input:focus {
  border-color: rgba(24, 117, 104, 0.36);
  box-shadow: 0 0 0 4px rgba(24, 117, 104, 0.08);
}

.intent-latest {
  display: grid;
  gap: 10px;
}

.intent-latest__list {
  display: grid;
  gap: 8px;
}

.intent-latest__item {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--forge-on-surface);
}

.intent-latest__item span {
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intent-latest__item strong {
  font-size: 0.84rem;
  line-height: 1.32;
}

.res-proto__filters {
  position: sticky;
  top: 74px;
  z-index: 40;
  padding: 12px 0 18px;
  background: linear-gradient(180deg, rgba(249, 249, 252, 0.94) 0%, rgba(249, 249, 252, 0.84) 100%);
  backdrop-filter: blur(12px);
}

.res-proto__filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.res-proto__filter-list {
  min-width: 0;
  flex: 1 1 620px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.res-proto__filter-list::-webkit-scrollbar {
  display: none;
}

.res-proto__filter-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(137, 115, 98, 0.12);
  border-radius: 4px;
  background: #eef0f3;
  color: #606874;
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.res-proto__filter-link:hover,
.res-proto__filter-link.is-active {
  border-color: rgba(23, 24, 28, 0.14);
  background: #17191c;
  color: #fff;
  transform: translateY(-1px);
}

.res-proto__filters-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 360px;
  min-width: min(100%, 360px);
  padding-top: 1px;
}

.res-proto__results {
  color: #5f6874;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
  white-space: nowrap;
}

.res-proto__filters-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #5f6874;
}

.res-proto__filters-icon svg {
  width: 100%;
  height: 100%;
}

.res-proto__search {
  width: min(280px, 100%);
  flex: 0 0 min(280px, 100%);
}

.res-proto__search-input {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(137, 115, 98, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forge-on-surface);
  font-family: var(--forge-font-body);
  font-size: var(--forge-type-body-sm);
}

.res-proto__search-input:focus {
  outline: none;
  border-color: rgba(154, 70, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 139, 61, 0.12);
}

.res-proto__library {
  padding: 16px 0 56px;
}

.res-proto__active-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #68707c;
  font-size: var(--forge-type-body-sm);
}

.res-proto__active-summary strong {
  color: var(--forge-on-surface);
}

.res-proto__clear-link {
  margin-left: 6px;
  color: var(--forge-primary);
  font-weight: 600;
  text-decoration: none;
}

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

.res-proto__card {
  display: flex;
  flex-direction: column;
  min-height: 328px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(137, 115, 98, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(22, 33, 31, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.res-proto__card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 70, 0, 0.16);
  box-shadow: 0 18px 40px rgba(22, 33, 31, 0.08);
}

.res-proto__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.res-proto__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.res-proto__card-icon-svg {
  width: 32px;
  height: 32px;
}

.res-proto__card-icon--rust {
  color: var(--forge-primary);
}

.res-proto__card-icon--blue {
  color: var(--forge-tertiary);
}

.res-proto__card-icon--gold {
  color: var(--forge-primary);
}

.res-proto__card-kicker {
  color: #6b7480;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-align: right;
  text-transform: uppercase;
}

.res-proto__card-main {
  flex: 1;
}

.res-proto__card-title {
  display: block;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-h3);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: var(--forge-track-heading);
  text-decoration: none;
}

.res-proto__card-title:hover {
  color: var(--forge-primary);
}

.res-proto__card-summary {
  margin: 10px 0 0;
  color: #6a717c;
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-relaxed);
}

.res-proto__card-bottom {
  margin-top: 18px;
}

.res-proto__fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-bottom: 18px;
}

.res-proto__fact {
  display: grid;
  gap: 4px;
}

.res-proto__fact-label {
  color: #77808c;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.res-proto__fact-value {
  color: var(--forge-on-surface);
  font-size: var(--forge-type-body-sm);
  font-weight: 700;
  line-height: 1.45;
}

.res-proto__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--forge-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.res-proto__card-button:hover {
  transform: translateY(-1px);
}

.res-proto__card-button--muted {
  background: #dce8f2;
  color: #445160;
}

.res-proto__card-button--primary {
  background: var(--forge-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(154, 70, 0, 0.16);
}

.res-proto__card-button--dark {
  background: #17191c;
  color: #fff;
}

.res-proto__support-section {
  padding: 94px 0 96px;
  background: #f0f0f3;
}

.res-proto__support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.res-proto__support-copy {
  max-width: 560px;
}

.res-proto__support-title {
  max-width: 12ch;
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(2.5rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.res-proto__support-body {
  max-width: 34rem;
  margin: 24px 0 0;
  color: #646c78;
  font-size: 1rem;
  line-height: 1.72;
}

.res-proto__support-body--secondary {
  margin-top: 14px;
}

.res-proto__support-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  list-style: none;
}

.res-proto__support-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--forge-on-surface);
  font-size: 0.92rem;
  line-height: 1.58;
}

.res-proto__support-dot {
  position: relative;
  top: 2px;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(154, 70, 0, 0.12);
}

.res-proto__support-dot::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--forge-primary);
}

.res-proto__support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.res-proto__support-link::after {
  content: "→";
}

.res-proto__support-form .form-card {
  padding: 34px 28px 30px;
  border: 1px solid rgba(137, 115, 98, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(22, 33, 31, 0.08);
}

.res-proto__support-form .form-title:empty,
.res-proto__support-form .form-sub:empty {
  display: none;
}

.res-proto__support-form .atlas-form {
  margin-top: 0;
}

.res-proto__support-form .form-field label {
  color: #7a828d;
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.res-proto__support-form .form-field input,
.res-proto__support-form .form-field textarea {
  border: 1px solid rgba(137, 115, 98, 0.14);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.res-proto__support-form .form-field input:focus,
.res-proto__support-form .form-field textarea:focus {
  border-color: rgba(154, 70, 0, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 139, 61, 0.12);
}

.res-proto__support-form .form-actions .button {
  width: 100%;
  min-height: 48px;
  border-radius: 0;
  background: var(--forge-primary);
  box-shadow: none;
  justify-content: center;
}

@media (max-width: 1440px) {
  .res-proto__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .res-proto__hero-grid,
  .res-proto__support-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 980px) {
  .res-proto__hero-grid,
  .res-proto__support-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intent-hero__extras {
    max-width: none;
  }

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

  .res-proto__filters-bar {
    flex-direction: column;
  }

  .res-proto__filter-list {
    flex: none;
    width: 100%;
  }

  .res-proto__filters-side {
    flex: none;
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .res-proto__filters-side--search {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .res-proto__filters-side--search .res-proto__search {
    flex: 1 1 100%;
    width: 100%;
  }

  .res-proto__results {
    white-space: normal;
  }

  .res-proto__support-copy,
  .res-proto__support-title {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .res-proto__hero {
    padding-top: 18px;
  }

  .res-proto__featured-card {
    min-height: 320px;
  }

  .res-proto__hero-title,
  .res-proto__support-title {
    font-size: clamp(1.75rem, 8.4vw, 2.25rem);
  }

  .res-proto__hero-subtitle {
    font-size: 1rem;
  }

  .intent-hero__chip-grid,
  .intent-resource-grid,
  .intent-stat-grid {
    grid-template-columns: 1fr;
  }

  .intent-hero__extras {
    margin-top: 18px;
  }

  .res-proto__visual-layer {
    display: none;
  }

  .intent-chip,
  .intent-stat,
  .intent-latest__item {
    padding-left: 12px;
    padding-right: 12px;
  }

  .res-proto__featured-copy,
  .res-proto__card,
  .res-proto__support-form .form-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .res-proto__grid {
    grid-template-columns: 1fr;
  }

  .res-proto__card {
    min-height: 300px;
  }
}

/* ============================================================
   About Landing Page
   ============================================================ */

.abt-hero {
  padding: 18px 0 0;
}

.abt-hero-grid,
.abt-factory-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 18px;
}

.abt-hero-copy,
.abt-hero-panel,
.abt-intro-card,
.abt-why-card,
.abt-cap-card,
.abt-industry-card,
.abt-factory-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.abt-hero-copy {
  padding: 52px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(214,124,47,.14), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(125,224,200,.14), transparent 28%),
    linear-gradient(145deg, #103f37 0%, #0d2d26 56%, #081f1a 100%);
}

.abt-hero-copy .hero-eyebrow {
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.abt-hero-copy .hero-h1 {
  color: #fff;
  max-width: 12ch;
}

.abt-hero-copy .hero-sub {
  color: rgba(255,255,255,.74);
  max-width: 60ch;
  font-size: var(--forge-type-hero-sub);
  line-height: var(--forge-leading-loose);
  margin-bottom: 28px;
}

.abt-hero-copy .button-soft {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.abt-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.abt-hero-proof div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.abt-hero-proof strong,
.abt-hero-proof span {
  display: block;
}

.abt-hero-proof strong {
  margin-bottom: 5px;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-kpi-value);
  line-height: var(--forge-leading-heading);
  letter-spacing: var(--forge-track-tight);
  color: #fff;
}

.abt-hero-proof span {
  font-size: var(--forge-type-kpi-meta);
  line-height: var(--forge-leading-relaxed);
  color: rgba(255,255,255,.66);
}

.abt-hero-panel {
  padding: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  display: grid;
  gap: 14px;
}

.abt-hero-card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fff8ef 0%, #fffdf8 100%);
  border: 1px solid rgba(214,124,47,.16);
}

.abt-hero-mini {
  display: grid;
  gap: 12px;
}

.abt-mini-block {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(11,123,102,.05);
  border: 1px solid rgba(11,123,102,.08);
}

.abt-mini-block span,
.abt-mini-block strong {
  display: block;
}

.abt-mini-block span {
  margin-bottom: 6px;
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.abt-mini-block strong {
  font-size: .92rem;
  line-height: 1.45;
  color: var(--ink);
}

.abt-intro-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding: 20px;
  background: var(--forge-surface-lowest);
}

.abt-intro-stat-strip .abt-mini-block {
  padding: 16px;
  border-radius: 14px;
}

.abt-intro-copy {
  justify-content: flex-start;
  gap: 18px;
}

.abt-intro-copy .card-body {
  margin: 0;
}

.abt-intro-grid,
.abt-why-grid,
.abt-cap-grid,
.abt-industry-grid {
  display: grid;
  gap: 18px;
}

.abt-intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

.abt-intro-card,
.abt-cap-card,
.abt-industry-card {
  padding: 28px 26px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(22,33,31,.08);
}

.abt-why-section,
.abt-industries-section {
  background: rgba(11,123,102,.04);
}

.abt-why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.abt-why-card {
  padding: 24px 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(22,33,31,.08);
}

.abt-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: rgba(11,123,102,.1);
  color: var(--teal);
  font-size: .82rem;
  font-weight: 800;
}

.abt-why-icon.abt-why-icon--image {
  background: rgba(246, 138, 60, 0.12);
  color: inherit;
  overflow: hidden;
}

.abt-why-icon.abt-why-icon--image img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.abt-number-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.abt-number-item {
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,33,31,.08);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.abt-number-item strong,
.abt-number-item span {
  display: block;
}

.abt-number-item strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.abt-number-item span {
  margin-top: 8px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
}

.abt-cap-grid {
  grid-template-columns: repeat(3, 1fr);
}

.abt-cap-card--proof {
  padding: 0;
  overflow: hidden;
  display: grid;
  align-content: start;
}

.abt-cap-media {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #edf5f2 0%, #ddeae4 100%);
}

.abt-cap-media__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,31,26,.08) 0%, rgba(8,31,26,.58) 100%);
  z-index: 1;
}

.abt-cap-media__header {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.abt-cap-media__label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--teal-deep);
  font-family: var(--forge-font-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.abt-cap-proof {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-cap-proof__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .72rem;
  line-height: 1.45;
}

.abt-cap-copy {
  display: grid;
  gap: 12px;
  padding: 24px 24px 26px;
}

.abt-cap-copy .card-title,
.abt-cap-copy .card-body {
  margin-bottom: 0;
}

.abt-cap-card .summary-list {
  margin-top: 18px;
}

.abt-cap-card--proof .summary-list {
  margin-top: 6px;
}

.abt-industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.abt-factory-card {
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,33,31,.08);
}

.abt-factory-card--visual {
  background: linear-gradient(160deg, rgba(255,248,238,.96) 0%, rgba(255,253,248,.98) 100%);
}

.abt-factory-media {
  min-height: 290px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.14), transparent 24%),
    linear-gradient(160deg, #fbf7f0 0%, #f2eadc 100%);
  border-bottom: 1px solid rgba(22,33,31,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-factory-media--filled {
  padding: 0;
  overflow: hidden;
}

.abt-factory-media--soft {
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.14), transparent 24%),
    linear-gradient(160deg, #eef7f4 0%, #deede7 100%);
}

.abt-factory-media__image,
.abt-factory-media--filled img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
}

.abt-factory-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.abt-factory-copy {
  padding: 24px;
}

.abt-factory-copy--stack {
  display: grid;
  gap: 20px;
}

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

.abt-evidence-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(22,33,31,.08);
  box-shadow: var(--shadow-sm);
}

.abt-evidence-card__media {
  position: relative;
  min-height: 128px;
  background:
    radial-gradient(circle at 100% 0%, rgba(125,224,200,.14), transparent 24%),
    linear-gradient(160deg, #edf4f1 0%, #dce8e3 100%);
}

.abt-evidence-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,31,26,0) 0%, rgba(8,31,26,.3) 100%);
  pointer-events: none;
}

.abt-evidence-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--teal-deep);
  font-family: var(--forge-font-mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.abt-evidence-card__body {
  display: grid;
  gap: 8px;
  padding: 14px 15px 16px;
}

.abt-evidence-card__body strong {
  color: var(--ink);
  font-size: .84rem;
  line-height: 1.45;
}

.abt-evidence-card__body span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.58;
}

.abt-quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.abt-quality-layout .abt-factory-card {
  height: auto;
  min-height: 0;
}

.abt-quality-visual {
  min-height: clamp(340px, 29vw, 470px);
  height: 100%;
  border-bottom: 0;
}

.abt-quality-copy {
  justify-content: center;
  min-height: clamp(340px, 29vw, 470px);
  padding: clamp(24px, 3vw, 38px);
}

.abt-quality-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.abt-quality-list li {
  padding: 22px 24px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 248, 246, 0.9) 100%);
  border: 1px solid rgba(22,33,31,.08);
}

.abt-quality-list li::before {
  background: var(--forge-primary);
}

.abt-quality-list strong {
  color: var(--forge-on-surface);
}

.abt-quality-list span {
  color: var(--forge-secondary) !important;
}

.abt-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.process-step--visual {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(22,33,31,.08);
  box-shadow: var(--shadow-sm);
}

.process-step__thumb {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,124,47,.16), transparent 26%),
    linear-gradient(160deg, #f2f6f3 0%, #dfe9e4 100%);
}

.process-step__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,31,26,0) 0%, rgba(8,31,26,.22) 100%);
  pointer-events: none;
}

.process-step--visual .process-step__num {
  position: relative;
  z-index: 1;
  margin: -17px 20px 12px;
  background: rgba(255,252,246,.96);
  box-shadow: 0 10px 24px rgba(22,33,31,.08);
}

.process-step--visual .process-step__title,
.process-step--visual .process-step__copy {
  padding: 0 20px;
}

.process-step--visual .process-step__copy {
  padding-bottom: 22px;
}

@media (max-width: 1180px) {
  .abt-hero-grid,
  .abt-intro-grid,
  .abt-why-grid,
  .abt-number-strip,
  .abt-cap-grid,
  .abt-industry-grid,
  .abt-factory-grid,
  .abt-hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .abt-evidence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-quality-layout {
    grid-template-columns: 1fr;
  }

  .abt-quality-visual,
  .abt-quality-copy {
    min-height: 0;
  }

  .abt-quality-visual {
    height: auto;
  }
}

@media (max-width: 900px) {
  .abt-hero-grid,
  .abt-intro-grid,
  .abt-why-grid,
  .abt-number-strip,
  .abt-cap-grid,
  .abt-industry-grid,
  .abt-factory-grid,
  .abt-hero-proof {
    grid-template-columns: 1fr;
  }

  .abt-hero-copy,
  .abt-hero-panel,
  .abt-intro-card,
  .abt-why-card,
  .abt-cap-card,
  .abt-industry-card,
  .abt-factory-copy {
    padding: 24px 20px;
  }

  .abt-intro-stat-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .abt-factory-media {
    min-height: 220px;
    padding: 20px;
  }

  .abt-quality-copy {
    padding: 20px;
  }

  .abt-quality-list li {
    padding: 18px;
  }

  .abt-cap-card--proof {
    padding: 0;
  }

  .abt-cap-media,
  .process-step__thumb {
    min-height: 200px;
  }

  .abt-evidence-grid {
    grid-template-columns: 1fr;
  }

  .abt-cap-copy,
  .process-step--visual .process-step__title,
  .process-step--visual .process-step__copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .process-step--visual .process-step__num {
    margin-left: 18px;
    margin-right: 18px;
  }
}

/* ============================================================
   HOMEPAGE UTILITY CLASSES
   ============================================================ */

/* container = alias for .wrap */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* section--alt */
.section--alt { background: var(--surface-soft); }

/* hero section */
.hero-section {
  padding: 96px 0 72px;
  position: relative;
}
.hero-content { max-width: 680px; }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  color: var(--teal-deep); margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted); line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* generic card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
}
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr 1fr; } }

/* generic card */
.card {
  display: block;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-decoration: none; color: var(--ink);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 8px; }
.card p  { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ PAGE ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

/* accordion item */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; scroll-margin-top: 80px; }

/* question button — replaces <summary> */
.faq-question-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px; text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--ink);
  background: none; border: none; cursor: pointer;
  transition: color .18s, background .18s;
}
.faq-question-btn:hover { background: var(--surface-strong); color: var(--teal); }
.faq-question-btn.open { color: var(--teal); background: var(--surface-strong); }

.faq-chevron { font-size: 1.4rem; color: var(--teal); flex-shrink: 0; transition: transform .2s; user-select: none; }
.faq-question-btn.open .faq-chevron { transform: none; }

/* answer panel */
.faq-answer {
  padding: 0 24px 20px;
  font-size: .9rem; color: var(--muted); line-height: 1.75;
  animation: faqSlideIn .18s ease;
}
@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* permalink button */
.faq-permalink-btn {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; padding: 4px 10px;
  font-size: .78rem; color: var(--muted);
  background: none; border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.faq-permalink-btn:hover { color: var(--teal); border-color: var(--teal); }

/* search bar */
.faq-search-wrap {
  position: relative; display: flex; align-items: center;
  margin-bottom: 28px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color .18s;
}
.faq-search-wrap:focus-within { border-color: var(--teal); }

.faq-search-icon { padding: 0 12px 0 16px; font-size: 1rem; color: var(--muted); pointer-events: none; }

.faq-search-input {
  flex: 1; padding: 14px 12px 14px 0;
  font-size: .95rem; color: var(--ink); background: none;
  border: none; outline: none;
}
.faq-search-input::placeholder { color: var(--muted); }

.faq-search-count {
  padding: 0 16px; font-size: .8rem; color: var(--muted); white-space: nowrap;
}

/* search highlight */
.faq-highlight { background: #fff3a8; border-radius: 2px; padding: 0 2px; }

/* ============================================================
   HOME SOLUTIONS — Dark Tab Panel (方案 C × 品牌融合)
   ============================================================ */

/* --- Section dark override --- */
.home-scenarios--dark {
  background:
    radial-gradient(circle at 85% 16%, rgba(214,124,47,.12), transparent 28%),
    radial-gradient(ellipse 82% 58% at 8% 100%, rgba(11,123,102,.30), transparent 60%),
    linear-gradient(142deg, #102823 0%, #0d4d42 52%, #082a22 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative glow blob (mirrors hero) */
.home-scenarios--dark::after {
  content: '';
  position: absolute;
  inset: auto -100px -160px auto;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,224,200,.18), transparent 62%);
  pointer-events: none;
}

.home-scenarios--dark .section-label { color: var(--orange); }
.home-scenarios--dark .section-title  { color: #fff; }
.home-scenarios--dark .section-subtitle { color: rgba(255,255,255,.62); }

/* --- Tab bar --- */
.sol-tab-bar {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.sol-tab-bar::-webkit-scrollbar { display: none; }

.sol-tab {
  padding: 12px 22px 11px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: inherit;
  color: rgba(255,255,255,.45);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, border-color .18s;
  flex-shrink: 0;
}
.sol-tab:hover { color: rgba(255,255,255,.8); }
.sol-tab--active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* --- Panel grid (left image + right content) --- */
.sol-panel {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 44px;
  align-items: center;
  animation: solFadeIn .28s ease;
}

@keyframes solFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Left: image card --- */
.sol-panel__img-wrap {
  position: relative;
}

/* Teal glow halo behind card */
.sol-panel__img-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,123,102,.32), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.sol-panel__img-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

/* --- Right: content --- */
.sol-panel__label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}

.sol-panel__title {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 720;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 14px;
}

.sol-panel__body {
  font-size: .92rem;
  color: rgba(255,255,255,.70);
  line-height: 1.78;
  margin-bottom: 22px;
}

/* --- Metric chips --- */
.sol-metric-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sol-metric-chip {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  min-width: 120px;
}

.sol-metric-chip__key {
  display: block;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 5px;
}

.sol-metric-chip__val {
  display: block;
  font-size: .84rem;
  font-weight: 650;
  color: #fff;
  line-height: 1.35;
}

/* --- Signal block --- */
.sol-panel__signal {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(11,123,102,.18);
  border: 1px solid rgba(11,123,102,.28);
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.65;
  margin-bottom: 26px;
}
.sol-panel__signal::before { content: '⚡ '; }

/* --- Actions --- */
.sol-panel__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Ghost button (dark bg variant) */
.button-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .18s, transform .18s;
}
.button-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-1px); }
.button-ghost:active { transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .sol-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sol-panel__img-wrap { order: 1; }
  .sol-panel__content  { order: 0; }
  .sol-panel__img-card { min-height: 220px; padding: 24px; }
}

@media (max-width: 600px) {
  .sol-tab { padding: 10px 14px 9px; font-size: .72rem; }
  .sol-metric-chips { gap: 8px; }
  .sol-metric-chip { min-width: 100px; }
}

/* ============================================================
   SOL-PANEL — Light variant (default, no --dark modifier)
   色彩节奏修复：方案板块改为浅色，消除 hero+方案双深色压迫
   ============================================================ */

.home-scenarios:not(.home-scenarios--dark) {
  background: rgba(11,123,102,.045);
}

/* Tab bar */
.home-scenarios:not(.home-scenarios--dark) .sol-tab-bar {
  border-bottom-color: var(--border);
}
.home-scenarios:not(.home-scenarios--dark) .sol-tab {
  color: var(--muted);
}
.home-scenarios:not(.home-scenarios--dark) .sol-tab:hover {
  color: var(--ink);
}
.home-scenarios:not(.home-scenarios--dark) .sol-tab--active {
  color: var(--teal-deep);
  border-bottom-color: var(--orange);
}

/* Section header text */
.home-scenarios:not(.home-scenarios--dark) .section-label {
  color: var(--forge-accent-text);
}
.home-scenarios:not(.home-scenarios--dark) .section-title {
  color: var(--ink);
}
.home-scenarios:not(.home-scenarios--dark) .section-subtitle {
  color: var(--muted);
}

/* Image card */
.home-scenarios:not(.home-scenarios--dark) .sol-panel__img-wrap::before {
  background: radial-gradient(circle, rgba(11,123,102,.12), transparent 65%);
}
.home-scenarios:not(.home-scenarios--dark) .sol-panel__img-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,33,31,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Content text */
.home-scenarios:not(.home-scenarios--dark) .sol-panel__label {
  color: var(--forge-accent-text);
}
.home-scenarios:not(.home-scenarios--dark) .sol-panel__title {
  color: var(--ink);
}
.home-scenarios:not(.home-scenarios--dark) .sol-panel__body {
  color: var(--muted);
}

/* Metric chips */
.home-scenarios:not(.home-scenarios--dark) .sol-metric-chip {
  background: var(--teal-soft);
  border-color: rgba(11,123,102,.15);
}
.home-scenarios:not(.home-scenarios--dark) .sol-metric-chip__key {
  color: var(--teal-deep);
  opacity: .65;
}
.home-scenarios:not(.home-scenarios--dark) .sol-metric-chip__val {
  color: var(--teal-deep);
}

/* Signal block */
.home-scenarios:not(.home-scenarios--dark) .sol-panel__signal {
  background: rgba(11,123,102,.07);
  border-color: rgba(11,123,102,.14);
  color: var(--teal-deep);
}
.home-scenarios:not(.home-scenarios--dark) .sol-panel__signal::before {
  content: '⚡ ';
}

/* ============================================================
   色彩节奏 — Proof 区沙棕背景，打破中段3区同色单调
   深 → 浅绿(方案) → 奶油(产品) → 沙棕(信任) → 奶油(证据) → 奶油+深卡(CTA)
   ============================================================ */

.home-proof {
  background: var(--sand);
}

/* ============================================================
   产品详情页 Hero — 间距微调
   问题: H1三行折行 / meta行间距过紧 / 六边形CTA过大
   ============================================================ */

/* H1：缩小字号，折行从3行→2行；增加行高避免压迫感 */
.product-spotlight__title {
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

/* SKU code：与 H1 间距适当收紧 */
.product-spotlight__code {
  margin-bottom: 6px;
}

/* subtitle（family name）：略收紧底部，badges已有间距 */
.product-spotlight__subtitle {
  margin-bottom: 16px;
}

/* badges：底部改为0，由 meta 的 margin-top 控制间距 */
.product-spotlight__badges {
  margin-bottom: 0;
}

/* meta 区：与 badges 之间加分隔线 + 足够的上间距 */
.product-spotlight__meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  gap: 16px;   /* USE CASE → READER FIT 行间距：10px→16px */
}

/* meta 每行：label→value 间距：4px→8px */
.product-spotlight__meta div {
  gap: 8px;
}

/* meta label：字重加强，与 value 视觉层级更清晰 */
.product-spotlight__meta strong {
  font-weight: 700;
  color: var(--teal-deep);
  opacity: .6;
}

/* meta value：稍收紧行高 */
.product-spotlight__meta span {
  font-size: .9rem;
  line-height: 1.5;
}

/* Compare 按钮：与 meta 之间留充足空间 */
.product-spotlight__intro > div:last-child {
  margin-top: 22px !important;
}

/* 右列 CTA 整体：减小间距补偿六边形缩小 */
.product-spotlight__cta {
  gap: 16px;
}

/* 六边形 CTA badge：170→148px，减小视觉重量 */
.product-quote-badge {
  width: 148px;
}

.product-quote-badge span {
  font-size: .92rem;
}

/* CTA 链接组：按钮间距 10→14px */
.product-spotlight__cta-links {
  gap: 14px;
  width: 100%;
}

/* CTA 按钮：全宽，便于对齐 */
.product-spotlight__cta-links .button-soft {
  width: 100%;
  justify-content: center;
}

/* 移除产品图底部绿色多边形底座装饰 */
.product-spotlight__visual-card::before {
  display: none;
}

/* 移除后收紧底部内边距，避免空白过多 */
.product-spotlight__visual-card {
  padding-bottom: 26px;
}

/* chip 重新定位（原来基于底座高度 92px，现在贴近底部） */
.product-spotlight__chip {
  bottom: 16px;
}

/* ============================================================
   KHLT Forge Website UI System
   Single source of truth for live website tokens.
   Stitch remains the upstream design reference only.
   Legacy semantic names such as --bg / --surface / --ink are
   compatibility aliases mapped from Forge tokens below.
   ============================================================ */

:root {
  --forge-primary: #9a4600;
  --forge-accent-text: #753400;
  --forge-primary-container: #ff8b3d;
  --forge-primary-soft: #ffdbc9;
  --forge-on-primary: #ffffff;
  --forge-tertiary: #005db6;
  --forge-tertiary-container: #d6e3ff;
  --forge-background: #f9f9fc;
  --forge-surface: #f9f9fc;
  --forge-surface-lowest: #ffffff;
  --forge-surface-low: #f3f3f6;
  --forge-surface-container: #eeeef0;
  --forge-surface-high: #e8e8ea;
  --forge-surface-highest: #e2e2e5;
  --forge-inverse-surface: #2f3133;
  --forge-on-surface: #1a1c1e;
  --forge-on-surface-variant: #564334;
  --forge-secondary: #536069;
  --forge-outline: #897362;
  --forge-outline-variant: #ddc1ae;
  --forge-error: #ba1a1a;
  --forge-success: #005db6;
  --forge-font-cjk: var(--font-noto-sans-sc), "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --forge-font-headline: var(--font-space-grotesk), "Space Grotesk", var(--forge-font-cjk);
  --forge-font-body: var(--font-inter), "Inter", var(--forge-font-cjk);
  --forge-font-mono: var(--font-ibm-plex-mono), "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  /* Typography scale: keep interactive text readable across desktop and mobile. */
  --forge-type-nav-brand: 1rem;
  --forge-type-nav: 0.8125rem;
  --forge-type-button: 0.8125rem;
  --forge-type-h1: clamp(1.88rem, 3vw, 2.72rem);
  --forge-type-h2: clamp(1.36rem, 2vw, 1.82rem);
  --forge-type-h3: clamp(1.12rem, 1.42vw, 1.34rem);
  --forge-type-display-md: clamp(1.82rem, 2.7vw, 2.42rem);
  --forge-type-display-sm: clamp(1.54rem, 2.15vw, 1.98rem);
  --forge-type-title: 1.0625rem;
  --forge-type-hero-sub: 1rem;
  --forge-type-kpi-value: 1.0625rem;
  --forge-type-kpi-meta: 0.8125rem;
  --forge-type-body-lg: 1.0625rem;
  --forge-type-body: 1rem;
  --forge-type-body-sm: 0.875rem;
  --forge-type-label: 0.75rem;
  --forge-type-caption: 0.6875rem;
  --forge-type-overline: 0.6875rem;
  --forge-leading-display: 1.05;
  --forge-leading-heading: 1.18;
  --forge-leading-relaxed: 1.55;
  --forge-leading-body: 1.7;
  --forge-leading-loose: 1.75;
  --forge-track-display: -0.045em;
  --forge-track-heading: -0.03em;
  --forge-track-tight: -0.02em;
  --forge-track-nav: 0.14em;
  --forge-track-button: 0.12em;
  --forge-track-label: 0.14em;
  --forge-radius-xs: 2px;
  --forge-radius-sm: 4px;
  --forge-radius-md: 8px;
  --forge-radius-lg: 12px;
  --forge-shadow-sm: 0 10px 24px rgba(26, 28, 30, 0.06);
  --forge-shadow-md: 0 18px 42px rgba(26, 28, 30, 0.08);
  --forge-shadow-lg: 0 28px 72px rgba(26, 28, 30, 0.10);
  --forge-ghost-border: rgba(221, 193, 174, 0.22);
  --forge-glow: 0 0 0 3px rgba(154, 70, 0, 0.14);
  --color-primary: var(--forge-primary);
  --color-primary-dark: var(--forge-accent-text);
  --color-primary-light: var(--forge-primary-soft);
  --color-bg-base: var(--forge-surface-lowest);
  --color-bg-surface: var(--forge-surface-low);
  --color-text-primary: var(--forge-on-surface);
  --color-text-secondary: var(--forge-secondary);
  --color-ink: var(--forge-on-surface);
  --color-muted: var(--forge-secondary);
  --color-border: var(--forge-ghost-border);
  --primary: var(--forge-primary);

  --bg: var(--forge-background);
  --surface: rgba(249, 249, 252, 0.88);
  --surface-strong: var(--forge-surface-lowest);
  --surface-soft: var(--forge-surface-container);
  --ink: var(--forge-on-surface);
  --muted: var(--forge-secondary);
  --teal: var(--forge-primary);
  --teal-deep: #321200;
  --teal-soft: var(--forge-primary-soft);
  --orange: var(--forge-primary-container);
  --orange-soft: var(--forge-primary-soft);
  --sand: var(--forge-surface-container);
  --border: rgba(137, 115, 98, 0.16);
  --border-strong: rgba(137, 115, 98, 0.28);
  --shadow-sm: var(--forge-shadow-sm);
  --shadow-md: var(--forge-shadow-md);
  --shadow-lg: var(--forge-shadow-lg);
  --radius-xl: var(--forge-radius-lg);
  --radius-lg: var(--forge-radius-md);
  --radius-md: 6px;
  --radius-sm: var(--forge-radius-sm);
  --max: 1380px;
  --gap: 18px;
}

.site-locale-shell:lang(zh) {
  --forge-font-headline: var(--forge-font-cjk);
  --forge-font-body: var(--forge-font-cjk);
  --forge-type-h1: clamp(1.76rem, 2.7vw, 2.5rem);
  --forge-type-h2: clamp(1.32rem, 1.9vw, 1.74rem);
  --forge-type-h3: clamp(1.08rem, 1.3vw, 1.28rem);
  --forge-type-display-md: clamp(1.68rem, 2.45vw, 2.26rem);
  --forge-type-display-sm: clamp(1.48rem, 2vw, 1.88rem);
  --forge-track-display: -0.02em;
  --forge-track-heading: -0.015em;
  --forge-track-nav: 0.08em;
  --forge-track-button: 0.08em;
  --forge-track-label: 0.08em;
}

.site-locale-shell:lang(ja) {
  --forge-type-h1: clamp(1.8rem, 2.78vw, 2.58rem);
  --forge-type-h2: clamp(1.34rem, 1.96vw, 1.8rem);
  --forge-type-h3: clamp(1.1rem, 1.36vw, 1.32rem);
  --forge-type-display-md: clamp(1.72rem, 2.54vw, 2.32rem);
  --forge-type-display-sm: clamp(1.5rem, 2.06vw, 1.92rem);
  --forge-track-display: -0.02em;
  --forge-track-heading: -0.015em;
  --forge-track-nav: 0.08em;
  --forge-track-button: 0.08em;
  --forge-track-label: 0.08em;
}

body {
  font-family: var(--forge-font-body);
  background-color: var(--forge-background);
  background-image:
    radial-gradient(#ddc1ae 0.55px, transparent 0.55px),
    radial-gradient(ellipse 62% 42% at 8% 0%, rgba(255, 139, 61, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 58% 42% at 100% 8%, rgba(0, 93, 182, 0.08) 0%, transparent 56%),
    linear-gradient(180deg, #fbfbfd 0%, #f3f3f6 100%);
  background-size: 24px 24px, auto, auto, auto;
  background-attachment: fixed;
  color: var(--forge-on-surface);
  letter-spacing: -0.005em;
}

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

input,
textarea,
select {
  font-family: var(--forge-font-body);
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-relaxed);
}

::selection {
  background: var(--forge-primary-soft);
  color: var(--forge-on-surface);
}

h1,
h2,
h3,
.hero-h1,
.hero-stage__title,
.section-title,
.card-title,
.form-title,
.product-card__name,
.product-showcase-card__title,
.product-spotlight__title,
.page-hero__copy .hero-h1,
.warehouse-hero-copy .hero-h1,
.casehub-hero-copy .hero-h1,
.res-hero-copy .hero-h1,
.abt-hero-copy .hero-h1 {
  font-family: var(--forge-font-headline);
  letter-spacing: var(--forge-track-display);
}

.section-label,
.card-label,
.hero-eyebrow,
.product-card__family,
.resource-type,
.badge,
.tag,
.filter-title,
.product-card__sku,
.product-showcase-card__sku,
.spec-key,
.detail-key,
.product-spec-key,
.catalog-count,
.nav-contact-item {
  font-family: var(--forge-font-mono);
}

.wrap,
.container,
.site-footer__inner {
  max-width: var(--forge-max, var(--max));
}

.nav-lang-select,
.catalog-search-input,
.faq-search-input {
  border-radius: var(--forge-radius-sm);
}

/* Hero surfaces */
.hero-stage__copy,
.page-hero__copy,
.warehouse-hero-copy,
.casehub-hero-copy,
.res-hero-copy,
.abt-hero-copy,
.wh3-hero-card {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 139, 61, 0.22), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(0, 93, 182, 0.16), transparent 34%),
    linear-gradient(145deg, #2f3133 0%, #1a1c1e 56%, #321200 100%);
  border: 0;
  box-shadow: var(--forge-shadow-lg);
}

.hero-stage__copy::before,
.page-hero__copy::before,
.warehouse-hero-copy::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, transparent 24%),
    radial-gradient(#ffdbc9 0.6px, transparent 0.6px);
  background-size: auto, 22px 22px;
  opacity: 0.55;
}

.page-hero__copy .hero-eyebrow,
.warehouse-hero-copy .hero-eyebrow,
.casehub-hero-copy .hero-eyebrow,
.res-hero-copy .hero-eyebrow,
.abt-hero-copy .hero-eyebrow,
.wh3-hero-card .hero-eyebrow {
  background: rgba(255, 219, 201, 0.12);
  border: 1px solid rgba(255, 219, 201, 0.20);
  border-radius: var(--forge-radius-sm);
  color: var(--forge-primary-soft);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  padding: 5px 10px;
}

.hero-stage__title em,
.page-hero__copy .hero-h1 em,
.warehouse-hero-copy .hero-h1 em,
.casehub-hero-copy .hero-h1 em,
.sol-hero-h1 em {
  color: var(--forge-primary-container);
}

.hero-stage__lead,
.page-hero__copy .hero-sub,
.warehouse-hero-copy .hero-sub,
.casehub-hero-copy .hero-sub,
.res-hero-copy .hero-sub,
.abt-hero-copy .hero-sub,
.wh3-hero-card .hero-sub {
  color: rgba(255, 255, 255, 0.70);
}

/* Cards and panels */
.glass,
.feature-card,
.resource-card,
.timeline-card,
.faq-card,
.form-card,
.metric-card,
.product-card,
.product-row,
.product-showcase-card,
.home-solution-card,
.evidence-card,
.next-step-shell,
.next-step-card,
.catalog-sidebar,
.products-sidebar-shell,
.products-buyer-ask-card,
.page-hero__panel,
.signal-card,
.slab-card,
.catalog-card,
.compare-card,
.hub-card,
.library-card,
.trust-card,
.detail-card,
.warehouse-hero-visual,
.warehouse-pain-card,
.warehouse-overview-copy,
.warehouse-overview-proof,
.warehouse-architecture-card,
.warehouse-media-card,
.warehouse-function-card,
.warehouse-use-case-card,
.warehouse-related-card,
.casehub-hero-panel,
.casehub-story-card,
.casehub-feature-card,
.casehub-insight-card,
.res-hero-panel,
.res-card,
.res-feature-panel,
.abt-hero-panel,
.abt-intro-card,
.abt-why-card,
.abt-cap-card,
.abt-industry-card,
.abt-factory-card,
.card,
.faq-item {
  background: var(--forge-surface-lowest);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
  box-shadow: var(--forge-shadow-sm);
}

.feature-card:hover,
.resource-card:hover,
.product-card:hover,
.product-row:hover,
.product-showcase-card:hover,
.home-solution-card:hover,
.warehouse-related-card:hover,
.casehub-story-card:hover,
.res-card:hover,
.card:hover {
  border-color: rgba(154, 70, 0, 0.28);
  box-shadow: var(--forge-shadow-md);
  transform: translateY(-3px);
}

.feature-card.soft,
.product-card__img,
.catalog-card__media,
.compare-card__media,
.res-card-visual,
.warehouse-media-frame--soft,
.home-proof,
.section--alt,
.band-surface {
  background: var(--forge-surface-container);
}

.feature-card.orange,
.signal-card--accent,
.res-feature-panel--soft,
.casehub-feature-card--warm,
.wh3-hardware-card--warm {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 139, 61, 0.16), transparent 32%),
    linear-gradient(145deg, #fff7ef 0%, #ffffff 100%);
  border-color: rgba(154, 70, 0, 0.18);
}

.card-title,
.product-card__name,
.product-showcase-card__title,
.products-buyer-ask-card__title,
.signal-card__title,
.warehouse-related-card strong {
  color: var(--forge-on-surface);
}

.card-body,
.product-card__sub,
.section-subtitle,
.form-sub,
.products-catalog-copy,
.signal-card__copy,
.warehouse-related-card span {
  color: var(--forge-secondary);
}

.card-label,
.section-label,
.product-card__family,
.resource-type,
.res-doc-type,
.signal-card__label,
.warehouse-layer-tag {
  color: var(--forge-accent-text);
}

/* Product catalog and specs */
.catalog-wrap,
.products-catalog-wrap {
  gap: 18px;
}

.catalog-sidebar,
.products-sidebar-shell {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.filter-section {
  border-color: var(--forge-ghost-border);
}

.filter-section summary {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  letter-spacing: 0.02em;
}

.filter-section summary:hover,
.filter-reset:hover {
  color: var(--forge-primary);
}

.filter-check-list li a {
  border-radius: var(--forge-radius-sm);
}

.filter-check-list li a:hover,
.filter-check-list li a.active {
  background: var(--forge-primary-soft);
  color: var(--forge-primary);
}

.filter-check-list li a.active::before {
  background: var(--forge-primary);
}

.filter-count {
  background: var(--forge-surface-high);
  color: var(--forge-secondary);
}

.filter-dot--teal,
.filter-dot--orange,
.filter-dot--sand {
  background: var(--forge-primary);
}

.product-card {
  overflow: hidden;
}

.product-card__img,
.product-showcase-card__media,
.product-spotlight__visual-card,
.warehouse-use-case-media,
.res-card-visual {
  border-radius: var(--forge-radius-md);
}

.product-card__img {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 139, 61, 0.20), transparent 30%),
    linear-gradient(145deg, var(--forge-surface-low) 0%, var(--forge-surface-high) 100%);
}

.product-card__img--orange {
  background:
    radial-gradient(circle at 75% 18%, rgba(154, 70, 0, 0.22), transparent 30%),
    linear-gradient(145deg, #fff7ef 0%, var(--forge-surface-high) 100%);
}

.product-card__img--sand {
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 93, 182, 0.12), transparent 32%),
    linear-gradient(145deg, var(--forge-surface-container) 0%, var(--forge-surface-high) 100%);
}

.product-card__sku,
.product-showcase-card__sku,
.product-spotlight__code,
.spec-val,
.detail-val,
.product-spec-value,
.intent-table td,
.summary-list strong {
  font-family: var(--forge-font-mono);
}

.spec-item,
.detail-item,
.product-spec-row,
.intent-table td,
.intent-table th {
  border-color: rgba(137, 115, 98, 0.14);
}

.spec-key,
.detail-key,
.product-spec-key {
  color: var(--forge-secondary);
}

.spec-val,
.detail-val,
.product-spec-value {
  color: var(--forge-on-surface);
}

.tag,
.badge,
.scenario-meta-tag,
.product-badge,
.res-card-meta span,
.sol-hw-b-chip {
  background: var(--forge-surface-high);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-sm);
  color: var(--forge-on-surface-variant);
}

.tag.orange,
.badge-mid,
.badge-high,
.type-guide,
.type-download,
.cta-tier-badge.high,
.product-badge {
  background: var(--forge-primary-soft);
  color: var(--forge-accent-text);
}

.badge-low,
.cta-tier-badge.low {
  background: var(--forge-surface-high);
  color: var(--forge-secondary);
}

/* Forms */
.form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 243, 246, 0.94) 100%);
}

.form-title {
  color: var(--forge-on-surface);
}

.form-field label {
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  letter-spacing: 0.09em;
}

.form-field input,
.form-field select,
.form-field textarea,
.site-footer__subscribe input,
.faq-search-wrap,
.catalog-search-bar,
.catalog-search-input,
.nav-lang-select {
  background: var(--forge-surface-lowest);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-sm);
  color: var(--forge-on-surface);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.site-footer__subscribe input:focus,
.catalog-search-input:focus,
.faq-search-wrap:focus-within,
.nav-lang-select:focus {
  border-color: var(--forge-primary);
  box-shadow: var(--forge-glow);
  outline: none;
}

/* Tables and dense data */
.intent-wrap,
.product-spec-shell,
.stack-panel,
.arch-box,
.warehouse-architecture-stack,
.res-doc-sheet {
  background: var(--forge-surface-low);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
}

.intent-table th {
  background: var(--forge-surface-high);
  color: var(--forge-on-surface);
  font-family: var(--forge-font-mono);
}

.intent-table tr:hover td {
  background: rgba(255, 139, 61, 0.08);
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 139, 61, 0.16), transparent 28%),
    linear-gradient(145deg, #2f3133 0%, #1a1c1e 58%, #321200 100%);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer::before {
  background:
    radial-gradient(#ddc1ae 0.55px, transparent 0.55px);
  background-size: 24px 24px;
  opacity: 0.12;
}

.site-footer__title,
.site-footer__company,
.site-footer__contact-row a {
  color: #ffffff;
}

.site-footer__subtitle,
.site-footer__contact-row p,
.site-footer__quick-links > span,
.site-footer__copyright {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__link-grid a,
.site-footer__quick-links a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__link-grid a:hover,
.site-footer__quick-links a:hover {
  color: var(--forge-primary-container);
}

.site-footer__social-card,
.site-footer__qr,
.site-footer__subscribe input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 219, 201, 0.18);
}

.site-footer__qr--wechat::after,
.site-footer__qr--linkedin::after {
  background: linear-gradient(180deg, var(--forge-primary-container) 0%, var(--forge-primary) 100%);
}

@media (max-width: 900px) {
  .nav-inner {
    height: auto;
    min-height: 68px;
    padding: 0 20px;
  }

  .hero-stage__inner,
  .page-hero__copy,
  .warehouse-hero-copy,
  .res-hero-copy,
  .abt-hero-copy {
    padding: 36px 24px;
  }

  .hero-stage__title,
  .hero-h1 {
    letter-spacing: -0.055em;
  }
}

/* ============================================================
   KHLT Forge Legacy Sanitation Pass
   Final overrides for older green/soft visual sections.
   ============================================================ */

.home-scenarios--dark,
.sol-hero-wrap,
.sol-cta-banner,
.crosslink,
.sticky-cta,
.warehouse-hero,
.casehub-hero,
.wh3-hero,
.wh3-system-core,
.wh3-architecture-image,
.wh3-mw-strip,
.wh3-proof,
.res-hero,
.abt-hero,
.casehub-similar-shell {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 139, 61, 0.22), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(0, 93, 182, 0.14), transparent 34%),
    linear-gradient(145deg, var(--forge-inverse-surface) 0%, var(--forge-on-surface) 58%, #321200 100%);
}

.home-scenarios--dark::after,
.sol-cta-banner::after,
.casehub-similar-shell::before,
.wh3-system-core::before,
.warehouse-hero-copy::before,
.casehub-hero-copy::before,
.res-hero-copy::before,
.abt-hero-copy::before,
.wh3-hero-card::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(#ffdbc9 0.6px, transparent 0.6px);
  background-size: auto, 22px 22px;
  opacity: 0.45;
}

.home-scenarios:not(.home-scenarios--dark),
.sol-strip,
.sol-spec-section,
.sol-wheel-section,
.sol-delivery-section,
.warehouse-pain-section,
.warehouse-use-case-section,
.casehub-library-section,
.casehub-feature-section,
.res-category-section,
.abt-why-section,
.abt-industries-section,
.wh3-hardware,
.wh3-contact-grid {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 139, 61, 0.08), transparent 24%),
    linear-gradient(180deg, var(--forge-background) 0%, var(--forge-surface-low) 100%);
}

.sol-hw-card,
.sol-strip-item,
.sol-gallery-card,
.sol-spec-card,
.sol-wheel-item,
.sol-diag-card,
.sol-delivery-card,
.sol-contact-support,
.img-sol-card,
.img-prod-card,
.mini-product,
.ba-col,
.faq-card,
.faq-item,
.card,
.warehouse-kpi,
.warehouse-proof-strip,
.warehouse-proof-item,
.warehouse-visual-card,
.warehouse-flow-node,
.warehouse-visual-summary,
.warehouse-pain-card,
.warehouse-overview-item,
.warehouse-proof-grid div,
.warehouse-architecture-layer,
.warehouse-media-frame,
.warehouse-function-card,
.warehouse-use-case-card,
.warehouse-related-card,
.casehub-latest-card,
.casehub-fact-card,
.casehub-track-item,
.casehub-story-card,
.casehub-stat,
.casehub-feature-card,
.casehub-insight-card,
.wh3-hero-proof__item,
.wh3-pain-card,
.wh3-side-card,
.wh3-flow-card,
.wh3-hardware-card,
.wh3-mw-card,
.wh3-proof-stat,
.wh3-proof-card,
.wh3-contact-metrics div,
.sol-hw-b-card,
.sol-feat-panel,
.sol-feat-tab,
.res-hero-panel,
.res-featured-card,
.res-mini-doc,
.res-category-item,
.res-card,
.res-doc-sheet,
.res-feature-panel,
.res-modal__dialog,
.res-modal__resource,
.abt-hero-panel,
.abt-hero-card,
.abt-mini-block,
.abt-intro-card,
.abt-why-card,
.abt-number-item,
.abt-cap-card,
.abt-industry-card,
.abt-factory-card {
  background: var(--forge-surface-lowest);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
  box-shadow: var(--forge-shadow-sm);
}

.sol-hw-card:hover,
.sol-gallery-card:hover,
.sol-spec-card:hover,
.sol-wheel-item:hover,
.img-sol-card:hover,
.img-prod-card:hover,
.warehouse-related-card:hover,
.casehub-track-item:hover,
.casehub-story-card:hover,
.res-category-item:hover,
.res-card:hover,
.sol-hw-b-card:hover,
.card:hover,
.faq-card:hover {
  border-color: rgba(154, 70, 0, 0.28);
  box-shadow: var(--forge-shadow-md);
}

.sol-hw-card.accent,
.ba-col.after,
.warehouse-flow-node--teal,
.warehouse-media-frame--teal,
.warehouse-use-case-media--teal,
.casehub-story-card--teal,
.casehub-story-card--mint,
.casehub-insight-card--mint,
.wh3-hardware-card--cool,
.sol-hw-b-media--cool,
.res-card-visual--teal,
.res-card-visual--mint,
.abt-factory-media--soft {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 139, 61, 0.14), transparent 28%),
    linear-gradient(145deg, var(--forge-surface-low) 0%, var(--forge-surface-high) 100%);
  border-color: rgba(154, 70, 0, 0.18);
}

.sol-gc-1,
.sol-gc-2,
.sol-gc-3,
.sol-gc-4,
.sol-gc-5,
.sol-gc-6,
.sol-gc-7,
.sol-gc-8,
.sol-gc-9,
.sol-gc-10,
.sol-gc-11,
.sol-gc-12,
.img-sol-card__img,
.img-prod-card__img,
.warehouse-media-frame--sand,
.warehouse-use-case-media--sand,
.casehub-story-card--orange,
.casehub-story-card--sand,
.wh3-hardware-media,
.sol-hw-b-media,
.sol-hw-b-media--blue,
.res-card-visual--sand,
.res-card-visual--warm,
.wh3-proof-card--warm,
.warehouse-flow-node--sand {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 139, 61, 0.16), transparent 26%),
    radial-gradient(circle at 12% 100%, rgba(0, 93, 182, 0.08), transparent 30%),
    linear-gradient(145deg, #fff7ef 0%, var(--forge-surface-high) 100%);
}

.casehub-story-card--orange,
.casehub-story-card--teal,
.casehub-story-card--mint,
.casehub-story-card--sand {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 139, 61, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(250,248,245,.94) 100%);
  border-color: rgba(154, 70, 0, 0.12);
}

.sol-wheel-center,
.sol-int-topo,
.warehouse-architecture-card,
.casehub-hero-panel,
.wh3-hero-card,
.res-hero-copy,
.abt-hero-copy {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 139, 61, 0.18), transparent 24%),
    linear-gradient(145deg, var(--forge-inverse-surface) 0%, var(--forge-on-surface) 100%);
  border-color: rgba(255, 219, 201, 0.16);
  color: #ffffff;
}

.sol-hero-eyebrow,
.home-scenarios--dark .section-label,
.warehouse-hero-copy .hero-eyebrow,
.casehub-hero-copy .hero-eyebrow,
.res-hero-copy .hero-eyebrow,
.abt-hero-copy .hero-eyebrow,
.wh3-hero-card .hero-eyebrow,
.wh3-system-core .card-label,
.sol-int-badge.org {
  background: rgba(255, 219, 201, 0.12);
  border-color: rgba(255, 219, 201, 0.20);
  color: var(--forge-primary-soft);
}

.sol-hero-h1 em,
.sol-cta-title em,
.casehub-hero-copy .hero-h1 em,
.casehub-similar-shell .section-title em,
.warehouse-hero-copy .hero-h1 em,
.wh3-hero-card .hero-h1 em,
.res-hero-copy .hero-h1 em,
.abt-hero-copy .hero-h1 em,
.sol-wheel-center-title,
.wh3-system-core .card-title {
  color: var(--forge-primary-container);
}

.sol-hero-sub,
.sol-cta-sub,
.crosslink-text p,
.home-scenarios--dark .section-subtitle,
.casehub-similar-shell .section-subtitle,
.wh3-system-core .card-body,
.wh3-system-core .wh3-system-summary,
.sol-wheel-center-sub {
  color: rgba(255, 255, 255, 0.66);
}

.sol-hw-label,
.sol-gallery-card-tag,
.sol-feat-detail-label,
.img-sol-card__label,
.img-prod-card__category,
.warehouse-layer-tag,
.casehub-story-tag,
.casehub-story-status,
.res-doc-type,
.abt-mini-block span {
  color: var(--forge-accent-text);
  font-family: var(--forge-font-mono);
}

.sol-hero-visual .sol-hw-label,
.warehouse-architecture-card .warehouse-layer-tag {
  color: var(--forge-primary-soft);
}

.sol-hw-name,
.sol-strip-label,
.sol-gallery-card-name,
.sol-spec-card-title,
.sol-wheel-item-label,
.sol-stat-label,
.sol-diag-text,
.sol-delivery-card .card-title,
.img-sol-card__title,
.img-prod-card__name,
.mini-product strong,
.ba-label,
.warehouse-kpi strong,
.warehouse-proof-item strong,
.warehouse-flow-node strong,
.warehouse-visual-summary strong,
.warehouse-overview-item strong,
.warehouse-proof-grid strong,
.warehouse-layer-body strong,
.warehouse-related-card strong,
.casehub-latest-card .card-title,
.casehub-fact-card strong,
.casehub-track-item strong,
.casehub-story-title,
.casehub-story-specs strong,
.casehub-stat strong,
.wh3-hero-proof__item strong,
.wh3-pain-num,
.wh3-side-copy strong,
.wh3-flow-step,
.wh3-hardware-specs strong,
.wh3-bundle-copy strong,
.sol-hw-b-name,
.sol-feat-tab-label,
.sol-feat-detail h3,
.wh3-proof-stat strong,
.wh3-proof-card strong,
.res-mini-doc strong,
.res-category-item strong,
.res-doc-sheet strong,
.abt-hero-proof strong,
.abt-mini-block strong,
.abt-number-item strong {
  color: var(--forge-on-surface);
}

.sol-hw-spec,
.sol-strip-desc,
.sol-spec-card-body,
.sol-wheel-item-desc,
.sol-stat-desc,
.img-sol-card__row-key,
.img-sol-card__metric-label,
.img-prod-card__model,
.img-prod-card__spec-key,
.mini-product span,
.warehouse-kpi span,
.warehouse-proof-item span,
.warehouse-flow-node span,
.warehouse-visual-summary p,
.warehouse-overview-item span,
.warehouse-proof-grid span,
.warehouse-layer-body p,
.warehouse-related-card span,
.casehub-latest-card .card-body,
.casehub-fact-card small,
.casehub-track-item span,
.casehub-story-copy,
.casehub-story-specs span,
.casehub-stat small,
.wh3-hero-proof__item span,
.wh3-side-copy span,
.wh3-side-copy small,
.wh3-architecture-caption span,
.wh3-hardware-specs span,
.wh3-proof-stat span,
.res-mini-doc small,
.res-category-item span,
.res-doc-sheet small,
.abt-hero-proof span,
.abt-number-item span,
.abt-factory-copy,
.sol-feat-detail-body {
  color: var(--forge-secondary);
}

.sol-hw-dot,
.warehouse-flow-arrow,
.warehouse-flow-arrow::after,
.casehub-latest-line,
.casehub-track-icon,
.wh3-side-icon,
.wh3-pain-card::before,
.wh3-flow-step,
.wh3-hardware-bundle,
.sol-feat-dot.active,
.sol-feat-illus-dot,
.res-category-icon,
.abt-why-icon {
  background: var(--forge-primary-container);
  color: var(--forge-on-primary);
}

.sol-stat-num,
.sol-stat-unit,
.img-sol-card__metric,
.ba-col.after .ba-label,
.sol-feat-tab.active .sol-feat-tab-label,
.res-category-item.active strong,
.faq-question-btn.open,
.faq-question-btn:hover,
.faq-chevron,
.faq-permalink-btn:hover,
.card h3 {
  color: var(--forge-primary);
}

.sol-spec-list li::before,
.sol-diag-check,
.ba-col.after .ba-item::before,
.wh3-core-list li::before,
.wh3-check-list li::before {
  color: var(--forge-primary-container);
}

.sol-int-badge.hl,
.casehub-track-item.active,
.res-category-item.active,
.sol-feat-tab.active {
  background: var(--forge-primary-soft);
  border-color: rgba(154, 70, 0, 0.28);
  color: var(--forge-primary);
}

.sol-tab-bar,
.home-scenarios:not(.home-scenarios--dark) .sol-tab-bar {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 219, 201, 0.16);
  border-radius: var(--forge-radius-lg);
}

.home-scenarios:not(.home-scenarios--dark) .sol-tab-bar {
  background: var(--forge-surface-lowest);
}

.sol-tab,
.home-scenarios:not(.home-scenarios--dark) .sol-tab {
  color: rgba(255, 255, 255, 0.64);
  border-radius: var(--forge-radius-sm);
}

.home-scenarios:not(.home-scenarios--dark) .sol-tab {
  color: var(--forge-secondary);
}

.sol-tab:hover,
.sol-tab--active,
.home-scenarios:not(.home-scenarios--dark) .sol-tab:hover,
.home-scenarios:not(.home-scenarios--dark) .sol-tab--active {
  background: var(--forge-primary-soft);
  color: var(--forge-primary);
}

.sol-panel,
.home-scenarios:not(.home-scenarios--dark) .sol-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 139, 61, 0.10), transparent 30%),
    var(--forge-surface-lowest);
  border-color: var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
  box-shadow: var(--forge-shadow-md);
}

.sol-panel__img-card,
.home-scenarios:not(.home-scenarios--dark) .sol-panel__img-card {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 139, 61, 0.12), transparent 34%),
    linear-gradient(145deg, var(--forge-surface-low) 0%, var(--forge-surface-high) 100%);
  border-color: var(--forge-ghost-border);
}

.sol-metric-chip,
.home-scenarios:not(.home-scenarios--dark) .sol-metric-chip,
.sol-panel__signal,
.home-scenarios:not(.home-scenarios--dark) .sol-panel__signal,
.warehouse-link-chip,
.res-doc-meta span,
.res-card-meta span,
.sol-hw-b-chip {
  background: var(--forge-surface-high);
  border: 1px solid var(--forge-ghost-border);
  color: var(--forge-on-surface-variant);
}

.sol-metric-chip__val,
.home-scenarios:not(.home-scenarios--dark) .sol-metric-chip__val,
.img-prod-card__spec-val {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-mono);
}

.sol-panel__signal::before {
  color: var(--forge-primary-container);
}

.sticky-cta {
  border-top: 1px solid rgba(255, 219, 201, 0.18);
  box-shadow: 0 -18px 54px rgba(26, 28, 30, 0.24);
}

.sticky-cta .button-soft,
.crosslink .button-soft,
.casehub-hero-copy .button-soft,
.casehub-similar-shell .button-soft,
.wh3-hero-card .button-soft,
.res-hero-copy .button-soft,
.abt-hero-copy .button-soft {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 219, 201, 0.20);
  color: #ffffff;
}

.sticky-cta .button-soft:hover,
.crosslink .button-soft:hover,
.casehub-hero-copy .button-soft:hover,
.casehub-similar-shell .button-soft:hover,
.wh3-hero-card .button-soft:hover,
.res-hero-copy .button-soft:hover,
.abt-hero-copy .button-soft:hover {
  background: rgba(255, 139, 61, 0.18);
  border-color: rgba(255, 219, 201, 0.38);
  color: var(--forge-primary-soft);
}

.faq-question-btn {
  color: var(--forge-on-surface);
}

.faq-question-btn:hover,
.faq-question-btn.open,
.faq-search-wrap:focus-within,
.faq-permalink-btn:hover {
  border-color: rgba(154, 70, 0, 0.28);
  box-shadow: var(--forge-glow);
}

.res-modal__backdrop {
  background: rgba(26, 28, 30, 0.56);
  backdrop-filter: blur(8px);
}

.res-modal__close {
  background: var(--forge-surface-high);
  color: var(--forge-on-surface);
}

.res-modal__close:hover {
  background: var(--forge-primary-soft);
  color: var(--forge-primary);
}

@media (max-width: 900px) {
  .sol-tab-bar,
  .home-scenarios:not(.home-scenarios--dark) .sol-tab-bar {
    border-radius: var(--forge-radius-md);
  }

  .sticky-cta {
    background:
      linear-gradient(145deg, var(--forge-inverse-surface) 0%, var(--forge-on-surface) 100%);
  }
}

/* ============================================================
   Homepage V2
   Purpose: rebuild homepage presentation without changing
   routing, API, SEO, form, or multilingual logic.
   ============================================================ */

.home-v2 {
  position: relative;
  overflow: clip;
}

.home-v2-hero-section {
  padding-top: 36px;
}

.home-v2-hero,
.home-v2-product-shell,
.home-v2-solution-shell,
.home-v2-contact-shell {
  display: grid;
  gap: 18px;
}

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

.home-v2-hero__copy,
.home-v2-board,
.home-v2-product-spotlight,
.home-v2-product-card,
.home-v2-proof-panel,
.home-v2-case-card,
.home-v2-resource-card,
.home-v2-faq-card,
.home-v2-next-shell,
.home-v2-next-card,
.home-v2-contact-panel {
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
  box-shadow: var(--forge-shadow-sm);
}

.home-v2-hero__copy {
  min-height: 560px;
  padding: 0;
  overflow: hidden;
}

.home-v2-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 48px 44px;
}

.home-v2-hero__title {
  max-width: 11ch;
}

.home-v2-hero__lead {
  max-width: 58ch;
}

.home-v2-board {
  min-height: 560px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 139, 61, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 243, 246, 0.96) 100%);
}

.home-v2-mini-label,
.home-v2-stat span,
.home-v2-spec span,
.home-v2-panel__row span,
.home-v2-resource-item span,
.home-v2-resource-item em,
.home-v2-next-meta span,
.home-v2-contact-point span {
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-v2-board__top,
.home-v2-next-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.home-v2-board__title,
.home-v2-side-title {
  margin-top: 10px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.home-v2-board__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.home-v2-stat,
.home-v2-proof-item,
.home-v2-panel,
.home-v2-spec,
.home-v2-resource-item,
.home-v2-contact-point {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-md);
}

.home-v2-stat {
  padding: 14px 16px;
}

.home-v2-stat strong,
.home-v2-proof-item strong,
.home-v2-spec strong,
.home-v2-panel__row strong,
.home-v2-resource-item strong,
.home-v2-next-meta strong,
.home-v2-contact-point strong {
  display: block;
  margin-top: 6px;
  color: var(--forge-on-surface);
}

.home-v2-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-v2-panel {
  padding: 16px;
}

.home-v2-panel__list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.home-v2-panel__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-v2-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-v2-proof-item {
  padding: 16px 18px;
}

.home-v2-proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--forge-secondary);
  line-height: 1.5;
}

.home-v2-trust-section {
  padding-top: 0;
}

.home-v2-trust-shell {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
}

.home-v2-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.home-v2-trust-item {
  padding: 10px 14px;
  background: var(--forge-surface-lowest);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-sm);
  color: var(--forge-on-surface-variant);
  font-family: var(--forge-font-headline);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.home-v2-section-head,
.home-v2-section-actions {
  position: relative;
}

.home-v2-product-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.home-v2-product-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: var(--forge-surface-lowest);
}

.home-v2-product-spotlight__media,
.home-v2-product-card__media,
.home-v2-solution-card__media {
  position: relative;
  overflow: hidden;
}

.home-v2-product-spotlight__media {
  min-height: 420px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 139, 61, 0.18), transparent 30%),
    linear-gradient(145deg, var(--forge-surface-low) 0%, var(--forge-surface-high) 100%);
}

.home-v2-product-spotlight__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-sm);
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-v2-product-spotlight__image {
  position: absolute;
  inset: 24px;
}

.home-v2-product-spotlight__content,
.home-v2-product-card__body,
.home-v2-solution-card__body,
.home-v2-proof-panel,
.home-v2-case-card,
.home-v2-resource-card,
.home-v2-faq-card,
.home-v2-next-card,
.home-v2-contact-panel {
  padding: 24px;
}

.home-v2-product-spotlight__title {
  margin-top: 8px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.1;
}

.home-v2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.home-v2-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.home-v2-spec {
  padding: 14px 16px;
}

.home-v2-spotlight__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.home-v2-product-stack {
  display: grid;
  gap: 12px;
}

.home-v2-product-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  background: var(--forge-surface-lowest);
}

.home-v2-product-card__media {
  min-height: 180px;
  background:
    radial-gradient(circle at 75% 18%, rgba(0, 93, 182, 0.08), transparent 30%),
    linear-gradient(145deg, var(--forge-surface-low) 0%, var(--forge-surface-high) 100%);
}

.home-v2-product-card__body p,
.home-v2-solution-card__body p,
.home-v2-proof-card p,
.home-v2-side-copy,
.home-v2-next-card p {
  color: var(--forge-secondary);
}

.home-v2-solution-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: start;
}

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

.home-v2-solution-card {
  overflow: hidden;
  background: var(--forge-surface-lowest);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-lg);
  box-shadow: var(--forge-shadow-sm);
}

.home-v2-solution-card__media {
  min-height: 220px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 139, 61, 0.12), transparent 32%),
    linear-gradient(145deg, var(--forge-surface-low) 0%, var(--forge-surface-high) 100%);
}

.home-v2-solution-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v2-proof-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.home-v2-proof-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-md);
}

.home-v2-evidence-grid,
.home-v2-next-grid {
  display: grid;
  gap: 12px;
}

.home-v2-evidence-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
}

.home-v2-case-card,
.home-v2-resource-card,
.home-v2-faq-card,
.home-v2-next-shell {
  background: var(--forge-surface-lowest);
}

.home-v2-case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.home-v2-case-stats div {
  padding: 14px;
  background: var(--forge-surface-low);
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-md);
}

.home-v2-case-stats strong {
  display: block;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.35rem;
}

.home-v2-case-stats span {
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v2-resource-list,
.home-v2-faq-list,
.home-v2-contact-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.home-v2-resource-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
}

.home-v2-resource-item em {
  font-style: normal;
  color: var(--forge-accent-text);
}

.home-v2-faq-item {
  border: 1px solid var(--forge-ghost-border);
  border-radius: var(--forge-radius-md);
  background: var(--forge-surface-low);
}

.home-v2-faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 0.98rem;
  list-style: none;
}

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

.home-v2-faq-item p {
  padding: 0 18px 18px;
  color: var(--forge-secondary);
}

.home-v2-next-shell {
  padding: 28px;
}

.home-v2-next-note {
  min-width: 280px;
  max-width: 320px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 139, 61, 0.16), transparent 34%),
    linear-gradient(145deg, #fff7ef 0%, #ffffff 100%);
  border: 1px solid rgba(154, 70, 0, 0.18);
  border-radius: var(--forge-radius-md);
}

.home-v2-next-note span {
  display: block;
  color: var(--forge-accent-text);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-v2-next-note strong,
.home-v2-next-note small {
  display: block;
  margin-top: 8px;
}

.home-v2-next-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.home-v2-next-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-v2-next-card--primary {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 139, 61, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 243, 246, 0.98) 100%);
}

.home-v2-next-meta {
  display: grid;
  gap: 10px;
}

.home-v2-contact-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.home-v2-contact-panel {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 139, 61, 0.22), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(0, 93, 182, 0.16), transparent 34%),
    linear-gradient(145deg, #2f3133 0%, #1a1c1e 56%, #321200 100%);
}

.home-v2-contact-panel .section-label,
.home-v2-contact-panel .section-title,
.home-v2-contact-panel .section-subtitle,
.home-v2-contact-panel strong,
.home-v2-contact-panel span {
  color: #ffffff;
}

.home-v2-contact-panel .section-subtitle,
.home-v2-contact-panel span {
  opacity: 0.78;
}

.home-v2-contact-form .form-card {
  min-height: 100%;
}

@media (max-width: 1180px) {
  .home-v2-hero,
  .home-v2-product-shell,
  .home-v2-solution-shell,
  .home-v2-contact-shell,
  .home-v2-evidence-grid,
  .home-v2-next-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-board__grid,
  .home-v2-proof-grid,
  .home-v2-spec-grid,
  .home-v2-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2-product-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-v2-hero-section {
    padding-top: 18px;
  }

  .home-v2-hero__inner,
  .home-v2-board,
  .home-v2-next-shell {
    padding: 24px 20px;
  }

  .home-v2-board__top,
  .home-v2-next-head,
  .home-v2-resource-item {
    flex-direction: column;
  }

  .home-v2-board__stats,
  .home-v2-board__grid,
  .home-v2-proof-grid,
  .home-v2-spec-grid,
  .home-v2-solution-grid,
  .home-v2-case-stats,
  .home-v2-next-grid,
  .home-v2-product-stack {
    grid-template-columns: 1fr;
  }

  .home-v2-product-spotlight,
  .home-v2-product-card {
    grid-template-columns: 1fr;
  }

  .home-v2-product-spotlight__media,
  .home-v2-product-card__media,
  .home-v2-solution-card__media {
    min-height: 220px;
  }

  .home-v2-next-note {
    min-width: 0;
    max-width: none;
  }
}

.home-v2--proto {
  background: var(--forge-background);
  color: var(--forge-on-surface);
}

.home-v2--proto .proto-home__container {
  max-width: 1380px;
}

.home-v2--proto .proto-home__hero {
  position: relative;
  overflow: hidden;
  min-height: 870px;
  padding: 74px 0 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(255, 184, 140, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f6f4 0%, #efeeeb 100%);
}

.home-v2--proto .proto-home__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.52) 32%, transparent 56%),
    linear-gradient(145deg, transparent 0%, rgba(255, 255, 255, 0.24) 38%, transparent 60%);
  pointer-events: none;
}

.home-v2--proto .proto-home__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 56px;
  align-items: center;
}

.home-v2--proto .proto-home__hero-copy {
  max-width: 580px;
}

.home-v2--proto .proto-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(137, 115, 98, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--forge-on-surface-variant);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forge-primary);
  box-shadow: 0 0 0 6px rgba(154, 70, 0, 0.12);
}

.home-v2--proto .proto-home__hero-title {
  margin: 22px 0 0;
  color: #17191c;
  font-family: var(--forge-font-headline);
  font-size: clamp(2.55rem, 4.4vw, 4.25rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.home-v2--proto .proto-home__hero-title span {
  color: var(--forge-primary);
}

.home-v2--proto .proto-home__hero-subtitle {
  max-width: 500px;
  margin: 22px 0 0;
  color: #5e6166;
  font-size: 1rem;
  line-height: 1.74;
}

.home-v2--proto .proto-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-v2--proto .proto-home__hero-button,
.home-v2--proto .proto-home__hero-button-soft {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.home-v2--proto .proto-home__hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 0;
}

.home-v2--proto .proto-home__hero-art {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 18%, rgba(17, 24, 39, 0.12), transparent 28%),
    linear-gradient(155deg, #1e2833 0%, #263a4a 35%, #0d141a 100%);
  box-shadow: 0 28px 72px rgba(22, 26, 32, 0.18);
  overflow: hidden;
}

.home-v2--proto .proto-home__hero-art-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(140deg, transparent 0%, rgba(255, 255, 255, 0.08) 26%, transparent 46%);
}

.home-v2--proto .proto-home__hero-image-wrap {
  position: absolute;
  inset: 26px;
}

.home-v2--proto .proto-home__hero-spec {
  position: absolute;
  left: -48px;
  bottom: -18px;
  width: min(248px, 70%);
  padding: 18px 18px 16px;
  border: 1px solid rgba(221, 193, 174, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 38px rgba(22, 26, 32, 0.12);
}

.home-v2--proto .proto-home__hero-spec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home-v2--proto .proto-home__hero-spec-head span,
.home-v2--proto .proto-home__hero-spec-row span {
  color: #7b7f86;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__hero-spec-head strong {
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__hero-spec-list {
  display: grid;
  gap: 12px;
}

.home-v2--proto .proto-home__hero-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(221, 193, 174, 0.2);
}

.home-v2--proto .proto-home__hero-spec-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-v2--proto .proto-home__hero-spec-row strong {
  color: #17191c;
  font-size: 0.84rem;
  font-weight: 700;
}

.home-v2--proto .proto-home__proof-strip {
  border-top: 1px solid rgba(221, 193, 174, 0.28);
  border-bottom: 1px solid rgba(221, 193, 174, 0.28);
  background: #f5f3f0;
}

.home-v2--proto .proto-home__proof-label {
  margin: 0;
  padding-top: 28px;
  color: #84878d;
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 46px;
  padding: 26px 0 30px;
}

.home-v2--proto .proto-home__proof-logos span {
  color: rgba(26, 28, 30, 0.52);
  font-family: var(--forge-font-headline);
  font-size: clamp(1rem, 2vw, 1.34rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.home-v2--proto .proto-home__section-head,
.home-v2--proto .proto-home__solutions-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 36px;
}

.home-v2--proto .proto-home__solutions-head {
  display: block;
  max-width: 740px;
}

.home-v2--proto .proto-home__section-title {
  margin: 0;
  color: #16181a;
  font-family: var(--forge-font-headline);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.home-v2--proto .proto-home__section-subtitle {
  max-width: 720px;
  margin: 12px 0 0;
  color: #6c7077;
  font-size: 1rem;
  line-height: 1.75;
}

.home-v2--proto .proto-home__section-link {
  white-space: nowrap;
}

.home-v2--proto .proto-home__product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-v2--proto .proto-home__product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(221, 193, 174, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, #f4f3f1 0%, #efefed 100%);
  box-shadow: 0 16px 32px rgba(23, 26, 31, 0.05);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.home-v2--proto .proto-home__product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(23, 26, 31, 0.08);
  background: linear-gradient(180deg, #f7f5f2 0%, #f1f0ee 100%);
}

.home-v2--proto .proto-home__product-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.home-v2--proto .proto-home__product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-v2--proto .proto-home__product-copy h3,
.home-v2--proto .proto-home__library-card h3,
.home-v2--proto .proto-home__evidence-card h3 {
  margin: 0;
  color: #16181a;
  font-family: var(--forge-font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.home-v2--proto .proto-home__product-copy p,
.home-v2--proto .proto-home__library-card p,
.home-v2--proto .proto-home__evidence-card p {
  margin: 8px 0 0;
  color: #676b72;
  font-size: 0.82rem;
  line-height: 1.56;
}

.home-v2--proto .proto-home__product-media {
  position: relative;
  min-height: 112px;
  margin-top: auto;
  filter: none;
}

.home-v2--proto .proto-home__product-card:hover .proto-home__product-media {
  filter: none;
}

.home-v2--proto .proto-home__product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.home-v2--proto .proto-home__product-model {
  color: #7a7e84;
  font-family: var(--forge-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__product-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-v2--proto .proto-home__solutions-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-v2--proto .proto-home__solutions-button {
  min-width: 220px;
}

.home-v2--proto .proto-home__solution-card {
  position: relative;
  min-height: 432px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 20px 46px rgba(16, 23, 30, 0.12);
}

.home-v2--proto .proto-home__solution-media {
  position: absolute;
  inset: 0;
}

.home-v2--proto .proto-home__solution-media img {
  transition: transform 0.6s ease;
}

.home-v2--proto .proto-home__solution-card:hover .proto-home__solution-media img {
  transform: scale(1.06);
}

.home-v2--proto .proto-home__solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 14, 0.06) 0%, rgba(6, 10, 14, 0.42) 48%, rgba(6, 10, 14, 0.92) 100%);
}

.home-v2--proto .proto-home__solution-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px 24px 26px;
  color: #ffffff;
}

.home-v2--proto .proto-home__solution-eyebrow,
.home-v2--proto .proto-home__evidence-card span {
  display: inline-block;
  color: #ffb68c;
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__library-card span {
  display: inline-block;
  color: var(--forge-accent-text);
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__solution-title {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-v2--proto .proto-home__solution-summary {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (hover: hover) {
  .home-v2--proto .proto-home__solution-summary {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      max-height 0.24s ease;
  }

  .home-v2--proto .proto-home__solution-card:hover .proto-home__solution-summary,
  .home-v2--proto .proto-home__solution-card:focus-visible .proto-home__solution-summary {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
  }
}

.home-v2--proto .proto-home__evidence {
  padding: 84px 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(255, 139, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #101722 0%, #0b1220 100%);
  color: #ffffff;
}

.home-v2--proto .proto-home__evidence-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
}

.home-v2--proto .proto-home__evidence .proto-home__section-title,
.home-v2--proto .proto-home__evidence .proto-home__section-subtitle {
  color: #ffffff;
}

.home-v2--proto .proto-home__evidence .proto-home__section-subtitle {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.64);
}

.home-v2--proto .proto-home__evidence-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

.home-v2--proto .proto-home__evidence-stats strong {
  display: block;
  color: #ff8b3d;
  font-family: var(--forge-font-headline);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.home-v2--proto .proto-home__evidence-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__evidence-button {
  margin-top: 28px;
}

.home-v2--proto .proto-home__evidence-cards {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 10px 14px 0;
  scroll-padding-left: 0;
  scroll-snap-type: x proximity;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 139, 61, 0.62) rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
}

.home-v2--proto .proto-home__evidence-cards:active {
  cursor: grabbing;
}

.home-v2--proto .proto-home__evidence-cards:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 139, 61, 0.28);
  border-radius: 14px;
}

.home-v2--proto .proto-home__evidence-cards::-webkit-scrollbar {
  height: 10px;
}

.home-v2--proto .proto-home__evidence-cards::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.home-v2--proto .proto-home__evidence-cards::-webkit-scrollbar-thumb {
  border: 2px solid rgba(11, 18, 32, 0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 182, 140, 0.94) 0%, rgba(255, 139, 61, 0.78) 100%);
}

.home-v2--proto .proto-home__evidence-cards::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 194, 158, 0.98) 0%, rgba(255, 139, 61, 0.9) 100%);
}

.home-v2--proto .proto-home__evidence-card {
  flex: 0 0 min(340px, 82vw);
  min-height: 320px;
  scroll-snap-align: start;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
}

.home-v2--proto .proto-home__evidence-card h3 {
  margin-top: 14px;
  color: #ffffff;
}

.home-v2--proto .proto-home__evidence-card p {
  color: rgba(255, 255, 255, 0.66);
}

.home-v2--proto .proto-home__evidence-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.home-v2--proto .proto-home__evidence-points li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.6;
}

.home-v2--proto .proto-home__evidence-points li::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8b3d;
}

.home-v2--proto .proto-home__evidence-card strong {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__library-head,
.home-v2--proto .proto-home__faq-head {
  margin-bottom: 28px;
  text-align: center;
}

.home-v2--proto .proto-home__library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-v2--proto .proto-home__library-card {
  display: block;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(221, 193, 174, 0.18);
  border-bottom: 3px solid transparent;
  border-radius: 16px;
  background: #f8f7f5;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.home-v2--proto .proto-home__library-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--forge-primary);
  box-shadow: 0 18px 34px rgba(23, 26, 31, 0.08);
}

.home-v2--proto .proto-home__faq {
  background: #f1efec;
}

.home-v2--proto .proto-home__faq-wrap {
  max-width: 840px;
}

.home-v2--proto .proto-home__faq-list {
  display: grid;
  gap: 14px;
}

.home-v2--proto .proto-home__faq-item {
  border: 1px solid rgba(221, 193, 174, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.home-v2--proto .proto-home__faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.home-v2--proto .proto-home__faq-item summary::-webkit-details-marker {
  display: none;
}

.home-v2--proto .proto-home__faq-item summary span:first-child {
  color: #17191c;
  font-weight: 600;
}

.home-v2--proto .proto-home__faq-plus {
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: 1.24rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.home-v2--proto .proto-home__faq-item[open] .proto-home__faq-plus {
  transform: rotate(45deg);
}

.home-v2--proto .proto-home__faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #686c74;
  line-height: 1.78;
}

.home-v2--proto .proto-home__faq-link {
  margin-top: 28px;
  text-align: center;
}

.home-v2--proto .proto-home__final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #a14a06 0%, #8d3f03 100%);
  color: #ffffff;
}

.home-v2--proto .proto-home__final-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%, 100% 100%;
  opacity: 0.22;
  pointer-events: none;
}

.home-v2--proto .proto-home__final-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 128px;
  text-align: center;
}

.home-v2--proto .proto-home__final-wrap h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: clamp(2.15rem, 3.4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__final-wrap p {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.74;
}

.home-v2--proto .proto-home__final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.home-v2--proto .proto-home__final-primary,
.home-v2--proto .proto-home__final-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  font-family: var(--forge-font-headline);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.home-v2--proto .proto-home__final-primary {
  background: #ffffff;
  color: var(--forge-primary);
  box-shadow: 0 18px 32px rgba(23, 26, 31, 0.16);
}

.home-v2--proto .proto-home__final-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 182, 140, 0.94);
  color: #512300;
}

.home-v2--proto .proto-home__final-primary:hover,
.home-v2--proto .proto-home__final-secondary:hover {
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .home-v2--proto .proto-home__product-grid,
  .home-v2--proto .proto-home__library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2--proto .proto-home__solution-grid {
    grid-template-columns: 1fr;
  }

  .home-v2--proto .proto-home__evidence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .home-v2--proto .proto-home__hero {
    min-height: 0;
    padding-top: 48px;
  }

  .home-v2--proto .proto-home__hero-grid,
  .home-v2--proto .proto-home__section-head {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .home-v2--proto .proto-home__section-head {
    gap: 12px;
  }

  .home-v2--proto .proto-home__hero-media {
    min-height: auto;
  }

  .home-v2--proto .proto-home__hero-art {
    width: 100%;
    min-height: 420px;
  }

  .home-v2--proto .proto-home__hero-spec {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .home-v2--proto .proto-home__proof-logos {
    gap: 18px 26px;
  }
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__container,
  .home-v2--proto .proto-home__faq-wrap,
  .home-v2--proto .proto-home__final-wrap {
    padding-inline: 20px;
  }

  .home-v2--proto .proto-home__product-grid,
  .home-v2--proto .proto-home__library-grid {
    grid-template-columns: 1fr;
  }

  .home-v2--proto .proto-home__hero-title {
    font-size: clamp(2.05rem, 9.8vw, 3rem);
  }

  .home-v2--proto .proto-home__hero-art {
    min-height: 320px;
  }

  .home-v2--proto .proto-home__hero-image-wrap {
    inset: 20px;
  }

  .home-v2--proto .proto-home__solution-card {
    min-height: 420px;
  }

  .home-v2--proto .proto-home__solution-summary {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .home-v2--proto .proto-home__evidence-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .home-v2--proto .proto-home__final-wrap {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-v2--proto .proto-home__final-actions {
    width: 100%;
  }

  .home-v2--proto .proto-home__final-primary,
  .home-v2--proto .proto-home__final-secondary {
    width: 100%;
  }
}

.home-v2--proto .proto-home__hero-grid {
  grid-template-columns: minmax(0, 5.2fr) minmax(0, 6.8fr);
  gap: 52px;
}

.home-v2--proto .proto-home__hero-copy {
  max-width: 560px;
}

.home-v2--proto .proto-home__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(154, 70, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 139, 61, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.home-v2--proto .proto-home__eyebrow-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(154, 70, 0, 0.08);
}

.home-v2--proto .proto-home__eyebrow-segment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-v2--proto .proto-home__eyebrow-separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.45;
}

.home-v2--proto .proto-home__hero-title {
  letter-spacing: -0.07em;
}

.home-v2--proto .proto-home__hero-subtitle {
  max-width: 520px;
  font-size: 0.98rem;
}

.home-v2--proto .proto-home__hero-button,
.home-v2--proto .proto-home__hero-button-soft,
.home-v2--proto .proto-home__evidence-button,
.home-v2--proto .proto-home__final-primary,
.home-v2--proto .proto-home__final-secondary {
  min-height: 48px;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__hero-art {
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(160deg, #16202a 0%, #0f1722 100%);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.home-v2--proto .proto-home__hero-image-wrap--scene {
  inset: 18px 18px 38px;
}

.home-v2--proto .proto-home__hero-image-wrap--scene img {
  filter: saturate(0.97) contrast(1.02) brightness(1);
}

.home-v2--proto .proto-home__hero-scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0.02) 0%, rgba(10, 16, 24, 0.08) 54%, rgba(10, 16, 24, 0.36) 100%);
  pointer-events: none;
}

.home-v2--proto .proto-home__hero-scene-tags {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-v2--proto .proto-home__hero-scene-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 20, 26, 0.58);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-v2--proto .proto-home__hero-spec {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.home-v2--proto .proto-home__hero-spec--scene {
  left: -28px;
  bottom: -22px;
  width: min(286px, 72%);
  backdrop-filter: blur(12px);
}

.home-v2--proto .proto-home__hero-spec-head--scene {
  position: relative;
  min-height: 18px;
}

.home-v2--proto .proto-home__hero-spec-head--scene span,
.home-v2--proto .proto-home__hero-spec-head--scene strong {
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.home-v2--proto .proto-home__hero-spec-head--scene::before,
.home-v2--proto .proto-home__hero-spec-head--scene::after {
  position: absolute;
  top: 0;
  line-height: 1.2;
}

.home-v2--proto .proto-home__hero-spec-head--scene::before {
  left: 0;
  content: attr(data-label);
  color: #7b7f86;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__hero-spec-head--scene::after {
  right: 0;
  content: attr(data-status);
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__product-card,
.home-v2--proto .proto-home__library-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.home-v2--proto .proto-home__product-card {
  gap: 12px;
  padding: 18px;
}

.home-v2--proto .proto-home__product-card:hover,
.home-v2--proto .proto-home__library-card:hover {
  transform: translateY(-4px);
  border-color: var(--forge-primary);
  background: #fff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.home-v2--proto .proto-home__product-badge {
  border-radius: 4px;
  background: rgba(255, 139, 61, 0.1);
}

.home-v2--proto .proto-home__product-copy p,
.home-v2--proto .proto-home__library-card p {
  color: #64707d;
}

.home-v2--proto .proto-home__product-model {
  color: #64707d;
  letter-spacing: 0.12em;
}

.home-v2--proto .proto-home__solution-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.home-v2--proto .proto-home__solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 139, 61, 0.28);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.18);
}

.home-v2--proto .proto-home__evidence-button {
  margin-top: 30px;
}

.home-v2--proto .proto-home__evidence-card {
  border-radius: 8px;
}

.home-v2--proto .proto-home__final-primary {
  background: #fff;
  color: var(--forge-primary);
}

.home-v2--proto .proto-home__final-primary:hover {
  background: rgba(255, 255, 255, 0.94);
}

.home-v2--proto .proto-home__final-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 194, 158, 0.96);
  color: #5c2900;
}

.home-v2--proto .proto-home__final-secondary:hover {
  background: rgba(255, 205, 177, 0.98);
}

@media (max-width: 900px) {
  .site-header {
    --site-header-height: 72px;
  }

  .site-header--compact {
    --site-header-height: 60px;
  }

  .nav-inner {
    padding: 0 20px;
    gap: 12px;
  }

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

  .home-v2--proto .proto-home__hero-grid,
  .home-v2--proto .proto-home__section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-v2--proto .proto-home__hero-image-wrap--scene {
    inset: 16px 16px 28px;
  }
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__hero-scene-tags {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .home-v2--proto .proto-home__hero-scene-tag {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.6rem;
  }
}

.home-v2--proto .proto-home__hero {
  min-height: 840px;
  padding: 76px 0 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at 80% 16%, rgba(255, 139, 61, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f6f3 0%, #efede9 100%);
}

.home-v2--proto .proto-home__hero::before {
  background:
    linear-gradient(rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.52) 32%, transparent 56%);
  background-size:
    120px 120px,
    120px 120px,
    auto;
  opacity: 0.65;
}

.home-v2--proto .proto-home__hero-grid {
  grid-template-columns: minmax(0, 5.2fr) minmax(0, 6.8fr);
  gap: clamp(36px, 4vw, 68px);
  align-items: center;
}

.home-v2--proto .proto-home__hero-copy {
  max-width: 560px;
}

.home-v2--proto .proto-home__eyebrow {
  border-color: rgba(137, 115, 98, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: #5a6169;
  backdrop-filter: blur(10px);
}

.home-v2--proto .proto-home__eyebrow-dot {
  background: var(--forge-primary);
  box-shadow: 0 0 0 6px rgba(255, 139, 61, 0.12);
}

.home-v2--proto .proto-home__hero-title {
  margin-top: 24px;
  color: #17191c;
  max-width: 10.6ch;
  font-size: clamp(2.5rem, 4.1vw, 4.05rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.home-v2--proto .proto-home__hero-title span {
  color: var(--forge-primary);
}

.home-v2--proto .proto-home__hero-subtitle {
  max-width: 50ch;
  margin-top: 20px;
  color: #5e6166;
  font-size: 1.02rem;
  line-height: 1.74;
}

.home-v2--proto .proto-home__hero-actions {
  margin-top: 28px;
  gap: 14px;
}

.home-v2--proto .proto-home__hero-button {
  box-shadow: 0 18px 34px rgba(154, 70, 0, 0.22);
}

.home-v2--proto .proto-home__hero-button-soft {
  border-color: rgba(137, 115, 98, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #17191c;
}

.home-v2--proto .proto-home__hero-button-soft:hover {
  border-color: rgba(154, 70, 0, 0.24);
  background: #ffffff;
  color: #17191c;
}

.home-v2--proto .proto-home__hero-support {
  display: none;
}

.home-v2--proto .proto-home__hero-support-item {
  display: none;
}

.home-v2--proto .proto-home__hero-support-label {
  display: none;
}

.home-v2--proto .proto-home__hero-support-detail {
  display: none;
}

.home-v2--proto .proto-home__hero-metrics {
  display: none;
}

.home-v2--proto .proto-home__hero-metric {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-v2--proto .proto-home__hero-metric-value {
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: clamp(1.16rem, 1.8vw, 1.56rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-v2--proto .proto-home__hero-metric-label {
  color: rgba(220, 226, 233, 0.64);
  font-family: var(--forge-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__hero-media {
  justify-content: flex-end;
  align-items: center;
}

.home-v2--proto .proto-home__hero-art {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: #f2f0ec;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  isolation: isolate;
}

.home-v2--proto .proto-home__hero-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(17, 24, 39, 0.08) 100%),
    radial-gradient(circle at 18% 16%, rgba(255, 139, 61, 0.12), transparent 28%);
  pointer-events: none;
}

.home-v2--proto .proto-home__hero-art-bg {
  z-index: 0;
  background:
    linear-gradient(rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(255, 139, 61, 0.12), transparent 22%);
  background-size:
    112px 112px,
    112px 112px,
    auto;
  opacity: 0.42;
}

.home-v2--proto .proto-home__hero-image-wrap--scene {
  inset: 0;
  z-index: 1;
}

.home-v2--proto .proto-home__hero-image-wrap--scene img {
  filter: saturate(0.94) contrast(1.01) brightness(0.99);
}

.home-v2--proto .proto-home__hero-scene-overlay {
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(17, 24, 39, 0.08) 100%);
}

.home-v2--proto .proto-home__hero-media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 19, 28, 0.26) 0%, rgba(12, 19, 28, 0.62) 100%);
  backdrop-filter: blur(12px);
}

.home-v2--proto .proto-home__hero-media-kicker {
  color: rgba(255, 214, 189, 0.84);
  font-family: var(--forge-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__hero-media-caption strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.home-v2--proto .proto-home__hero-scene-tags {
  display: none;
}

.home-v2--proto .proto-home__hero-spec {
  border: 1px solid rgba(221, 193, 174, 0.22);
  padding: 24px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.home-v2--proto .proto-home__hero-spec-head {
  margin-bottom: 16px;
}

.home-v2--proto .proto-home__hero-spec-head span,
.home-v2--proto .proto-home__hero-spec-row span {
  color: #7b7f86;
}

.home-v2--proto .proto-home__hero-spec-head strong {
  color: var(--forge-primary);
}

.home-v2--proto .proto-home__hero-spec-row {
  border-bottom-color: rgba(221, 193, 174, 0.22);
}

.home-v2--proto .proto-home__hero-spec-row strong {
  color: #17191c;
}

.home-v2--proto .proto-home__hero-spec--scene {
  display: block;
  left: -48px;
  bottom: -24px;
  width: min(320px, 72%);
}

@media (max-width: 1200px) {
  .home-v2--proto .proto-home__hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-v2--proto .proto-home__hero-copy {
    max-width: none;
  }

  .home-v2--proto .proto-home__hero-media {
    justify-content: stretch;
  }

  .home-v2--proto .proto-home__hero-art {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .home-v2--proto .proto-home__hero {
    min-height: auto;
    padding: 64px 0 28px;
  }

  .home-v2--proto .proto-home__hero-title {
    font-size: clamp(2.2rem, 9.6vw, 3.2rem);
  }

  .home-v2--proto .proto-home__hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__hero {
    padding: 44px 0 20px;
  }

  .home-v2--proto .proto-home__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-v2--proto .proto-home__hero-button,
  .home-v2--proto .proto-home__hero-button-soft {
    width: 100%;
  }

  .home-v2--proto .proto-home__hero-art {
    aspect-ratio: 6 / 5;
    border-radius: 22px;
  }

  .home-v2--proto .proto-home__hero-media-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }
}

@media (max-width: 560px) {
  .home-v2--proto .proto-home__hero-metrics {
    grid-template-columns: 1fr;
  }
}

.home-v2--proto {
  display: flex;
  flex-direction: column;
}

.home-v2--proto .proto-home__hero {
  order: 10;
  display: flex;
  align-items: center;
  min-height: max(740px, calc(100svh - 120px));
  padding: 56px 0 34px;
  background: #eeeef0;
}

.home-v2--proto .proto-home__hero .proto-home__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-v2--proto .proto-home__hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-v2--proto .proto-home__hero-backdrop-image {
  position: absolute;
  inset: 0;
}

.home-v2--proto .proto-home__hero-backdrop-photo {
  opacity: 0.26;
  filter: saturate(0.82) contrast(0.98) brightness(1);
  mix-blend-mode: normal;
  transform: scale(1.02);
}

.home-v2--proto .proto-home__hero::before {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(249, 249, 252, 0.98) 0%,
      rgba(249, 249, 252, 0.92) 32%,
      rgba(249, 249, 252, 0.72) 54%,
      rgba(249, 249, 252, 0.34) 76%,
      rgba(249, 249, 252, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(247, 246, 243, 0.08) 0%, rgba(247, 246, 243, 0.22) 100%);
  opacity: 1;
}

.home-v2--proto .proto-home__proof-strip {
  order: 20;
  padding: 8px 0 10px;
  border-top: 1px solid #eeeef0;
  border-bottom: 1px solid #eeeef0;
  background: #f3f3f6;
}

.home-v2--proto .section.proto-home__solutions {
  order: 30;
  padding: 76px 0 84px;
  border-top: 1px solid #eeeef0;
  background: #f9f9fc;
}

.home-v2--proto .section.proto-home__products {
  order: 40;
  padding: 48px 0 56px;
  background: #f9f9fc;
}

.home-v2--proto .proto-home__evidence {
  order: 50;
  padding: 72px 0;
  background: #0f172a;
}

.home-v2--proto .section.proto-home__library {
  order: 60;
  padding: 40px 0 48px;
  background: #f9f9fc;
}

.home-v2--proto .section.proto-home__faq {
  order: 70;
  padding: 42px 0 48px;
  background: #eeeef0;
}

.home-v2--proto .proto-home__final-cta {
  order: 80;
  background: #9a4600;
}

.home-v2--proto .proto-home__hero-grid {
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 4vw, 68px);
}

.home-v2--proto .proto-home__hero-copy {
  max-width: 720px;
}

.home-v2--proto .proto-home__hero-title {
  max-width: 15.4ch;
  font-size: clamp(2.3rem, 2.9vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.home-v2--proto .proto-home__hero-subtitle {
  max-width: 36rem;
  margin-top: 22px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.625;
}

.home-v2--proto .proto-home__hero-actions {
  gap: 16px;
  margin-top: 32px;
}

.home-v2--proto .proto-home__hero-button,
.home-v2--proto .proto-home__hero-button-soft {
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 0.5rem;
  font-family: var(--forge-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.home-v2--proto .proto-home__hero-art {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
}

.home-v2--proto .proto-home__proof-label {
  padding-top: 14px;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
}

.home-v2--proto .proto-home__proof-logos {
  gap: 10px 30px;
  padding: 12px 0 18px;
}

.home-v2--proto .proto-home__proof-logos span {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
}

.home-v2--proto .proto-home__solutions-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.home-v2--proto .proto-home__solution-grid {
  gap: 24px;
}

.home-v2--proto .proto-home__solution-card {
  min-height: 432px;
  border-radius: 22px;
}

.home-v2--proto .proto-home__solution-copy {
  padding: 28px 24px 24px;
}

.home-v2--proto .proto-home__solution-title {
  font-size: 1.7rem;
}

.home-v2--proto .proto-home__solution-summary {
  max-width: 32ch;
}

.home-v2--proto .proto-home__solutions-actions {
  margin-top: 34px;
}

.home-v2--proto .proto-home__products .proto-home__section-head {
  margin-bottom: 28px;
}

.home-v2--proto .proto-home__products .proto-home__section-subtitle {
  max-width: 640px;
}

.home-v2--proto .proto-home__product-grid {
  gap: 14px;
}

.home-v2--proto .proto-home__product-card {
  gap: 12px;
  padding: 16px 16px 14px;
  border-radius: 12px;
  border-color: rgba(0, 0, 0, 0);
  background: #eeeef0;
  box-shadow: 0 12px 24px rgba(23, 26, 31, 0.04);
}

.home-v2--proto .proto-home__product-card:hover {
  background: #e8e8ea;
}

.home-v2--proto .proto-home__product-card-top {
  display: block;
}

.home-v2--proto .proto-home__product-copy h3 {
  font-size: 1rem;
}

.home-v2--proto .proto-home__product-copy p {
  font-size: 0.78rem;
  line-height: 1.5;
}

.home-v2--proto .proto-home__product-media {
  height: 132px;
  min-height: 132px;
  padding: 8px 12px 0;
}

.home-v2--proto .proto-home__product-meta {
  padding-top: 4px;
}

.home-v2--proto .proto-home__evidence-grid {
  gap: 28px;
}

.home-v2--proto .proto-home__evidence .proto-home__section-subtitle {
  max-width: 400px;
}

.home-v2--proto .proto-home__evidence-stats {
  gap: 22px;
  margin-top: 26px;
}

.home-v2--proto .proto-home__evidence-button {
  margin-top: 22px;
}

.home-v2--proto .proto-home__evidence-cards {
  gap: 16px;
  padding-bottom: 12px;
}

.home-v2--proto .proto-home__evidence-card {
  flex: 0 0 min(320px, 82vw);
  min-height: 292px;
  padding: 24px 22px;
  border-color: #334155;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: none;
}

.home-v2--proto .proto-home__library-head,
.home-v2--proto .proto-home__faq-head {
  margin-bottom: 22px;
}

.home-v2--proto .proto-home__library-grid {
  gap: 14px;
}

.home-v2--proto .proto-home__library-card {
  padding: 20px 18px;
  background: #f3f3f6;
  border-bottom-color: transparent;
}

.home-v2--proto .proto-home__faq-wrap {
  max-width: 780px;
}

.home-v2--proto .proto-home__faq-list {
  gap: 12px;
}

.home-v2--proto .proto-home__faq-item summary {
  padding: 18px 20px;
}

.home-v2--proto .proto-home__faq-item {
  background: #f9f9fc;
  border-color: rgba(137, 115, 98, 0.12);
}

.home-v2--proto .proto-home__faq-item p {
  padding: 0 20px 20px;
}

.home-v2--proto .proto-home__faq-link {
  margin-top: 22px;
}

.home-v2--proto .proto-home__custom-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid rgba(137, 115, 98, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 244, 235, 0.96) 100%),
    radial-gradient(circle at 92% 18%, rgba(154, 70, 0, 0.12), transparent 28%);
  box-shadow: 0 12px 24px rgba(23, 26, 31, 0.05);
  overflow: hidden;
}

.home-v2--proto .proto-home__custom-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #9a4600 0%, #f2b47f 100%);
}

.home-v2--proto .proto-home__custom-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  align-items: baseline;
  max-width: 840px;
}

.home-v2--proto .proto-home__custom-copy span {
  display: inline-flex;
  margin: 0;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-v2--proto .proto-home__custom-copy h2 {
  margin: 0;
  color: #17191c;
  font-family: var(--forge-font-headline);
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.home-v2--proto .proto-home__custom-copy p {
  grid-column: 1 / -1;
  max-width: 72ch;
  margin: 0;
  color: #5f646d;
  font-size: 0.86rem;
  line-height: 1.58;
}

.home-v2--proto .proto-home__custom-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: flex-end;
}

.home-v2--proto .proto-home__custom-primary {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.home-v2--proto .proto-home__final-wrap {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-v2--proto .proto-home__final-grid {
  opacity: 0.1;
}

.home-v2--proto .proto-home__final-wrap h2 {
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.home-v2--proto .proto-home__final-wrap p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.66;
}

.home-v2--proto .proto-home__final-actions {
  gap: 14px;
  margin-top: 20px;
}

.home-v2--proto .proto-home__final-primary,
.home-v2--proto .proto-home__final-secondary {
  min-height: 50px;
  padding: 0 24px;
  font-size: 0.84rem;
}

@media (max-width: 1180px) {
  .home-v2--proto .section.proto-home__solutions {
    padding: 64px 0 72px;
  }

  .home-v2--proto .section.proto-home__products,
  .home-v2--proto .proto-home__evidence {
    padding-top: 44px;
    padding-bottom: 52px;
  }
}

@media (max-width: 960px) {
  .home-v2--proto .proto-home__hero {
    min-height: auto;
    padding: 42px 0 24px;
  }

  .home-v2--proto .proto-home__hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-v2--proto .proto-home__hero-copy {
    max-width: none;
  }

  .home-v2--proto .proto-home__hero-media {
    justify-content: stretch;
  }

  .home-v2--proto .proto-home__hero-art {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .home-v2--proto .proto-home__hero-spec--scene {
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .home-v2--proto .proto-home__hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .home-v2--proto .proto-home__hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.625;
  }

  .home-v2--proto .proto-home__hero-button,
  .home-v2--proto .proto-home__hero-button-soft {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .home-v2--proto .section.proto-home__solutions {
    padding: 52px 0 60px;
  }

  .home-v2--proto .section.proto-home__products,
  .home-v2--proto .proto-home__evidence,
  .home-v2--proto .section.proto-home__library,
  .home-v2--proto .section.proto-home__faq {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .home-v2--proto .proto-home__custom-card {
    grid-template-columns: 1fr;
  }

  .home-v2--proto .proto-home__custom-actions {
    justify-content: flex-start;
  }

  .home-v2--proto .proto-home__solution-card {
    min-height: 428px;
  }

  .home-v2--proto .proto-home__final-wrap {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__hero {
    min-height: auto;
    padding: 34px 0 18px;
  }

  .home-v2--proto .proto-home__hero-title {
    max-width: none;
  }

  .home-v2--proto .proto-home__hero-support-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .home-v2--proto .proto-home__proof-label {
    padding-top: 12px;
  }

  .home-v2--proto .proto-home__proof-logos {
    gap: 8px 18px;
    padding-bottom: 16px;
  }

  .home-v2--proto .proto-home__proof-strip {
    padding: 6px 0 8px;
  }

  .home-v2--proto .section.proto-home__solutions,
  .home-v2--proto .section.proto-home__products,
  .home-v2--proto .proto-home__evidence,
  .home-v2--proto .section.proto-home__library,
  .home-v2--proto .section.proto-home__faq {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .home-v2--proto .proto-home__custom-card {
    border-radius: 18px;
  }

  .home-v2--proto .proto-home__custom-copy {
    grid-template-columns: 1fr;
  }

  .home-v2--proto .proto-home__custom-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-v2--proto .proto-home__custom-primary {
    justify-content: center;
    width: 100%;
  }

  .home-v2--proto .proto-home__solution-copy {
    padding: 24px 20px 22px;
  }

  .home-v2--proto .proto-home__solution-card {
    min-height: 404px;
  }

  .home-v2--proto .proto-home__final-wrap {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* Homepage spacing calibration: keep adjacent homepage modules visually separated. */
.home-v2--proto .proto-home__proof-strip {
  padding: 4px 0 6px;
}

.home-v2--proto .proto-home__proof-label {
  padding-top: 10px;
}

.home-v2--proto .proto-home__proof-logos {
  padding: 10px 0 14px;
}

.home-v2--proto .section.proto-home__solutions {
  padding: 62px 0 68px;
}

.home-v2--proto .section.proto-home__products {
  padding: 52px 0 68px;
}

.home-v2--proto .proto-home__evidence {
  padding: 76px 0 78px;
}

.home-v2--proto .section.proto-home__library {
  padding: 30px 0 36px;
}

.home-v2--proto .section.proto-home__faq {
  padding: 32px 0 36px;
}

.home-v2--proto .proto-home__section-head,
.home-v2--proto .proto-home__solutions-head {
  margin-bottom: 28px;
}

.home-v2--proto .proto-home__solutions-head {
  margin-bottom: 34px;
}

.home-v2--proto .proto-home__products .proto-home__section-head {
  margin-bottom: 22px;
}

.home-v2--proto .proto-home__library-head,
.home-v2--proto .proto-home__faq-head {
  margin-bottom: 18px;
}

.home-v2--proto .proto-home__solutions-actions {
  margin-top: 24px;
}

.home-v2--proto .proto-home__faq-link {
  margin-top: 18px;
}

.home-v2--proto .proto-home__final-wrap {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 960px) {
  .home-v2--proto .section.proto-home__solutions {
    padding: 42px 0 46px;
  }

  .home-v2--proto .section.proto-home__products,
  .home-v2--proto .proto-home__evidence,
  .home-v2--proto .section.proto-home__library,
  .home-v2--proto .section.proto-home__faq {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .home-v2--proto .proto-home__section-head,
  .home-v2--proto .proto-home__solutions-head,
  .home-v2--proto .proto-home__library-head,
  .home-v2--proto .proto-home__faq-head {
    margin-bottom: 20px;
  }

  .home-v2--proto .proto-home__final-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__proof-strip {
    padding: 4px 0 6px;
  }

  .home-v2--proto .proto-home__proof-label {
    padding-top: 8px;
  }

  .home-v2--proto .proto-home__proof-logos {
    padding: 8px 0 12px;
  }

  .home-v2--proto .section.proto-home__solutions,
  .home-v2--proto .section.proto-home__products,
  .home-v2--proto .proto-home__evidence,
  .home-v2--proto .section.proto-home__library,
  .home-v2--proto .section.proto-home__faq {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .home-v2--proto .proto-home__solutions-actions,
  .home-v2--proto .proto-home__faq-link {
    margin-top: 16px;
  }

  .home-v2--proto .proto-home__final-wrap {
    padding-top: 32px;
    padding-bottom: 34px;
  }
}

/* === Solutions Proto Remap === */
.sol-hero-wrap {
  background:
    radial-gradient(circle at 88% 14%, rgba(154, 70, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, rgba(255, 255, 255, 0) 100%);
  padding: 30px 0 14px;
  min-height: clamp(260px, 28vw, 340px);
  overflow: visible;
}

.sol-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 402px);
  gap: clamp(28px, 4vw, 64px);
  min-height: inherit;
  align-items: center;
}

.sol-hero-inner--solo {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.sol-hero-inner--solo .sol-hero-text {
  max-width: 780px;
}

.sol-hero-text {
  display: grid;
  align-content: center;
  padding-bottom: 0;
  max-width: 920px;
}

.sol-hero-text--zh {
  max-width: 780px;
}

.sol-hero-eyebrow {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #a25a2b;
  font-size: var(--forge-type-label);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sol-hero-h1 {
  max-width: none;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-display-md);
  line-height: 1;
  letter-spacing: var(--forge-track-display);
  margin-bottom: 16px;
  color: var(--forge-on-surface);
  white-space: nowrap;
}

.sol-hero-h1--zh {
  white-space: nowrap;
  max-width: none;
}

.sol-hero-sub {
  max-width: 42rem;
  margin-bottom: 0;
  color: #5d6875;
  font-size: var(--forge-type-hero-sub);
  line-height: var(--forge-leading-loose);
}

.sol-hero-sub--zh {
  max-width: 34rem;
}

.sol-hero-h1 em {
  color: var(--forge-primary);
}

.sol-hero-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 402px);
  justify-self: end;
  padding: 14px 18px 14px 16px;
  border: 0;
  border-left: 4px solid var(--forge-primary);
  border-radius: 0;
  background: #eef0f3;
  box-shadow: none;
}

.sol-hero-status-kicker {
  color: #5f6a77;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-label);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sol-hero-status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f69b4;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-body-sm);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  line-height: 1.25;
  text-transform: uppercase;
}

.sol-hero-status-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sol-hero-status-pulse::before {
  content: none;
}

.sol-hero-status-pulse span {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3b67b8;
}

.sol-hero-status-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sol-hero-status-main strong {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(2.15rem, 2.9vw, 2.9rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.09em;
}

.sol-hero-status-main span,
.sol-hero-status p {
  color: #5c6672;
  font-size: 0.9rem;
  line-height: 1.65;
}

.sol-hero-status-main span {
  max-width: 12ch;
  font-size: 0.92rem;
  line-height: 1.35;
}

.sol-hero-status p {
  max-width: 28ch;
}

.sol-hero-status-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sol-hero-status-list div {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(154, 70, 0, 0.12);
}

.sol-hero-status-list span {
  color: #7d6c5f;
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sol-hero-status-list strong {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.sol-hero-status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sol-hero-status-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5c6672;
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sol-strip {
  position: sticky;
  top: 88px;
  z-index: 48;
  padding: 4px 24px 0;
  margin-top: 0;
  border-bottom: 0;
  background: transparent;
}

.sol-strip-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.sol-strip-inner {
  flex: 1 1 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sol-strip-inner::-webkit-scrollbar {
  display: none;
}

.sol-strip-item {
  flex: 0 0 auto;
  min-height: 40px;
  min-width: 0;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 0;
  border-radius: 8px;
  background: #eef0f3;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.sol-strip-item:hover {
  background: #e4e7eb;
}

.sol-strip-item.active {
  background: var(--forge-primary);
  box-shadow: none;
}

.sol-strip-icon {
  display: none;
}

.sol-strip-item:first-child .sol-strip-icon {
  display: none;
}

.sol-strip-item:first-child .sol-strip-icon::before {
  content: none;
}

.sol-strip-item.active .sol-strip-icon {
  display: none;
}

.sol-strip-item.active .sol-strip-label,
.sol-strip-item.active .sol-strip-desc {
  color: #ffffff;
}

.sol-strip-label {
  grid-column: auto;
  font-family: var(--forge-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--forge-on-surface);
}

.sol-strip-desc {
  display: none;
}

.sol-strip-search {
  width: min(216px, 100%);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.sol-strip-search-input {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #eef0f3;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-body);
  font-size: 0.875rem;
}

.sol-strip-search-input::placeholder {
  color: #818b96;
}

.sol-strip-search span {
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
}

.sol-strip-search button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #eef0f3;
  color: var(--forge-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sol-scenarios-section {
  padding-top: 10px;
}

.sol-scenarios-section .section-head {
  display: none;
}

.sol-scenarios-section .catalog-result-meta {
  margin-bottom: 18px !important;
  color: #64707d;
  font-size: 0.84rem;
  line-height: 1.55;
}

.sol-scenarios-section .catalog-result-meta a {
  color: var(--forge-primary);
  text-decoration: none;
}

.sol-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sol-bento-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(154, 70, 0, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sol-bento-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 70, 0, 0.22);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.sol-bento-media {
  position: relative;
  overflow: hidden;
  background: #e7eaee;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(154, 70, 0, 0.08);
}

.sol-bento-media img {
  filter: saturate(0.96) contrast(1.01) brightness(0.99);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.sol-bento-card:hover .sol-bento-media img {
  filter: saturate(1.04) contrast(1.03) brightness(1.01);
  transform: scale(1.03);
}

.sol-bento-media-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 26, 0.02) 0%, rgba(10, 18, 26, 0.14) 100%),
    linear-gradient(90deg, rgba(0, 93, 182, 0.08) 0%, rgba(0, 93, 182, 0.01) 100%);
}

.sol-bento-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 20px 20px 18px;
  background: #ffffff;
}

.sol-library-card-kicker {
  color: var(--forge-accent-text);
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sol-library-card-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(154, 70, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sol-bento-title {
  font-family: var(--forge-font-headline);
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -0.032em;
  color: var(--forge-on-surface);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: calc(1.22em * 2);
  text-wrap: balance;
}

.sol-bento-summary {
  max-width: none;
  color: #64707d;
  font-size: 0.92rem;
  line-height: 1.62;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: calc(1.62em * 3);
}

.sol-bento-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.sol-bento-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--forge-primary);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: none;
}

.sol-bento-card .sol-bento-action {
  min-width: 0;
}

.sol-impact-strip {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(154, 70, 0, 0.12);
}

.sol-impact-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.sol-impact-head h2 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.sol-impact-head p {
  margin-top: 8px;
  color: #64707d;
  max-width: 48ch;
  font-size: 0.95rem;
  line-height: 1.64;
}

.sol-impact-link {
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.sol-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sol-impact-grid article {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.sol-impact-grid strong {
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.sol-impact-grid span {
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sol-impact-grid p {
  color: var(--forge-on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.62;
}

.sol-library-block {
  margin-top: 40px;
}

.sol-library-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

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

.sol-library-card {
  display: grid;
  gap: 12px;
  padding: 20px 18px;
  border: 1px solid rgba(154, 70, 0, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sol-library-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 70, 0, 0.2);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.sol-library-card h3 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.14rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.sol-library-card p {
  color: #64707d;
  font-size: 0.88rem;
  line-height: 1.6;
}

.sol-delivery-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 139, 61, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfbfc 0%, var(--forge-surface-low) 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(154, 70, 0, 0.08);
}

.sol-delivery-section .section-title,
.sol-delivery-section .section-subtitle {
  color: var(--forge-on-surface);
}

.sol-delivery-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px 32px;
  align-items: end;
  text-align: left;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(154, 70, 0, 0.12);
}

.sol-delivery-head .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.sol-delivery-head .section-title {
  max-width: 13ch;
  margin-bottom: 0;
}

.sol-delivery-section .section-subtitle {
  opacity: 1;
  color: #64707d;
  max-width: 40rem;
  margin-bottom: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(154, 70, 0, 0.12);
}

.sol-delivery-strip {
  gap: 12px;
  margin-bottom: 14px;
}

.sol-delivery-strip .process-step {
  position: relative;
  padding: 20px 18px 18px;
}

.sol-delivery-strip .process-step__title {
  min-height: calc(1.34em * 2);
  margin-bottom: 6px;
}

.sol-delivery-strip .process-step,
.sol-delivery-card {
  background: #ffffff;
  border: 1px solid rgba(154, 70, 0, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.sol-delivery-strip .process-step__title,
.sol-delivery-card .card-title,
.sol-delivery-card .sol-spec-list li {
  color: var(--forge-on-surface);
}

.sol-delivery-strip .process-step__copy {
  color: #64707d;
}

.sol-delivery-strip .process-step__num {
  background: rgba(154, 70, 0, 0.08);
  color: var(--forge-primary);
}

.sol-delivery-cards {
  gap: 14px;
}

.sol-delivery-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 22px 20px;
}

.sol-delivery-card .card-label {
  width: fit-content;
  margin-bottom: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(154, 70, 0, 0.08);
  color: var(--forge-primary);
}

.sol-delivery-card .card-title {
  max-width: 20ch;
  margin-bottom: 0;
}

.sol-delivery-card .sol-spec-list {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.sol-delivery-card .sol-spec-list li {
  align-items: flex-start;
  line-height: 1.56;
}

.sol-delivery-card .sol-spec-list li::before {
  margin-top: 0.2em;
}

@media (max-width: 1180px) {
  .sol-delivery-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sol-delivery-head .section-title {
    max-width: 16ch;
  }

  .sol-delivery-section .section-subtitle {
    max-width: none;
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 1px solid rgba(154, 70, 0, 0.12);
  }

  .sol-delivery-card .sol-spec-list {
    grid-template-columns: 1fr;
  }
}

.sol-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 460px);
  gap: 30px;
  align-items: start;
}

.sol-contact-points {
  margin-bottom: 18px;
}

.sol-contact-support {
  display: none;
}

.sol-contact-readiness {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.sol-contact-readiness li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sol-contact-readiness li:first-child {
  padding-top: 0;
  border-top: 0;
}

.sol-contact-readiness span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sol-contact-readiness strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.sol-contact-readiness p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.58;
}

.sol-wheel-head {
  text-align: left;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 40px 0;
}

.sol-wheel-wrap {
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 40px;
}

.sol-stats-wrap {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  padding: 10px 0 40px;
}

.sol-stats-inner {
  gap: 20px;
}

.sol-stat-item {
  padding: 24px 18px;
  border-right: 0;
  border: 1px solid rgba(154, 70, 0, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1180px) {
  .sol-hero-wrap {
    min-height: auto;
  }

  .sol-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sol-hero-status {
    max-width: 520px;
    justify-self: start;
  }

  .sol-hero-h1 {
    white-space: normal;
  }

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

  .sol-bento-card--primary {
    grid-template-columns: 1fr;
  }

  .sol-bento-split-media {
    min-height: 280px;
  }

  .sol-strip-shell {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }

  .sol-strip-search {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }

  .sol-strip-inner {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .sol-bento-card--primary {
    grid-column: span 12;
  }

  .sol-bento-card--sidebar,
  .sol-bento-card--support {
    grid-column: span 6;
  }

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

  .sol-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .sol-strip {
    top: 74px;
    padding: 8px 16px 0;
  }

  .sol-strip-item {
    width: auto;
  }

  .sol-bento-grid,
  .sol-impact-grid,
  .sol-library-grid {
    grid-template-columns: 1fr;
  }

  .sol-bento-card--primary,
  .sol-bento-card--sidebar,
  .sol-bento-card--support {
    grid-column: 1 / -1;
  }

  .sol-bento-card--primary,
  .sol-bento-card--sidebar {
    min-height: 420px;
  }

  .sol-bento-card--support {
    min-height: 340px;
  }

  .sol-impact-head,
  .sol-library-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sol-bento-key-group--duo {
    grid-template-columns: 1fr;
  }

  .sol-impact-link {
    white-space: normal;
  }

  .sol-stat-item:nth-child(3),
  .sol-stat-item:nth-child(4) {
    border-top: 0;
    padding-top: 24px;
  }
}

@media (max-width: 720px) {
  .sol-hero-wrap {
    padding: 16px 0 4px;
  }

  .sol-hero-h1 {
    max-width: none;
    font-size: clamp(1.95rem, 9.2vw, 3rem);
    white-space: normal;
  }

  .sol-hero-h1--zh {
    max-width: 8.6ch;
  }

  .sol-hero-sub--zh {
    max-width: 100%;
  }

  .sol-hero-status {
    padding: 16px 16px;
  }

  .sol-hero-status-list {
    grid-template-columns: 1fr;
  }

  .sol-strip-shell {
    align-items: stretch;
    gap: 12px;
  }

  .sol-strip-item {
    width: auto;
  }

  .sol-strip-search {
    width: 100%;
  }

  .sol-bento-copy {
    padding: 24px 20px 22px;
  }

  .sol-bento-split-copy,
  .sol-bento-copy--sidebar,
  .sol-bento-copy--support {
    padding: 24px 20px 22px;
  }

  .sol-bento-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sol-bento-footer {
    width: 100%;
  }

  .sol-bento-action {
    width: 100%;
  }

  .sol-bento-support-media {
    height: 148px;
  }

  .sol-impact-strip,
  .sol-library-block {
    margin-top: 28px;
  }
}

/* === Solution Detail Proto Remap === */
.button-inverse {
  background: #ffffff;
  color: var(--forge-primary);
  box-shadow: none;
}

.button-inverse:hover {
  background: rgba(255, 255, 255, 0.94);
}

.sdt-hero {
  padding: 22px 0 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(154, 70, 0, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfbfc 0%, rgba(255, 255, 255, 0) 100%);
}

.sdt-hero-grid,
.sdt-arch-grid,
.sdt-case-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.sdt-hero-copy,
.sdt-arch-copy,
.sdt-case-copy {
  grid-column: span 5;
  min-width: 0;
}

.sdt-hero-media,
.sdt-arch-visual,
.sdt-case-stats {
  grid-column: span 7;
  min-width: 0;
}

.sdt-hero-copy,
.sdt-hero-media {
  grid-column: span 6;
}

.sdt-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--forge-surface-low);
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sdt-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--forge-primary);
}

.sdt-title {
  margin-top: 18px;
  display: grid;
  gap: 2px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-h1);
  font-weight: 700;
  line-height: var(--forge-leading-display);
  letter-spacing: var(--forge-track-display);
}

.sdt-title--zh {
  font-size: var(--forge-type-h1);
}

.sdt-title-accent {
  color: var(--forge-primary);
}

.sdt-body {
  max-width: 33rem;
  margin-top: 18px;
  color: #5d6875;
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sdt-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.sdt-action-row .button,
.sdt-action-row .button-soft {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 10px;
  font-size: var(--forge-type-button);
  letter-spacing: var(--forge-track-button);
  text-transform: uppercase;
}

.sdt-hero-media {
  position: relative;
}

.sdt-hero-media-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.18) 100%),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  isolation: isolate;
}

.sdt-hero-image {
  object-position: 58% center;
}

.sdt-hero-media-tint {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 18, 24, 0) 0%, rgba(13, 18, 24, 0.1) 42%, rgba(13, 18, 24, 0.34) 100%);
}

.sdt-hero-media-shell img,
.sdt-core-image img,
.sdt-mini-image img {
  filter: saturate(0.97) contrast(1.01) brightness(0.99);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.sdt-hero-media-shell:hover img,
.sdt-core-card:hover .sdt-core-image img,
.sdt-mini-card:hover .sdt-mini-image img {
  filter: saturate(1.04) contrast(1.03) brightness(1.01);
  transform: scale(1.03);
}

.sdt-hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  min-height: 82px;
  padding: 16px 18px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(244, 245, 247, 0.64) 100%);
  backdrop-filter: blur(16px) saturate(1.12);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.sdt-hero-badge-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.sdt-hero-badge strong {
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.28rem, 1.85vw, 1.72rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.sdt-hero-badge span {
  max-width: 28ch;
  color: rgba(53, 61, 71, 0.82);
  font-family: var(--forge-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.sdt-band {
  padding: 74px 0;
  background: var(--forge-surface-low);
}

.sdt-section-title {
  display: grid;
  gap: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-display-md);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--forge-track-display);
}

.sdt-section-title--inline {
  display: block;
}

.sdt-section-body {
  max-width: 24rem;
  margin-top: 18px;
  color: #5d6875;
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sdt-arch-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.sdt-arch-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.sdt-arch-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(154, 70, 0, 0.1);
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sdt-arch-item h3 {
  color: var(--forge-on-surface);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.sdt-arch-item p {
  margin-top: 4px;
  color: #5d6875;
  font-size: 0.8rem;
  line-height: 1.65;
}

.sdt-arch-visual {
  padding: 12px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.sdt-arch-canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 26, 0.12);
  border-radius: 18px;
  background: #203847;
}

.sdt-arch-canvas img {
  opacity: 0.98;
  mix-blend-mode: normal;
  filter: saturate(0.99) contrast(1.02);
}

.sdt-arch-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(154, 70, 0, 0.14), transparent 42%);
}

.sdt-arch-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  gap: 10px;
  z-index: 1;
}

.sdt-arch-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  color: var(--forge-on-surface);
  font-family: var(--forge-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sdt-arch-overlay span:last-child {
  border-left: 4px solid #3f69b4;
}

.sdt-components,
.sdt-specs {
  padding: 84px 0;
}

.sdt-head h2 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sdt-head-rule {
  width: 46px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--forge-primary);
}

.sdt-components-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sdt-core-card,
.sdt-mini-card,
.sdt-console-card {
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 20px;
  background: var(--forge-surface-low);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.sdt-core-card,
.sdt-console-card {
  padding: 28px;
}

.sdt-mini-card {
  padding: 24px;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.sdt-core-card {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.sdt-core-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.sdt-core-head h3,
.sdt-mini-card h3,
.sdt-console-copy h3 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.sdt-core-head span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--forge-primary);
  color: #ffffff;
  font-family: var(--forge-font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sdt-core-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 14px;
  background: #1c2128;
}

.sdt-core-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.sdt-core-metrics span {
  display: block;
  margin-bottom: 4px;
  color: #7a8592;
  font-family: var(--forge-font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sdt-core-metrics strong {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
}

.sdt-core-link {
  width: fit-content;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.sdt-core-link::after {
  content: '→';
  margin-left: 8px;
}

.sdt-mini-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sdt-mini-card p,
.sdt-console-copy p {
  color: #5d6875;
  font-size: 0.8rem;
  line-height: 1.6;
}

.sdt-mini-image {
  position: relative;
  aspect-ratio: 1 / 1;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 12px;
  background: #dadddf;
}

.sdt-console-card {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(119, 171, 255, 0.14);
}

.sdt-console-copy h3 {
  font-size: 1.35rem;
}

.sdt-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sdt-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.5);
  color: var(--forge-on-surface);
  font-family: var(--forge-font-mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sdt-console-icon {
  color: #78a6e2;
  font-size: 3.8rem;
  line-height: 1;
}

.sdt-case {
  padding: 86px 0;
  background: #16181b;
}

.sdt-case-copy {
  color: #f8f8fa;
}

.sdt-case-title {
  display: grid;
  gap: 2px;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-display-sm);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: var(--forge-track-display);
}

.sdt-case-title-accent {
  color: #ffb68c;
}

.sdt-case-quote {
  max-width: 34rem;
  margin-top: 24px;
  color: rgba(240, 240, 243, 0.82);
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sdt-case-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.sdt-case-person > span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffb68c;
  color: #421f00;
  font-family: var(--forge-font-mono);
  font-size: 0.86rem;
  font-weight: 700;
}

.sdt-case-person strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.sdt-case-person p {
  margin-top: 3px;
  color: rgba(240, 240, 243, 0.58);
  font-size: 0.78rem;
}

.sdt-case-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sdt-case-stat {
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  backdrop-filter: blur(8px);
}

.sdt-case-stat strong {
  display: block;
  color: #ffb68c;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-h2);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--forge-track-display);
}

.sdt-case-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(240, 240, 243, 0.62);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sdt-spec-shell {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--forge-surface-low);
}

.sdt-spec-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) repeat(2, minmax(0, 1fr));
}

.sdt-spec-panel {
  padding: 34px 26px;
}

.sdt-spec-panel--lead {
  background: #e9ebef;
}

.sdt-spec-kicker {
  margin-bottom: 24px;
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sdt-spec-panel--lead .sdt-spec-kicker {
  color: var(--forge-primary);
}

.sdt-spec-list {
  display: grid;
  gap: 18px;
}

.sdt-spec-row {
  display: grid;
  gap: 4px;
}

.sdt-spec-row span {
  color: #6a7480;
  font-size: 0.76rem;
  line-height: 1.55;
}

.sdt-spec-row strong {
  color: var(--forge-on-surface);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.sdt-final-cta {
  padding: 0 0 28px;
}

.sdt-final-shell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border-radius: 30px;
  background: var(--forge-primary);
}

.sdt-final-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 56%);
  opacity: 0.7;
  pointer-events: none;
}

.sdt-final-copy,
.sdt-final-actions {
  position: relative;
  z-index: 1;
}

.sdt-final-copy {
  max-width: 44rem;
}

.sdt-final-copy h2 {
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-display-sm);
  font-weight: 700;
  line-height: var(--forge-leading-display);
  letter-spacing: var(--forge-track-display);
}

.sdt-final-copy p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-body);
}

.sdt-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sdt-final-actions .button,
.sdt-final-actions .button-soft {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sdt-final-actions .button-soft {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sdt-final-actions .button-soft:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
}

.sdt-fallback-shell {
  padding: 32px 34px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.sdt-fallback-shell .sds-head {
  margin-bottom: 28px;
}

.sdt-fallback-body {
  color: #5d6875;
  font-size: var(--forge-type-body);
  line-height: 1.85;
}

.sdt-fallback-body > * + * {
  margin-top: 16px;
}

.sdt-fallback-body h2,
.sdt-fallback-body h3 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.sdt-fallback-body h2 {
  margin-top: 30px;
  font-size: var(--forge-type-h2);
}

.sdt-fallback-body h3 {
  margin-top: 24px;
  font-size: var(--forge-type-title);
}

.sdt-fallback-body p,
.sdt-fallback-body li {
  color: #5d6875;
  font-size: var(--forge-type-body);
  line-height: 1.85;
}

.sdt-fallback-body ul,
.sdt-fallback-body ol {
  padding-left: 1.25rem;
  display: grid;
  gap: 10px;
}

.sdt-fallback-body strong {
  color: var(--forge-on-surface);
}

.sdt-fallback-body a {
  color: var(--forge-primary);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.sdt-fallback-body figure {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.sdt-fallback-body img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.sdt-fallback-body figcaption {
  color: #6a7480;
  font-size: var(--forge-type-body-sm);
  line-height: 1.7;
}

.sds-section {
  --sds-section-bridge: rgba(247, 244, 240, 0.92);
  position: relative;
  padding: 68px 0 92px;
  isolation: isolate;
}

.sds-section > .wrap {
  position: relative;
  z-index: 1;
}

.sds-section + .sds-section {
  padding-top: 54px;
}

.sds-section + .sds-section::before {
  content: '';
  position: absolute;
  top: -46px;
  right: 0;
  left: 0;
  height: 128px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--sds-section-bridge) 0%, rgba(255, 255, 255, 0) 100%);
}

.sds-section--pain {
  --sds-section-bridge: rgba(255, 249, 243, 0.92);
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.54) 0%, rgba(255, 255, 255, 0) 100%);
}

.sds-section--proof,
.sds-section--overview,
.sds-section--generic,
.sds-section--related {
  --sds-section-bridge: rgba(246, 243, 239, 0.94);
  background: linear-gradient(180deg, rgba(246, 243, 239, 0.92) 0%, rgba(250, 251, 252, 0.84) 100%);
}

.sds-section--flow {
  --sds-section-bridge: rgba(255, 247, 240, 0.9);
  background: linear-gradient(180deg, rgba(255, 247, 240, 0.64) 0%, rgba(255, 252, 248, 0.36) 56%, rgba(255, 255, 255, 0) 100%);
}

.sds-section--hardware {
  --sds-section-bridge: rgba(249, 250, 252, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 251, 0.92) 72%, rgba(255, 255, 255, 0.84) 100%);
}

.sds-section--feature {
  --sds-section-bridge: rgba(244, 247, 250, 0.92);
  background: linear-gradient(180deg, rgba(244, 247, 250, 0.88) 0%, rgba(255, 255, 255, 0.48) 100%);
}

.sds-section--usecase {
  --sds-section-bridge: rgba(248, 250, 252, 0.9);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.74) 0%, rgba(255, 255, 255, 0) 100%);
}

.sds-section--pain + .sds-section--overview,
.sds-section--overview + .sds-section--flow,
.sds-section--flow + .sds-section--proof,
.sds-section--proof + .sds-section--feature,
.sds-section--feature + .sds-section--usecase,
.sds-section--usecase + .sds-section--hardware,
.sds-section--hardware + .sds-section--related {
  padding-top: 46px;
}

.sds-section.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-reveal-ready="true"] .sds-section.reveal {
  opacity: 0;
  transform: translateY(10px);
}

html[data-reveal-ready="true"] .sds-section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sds-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.sds-head h2 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-h2);
  font-weight: 700;
  line-height: var(--forge-leading-heading);
  letter-spacing: var(--forge-track-heading);
  text-wrap: balance;
}

.sds-head p {
  margin-top: 16px;
  max-width: 60ch;
  color: #5d6875;
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sds-proof-grid,
.sds-proof-rail,
.sds-card-grid,
.sds-flow-grid,
.sds-feature-layout,
.sds-hardware-layout,
.sds-related-grid {
  display: grid;
  gap: 18px;
}

.sds-proof-grid {
  align-items: stretch;
}

.sds-proof-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.sds-proof-card,
.sds-card,
.sds-flow-card,
.sds-related-card {
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.sds-proof-card {
  display: grid;
  align-content: start;
  padding: 18px 20px;
}

.sds-proof-card strong {
  display: block;
  color: var(--forge-primary);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.sds-proof-card span {
  display: block;
  margin-top: 0;
  color: #6a7480;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
  line-height: 1.6;
}

.sds-proof-card p {
  margin-top: 10px;
  color: #5d6875;
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-body);
}

.sds-proof-card--compact-lead {
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 80%);
  border-color: rgba(154, 70, 0, 0.15);
}

.sds-proof-card .sds-proof-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(154, 70, 0, 0.1);
  color: var(--forge-primary);
}

.sds-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sds-card,
.sds-flow-card,
.sds-related-card {
  padding: 24px;
}

.sds-card--link,
.sds-related-card {
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sds-card--link:hover,
.sds-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 70, 0, 0.18);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.sds-card--link:focus-visible,
.sds-related-card:focus-visible {
  outline: 2px solid rgba(154, 70, 0, 0.42);
  outline-offset: 3px;
}

.sds-card-index,
.sds-chip-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(154, 70, 0, 0.1);
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sds-card h3,
.sds-flow-card h3,
.sds-related-card h4,
.sds-related-block-head h3 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.sds-card h3,
.sds-flow-card h3 {
  margin-top: 18px;
  font-size: var(--forge-type-title);
  line-height: 1.3;
}

.sds-related-card h4,
.sds-related-block-head h3 {
  font-size: var(--forge-type-title);
  line-height: 1.3;
}

.sds-card p,
.sds-flow-card p,
.sds-related-card p {
  margin-top: 10px;
  color: #5d6875;
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-body);
}

.sds-card--pain {
  border-top: 4px solid rgba(154, 70, 0, 0.24);
}

.sds-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.sds-overview-grid--with-media {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.sds-overview-copy .sds-head {
  margin-bottom: 0;
}

.sds-card-grid--overview {
  margin-top: 24px;
}

.sds-card--overview {
  background: rgba(255, 255, 255, 0.74);
}

.sds-overview-media {
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.sds-overview-media-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
}

.sds-overview-media-shell img {
  filter: saturate(0.98) contrast(1.02);
}

.sds-flow-stack {
  display: grid;
  gap: 22px;
}

.sds-flow-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
  gap: 22px;
  align-items: stretch;
  min-height: 280px;
  min-width: 0;
}

.sds-flow-row--reverse .sds-flow-figure {
  order: 2;
}

.sds-flow-row--reverse .sds-flow-copy {
  order: 1;
}

.sds-flow-figure {
  position: relative;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
  align-self: start;
  min-width: 0;
}

.sds-media-image,
.sds-flow-figure img,
.sds-feature-media img,
.sds-usecase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
}

.sds-flow-figure img {
  filter: saturate(0.98) contrast(1.02);
}

.sds-flow-fallback {
  display: grid;
  align-content: end;
  height: 100%;
  padding: 26px;
  background:
    radial-gradient(circle at 22% 20%, rgba(154, 70, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #eff2f5 0%, #f8fafc 100%);
}

.sds-flow-fallback span {
  color: rgba(154, 70, 0, 0.74);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sds-flow-fallback strong {
  margin-top: 10px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.sds-flow-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  height: 280px;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  min-width: 0;
}

.sds-flow-copy h3 {
  margin-top: 16px;
}

.sds-flow-copy p {
  margin-top: 12px;
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sds-flow-outcome {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(154, 70, 0, 0.12);
}

.sds-flow-outcome span {
  color: rgba(154, 70, 0, 0.72);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sds-flow-outcome strong {
  color: var(--forge-on-surface);
  font-size: var(--forge-type-title);
  font-weight: 700;
  line-height: 1.35;
}

.sds-card-grid--hardware {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sds-hardware-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.sds-hardware-primary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sds-hardware-primary-grid--single {
  grid-template-columns: 1fr;
}

.sds-card--hardware-primary {
  display: grid;
  align-content: start;
  padding: 24px;
  background: linear-gradient(140deg, #fff8f2 0%, #ffffff 66%);
  border-color: rgba(154, 70, 0, 0.14);
}

.sds-card--hardware-reco {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(154, 70, 0, 0.12);
  min-height: 520px;
}

.sds-card--hardware-reco:hover .sds-hardware-reco-media img {
  transform: scale(1.035);
}

.sds-card--hardware-primary-no-media {
  min-height: 100%;
}

.sds-hardware-media {
  position: relative;
  height: 112px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), rgba(238, 240, 243, 0.86) 72%),
    #eef0f3;
}

.sds-hardware-media--primary {
  min-height: 200px;
  height: 200px;
  border-radius: 18px;
}

.sds-hardware-media img {
  padding: 16px;
}

.sds-hardware-reco-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(154, 70, 0, 0.08);
  background: #ffffff;
}

.sds-hardware-reco-media img {
  padding: clamp(14px, 2vw, 28px);
  transition: transform 0.55s ease;
}

.sds-hardware-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.sds-hardware-copy h3 {
  margin-top: 0;
  min-height: calc(1.3em * 2);
}

.sds-hardware-copy--primary h3 {
  margin-top: 16px;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  line-height: 1.2;
}

.sds-hardware-copy--primary p {
  margin-top: 12px;
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-body);
}

.sds-hardware-copy p {
  margin-top: 0;
  min-height: calc(var(--forge-leading-body) * 2em);
}

.sds-hardware-components {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.sds-hardware-components span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(154, 70, 0, 0.07);
  color: rgba(102, 49, 7, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
}

.sds-card--hardware-reco .sds-related-link {
  margin-top: auto;
}

.sds-hardware-support-shell {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.sds-hardware-support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sds-hardware-support-list {
  display: grid;
  gap: 14px;
}

.sds-card--hardware {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.sds-card--hardware-no-media {
  grid-template-columns: 1fr;
}

.sds-card-grid--feature,
.sds-card-grid--usecase,
.sds-card-grid--generic {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sds-feature-layout {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.sds-feature-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(31, 47, 61, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.sds-feature-intro h3 {
  font-family: var(--forge-font-headline);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.sds-feature-intro p {
  color: #5d6875;
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sds-feature-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sds-card--feature-lead {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
}

.sds-feature-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.sds-feature-support-grid--single {
  grid-template-columns: 1fr;
}

.sds-card--feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  align-items: stretch;
  height: 100%;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
}

.sds-card--feature-no-media,
.sds-card--usecase-no-media {
  grid-template-columns: 1fr;
}

.sds-feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 188px;
  overflow: hidden;
  background: transparent;
}

.sds-card--feature .sds-feature-media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
  min-width: 0;
}

.sds-feature-media--lead {
  min-height: 260px;
}

.sds-feature-media img {
  filter: saturate(0.98) contrast(1.02);
}

.sds-feature-fallback {
  display: grid;
  align-content: end;
  height: 100%;
  padding: 24px;
}

.sds-feature-fallback span {
  color: rgba(154, 70, 0, 0.74);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sds-feature-fallback strong {
  margin-top: 10px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.18;
}

.sds-feature-copy {
  display: grid;
  align-content: start;
  padding: 22px;
}

.sds-feature-copy--lead {
  padding: 26px;
}

.sds-feature-copy h3 {
  margin-top: 14px;
}

.sds-feature-copy p {
  margin-top: 10px;
}

.sds-feature-copy--lead h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.sds-feature-copy--lead p {
  font-size: var(--forge-type-body);
  line-height: var(--forge-leading-loose);
}

.sds-feature-bullets {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: #4c5663;
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-body);
}

.sds-feature-bullets li::marker {
  color: var(--forge-primary);
}

.sds-usecase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.sds-card--usecase {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.sds-usecase-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 156px;
  overflow: hidden;
  background: transparent;
}

.smart-image-shell--failed {
  display: none !important;
}

.sds-usecase-media img {
  filter: saturate(0.98) contrast(1.02);
}

.sds-usecase-fallback {
  display: grid;
  align-content: end;
  height: 100%;
  padding: 24px;
}

.sds-usecase-fallback span {
  color: rgba(154, 70, 0, 0.74);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.sds-usecase-fallback strong {
  margin-top: 10px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 700;
  line-height: 1.18;
}

.sds-usecase-copy {
  display: grid;
  align-content: start;
  padding: 18px;
}

.sds-card--usecase-no-media .sds-usecase-copy {
  min-height: 0;
}

.sds-usecase-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sds-usecase-copy h3 {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.32;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sds-card--usecase .sds-usecase-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sds-related-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: start;
}

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

.sds-related-block {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.sds-related-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sds-related-block-head-copy {
  max-width: 34rem;
}

.sds-related-block-head p {
  margin-top: 8px;
  color: #5d6875;
  font-size: var(--forge-type-body-sm);
  line-height: var(--forge-leading-body);
}

.sds-related-list {
  display: grid;
  gap: 14px;
}

.sds-related-card {
  display: grid;
  gap: 18px;
}

.sds-related-card--product {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
}

.sds-related-card--case {
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f4 100%);
}

.sds-related-card--no-media {
  grid-template-columns: 1fr;
}

.sds-related-card-media {
  position: relative;
  min-height: 110px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), rgba(238, 240, 243, 0.86) 72%),
    #eef0f3;
}

.sds-related-card-media img {
  padding: 14px;
}

.sds-related-card-copy {
  display: grid;
  align-content: start;
}

.sds-related-card-copy h4 {
  margin-top: 12px;
}

.sds-related-card-copy p {
  max-width: 42ch;
}

.sds-related-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .sds-section {
    padding: 56px 0 72px;
  }

  .sds-section + .sds-section {
    padding-top: 46px;
  }

  .sds-section + .sds-section::before {
    top: -38px;
    height: 100px;
  }

  .sds-section--pain + .sds-section--overview,
  .sds-section--overview + .sds-section--flow,
  .sds-section--flow + .sds-section--proof,
  .sds-section--proof + .sds-section--feature,
  .sds-section--feature + .sds-section--usecase,
  .sds-section--usecase + .sds-section--hardware,
  .sds-section--hardware + .sds-section--related {
    padding-top: 40px;
  }

  .sds-proof-grid,
  .sds-proof-grid--compact,
  .sds-flow-row,
  .sds-hardware-layout,
  .sds-feature-layout,
  .sds-feature-support-grid,
  .sds-related-grid,
  .sds-overview-grid--with-media {
    grid-template-columns: 1fr;
  }

  .sds-usecase-grid,
  .sds-hardware-primary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sds-card--feature-lead {
    grid-template-columns: 1fr;
  }

  .sds-flow-row--reverse .sds-flow-figure,
  .sds-flow-row--reverse .sds-flow-copy {
    order: initial;
  }

  .sds-hardware-media--primary {
    min-height: 180px;
    height: 180px;
  }
}

@media (max-width: 720px) {
  .sds-section {
    padding: 44px 0 56px;
  }

  .sds-section + .sds-section {
    padding-top: 36px;
  }

  .sds-section + .sds-section::before {
    top: -28px;
    height: 72px;
  }

  .sds-section--pain + .sds-section--overview,
  .sds-section--overview + .sds-section--flow,
  .sds-section--flow + .sds-section--proof,
  .sds-section--proof + .sds-section--feature,
  .sds-section--feature + .sds-section--usecase,
  .sds-section--usecase + .sds-section--hardware,
  .sds-section--hardware + .sds-section--related {
    padding-top: 34px;
  }

  .sds-proof-grid,
  .sds-proof-grid--compact,
  .sds-card-grid,
  .sds-feature-support-grid,
  .sds-usecase-grid,
  .sds-hardware-primary-grid,
  .sds-related-grid {
    grid-template-columns: 1fr;
  }

  .sds-card,
  .sds-related-card {
    padding: 20px;
  }

  .sds-card--hardware-reco {
    padding: 0;
    min-height: 500px;
    grid-template-rows: 210px 1fr;
  }

  .sds-hardware-reco-media {
    height: 210px;
  }

  .sds-flow-copy,
  .sds-feature-intro,
  .sds-feature-copy,
  .sds-usecase-copy {
    padding: 20px;
  }

  .sds-hardware-support-shell,
  .sds-related-block {
    padding: 20px;
  }

  .sds-card--hardware {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .sds-hardware-media {
    height: 96px;
  }

  .sds-related-block-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .sds-card--hardware,
  .sds-related-card--product {
    grid-template-columns: 1fr;
  }

  .sds-hardware-media,
  .sds-related-card-media,
  .sds-flow-figure,
  .sds-feature-media,
  .sds-usecase-media {
    min-height: 160px;
    height: 160px;
  }
}

.sdt-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #d9dee4 0%, #b9c2ca 100%);
}

.sdt-fallback--tech {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 61, 0.24), transparent 14%),
    linear-gradient(180deg, #213848 0%, #1a242f 100%);
}

.sdt-fallback--dark {
  background: linear-gradient(135deg, #31363d 0%, #1a1f25 100%);
}

@media (max-width: 1180px) {
  .sdt-hero-copy,
  .sdt-hero-media,
  .sdt-arch-copy,
  .sdt-arch-visual,
  .sdt-case-copy,
  .sdt-case-stats {
    grid-column: 1 / -1;
  }

  .sdt-hero-grid,
  .sdt-arch-grid,
  .sdt-case-grid {
    gap: 26px;
  }

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

@media (max-width: 960px) {
  .sdt-hero {
    padding: 18px 0 34px;
  }

  .sdt-title,
  .sdt-title--zh {
    font-size: var(--forge-type-h1);
  }

  .sdt-body {
    font-size: var(--forge-type-hero-sub);
  }

  .sdt-band,
  .sdt-components,
  .sdt-specs,
  .sdt-case {
    padding: 62px 0;
  }

  .sdt-components-grid {
    grid-template-columns: 1fr;
  }

  .sdt-core-card,
  .sdt-console-card {
    grid-column: auto;
    grid-row: auto;
  }

  .sdt-case-stats {
    grid-template-columns: 1fr 1fr;
  }

  .sdt-final-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .sdt-fallback-shell {
    padding: 26px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 720px) {
  .sdt-hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 0;
    padding: 14px 15px 13px;
    border-radius: 16px;
  }

  .sdt-hero-badge strong {
    font-size: 1.2rem;
  }

  .sdt-arch-visual,
  .sdt-core-card,
  .sdt-mini-card,
  .sdt-console-card,
  .sdt-spec-shell {
    border-radius: 18px;
  }

  .sdt-core-card,
  .sdt-console-card {
    padding: 22px 20px;
  }

  .sdt-mini-card {
    padding: 20px;
  }

  .sdt-core-image {
    height: 180px;
  }

  .sdt-case-stats {
    grid-template-columns: 1fr;
  }

  .sdt-case-stat {
    padding: 22px 16px;
  }

  .sdt-final-actions {
    width: 100%;
    flex-direction: column;
  }

  .sdt-final-actions .button,
  .sdt-final-actions .button-soft {
    width: 100%;
    justify-content: center;
  }

  .sdt-fallback-shell {
    padding: 22px 18px;
  }
}

/* === Product Catalog Proto Remap === */
.pcat-section {
  padding: 24px 0 96px;
  background:
    radial-gradient(circle at 88% 10%, rgba(154, 70, 0, 0.05), transparent 22%),
    linear-gradient(180deg, #fbfbfc 0%, rgba(249, 249, 252, 0.92) 100%);
}

.pcat-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.pcat-title-wrap {
  min-width: 0;
  max-width: 62rem;
}

.pcat-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: #6a7480;
  font-size: 0.75rem;
  line-height: 1.5;
}

.pcat-breadcrumbs a {
  color: #6a7480;
  text-decoration: none;
}

.pcat-breadcrumbs a:hover,
.pcat-breadcrumbs span:last-child {
  color: var(--forge-on-surface);
}

.pcat-title {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.pcat-intro {
  max-width: 50rem;
  margin-top: 14px;
  color: #667380;
  font-size: 0.98rem;
  line-height: 1.72;
}

.pcat-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  background: var(--forge-surface-low);
  position: relative;
  z-index: 3;
}

.pcat-sort-menu {
  position: relative;
}

.pcat-sort-menu[open] {
  z-index: 4;
}

.pcat-sort-menu summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-right: 1px solid rgba(154, 70, 0, 0.12);
  cursor: pointer;
}

.pcat-sort-menu summary::-webkit-details-marker {
  display: none;
}

.pcat-sort-menu summary span {
  color: #6a7480;
  font-size: 0.76rem;
}

.pcat-sort-menu summary strong {
  color: var(--forge-on-surface);
  font-size: 0.86rem;
  font-weight: 700;
}

.pcat-sort-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(154, 70, 0, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.pcat-sort-dropdown a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--forge-on-surface);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.pcat-sort-dropdown a:hover {
  background: var(--forge-surface-low);
  color: var(--forge-primary);
}

.pcat-view-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pcat-view-switch a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6a7480;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.pcat-view-switch svg {
  display: block;
}

.pcat-view-switch a.active {
  background: var(--forge-surface-high);
  color: var(--forge-primary);
}

.pcat-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.pcat-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.pcat-filter-shell {
  padding: 22px;
  border: 1px solid rgba(154, 70, 0, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.pcat-filter-shell--catalog {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(154, 70, 0, 0.1);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.pcat-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.pcat-filter-head--stack {
  align-items: flex-start;
}

.pcat-filter-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pcat-filter-head h2 {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pcat-filter-head a {
  color: var(--forge-tertiary);
  font-size: 0.72rem;
  text-decoration: none;
}

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

.pcat-catalog-list a {
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  color: var(--forge-on-surface);
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.pcat-catalog-list a::before {
  content: '';
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1px solid rgba(83, 96, 105, 0.42);
  border-radius: 4px;
  background: #ffffff;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.pcat-catalog-list a span {
  flex: 1 1 auto;
  font-weight: 500;
  line-height: 1.35;
}

.pcat-catalog-list a em {
  color: #87909b;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
}

.pcat-catalog-list a:hover {
  color: var(--forge-primary);
  transform: translateX(2px);
}

.pcat-catalog-list a.active {
  color: var(--forge-primary);
}

.pcat-catalog-list a.active::before {
  border-color: var(--forge-primary);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0) 42%),
    var(--forge-primary);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.pcat-filter-group {
  padding: 18px 0;
  border-top: 1px solid rgba(154, 70, 0, 0.1);
}

.pcat-filter-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.pcat-filter-group summary {
  list-style: none;
  cursor: pointer;
  color: #6a7480;
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

.pcat-filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 30px;
  color: var(--forge-on-surface);
  font-size: 0.88rem;
  text-decoration: none;
}

.pcat-filter-list a::before {
  content: '';
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1px solid rgba(83, 96, 105, 0.42);
  border-radius: 4px;
  background: #ffffff;
}

.pcat-filter-list a span {
  flex: 1 1 auto;
}

.pcat-filter-list a em {
  color: #87909b;
  font-size: 0.72rem;
  font-style: normal;
}

.pcat-filter-list a:hover,
.pcat-filter-list a.active {
  color: var(--forge-primary);
}

.pcat-filter-list a.active::before {
  border-color: var(--forge-primary);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0) 42%),
    var(--forge-primary);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.pcat-support-card {
  padding: 22px;
  border-left: 4px solid var(--forge-primary);
  border-radius: 12px;
  background: var(--forge-primary-fixed);
}

.pcat-support-card strong {
  display: block;
  color: var(--forge-on-primary-fixed);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.pcat-support-card p {
  margin-top: 8px;
  color: rgba(50, 18, 0, 0.74);
  font-size: 0.8rem;
  line-height: 1.6;
}

.pcat-support-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--forge-primary);
  font-family: var(--forge-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pcat-link-icon {
  display: inline-flex;
  transition: transform 0.18s ease;
}

.pcat-support-card a:hover .pcat-link-icon {
  transform: translateX(3px);
}

.pcat-main {
  min-width: 0;
}

.pcat-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pcat-results-controls {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.pcat-results-copy {
  min-width: 0;
}

.pcat-results-count {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcat-results-copy p {
  max-width: 52rem;
  margin-top: 6px;
  color: #6a7480;
  font-size: 0.9rem;
  line-height: 1.65;
}

.pcat-search-bar {
  width: min(320px, 100%);
  max-width: 360px;
  flex: 1 1 280px;
}

.pcat-search-input {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: var(--forge-on-surface);
  font-size: 0.88rem;
}

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

.pcat-grid--list {
  grid-template-columns: 1fr;
}

.pcat-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.pcat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 70, 0, 0.2);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.1);
}

.pcat-card--list {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
}

.pcat-card-media {
  position: relative;
  height: 276px;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.98), rgba(241, 243, 246, 0.92) 66%, rgba(231, 234, 239, 0.9) 100%),
    linear-gradient(180deg, #f9fbfd 0%, #eef2f6 100%);
  text-decoration: none;
}

.pcat-card-media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 22px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99, 107, 116, 0.22) 0%, rgba(99, 107, 116, 0) 70%);
  filter: blur(8px);
}

.pcat-card--list .pcat-card-media {
  height: 100%;
  min-height: 276px;
}

.pcat-card-media img {
  z-index: 1;
  opacity: 0.98;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: center;
  padding: 26px 26px 42px;
  box-sizing: border-box;
  transition: transform 0.24s ease;
}

.pcat-card:hover .pcat-card-media img {
  transform: translateY(-4px) scale(1.025);
}

.pcat-card-fallback {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(154, 70, 0, 0.56);
  font-family: var(--forge-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.pcat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 4px;
  background: var(--forge-tertiary);
  color: #ffffff;
  font-family: var(--forge-font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcat-badge--primary {
  background: var(--forge-primary);
}

.pcat-badge--dark {
  background: #564334;
}

.pcat-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.pcat-card-sku,
.pcat-card-family {
  color: #7a8592;
  font-family: var(--forge-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pcat-card-title {
  display: block;
  margin-top: 6px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.pcat-card-title:hover {
  color: var(--forge-primary);
}

.pcat-card-family {
  margin-top: 6px;
  color: var(--forge-primary);
}

.pcat-card-summary {
  margin-top: 12px;
  color: #667380;
  font-size: 0.92rem;
  line-height: 1.68;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pcat-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(154, 70, 0, 0.08);
}

.pcat-spec-item span {
  display: block;
  color: #7a8592;
  font-family: var(--forge-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pcat-spec-item strong {
  display: block;
  margin-top: 4px;
  color: var(--forge-on-surface);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.pcat-card-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.pcat-compare-toggle {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #ffffff;
  color: var(--forge-on-surface);
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pcat-compare-toggle span {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(83, 96, 105, 0.42);
  border-radius: 4px;
  background: #ffffff;
}

.pcat-compare-toggle.is-active {
  color: var(--forge-primary);
}

.pcat-compare-toggle.is-active span {
  border-color: var(--forge-primary);
  background: var(--forge-primary);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.pcat-inquiry-button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--forge-primary);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    opacity 0.2s ease,
    background 0.2s ease;
}

.pcat-inquiry-button:hover {
  opacity: 0.92;
}

.pcat-inquiry-button.is-active {
  background: #1a1c1e;
}

.pcat-compare-bar {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  width: min(980px, calc(100% - 48px));
  transform: translateX(-50%);
}

.pcat-compare-inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(16, 20, 26, 0.96);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
}

.pcat-compare-list {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pcat-compare-list::-webkit-scrollbar {
  display: none;
}

.pcat-compare-summary {
  flex: 0 0 auto;
}

.pcat-compare-summary span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--forge-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pcat-compare-summary strong {
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pcat-compare-divider {
  width: 1px;
  height: 42px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.12);
}

.pcat-compare-item {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 42px minmax(0, 126px);
  gap: 10px;
  align-items: center;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.pcat-compare-thumb {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 8px;
  background: #252b35;
}

.pcat-compare-thumb span {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--forge-font-mono);
  font-weight: 800;
}

.pcat-compare-thumb-image {
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: 5px;
}

.pcat-compare-item p {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcat-compare-item button {
  margin-top: 3px;
  border: 0;
  background: transparent;
  color: #ffb68c;
  font-family: var(--forge-font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pcat-compare-empty {
  width: 104px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.34);
  font-size: 1.15rem;
}

.pcat-compare-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pcat-compare-actions button {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.pcat-compare-actions a {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forge-primary);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .pcat-shell {
    grid-template-columns: 264px minmax(0, 1fr);
  }

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

@media (max-width: 960px) {
  .pcat-topbar,
  .pcat-results-head {
    flex-direction: column;
    align-items: stretch;
  }

  .pcat-results-controls {
    width: 100%;
    justify-content: space-between;
  }

  .pcat-shell {
    grid-template-columns: 1fr;
  }

  .pcat-sidebar {
    position: static;
  }

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

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

  .pcat-card--list .pcat-card-media {
    height: 236px;
    min-height: 0;
  }

  .pcat-search-bar {
    width: 100%;
    max-width: none;
  }

  .pcat-toolbar {
    width: fit-content;
    margin-left: auto;
  }

  .pcat-compare-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .pcat-compare-actions {
    justify-content: space-between;
  }
}

@media (max-width: 680px) {
  .pcat-section {
    padding-top: 16px;
  }

  .pcat-results-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .pcat-toolbar {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .pcat-sort-menu summary {
    padding-inline: 8px;
  }

  .pcat-sort-menu summary span {
    display: none;
  }

  .pcat-filter-shell,
  .pcat-support-card,
  .pcat-card-body {
    padding: 18px;
  }

  .pcat-card-media {
    height: 248px;
  }

  .pcat-spec-grid {
    gap: 12px;
  }

  .pcat-compare-bar {
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .pcat-compare-divider,
  .pcat-compare-empty {
    display: none;
  }

  .pcat-compare-actions a {
    padding-inline: 14px;
  }
}

.pcmp-shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pcmp-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(214, 124, 47, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96));
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.08);
}

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

.pcmp-stat-card {
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.pcmp-stat-card span {
  display: block;
  margin-bottom: 10px;
  color: #6b7280;
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcmp-stat-card strong {
  color: #0f172a;
  font-family: var(--forge-font-headline);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pcmp-view-switch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.06);
}

.pcmp-view-switch a {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.pcmp-view-switch a.is-active {
  background: #10141a;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.24);
}

.pcmp-matrix-shell {
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.pcmp-matrix {
  min-width: 100%;
}

.pcmp-matrix-row {
  display: grid;
  gap: 12px;
  align-items: stretch;
  margin-top: 12px;
}

.pcmp-matrix-row--head {
  position: sticky;
  top: 18px;
  z-index: 5;
  margin-top: 0;
}

.pcmp-corner-cell,
.pcmp-product-cell,
.pcmp-parameter-cell,
.pcmp-value-cell {
  min-width: 0;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.pcmp-corner-cell {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(22, 33, 52, 0.96)),
    linear-gradient(135deg, rgba(214, 124, 47, 0.22), transparent 54%);
  color: #ffffff;
}

.pcmp-corner-cell span,
.pcmp-parameter-cell span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcmp-corner-cell span {
  color: rgba(255, 255, 255, 0.56);
}

.pcmp-corner-cell strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pcmp-corner-cell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.6;
}

.pcmp-product-cell {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background:
    radial-gradient(circle at top right, rgba(214, 124, 47, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.99), rgba(22, 33, 52, 0.96));
  color: #ffffff;
}

.pcmp-product-media {
  position: relative;
  width: 72px;
  height: 72px;
  overflow: hidden;
  flex: 0 0 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.pcmp-product-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--forge-font-headline);
  font-size: 1.55rem;
  font-weight: 800;
}

.pcmp-product-image {
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: 12px;
}

.pcmp-product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcmp-product-sku {
  color: #ffbe95;
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcmp-product-copy strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.pcmp-product-copy em {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.4;
}

.pcmp-product-cell .button-link {
  color: #ffffff;
}

.pcmp-product-cell .button-link:hover {
  color: #ffd2b3;
}

.pcmp-group-block {
  margin-top: 24px;
}

.pcmp-group-label {
  margin: 0 0 10px;
  padding: 0 6px;
  color: #0f172a;
  font-family: var(--forge-font-headline);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pcmp-parameter-cell {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.96));
}

.pcmp-parameter-cell span {
  color: #7c8797;
}

.pcmp-parameter-cell strong {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.pcmp-value-cell {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  color: #17202c;
  font-size: 0.95rem;
  line-height: 1.65;
}

.pcmp-value-cell.is-empty {
  border-style: dashed;
  color: #94a3b8;
  background: rgba(248, 250, 252, 0.9);
}

.pcmp-matrix-row.is-diff .pcmp-parameter-cell,
.pcmp-matrix-row.is-diff .pcmp-value-cell {
  border-color: rgba(214, 124, 47, 0.24);
  box-shadow: 0 18px 36px rgba(214, 124, 47, 0.08);
}

.pcmp-matrix-row.is-diff .pcmp-parameter-cell {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(255, 255, 255, 0.96));
}

@media (max-width: 1100px) {
  .pcmp-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .pcmp-view-switch {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .pcmp-summary {
    padding: 18px;
    border-radius: 22px;
  }

  .pcmp-stat-grid {
    grid-template-columns: 1fr;
  }

  .pcmp-view-switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pcmp-view-switch a {
    width: 100%;
  }

  .pcmp-matrix-row--head {
    top: 10px;
  }

  .pcmp-product-media {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .pcmp-corner-cell,
  .pcmp-product-cell,
  .pcmp-parameter-cell,
  .pcmp-value-cell {
    border-radius: 18px;
  }
}

.pdet-page {
  padding: 28px 0 96px;
  background:
    radial-gradient(circle at 86% 9%, rgba(154, 70, 0, 0.05), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, rgba(249, 249, 252, 0.96) 100%);
}

.pdet-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #6a7480;
  font-size: 0.75rem;
}

.pdet-breadcrumbs a {
  color: #6a7480;
  text-decoration: none;
}

.pdet-breadcrumbs a:hover,
.pdet-breadcrumbs span:last-child {
  color: var(--forge-on-surface);
}

.pdet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.82fr);
  gap: 40px;
  align-items: center;
  padding: 34px 0 46px;
}

.pdet-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdet-sku-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--forge-tertiary);
  font-family: var(--forge-font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pdet-sku-line::before {
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
}

.pdet-title {
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(2.15rem, 3.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.pdet-subtitle {
  max-width: 36rem;
  margin: 18px 0 0;
  color: #5d6772;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.pdet-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.pdet-metric-card {
  min-height: 88px;
  padding: 16px;
  border-radius: 12px;
  background: var(--forge-surface-container);
}

.pdet-metric-card span {
  display: block;
  margin-bottom: 5px;
  color: #6a7480;
  font-family: var(--forge-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdet-metric-card strong {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.3;
}

.pdet-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pdet-chip {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  background: var(--forge-tertiary-fixed);
  color: var(--forge-on-tertiary-container);
  font-size: 0.74rem;
  font-weight: 700;
}

.pdet-hero-visual {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

.pdet-image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background:
    radial-gradient(circle at center, rgba(154, 70, 0, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(243, 243, 246, 0.98) 100%);
}

.pdet-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(var(--forge-primary) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
}

.pdet-image-fallback {
  position: relative;
  z-index: 1;
  color: var(--forge-secondary);
  font-family: var(--forge-font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pdet-media-image {
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
}

.pdet-media-image--hero {
  padding: clamp(28px, 4vw, 54px);
}

.pdet-media-image--secondary {
  padding: 24px;
}

.pdet-media-image--related {
  padding: 18px;
}

.pdet-overlay-card {
  position: static;
  justify-self: end;
  width: min(360px, 100%);
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(241, 242, 244, 0.88);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
}

.pdet-overlay-card p {
  margin: 0 0 12px;
  color: #3b4951;
  font-size: 0.8rem;
  line-height: 1.55;
}

.pdet-primary-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(137, 115, 98, 0.18);
  color: var(--forge-on-surface);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.pdet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.pdet-main {
  min-width: 0;
  display: grid;
  gap: 54px;
}

.pdet-section-block h3,
.pdet-connectivity-block h3 {
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pdet-section-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
}

.pdet-section-head h2 {
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pdet-section-head p {
  margin: 6px 0 0;
  color: #6a7480;
  font-size: 0.82rem;
  font-weight: 600;
}

.pdet-section-rule {
  flex: 1 1 auto;
  height: 1px;
  margin-bottom: 8px;
  background: rgba(137, 115, 98, 0.22);
}

.pdet-spec-grid {
  border-top: 1px solid rgba(26, 28, 30, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}

.pdet-spec-groups {
  display: grid;
  gap: 28px;
}

.pdet-spec-group {
  display: grid;
  gap: 12px;
}

.pdet-spec-group-title {
  color: var(--forge-on-surface);
  font-family: var(--forge-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pdet-spec-row {
  min-height: 58px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(137, 115, 98, 0.14);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pdet-spec-row span {
  color: #6a7480;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pdet-spec-row strong {
  max-width: 58%;
  color: var(--forge-on-surface);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: right;
}

.pdet-connectivity-block {
  padding: 34px;
  border-radius: 18px;
  background: var(--forge-surface-low);
}

.pdet-connectivity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.88fr;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
}

.pdet-connectivity-copy {
  margin: 0;
  max-width: 34rem;
  color: #44515b;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
}

.pdet-info-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.pdet-info-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.pdet-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--forge-primary);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.pdet-info-item strong {
  display: block;
  color: var(--forge-on-surface);
  font-size: 0.92rem;
  font-weight: 700;
}

.pdet-info-item span {
  display: block;
  margin-top: 4px;
  color: #6a7480;
  font-size: 0.82rem;
  line-height: 1.6;
}

.pdet-connectivity-visual {
  position: relative;
  min-height: 324px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(228, 231, 235, 0.96) 0%, rgba(210, 215, 221, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pdet-resource-head {
  margin-bottom: 24px;
}

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

.pdet-resource-card {
  aspect-ratio: 4 / 3;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--forge-surface-container);
  color: var(--forge-on-surface);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.pdet-resource-card:hover {
  transform: translateY(-3px);
  background: var(--forge-surface-highest);
}

.pdet-resource-icon {
  color: var(--forge-primary);
}

.pdet-resource-title {
  display: block;
  color: var(--forge-on-surface);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.pdet-resource-meta {
  display: block;
  margin-top: 4px;
  color: #6a7480;
  font-family: var(--forge-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdet-sidebar {
  min-width: 0;
}

.pdet-sidebar-sticky {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 24px;
}

.pdet-inquiry-shell {
  padding: 28px;
  border: 1px solid rgba(26, 28, 30, 0.08);
  background: var(--forge-surface-lowest);
  box-shadow: 0 16px 32px rgba(26, 28, 30, 0.07);
}

.pdet-inquiry-shell h4,
.pdet-related-shell h4 {
  margin: 0;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pdet-action-stack {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.pdet-action-tile {
  width: 100%;
  min-height: 56px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(154, 70, 0, 0.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--forge-surface-low);
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pdet-action-tile--secondary {
  background: transparent;
  border-color: rgba(137, 115, 98, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pdet-action-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forge-primary);
}

.pdet-quick-inquiry label {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(137, 115, 98, 0.12);
  margin-bottom: 8px;
  color: #6a7480;
  font-family: var(--forge-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pdet-quick-inquiry input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(137, 115, 98, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--forge-on-surface);
  font-size: 0.92rem;
}

.pdet-quick-inquiry p {
  margin: 12px 0 0;
  color: #6a7480;
  font-size: 0.69rem;
  line-height: 1.7;
  text-align: center;
}

.pdet-inquiry-button {
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: var(--forge-primary);
  color: #ffffff;
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-button);
  font-weight: 800;
  letter-spacing: var(--forge-track-button);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.pdet-inquiry-button:hover {
  background: var(--forge-on-primary-container);
}

.pdet-inquiry-button.is-active {
  background: var(--forge-on-surface);
}

.pdet-related-shell {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(137, 115, 98, 0.12);
  background: var(--forge-surface-low);
}

.pdet-related-stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.pdet-related-card {
  color: inherit;
  text-decoration: none;
}

.pdet-related-media {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(219, 223, 228, 0.96) 0%, rgba(198, 204, 211, 0.96) 100%);
}

.pdet-related-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.pdet-related-eyebrow {
  display: block;
  margin-top: 12px;
  color: #6a7480;
  font-family: var(--forge-font-mono);
  font-size: var(--forge-type-overline);
  font-weight: 700;
  letter-spacing: var(--forge-track-label);
  text-transform: uppercase;
}

.pdet-related-card strong {
  display: block;
  margin-top: 4px;
  color: var(--forge-on-surface);
  font-family: var(--forge-font-headline);
  font-size: var(--forge-type-body-lg);
  font-weight: 700;
  line-height: var(--forge-leading-heading);
}

.pdet-related-card p {
  margin: 4px 0 0;
  color: #6a7480;
  font-size: 0.78rem;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .pdet-hero {
    grid-template-columns: 1fr;
  }

  .pdet-hero-visual {
    max-width: 680px;
    justify-self: center;
  }

  .pdet-overlay-card {
    justify-self: stretch;
    width: 100%;
  }

  .pdet-layout {
    grid-template-columns: 1fr;
  }

  .pdet-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 960px) {
  .pdet-metric-grid,
  .pdet-spec-grid,
  .pdet-resource-grid,
  .pdet-connectivity-grid {
    grid-template-columns: 1fr;
  }

  .pdet-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .pdet-section-rule {
    display: none;
  }
}

@media (max-width: 680px) {
  .pdet-page {
    padding-top: 18px;
  }

  .pdet-title {
    font-size: 2.05rem;
  }

  .pdet-subtitle {
    font-size: 0.98rem;
  }

  .pdet-image-frame,
  .pdet-connectivity-block,
  .pdet-resource-card,
  .pdet-related-shell,
  .pdet-inquiry-shell {
    border-radius: 14px;
  }

  .pdet-image-frame {
    width: 100%;
    height: 320px;
    min-height: 0;
    aspect-ratio: auto;
    padding: 28px;
  }

  .pdet-overlay-card {
    margin-top: 16px;
  }

  .pdet-connectivity-block,
  .pdet-inquiry-shell,
  .pdet-related-shell {
    padding: 20px;
  }

  .pdet-metric-card {
    padding: 14px;
  }

  .pdet-media-image--hero {
    padding: 22px;
  }

  .pdet-media-image--secondary {
    padding: 18px;
  }

  .pdet-media-image--related {
    padding: 14px;
  }
}

/* About and cases bottom CTA warm system */
.cta-banner,
.casehub-similar-shell {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 72px 28px 76px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 219, 201, 0.18), transparent 34%),
    linear-gradient(180deg, #9f5a19 0%, #884406 100%);
  box-shadow: none;
  color: #ffffff;
  text-align: center;
}

.cta-banner::before,
.casehub-similar-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%),
    radial-gradient(#ffdbc9 0.5px, transparent 0.5px);
  background-size: auto, 24px 24px;
  opacity: 0.28;
  pointer-events: none;
}

.cta-banner__copy {
  max-width: 820px;
}

.cta-banner .section-title,
.casehub-similar-shell .section-title {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.cta-banner .section-title em,
.casehub-similar-shell .section-title em {
  color: #ffffff;
  font-style: normal;
}

.cta-banner__copy p,
.casehub-similar-shell .section-subtitle {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.cta-banner__actions,
.casehub-similar-shell .btn-group {
  justify-content: center !important;
  gap: 14px;
}

.cta-banner .button,
.casehub-similar-shell .button-orange {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
  color: #884406;
}

.cta-banner .button-soft,
.casehub-similar-shell .button-soft {
  min-height: 50px;
  padding: 0 24px;
  border-color: rgba(255, 232, 216, 0.74);
  border-radius: 4px;
  background: #f6dfcd;
  box-shadow: none;
  color: #753400;
}

.cta-banner .button:hover,
.casehub-similar-shell .button-orange:hover {
  border-color: #ffffff;
  background: #fff8f1;
  box-shadow: none;
  color: #753400;
}

.cta-banner .button-soft:hover,
.casehub-similar-shell .button-soft:hover {
  border-color: #ffe8d8;
  background: #ffe8d8;
  color: #753400;
}

@media (max-width: 680px) {
  .cta-banner,
  .casehub-similar-shell {
    padding: 54px 20px 58px;
  }

  .cta-banner .section-title,
  .casehub-similar-shell .section-title {
    font-size: clamp(1.85rem, 9.8vw, 2.55rem);
  }

  .cta-banner__actions,
  .casehub-similar-shell .btn-group {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }

  .cta-banner .button,
  .cta-banner .button-soft,
  .casehub-similar-shell .button-orange,
  .casehub-similar-shell .button-soft {
    width: 100%;
  }
}

/* Keep small accent labels readable on light cards and warm surfaces. */
.section-label,
.card-label,
.product-card__family,
.resource-type,
.res-doc-type,
.signal-card__label,
.library-card__meta,
.tag.orange,
.badge-mid,
.cta-tier-badge.mid,
.type-faq,
.sol-gallery-card-tag,
.sol-feat-detail-label,
.img-sol-card__label,
.img-prod-card__category,
.warehouse-visual-summary small,
.warehouse-related-card span,
.wh3-side-copy span,
.res-mini-doc span,
.abt-mini-block span,
.casehub-story-tag,
.casehub-story-status,
.warehouse-layer-tag,
.sol-bento-kicker,
.sol-library-card-kicker,
.home-v2-resource-item em,
.home-v2-next-note span,
.home-v2--proto .proto-home__library-card span,
.sdt-spec-panel--lead .sdt-spec-kicker,
.pcat-card-family {
  color: var(--forge-accent-text);
}

.home-scenarios:not(.home-scenarios--dark) .sol-panel__label,
.home-scenarios:not(.home-scenarios--dark) .section-label {
  color: var(--forge-accent-text);
}

/* Normalize homepage product card CTAs so long model names never squeeze the button. */
.home-v2--proto .proto-home__product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  min-height: 44px;
}

.home-v2--proto .proto-home__product-model {
  min-width: 0;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-v2--proto .proto-home__product-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 112px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(117, 52, 0, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--forge-accent-text);
  line-height: 1;
  white-space: nowrap;
}

.home-v2--proto .proto-home__product-link:hover {
  border-color: rgba(117, 52, 0, 0.42);
  background: #fff8f1;
  color: var(--forge-accent-text);
}

.home-v2--proto .proto-home__product-link::after {
  flex: 0 0 auto;
  line-height: 1;
}

/* Product pages typography calibration: balance oversized headings and tiny technical labels. */
.pcat-title {
  font-size: clamp(2.05rem, 2.8vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.pcat-breadcrumbs,
.pcat-results-count,
.pcat-filter-head a,
.pcat-support-card a {
  font-size: 0.76rem;
}

.pcat-sort-menu summary span,
.pcat-filter-group summary {
  font-size: 0.72rem;
}

.pcat-sort-menu summary strong,
.pcat-catalog-list a,
.pcat-filter-list a,
.pcat-search-input {
  font-size: 0.9rem;
}

.pcat-results-copy p,
.pcat-support-card p,
.pcat-card-summary,
.pcat-intro {
  font-size: 0.9rem;
  line-height: 1.68;
}

.pcat-filter-head h2,
.pcat-support-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.pcat-filter-kicker {
  font-size: 0.68rem;
}

.pcat-badge {
  min-height: 26px;
  font-size: 0.62rem;
  line-height: 1;
}

.pcat-card-title {
  font-size: clamp(1.08rem, 1.25vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.024em;
}

.pcat-card-sku,
.pcat-card-family {
  font-size: 0.68rem;
  line-height: 1.45;
}

.pcat-spec-item span {
  font-size: 0.66rem;
  line-height: 1.45;
}

.pcat-spec-item strong {
  font-size: 0.94rem;
  line-height: 1.42;
}

.pcat-compare-toggle,
.pcat-inquiry-button,
.pcat-compare-actions button,
.pcat-compare-actions a {
  font-size: 0.84rem;
}

.pdet-sku-line {
  font-size: 0.78rem;
  line-height: 1.45;
}

.pdet-title {
  font-size: clamp(2.2rem, 3.15vw, 3.35rem);
  line-height: 1.07;
  letter-spacing: -0.042em;
}

.pdet-subtitle {
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.72;
}

.pdet-metric-card span {
  font-size: 0.68rem;
  line-height: 1.45;
}

.pdet-metric-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.pdet-chip {
  font-size: 0.82rem;
}

.pdet-section-head h2 {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.pdet-section-block h3,
.pdet-connectivity-block h3 {
  font-size: 1.38rem;
  line-height: 1.18;
  letter-spacing: -0.032em;
}

.pdet-section-head p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.pdet-spec-row span,
.pdet-spec-row strong {
  font-size: 0.94rem;
}

.pdet-connectivity-copy {
  font-size: 0.98rem;
}

.pdet-info-item strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.pdet-info-item span {
  font-size: 0.88rem;
  line-height: 1.66;
}

.pdet-resource-title {
  font-size: 0.98rem;
  line-height: 1.48;
}

.pdet-resource-meta,
.pdet-quick-inquiry label,
.pdet-related-eyebrow {
  font-size: 0.7rem;
  line-height: 1.45;
}

.pdet-inquiry-shell h4,
.pdet-related-shell h4 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.pdet-action-tile,
.pdet-primary-button,
.pdet-inquiry-button {
  font-size: 0.84rem;
}

.pdet-quick-inquiry input {
  font-size: 0.94rem;
}

.pdet-quick-inquiry p {
  font-size: 0.78rem;
  line-height: 1.66;
}

.pdet-related-card strong {
  font-size: 1rem;
  line-height: 1.32;
}

.pdet-related-card p {
  font-size: 0.84rem;
  line-height: 1.62;
}

@media (max-width: 680px) {
  .pcat-title {
    font-size: clamp(1.9rem, 10vw, 2.35rem);
  }

  .pcat-card-title {
    font-size: 1.08rem;
  }

  .pdet-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.1;
  }

  .pdet-section-head h2 {
    font-size: 1.45rem;
  }

  .pdet-section-block h3,
  .pdet-connectivity-block h3 {
    font-size: 1.24rem;
  }
}

/* Title wrap optimization: reduce narrow-column breaks and soften clamp-based truncation. */
.hero-h1,
.hero-title,
.section-title,
.card-title,
.page-hero__copy .hero-h1,
.warehouse-hero-copy .hero-h1,
.casehub-hero-copy .hero-h1,
.res-hero-copy .hero-h1,
.abt-hero-copy .hero-h1,
.home-v2-hero__title,
.home-v2--proto .proto-home__hero-title,
.home-v2--proto .proto-home__section-title,
.home-v2--proto .proto-home__solution-title,
.res-proto__hero-title,
.res-proto__featured-title,
.res-proto__card-title,
.sol-hero-h1,
.sol-bento-title,
.sdt-title,
.sdt-section-title,
.pcat-title,
.pdet-title {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.page-hero__copy .hero-h1,
.warehouse-hero-copy .hero-h1,
.res-hero-copy .hero-h1 {
  max-width: min(16ch, 100%);
}

.casehub-hero-copy .hero-h1 {
  max-width: min(13ch, 100%);
}

.abt-hero-copy .hero-h1 {
  max-width: min(15ch, 100%);
}

.home-v2-hero__title {
  max-width: min(14ch, 100%);
}

.home-v2--proto .proto-home__hero-title {
  max-width: min(17ch, 100%);
}

.res-proto__hero-title {
  max-width: min(18.5ch, 100%);
}

.res-proto__featured-title {
  max-width: min(17ch, 100%);
}

.sol-hero-h1 {
  max-width: min(18ch, 100%);
  white-space: normal;
}

.res-proto__card-title,
.home-v2--proto .proto-home__solution-title {
  text-wrap: pretty;
}

.sol-bento-card--sidebar .sol-bento-title,
.sol-bento-card--support .sol-bento-title {
  -webkit-line-clamp: 3;
  min-height: calc(1.16em * 3);
}

@media (max-width: 980px) {
  .res-proto__hero-title,
  .res-proto__featured-title,
  .page-hero__copy .hero-h1,
  .warehouse-hero-copy .hero-h1,
  .casehub-hero-copy .hero-h1,
  .abt-hero-copy .hero-h1,
  .res-hero-copy .hero-h1,
  .home-v2-hero__title,
  .home-v2--proto .proto-home__hero-title,
  .sol-hero-h1 {
    max-width: none;
  }
}

/* Second-pass title polish: widen remaining narrow heroes and normalize card headline wrapping. */
.res-proto__support-title,
.signal-card__title,
.casehub-story-title,
.home-v2--proto .proto-home__product-copy h3,
.home-v2--proto .proto-home__library-card h3,
.home-v2--proto .proto-home__evidence-card h3,
.home-v2--proto .proto-home__faq-item summary span:first-child,
.home-v2--proto .proto-home__final-wrap h2,
.pcat-card-title,
.pdet-resource-title,
.pdet-related-card strong {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.page-hero__copy .hero-h1,
.warehouse-hero-copy .hero-h1,
.res-hero-copy .hero-h1 {
  max-width: min(18ch, 100%);
}

.casehub-hero-copy .hero-h1 {
  max-width: min(15ch, 100%);
}

.abt-hero-copy .hero-h1 {
  max-width: min(16ch, 100%);
}

.home-v2-hero__title {
  max-width: min(16ch, 100%);
}

.home-v2--proto .proto-home__hero-title {
  max-width: min(20ch, 100%);
  line-height: 1.02;
}

.res-proto__hero-title {
  max-width: min(20ch, 100%);
  line-height: 1.04;
}

.res-proto__featured-title {
  max-width: min(20.5ch, 100%);
  line-height: 1.08;
}

.res-proto__support-title {
  max-width: min(15ch, 100%);
  line-height: 1.03;
}

.sol-hero-h1 {
  max-width: min(19ch, 100%);
}

.home-v2--proto .proto-home__final-wrap h2,
.pcat-title,
.pdet-title {
  line-height: 1.08;
}

/* About page and card rhythm calibration: normalize title blocks, summary density, and action baselines. */
.abt-factory-card,
.abt-why-card,
.abt-cap-card--proof,
.abt-industry-card,
.abt-evidence-card,
.process-step--visual,
.home-v2--proto .proto-home__product-card,
.home-v2--proto .proto-home__library-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.abt-number-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.abt-number-item small {
  margin-top: auto !important;
  padding-top: 8px;
}

.abt-factory-copy,
.abt-cap-copy,
.abt-evidence-card__body,
.home-v2--proto .proto-home__product-copy,
.home-v2--proto .proto-home__solution-copy,
.res-proto__card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.abt-factory-copy {
  gap: 16px;
}

.abt-factory-copy .abt-hero-mini,
.abt-factory-copy--stack .abt-evidence-grid,
.abt-cap-card .summary-list,
.home-v2--proto .proto-home__product-meta,
.res-proto__card-bottom {
  margin-top: auto;
}

.home-v2--proto .proto-home__library-card {
  gap: 10px;
}

.home-v2--proto .proto-home__solution-copy {
  justify-content: flex-end;
  gap: 12px;
}

.res-proto__card-main {
  gap: 10px;
}

.abt-why-card .card-title,
.abt-industry-card .card-title,
.abt-cap-copy .card-title,
.abt-evidence-card__body strong,
.process-step--visual .process-step__title,
.home-v2--proto .proto-home__product-copy h3,
.home-v2--proto .proto-home__library-card h3,
.home-v2--proto .proto-home__solution-title,
.pcat-card-title,
.res-proto__card-title,
.res-proto__featured-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-wrap: pretty;
}

.abt-why-card .card-title,
.abt-industry-card .card-title,
.abt-cap-copy .card-title {
  -webkit-line-clamp: 2;
  min-height: calc(1.34em * 2);
}

.abt-evidence-card__body strong {
  -webkit-line-clamp: 2;
  line-height: 1.42;
  min-height: calc(1.42em * 2);
}

.process-step--visual .process-step__title {
  -webkit-line-clamp: 2;
  line-height: 1.34;
  min-height: calc(1.34em * 2);
}

.home-v2--proto .proto-home__product-copy h3,
.home-v2--proto .proto-home__library-card h3 {
  -webkit-line-clamp: 2;
  line-height: 1.32;
  min-height: calc(1.32em * 2);
}

.home-v2--proto .proto-home__solution-title,
.pcat-card-title {
  -webkit-line-clamp: 2;
}

.home-v2--proto .proto-home__solution-title {
  min-height: calc(1.12em * 2);
}

.pcat-card-title {
  min-height: calc(1.25em * 2);
}

.res-proto__card-title {
  -webkit-line-clamp: 2;
}

.res-proto__card-title {
  min-height: calc(1.18em * 2);
}

.res-proto__featured-title {
  -webkit-line-clamp: 3;
  min-height: calc(1.08em * 3);
}

.abt-why-card .card-body,
.abt-industry-card .card-body,
.abt-cap-copy .card-body,
.abt-evidence-card__body span,
.process-step--visual .process-step__copy,
.home-v2--proto .proto-home__product-copy p,
.home-v2--proto .proto-home__library-card p,
.res-proto__card-summary,
.res-proto__featured-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.abt-why-card .card-body,
.abt-industry-card .card-body,
.abt-cap-copy .card-body {
  min-height: calc(1.72em * 3);
}

.abt-evidence-card__body span {
  min-height: calc(1.58em * 3);
}

.process-step--visual .process-step__copy {
  min-height: calc(1.62em * 3);
}

.home-v2--proto .proto-home__product-copy p,
.home-v2--proto .proto-home__library-card p {
  min-height: calc(1.56em * 3);
}

.res-proto__card-summary {
  -webkit-line-clamp: 2;
  margin: 0;
  min-height: calc(1.56em * 2);
}

.res-proto__featured-summary {
  -webkit-line-clamp: 3;
  min-height: calc(1.58em * 3);
}

.res-proto__fact-grid {
  margin-bottom: 0;
}

.res-proto__card-bottom {
  display: grid;
  gap: 12px;
}

.res-proto__featured-copy > .res-proto__featured-link:last-child,
.res-proto__featured-copy > .res-proto__featured-actions:last-child {
  margin-top: auto;
}

.res-proto__featured-link,
.home-v2--proto .proto-home__product-link,
.sol-bento-action {
  min-height: 42px;
}

.cta-banner__actions > a,
.cta-banner__actions > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .abt-why-card .card-title,
  .abt-industry-card .card-title,
  .abt-cap-copy .card-title,
  .abt-evidence-card__body strong,
  .process-step--visual .process-step__title,
  .home-v2--proto .proto-home__product-copy h3,
  .home-v2--proto .proto-home__library-card h3,
  .home-v2--proto .proto-home__solution-title,
  .pcat-card-title,
  .res-proto__card-title,
  .res-proto__featured-title,
  .abt-why-card .card-body,
  .abt-industry-card .card-body,
  .abt-cap-copy .card-body,
  .abt-evidence-card__body span,
  .process-step--visual .process-step__copy,
  .home-v2--proto .proto-home__product-copy p,
  .home-v2--proto .proto-home__library-card p,
  .res-proto__card-summary,
  .res-proto__featured-summary {
    min-height: 0;
  }
}

/* Solution detail hierarchy calibration: unify type scale, reduce Chinese crowding, and compress mobile flow rows. */
.sdt-hero,
.sds-section,
.sdt-final-cta {
  --sdt-detail-h1: clamp(2rem, 3.15vw, 2.72rem);
  --sdt-detail-h2: clamp(1.5rem, 2vw, 1.82rem);
  --sdt-detail-h3: clamp(1.08rem, 1.24vw, 1.22rem);
  --sdt-detail-body: 1rem;
  --sdt-detail-body-sm: 0.92rem;
  --sdt-detail-label: 0.68rem;
  --sdt-detail-title-tracking: 0;
  --sdt-detail-card-tracking: 0;
}

.sdt-title,
.sdt-title--zh {
  font-size: var(--sdt-detail-h1);
  line-height: 1.1;
  letter-spacing: var(--sdt-detail-title-tracking);
}

.sds-head h2,
.sdt-final-copy h2 {
  font-size: var(--sdt-detail-h2);
  line-height: 1.16;
  letter-spacing: var(--sdt-detail-title-tracking);
}

.sds-card h3,
.sds-flow-copy h3,
.sds-feature-intro h3,
.sds-feature-copy h3,
.sds-usecase-copy h3,
.sds-hardware-copy h3,
.sds-related-card h4,
.sds-related-block-head h3 {
  font-size: var(--sdt-detail-h3);
  line-height: 1.32;
  letter-spacing: var(--sdt-detail-card-tracking);
}

.sds-feature-intro h3,
.sds-feature-copy--lead h3,
.sds-hardware-copy--primary h3 {
  font-size: clamp(1.16rem, 1.45vw, 1.34rem);
}

.sdt-body,
.sds-head p,
.sds-flow-copy p,
.sds-feature-intro p,
.sds-feature-copy--lead p,
.sdt-final-copy p {
  font-size: var(--sdt-detail-body);
  line-height: 1.68;
}

.sds-card p,
.sds-feature-copy p,
.sds-feature-bullets,
.sds-usecase-copy p,
.sds-hardware-copy p,
.sds-related-card p,
.sds-related-block-head p {
  font-size: var(--sdt-detail-body-sm);
  line-height: 1.62;
}

.sdt-pill,
.sdt-hero-badge span,
.sds-card-index,
.sds-chip-label,
.sds-proof-kicker,
.sds-flow-outcome span,
.sds-related-link {
  font-size: var(--sdt-detail-label);
  letter-spacing: 0.08em;
}

.sds-proof-card strong {
  font-size: clamp(1.55rem, 2.25vw, 2rem);
  line-height: 1.12;
  letter-spacing: var(--sdt-detail-title-tracking);
}

.sds-flow-outcome strong {
  font-size: var(--sdt-detail-h3);
  line-height: 1.4;
}

:is(html[lang="zh"], html[lang^="zh-"]) .sdt-title,
:is(html[lang="zh"], html[lang^="zh-"]) .sdt-title--zh,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-head h2,
:is(html[lang="zh"], html[lang^="zh-"]) .sdt-final-copy h2,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-card h3,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-flow-copy h3,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-feature-intro h3,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-feature-copy h3,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-usecase-copy h3,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-hardware-copy h3,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-related-card h4,
:is(html[lang="zh"], html[lang^="zh-"]) .sds-related-block-head h3 {
  letter-spacing: 0;
}

.sds-feature-intro {
  gap: 12px;
}

.sds-feature-labels {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .sdt-hero,
  .sds-section,
  .sdt-final-cta {
    --sdt-detail-h1: clamp(1.9rem, 8.2vw, 2.35rem);
    --sdt-detail-h2: clamp(1.32rem, 5.6vw, 1.55rem);
    --sdt-detail-h3: 1.04rem;
    --sdt-detail-body: 0.98rem;
    --sdt-detail-body-sm: 0.9rem;
  }

  .sds-section {
    padding: 38px 0 46px;
  }

  .sds-section + .sds-section {
    padding-top: 28px;
  }

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

  .sds-head p {
    margin-top: 10px;
  }

  .sds-flow-stack {
    gap: 14px;
  }

  .sds-flow-row,
  .sds-flow-row--reverse {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 0;
  }

  .sds-flow-row--reverse .sds-flow-figure,
  .sds-flow-row--reverse .sds-flow-copy {
    order: initial;
  }

  .sds-flow-figure {
    display: none;
  }

  .sds-flow-copy {
    height: auto;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .sds-flow-copy h3 {
    margin-top: 10px;
  }

  .sds-flow-copy p {
    margin-top: 8px;
  }

  .sds-flow-outcome {
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .sds-feature-layout,
  .sds-feature-support-grid,
  .sds-usecase-grid {
    gap: 14px;
  }

  .sds-feature-labels {
    display: none;
  }

  .sds-card--feature,
  .sds-card--feature-lead,
  .sds-card--usecase {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .sds-card--feature,
  .sds-card--feature-lead {
    grid-template-columns: 1fr;
  }

  .sds-card--feature-no-media,
  .sds-card--usecase-no-media {
    grid-template-columns: 1fr;
  }

  .sds-feature-media,
  .sds-feature-media--lead,
  .sds-usecase-media {
    min-height: 0;
    height: auto;
  }

  .sds-card--feature .sds-feature-media {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .sds-feature-intro,
  .sds-feature-copy,
  .sds-usecase-copy {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .sds-flow-row,
  .sds-flow-row--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sds-card--feature,
  .sds-card--feature-lead,
  .sds-card--usecase {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .sds-card--feature,
  .sds-card--feature-lead {
    grid-template-columns: 1fr;
  }

  .sds-card--feature-no-media,
  .sds-card--usecase-no-media {
    grid-template-columns: 1fr;
  }

  .sds-flow-copy {
    padding: 14px;
  }

  .sds-flow-outcome strong {
    font-size: 0.96rem;
  }
}

/* Multilingual layout resilience: long localized labels should wrap or collapse before overlapping. */
.site-locale-shell:lang(en) .site-header,
.site-locale-shell:lang(es) .site-header,
.site-locale-shell:lang(de) .site-header,
.site-locale-shell:lang(fr) .site-header,
.site-locale-shell:lang(pt) .site-header,
.site-locale-shell:lang(ru) .site-header {
  --site-nav-link-size: 0.86rem;
  --site-nav-link-tracking: 0.035em;
}

.site-locale-shell:lang(ru) .site-header {
  --site-nav-link-size: 0.82rem;
  --site-nav-link-tracking: 0.015em;
}

.site-nav ul a,
.nav-actions,
.nav-actions .button,
.lang-switcher__trigger {
  min-width: 0;
}

@media (max-width: 1500px) {
  .nav-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav ul {
    gap: 16px;
  }

  .nav-contact {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    --site-header-height: 72px;
  }

  .site-header--compact {
    --site-header-height: 60px;
  }

  .nav-inner {
    padding: 0 20px;
    gap: 12px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(var(--site-header-height) - 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--forge-radius-sm);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav ul li,
  .site-nav ul a {
    flex-shrink: 1;
  }

  .site-nav ul a {
    height: auto;
    min-height: 44px;
    padding: 10px 0;
    justify-content: flex-start;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }

  .site-nav ul a::after {
    right: auto;
    bottom: 6px;
    width: 24px;
    transform-origin: left;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
  }

  .nav-actions .button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 10px 14px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.18;
  }

  .nav-actions > div,
  .lang-switcher__trigger {
    width: 100%;
  }

  .lang-switcher__trigger {
    justify-content: flex-start;
  }

  .lang-switcher__label {
    max-width: none;
    flex: 1;
    text-align: left;
  }

  .lang-switcher__menu {
    right: 0;
    left: 0;
    min-width: 0;
  }
}

.home-v2--proto .proto-home__custom-card,
.home-v2--proto .proto-home__custom-copy,
.home-v2--proto .proto-home__custom-actions,
.home-v2--proto .proto-home__custom-primary {
  min-width: 0;
}

.home-v2--proto .proto-home__custom-copy span,
.home-v2--proto .proto-home__custom-copy h2,
.home-v2--proto .proto-home__custom-copy p {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.home-v2--proto .proto-home__custom-copy span {
  display: block;
  line-height: 1.35;
  white-space: normal;
}

.home-v2--proto .proto-home__custom-copy h2 {
  line-height: 1.16;
}

.home-v2--proto .proto-home__custom-primary {
  max-width: 100%;
  padding-block: 12px;
  text-align: center;
  white-space: normal;
  line-height: 1.18;
}

.home-v2--proto .proto-home__custom-primary::after {
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__custom-card {
    gap: 16px;
    padding: 16px 18px;
  }

  .home-v2--proto .proto-home__custom-copy {
    gap: 7px;
  }
}

.pcat-title,
.pcat-intro,
.pcat-results-count,
.pcat-results-copy p,
.pcat-filter-head h2,
.pcat-filter-group summary,
.pcat-filter-list a span,
.pcat-support-card strong,
.pcat-support-card p,
.pcat-support-card a,
.pcat-card-title,
.pcat-card-family,
.pcat-card-summary,
.pcat-spec-item span,
.pcat-spec-item strong {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.pcat-topbar,
.pcat-title-wrap,
.pcat-results-head,
.pcat-results-copy,
.pcat-results-controls,
.pcat-search-bar,
.pcat-toolbar,
.pcat-sort-menu,
.pcat-sort-menu summary,
.pcat-card-body,
.pcat-card-actions {
  min-width: 0;
}

.pcat-results-controls {
  align-items: stretch;
}

.pcat-toolbar {
  flex-wrap: wrap;
  max-width: 100%;
}

.pcat-sort-menu {
  flex: 1 1 min(220px, 100%);
  max-width: 100%;
}

.pcat-sort-menu summary {
  height: auto;
  padding-block: 6px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.pcat-sort-menu summary span,
.pcat-sort-menu summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pcat-sort-dropdown {
  max-width: min(320px, calc(100vw - 32px));
}

.pcat-sort-dropdown a {
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.pcat-filter-list a {
  align-items: flex-start;
}

.pcat-filter-list a span {
  min-width: 0;
}

.pcat-filter-list a em {
  flex: 0 0 auto;
}

.pcat-compare-toggle,
.pcat-inquiry-button {
  min-width: 0;
  height: auto;
  padding-block: 10px;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.pcat-compare-toggle {
  align-items: flex-start;
  text-align: left;
}

.pcat-inquiry-button {
  text-align: center;
}

@media (max-width: 680px) {
  .pcat-results-controls {
    justify-content: flex-start;
  }

  .pcat-search-bar {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  .pcat-toolbar {
    align-items: stretch;
  }

  .pcat-sort-menu {
    flex: 1 1 0;
  }

  .pcat-view-switch {
    flex: 0 0 auto;
  }
}

.home-v2--proto .proto-home__hero-grid,
.home-v2--proto .proto-home__hero-copy,
.home-v2--proto .proto-home__hero-title,
.home-v2--proto .proto-home__hero-subtitle,
.home-v2--proto .proto-home__hero-actions,
.home-v2--proto .proto-home__hero-button,
.home-v2--proto .proto-home__hero-button-soft {
  min-width: 0;
  max-width: 100%;
}

.home-v2--proto .proto-home__eyebrow,
.home-v2--proto .proto-home__hero-title,
.home-v2--proto .proto-home__hero-subtitle,
.home-v2--proto .proto-home__hero-button,
.home-v2--proto .proto-home__hero-button-soft {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 720px) {
  .home-v2--proto .proto-home__hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-v2--proto .proto-home__hero-copy,
  .home-v2--proto .proto-home__hero-actions {
    width: 100%;
  }

  .home-v2--proto .proto-home__hero-button,
  .home-v2--proto .proto-home__hero-button-soft {
    padding-inline: 18px;
    text-align: center;
    white-space: normal;
    line-height: 1.18;
  }
}
