:root {
  color-scheme: light;
  --ink: #0b1220;
  --muted: #5e6f86;
  --line: #d9e4f2;
  --paper: #ffffff;
  --page: #f4f7fb;
  --blue: #1768e9;
  --blue-dark: #0a3f9b;
  --teal: #129b8b;
  --green: #12a06e;
  --orange: #f97316;
  --amber: #b76a00;
  --red: #dc2626;
  --navy: #0f172a;
  --shadow: 0 22px 60px rgba(15, 23, 42, .09);
  --fresh: #22d3ee;
  --lime: #a3e635;
  --pink: #fb7185;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
.content-section { scroll-margin-top: 96px; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; }

/* .scroll-progress moved to home-polish.css to avoid duplicate definitions */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-height: 86px;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(217, 228, 242, .9);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 1 360px;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.brand-mark small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.brand-mark.compact strong { font-size: 17px; }

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.brand-icon.brand-trademark {
  width: 68px;
  height: 52px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(23, 104, 233, .65), rgba(20, 184, 166, .72), rgba(163, 230, 53, .65)) border-box;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .1);
}

.brand-icon.brand-trademark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
}

.brand-mark.compact .brand-icon.brand-trademark {
  width: 58px;
  height: 48px;
}

.brand-icon.brand-trademark::after {
  display: none;
}

.top-nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  max-width: max-content;
  min-width: 0;
  overflow-x: visible;
  overflow-y: hidden;
  color: #26364c;
  font-weight: 700;
  white-space: nowrap;
  scrollbar-width: none;
}

.top-nav a {
  text-decoration: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav .nav-login {
  padding: 10px 14px;
  color: var(--blue);
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  background: #f5f9ff;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-width: 78px;
  padding: 3px;
  border: 1px solid #d4e2f3;
  border-radius: 8px;
  background: #f3f7fc;
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 7px;
  border: 0;
  border-radius: 6px;
  color: #617289;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 7px 16px rgba(23, 104, 233, .2);
}

body[data-language="en"] .brand-mark {
  flex-basis: 300px;
  gap: 10px;
}

body[data-language="en"] .brand-mark strong {
  font-size: 15px;
  line-height: 1.15;
}

body[data-language="en"] .brand-mark small {
  font-size: 12px;
}

body[data-language="en"] .top-nav {
  gap: 14px;
  font-size: 15px;
}

body[data-language="en"] .top-nav .nav-login {
  padding-inline: 13px;
}

.floating-dock {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(191, 214, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.floating-dock a,
.floating-dock button {
  display: grid;
  place-items: center;
  width: 46px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #23344d;
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.floating-dock a:hover,
.floating-dock button:hover,
.floating-dock a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(23, 104, 233, .24);
  transform: translateY(-2px);
}

.floating-dock svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

.floating-dock span {
  position: absolute;
  right: 58px;
  min-width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, .9);
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.floating-dock a:hover span,
.floating-dock a:focus-visible span,
.floating-dock button:hover span,
.floating-dock button:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.floating-dock .back-to-top {
  position: relative;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px) scale(.92);
}

.floating-dock .back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-dock .back-to-top.is-visible:hover,
.floating-dock .back-to-top.is-visible:focus-visible {
  transform: translateY(-2px) scale(1);
}

.hero-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100svh - 76px));
  padding: 72px 6vw 78px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(34, 211, 238, .22), transparent 26%),
    radial-gradient(circle at 8% 86%, rgba(163, 230, 53, .12), transparent 28%),
    linear-gradient(112deg, #000 0%, #030712 48%, #071426 100%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .26));
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(191, 214, 255, .56);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, .28);
  font-weight: 850;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 22px 0 18px;
  font-size: 56px;
  line-height: 1.08;
}

.hero-copy p {
  max-width: 700px;
  margin: 0;
  color: #d7e4f7;
  font-size: 18px;
  line-height: 1.86;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.btn.primary {
  color: #fff;
  background: var(--blue);
}

.btn.secondary {
  color: var(--blue);
  background: #fff;
  border-color: #bfd6ff;
}

.btn.ghost {
  color: #084e45;
  background: #ddfff7;
  border-color: #a8f2e1;
}

.btn.danger {
  color: var(--red);
  background: #fff;
  border-color: #fecaca;
}

.btn.wide { width: 100%; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(255, 255, 255, .11);
  font-size: 13px;
  font-weight: 850;
}

.metrics-strip {
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 0 24px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

.metrics-strip div,
.info-card,
.product-line,
.product-spec-panel,
.login-card,
.stat-card,
.strength-copy,
.story-narrative,
.patent-evidence article,
.fact-tile,
.evidence-flow article,
.channel-card,
.library-card,
.platform-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.metrics-strip div {
  min-height: 116px;
  padding: 19px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.metrics-strip b {
  display: block;
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 6px;
}

.metrics-strip span,
.section-copy,
.info-card p,
.stat-card small,
.platform-grid span,
.visual-grid figcaption,
.product-showcase figcaption,
.operations-grid figcaption {
  color: var(--muted);
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 24px;
}

.content-section.is-route-highlight {
  animation: route-highlight 1.2s ease both;
}

@keyframes route-highlight {
  0% {
    box-shadow: inset 0 0 0 0 rgba(23, 104, 233, 0);
  }
  32% {
    box-shadow: inset 0 0 0 2px rgba(23, 104, 233, .34), 0 18px 46px rgba(23, 104, 233, .12);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(23, 104, 233, 0);
  }
}

@keyframes panel-soft-in {
  from {
    opacity: .82;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 850;
}

.section-heading h2 {
  max-width: 790px;
  margin: 0;
  font-size: 38px;
  line-height: 1.22;
}

.section-heading.light span {
  color: #93c5fd;
}

.section-heading.light h2 {
  color: #fff;
}

.section-copy {
  font-size: 17px;
  line-height: 1.84;
}

.hero-video-stage {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 34px 92px rgba(0, 0, 0, .46);
}

.hero-video-stage::before {
  content: "";
  position: absolute;
  inset: -30% -18% auto auto;
  width: 52%;
  height: 52%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(34, 211, 238, .2), transparent 66%);
}

.hero-opening-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.hero-video-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 58px 18px 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(2, 6, 23, .78));
}

.hero-video-caption span {
  display: block;
  color: #a8f2e1;
  font-size: 12px;
  font-weight: 900;
}

.hero-video-caption b {
  display: block;
  margin-top: 6px;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.25;
}

.hero-video-controls {
  display: inline-flex;
  flex: none;
  gap: 8px;
}

.hero-video-controls button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-video-controls svg {
  width: 17px;
  height: 17px;
}

.brand-video-section {
  max-width: none;
  padding: 58px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 253, 250, .92)),
    #fff;
}

.brand-video-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

.brand-video-copy,
.brand-video-card,
.company-profile-card,
.company-profile-proof article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.brand-video-copy {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, .96), rgba(10, 63, 155, .88) 54%, rgba(18, 155, 139, .72)),
    var(--navy);
}

.brand-video-copy > span,
.company-profile-card > span {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.brand-video-copy > span {
  border: 1px solid rgba(168, 242, 225, .44);
  color: #cbfff4;
  background: rgba(255, 255, 255, .08);
}

.brand-video-copy h2 {
  margin: 24px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
}

.brand-video-copy p {
  margin: 0;
  color: #d8e8fb;
  font-size: 17px;
  line-height: 1.82;
}

.brand-video-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.brand-video-points div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(191, 214, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.brand-video-points b,
.brand-video-points span {
  display: block;
}

.brand-video-points b {
  margin-bottom: 7px;
  color: #a8f2e1;
  font-size: 17px;
}

.brand-video-points span {
  color: #dbeafe;
  line-height: 1.55;
}

.brand-video-card {
  overflow: hidden;
  margin: 0;
}

.brand-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  object-fit: contain;
}

.brand-video-card figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
}

.brand-video-card b {
  font-size: 18px;
}

.brand-video-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.company-profile-section {
  padding-top: 58px;
  padding-bottom: 54px;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.company-profile-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
}

.company-profile-card > span {
  color: var(--blue-dark);
  background: #edf6ff;
}

.company-profile-card p {
  margin: 18px 0 0;
  color: #314159;
  font-size: 17px;
  line-height: 1.84;
}

.company-profile-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-profile-proof article {
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 20px;
  border-top: 4px solid var(--blue);
}

.company-profile-proof article:nth-child(2) { border-top-color: var(--teal); }
.company-profile-proof article:nth-child(3) { border-top-color: var(--orange); }
.company-profile-proof article:nth-child(4) { border-top-color: var(--green); }

.company-profile-proof b {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.company-profile-proof span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.5;
}

.company-profile-values {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.company-profile-values span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  color: #0f4473;
  background:
    linear-gradient(135deg, rgba(237, 246, 255, .92), rgba(240, 253, 250, .92)),
    #fff;
  font-size: 22px;
  font-weight: 950;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.product-showcase figure,
.operations-grid figure,
.visual-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-showcase figure {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-visual {
  position: sticky;
  top: 104px;
  align-self: start;
}

.product-showcase img,
.operations-grid img,
.visual-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-showcase img {
  flex: 1 1 auto;
  min-height: 0;
}

.product-visual img {
  min-height: 420px;
}

.product-showcase figcaption,
.operations-grid figcaption,
.visual-grid figcaption {
  padding: 14px 18px 16px;
  font-size: 14px;
  font-weight: 750;
}

.product-visual figcaption {
  display: grid;
  gap: 5px;
}

.product-visual figcaption b {
  color: var(--ink);
  font-size: 16px;
}

.product-visual figcaption span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.product-stage-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.product-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-line {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: 16px;
  background: var(--paper);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
}

.product-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(34, 211, 238, .11), transparent);
  transform: translateX(-110%);
  transition: transform .56s ease;
  pointer-events: none;
}

.product-line:hover::after,
.product-line.is-focused::after {
  transform: translateX(110%);
}

.product-line span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #18365d;
  background: #f2f7ff;
  font-size: 11px;
  font-weight: 900;
}

.product-line strong {
  display: block;
  margin: 10px 0 7px;
  font-size: 20px;
  line-height: 1.25;
}

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

.product-design-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.product-design-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(23, 104, 233, .14);
  border-radius: 999px;
  color: #18406f;
  background: rgba(248, 251, 255, .86);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.product-swatch-row {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.product-swatch-row i {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .14);
  transition: transform .2s ease;
}

.product-line:hover .product-swatch-row i,
.product-line.is-focused .product-swatch-row i {
  transform: translateY(-2px) scale(1.08);
}

.product-advisor {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 0;
}

.product-advisor-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
}

.product-advisor-menu button {
  min-height: 84px;
  padding: 12px;
  border: 1px solid #c8d9ee;
  border-top: 4px solid transparent;
  border-radius: 8px;
  color: #1f3550;
  background: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.product-advisor-menu button:hover,
.product-advisor-menu button.active {
  border-color: #9dc4f6;
  border-top-color: var(--blue);
  background: #f4f9ff;
}

.product-advisor-menu button:nth-child(2).active { border-top-color: var(--green); }
.product-advisor-menu button:nth-child(3).active { border-top-color: var(--orange); }
.product-advisor-menu button:nth-child(4).active { border-top-color: var(--teal); }

.product-advisor-menu i {
  width: 20px;
  height: 20px;
  margin-bottom: 7px;
  color: var(--blue);
}

.product-advisor-menu button:nth-child(2) i { color: var(--green); }
.product-advisor-menu button:nth-child(3) i { color: var(--orange); }
.product-advisor-menu button:nth-child(4) i { color: var(--teal); }

.product-advisor-menu b {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.product-advisor-menu span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.product-advisor-panel {
  min-height: 0;
  padding: 22px;
  border: 1px solid #d4e3f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(240, 250, 255, .92)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.product-advisor-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e7f7ef;
  font-size: 12px;
  font-weight: 900;
}

.product-advisor-panel h3 {
  margin: 13px 0 8px;
  font-size: 23px;
  line-height: 1.35;
}

.product-advisor-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.product-advisor-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.product-advisor-metrics div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid #d9e7f6;
  border-radius: 8px;
  background: #fff;
}

.product-advisor-metrics b {
  display: block;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.25;
}

.product-advisor-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.product-advisor-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-advisor-list li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  line-height: 1.62;
}

.product-advisor-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.product-advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.product-advisor-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #bcd2ec;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.product-advisor-actions a:first-child {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.product-spec-panel {
  margin-top: 16px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.spec-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.spec-heading b {
  font-size: 24px;
}

.spec-heading span {
  color: var(--muted);
  line-height: 1.55;
}

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

.spec-grid article {
  min-height: 248px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.spec-grid article > b {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 20px;
}

.spec-grid article:nth-child(2) > b { color: var(--green); }
.spec-grid article:nth-child(3) > b { color: var(--orange); }

.spec-grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-grid dl div {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dce9f8;
}

.spec-grid dt {
  color: var(--muted);
  font-weight: 850;
}

.spec-grid dd {
  margin: 0;
  color: #172033;
  font-weight: 800;
  line-height: 1.45;
}

.spec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.spec-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue);
  background: #f5f9ff;
  font-weight: 850;
  text-decoration: none;
}

.spec-actions a:first-child {
  color: #fff;
  background: var(--blue);
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.info-card {
  min-height: 168px;
  padding: 22px;
}

.info-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 21px;
}

.info-card p {
  margin: 0;
  line-height: 1.72;
}

.accent-blue { border-top: 4px solid var(--blue); }
.accent-green { border-top: 4px solid var(--green); }
.accent-orange { border-top: 4px solid var(--orange); }

.dark-band {
  max-width: none;
  margin: 34px 0;
  padding: 62px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(15, 63, 111, .94)),
    #0f172a;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.design-process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(191, 214, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, .16), rgba(163, 230, 53, .12), rgba(34, 211, 238, .16)),
    rgba(255, 255, 255, .05);
  overflow: hidden;
}

.design-process-rail::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(96, 165, 250, .25), rgba(34, 211, 238, .9), rgba(163, 230, 53, .7));
}

.design-process-rail::after {
  content: "";
  position: absolute;
  top: 44px;
  left: 18px;
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: rgba(236, 254, 255, .86);
  filter: blur(4px);
  animation: process-pulse 5.6s ease-in-out infinite;
}

.design-process-rail article {
  position: relative;
  z-index: 1;
  min-height: 166px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: #eaf3ff;
  background: rgba(8, 18, 38, .52);
  backdrop-filter: blur(12px);
}

.design-process-rail svg {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: #a3e635;
  stroke-width: 2.2;
}

.design-process-rail b,
.design-process-rail span {
  display: block;
}

.design-process-rail b {
  color: #fff;
  font-size: 18px;
}

.design-process-rail span {
  margin-top: 8px;
  color: rgba(234, 243, 255, .72);
  font-size: 13px;
  line-height: 1.62;
}

.capability-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(191, 214, 255, .18);
  border-radius: 8px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, .07);
}

.capability-grid b {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
}

.capability-grid p {
  margin: 0;
  color: #c7d7ec;
  line-height: 1.7;
}

.validation-section {
  max-width: none;
  padding: 56px max(24px, calc((100vw - 1180px) / 2 + 24px)) 58px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%),
    #f8fbff;
}

.validation-status-bar {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 104, 233, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(236, 254, 255, .82)),
    #fff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .08);
}

.validation-status-bar > div:first-child {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.validation-status-bar svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--blue);
  stroke-width: 2.3;
}

.validation-status-bar b,
.validation-status-bar span,
.validation-status-bar small {
  display: block;
}

.validation-status-bar b {
  font-size: 18px;
}

.validation-status-bar span,
.validation-status-bar small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.validation-status-bar small {
  justify-self: end;
  min-height: 32px;
  padding: 8px 12px 0;
  border: 1px solid rgba(18, 160, 110, .18);
  border-radius: 999px;
  color: #076b54;
  background: #eafff8;
  font-weight: 900;
  white-space: nowrap;
}

.signal-wave {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  align-items: end;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 104, 233, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 104, 233, .06), rgba(34, 211, 238, .08)),
    #f8fbff;
}

.signal-wave em {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fresh), var(--blue));
  box-shadow: 0 8px 18px rgba(23, 104, 233, .18);
  animation: signal-bounce 1.8s ease-in-out infinite;
}

.signal-wave em:nth-child(2) { height: 34px; animation-delay: .12s; }
.signal-wave em:nth-child(3) { height: 24px; animation-delay: .24s; }
.signal-wave em:nth-child(4) { height: 42px; animation-delay: .36s; }
.signal-wave em:nth-child(5) { height: 28px; animation-delay: .48s; }
.signal-wave em:nth-child(6) { height: 38px; animation-delay: .6s; }

.validation-layout {
  display: grid;
  grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.validation-menu {
  display: grid;
  gap: 10px;
  align-content: start;
}

.validation-menu button {
  min-height: 82px;
  padding: 16px;
  border: 1px solid #c8d9ee;
  border-left: 4px solid transparent;
  border-radius: 8px;
  color: #1f3550;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.validation-menu button:hover,
.validation-menu button.active {
  border-color: #9dc4f6;
  border-left-color: var(--blue);
  background: #f4f9ff;
}

.validation-menu button:nth-child(2).active { border-left-color: var(--green); }
.validation-menu button:nth-child(3).active { border-left-color: var(--orange); }
.validation-menu button:nth-child(4).active { border-left-color: var(--teal); }

.validation-menu b {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.validation-menu span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.validation-panel {
  min-height: 420px;
  padding: 26px;
  border: 1px solid #d3e3f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.validation-panel > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e8f8f0;
  font-size: 12px;
  font-weight: 900;
}

.validation-panel h3 {
  margin: 14px 0 8px;
  font-size: 26px;
  line-height: 1.34;
}

.validation-panel p {
  margin: 0;
  max-width: 880px;
  color: var(--muted);
  line-height: 1.75;
}

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

.validation-metrics div {
  min-height: 102px;
  padding: 16px;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%),
    #fff;
}

.validation-metrics b {
  display: block;
  color: var(--blue);
  font-size: 21px;
}

.validation-metrics div:nth-child(2) b { color: var(--orange); }
.validation-metrics div:nth-child(3) b { color: var(--green); }

.validation-metrics span {
  display: block;
  margin-top: 7px;
  color: #42526a;
  line-height: 1.46;
  font-weight: 800;
}

.validation-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: 16px;
  margin-top: 18px;
}

.validation-proof > div {
  padding: 18px;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  background: #fbfdff;
}

.validation-proof b {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.validation-proof li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  line-height: 1.62;
}

.validation-proof li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.validation-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

.validation-actions a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #bcd2ec;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.validation-actions a:first-child {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.validation-actions a:hover {
  border-color: var(--green);
  color: #0f6b4c;
  background: #f5fffb;
}

.strength-section {
  max-width: none;
  padding: 56px max(24px, calc((100vw - 1180px) / 2 + 24px)) 60px;
  border-top: 1px solid #e4edf8;
  border-bottom: 1px solid #dce9f8;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%),
    #fff;
}

.strength-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.strength-copy {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 253, 255, .98)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.strength-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #bdeee5;
  border-radius: 999px;
  color: #08796d;
  background: #ecfffb;
  font-size: 13px;
  font-weight: 900;
}

.strength-copy h3 {
  margin: 18px 0 12px;
  font-size: 25px;
  line-height: 1.34;
}

.strength-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.strength-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.strength-badges span {
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid #d1e3f8;
  border-radius: 999px;
  color: #18365d;
  background: #f5f9ff;
  font-size: 13px;
  font-weight: 850;
}

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

.fact-tile {
  min-height: 156px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.fact-tile b {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1.05;
}

.fact-tile:nth-child(2) b { color: var(--green); }
.fact-tile:nth-child(3) b { color: var(--orange); }
.fact-tile:nth-child(4) b { color: var(--teal); }

.fact-tile span {
  color: #344256;
  font-weight: 900;
  line-height: 1.45;
}

.evidence-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.evidence-flow article {
  min-height: 184px;
  padding: 20px;
  background: #fff;
}

.evidence-flow span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.evidence-flow article:nth-child(2) span { background: var(--green); }
.evidence-flow article:nth-child(3) span { background: var(--orange); }
.evidence-flow article:nth-child(4) span { background: var(--teal); }

.evidence-flow b {
  display: block;
  margin: 15px 0 8px;
  font-size: 19px;
}

.evidence-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-section {
  max-width: none;
  padding: 56px max(24px, calc((100vw - 1180px) / 2 + 24px)) 58px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%),
    var(--page);
  border-bottom: 1px solid var(--line);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: 20px;
  align-items: start;
  margin-top: 24px;
}

.story-narrative {
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.story-narrative > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #bdeee5;
  border-radius: 999px;
  color: #08796d;
  background: #ecfffb;
  font-size: 13px;
  font-weight: 900;
}

.story-narrative h3 {
  margin: 18px 0 12px;
  font-size: 27px;
  line-height: 1.34;
}

.story-narrative p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.story-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.story-signals span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #18365d;
  background: #f2f7ff;
  font-size: 13px;
  font-weight: 850;
}

.story-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #c9dcf3;
}

.story-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.story-timeline time {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.story-timeline li:nth-child(2) time { background: var(--green); }
.story-timeline li:nth-child(3) time { background: var(--orange); }
.story-timeline li:nth-child(4) time { background: var(--blue); }
.story-timeline li:nth-child(5) time { background: var(--teal); }

.story-timeline div {
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.story-timeline b {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.story-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.patent-evidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.patent-evidence article {
  min-height: 154px;
  padding: 20px;
  border-top: 4px solid var(--blue);
  background: #fff;
}

.patent-evidence article:nth-child(2) { border-top-color: var(--green); }
.patent-evidence article:nth-child(3) { border-top-color: var(--orange); }
.patent-evidence article:nth-child(4) { border-top-color: var(--teal); }

.patent-evidence b {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.patent-evidence span {
  color: var(--muted);
  line-height: 1.65;
}

.patent-source-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .82fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 250, 255, .96), rgba(239, 253, 247, .92)),
    #fff;
}

.patent-source-panel > div {
  min-width: 0;
}

.patent-source-panel span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #164277;
  background: #e9f3ff;
  font-size: 12px;
  font-weight: 900;
}

.patent-source-panel h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.patent-source-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.patent-source-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.patent-source-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #bed4ee;
  border-radius: 8px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.patent-source-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}

.patent-search-lab {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #d1e1f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 250, 255, .94)),
    #fff;
}

.patent-search-tabs {
  display: grid;
  gap: 9px;
  align-content: start;
}

.patent-search-tabs button {
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid #c6d9f0;
  border-left: 4px solid transparent;
  border-radius: 8px;
  color: #253a54;
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.patent-search-tabs button:hover,
.patent-search-tabs button.active {
  border-color: #a8c9f2;
  border-left-color: var(--orange);
  color: var(--blue-dark);
  background: #f6faff;
}

.patent-search-panel {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.patent-search-copy {
  min-width: 0;
}

.patent-search-copy > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #8a4b00;
  background: #fff3df;
  font-size: 12px;
  font-weight: 900;
}

.patent-search-copy h3 {
  margin: 12px 0 8px;
  font-size: 23px;
  line-height: 1.35;
}

.patent-search-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.patent-search-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.patent-search-metrics div {
  min-height: 78px;
  padding: 13px;
  border: 1px solid #d9e6f5;
  border-radius: 8px;
  background: #fff;
}

.patent-search-metrics b {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.25;
}

.patent-search-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.patent-search-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.patent-search-list a {
  min-height: 104px;
  padding: 14px;
  border: 1px solid #d4e2f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.patent-search-list a:nth-child(2) { border-top-color: var(--green); }
.patent-search-list a:nth-child(3) { border-top-color: var(--orange); }
.patent-search-list a:nth-child(4) { border-top-color: var(--teal); }

.patent-search-list a:hover {
  border-color: #aac9ef;
  background: #f8fbff;
}

.patent-search-list b {
  display: block;
  color: #1d3552;
  font-size: 16px;
  line-height: 1.35;
}

.patent-search-list span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.patent-updates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.patent-updates article {
  min-height: 226px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  border: 1px solid #d6e5f6;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}

.patent-updates article:nth-child(2) { border-top-color: var(--green); }
.patent-updates article:nth-child(3) { border-top-color: var(--orange); }
.patent-updates article:nth-child(4) { border-top-color: var(--teal); }

.patent-updates time {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #18365d;
  background: #eef5ff;
  font-size: 12px;
  font-weight: 900;
}

.patent-updates b {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.25;
}

.patent-updates strong {
  font-size: 17px;
  line-height: 1.35;
}

.patent-updates p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.patent-updates a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid #bfd4ee;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #f8fbff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.patent-updates a:hover {
  border-color: var(--green);
  color: #0f6b4c;
  background: #fff;
}

.patent-atlas {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.patent-atlas-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.patent-atlas-tabs button {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid #c8d9ee;
  border-left: 4px solid transparent;
  border-radius: 8px;
  color: #22364f;
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.patent-atlas-tabs button:hover,
.patent-atlas-tabs button.active {
  border-color: #9dc4f6;
  border-left-color: var(--green);
  color: var(--blue-dark);
  background: #f4f9ff;
}

.patent-atlas-panel {
  min-height: 310px;
  padding: 24px;
  border: 1px solid #d4e3f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(240, 250, 255, .92)),
    #fff;
}

.patent-atlas-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e7f7ef;
  font-size: 12px;
  font-weight: 900;
}

.patent-atlas-panel h3 {
  margin: 13px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.patent-atlas-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.patent-track-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.patent-track-metrics div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid #d9e7f6;
  border-radius: 8px;
  background: #fff;
}

.patent-track-metrics b {
  display: block;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.25;
}

.patent-track-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.patent-track-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.patent-track-list li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  line-height: 1.62;
}

.patent-track-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.patent-track-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.patent-track-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #bcd2ec;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.patent-track-links a:hover {
  border-color: var(--green);
  color: #0f6b4c;
}

.patent-map {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 104, 233, .08), rgba(18, 160, 110, .08)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.patent-map-heading {
  display: grid;
  grid-template-columns: minmax(0, .34fr) minmax(0, .92fr) minmax(280px, .74fr);
  gap: 18px;
  align-items: start;
}

.patent-map-heading > span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #b9d4fb;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #f3f8ff;
  font-size: 13px;
  font-weight: 900;
}

.patent-map-heading h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.36;
}

.patent-map-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.patent-portfolio {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.patent-portfolio article {
  min-height: 244px;
  padding: 18px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
}

.patent-portfolio article:nth-child(2) { border-top: 4px solid var(--green); }
.patent-portfolio article:nth-child(3) { border-top: 4px solid var(--orange); }
.patent-portfolio article:nth-child(4) { border-top: 4px solid var(--teal); }
.patent-portfolio article:nth-child(5) { border-top: 4px solid var(--navy); }
.patent-portfolio article:nth-child(6) { border-top: 4px solid var(--blue); }
.patent-portfolio article:nth-child(7) { border-top: 4px solid var(--green); }
.patent-portfolio article:nth-child(8) { border-top: 4px solid var(--orange); }
.patent-portfolio article:nth-child(9) { border-top: 4px solid var(--teal); }
.patent-portfolio article:nth-child(10) { border-top: 4px solid var(--navy); }

.patent-portfolio span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #18365d;
  background: #eef5ff;
  font-size: 12px;
  font-weight: 900;
}

.patent-portfolio b {
  display: block;
  margin: 14px 0 6px;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.25;
}

.patent-portfolio strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.patent-portfolio p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.patent-proof-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.patent-proof-flow span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  color: #163253;
  background: rgba(255, 255, 255, .82);
  font-weight: 900;
}

.story-note {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.tool-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #bdeee5;
  border-radius: 8px;
  color: #08796d;
  background: #ecfffb;
  font-size: 13px;
  font-weight: 900;
}

.owner-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.owner-steps div {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.owner-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.owner-steps span {
  color: #344256;
  font-weight: 850;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.install-section {
  max-width: none;
  padding: 56px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background:
    linear-gradient(180deg, #fff 0%, #f6fbff 100%),
    var(--paper);
}

.install-hub {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: 18px;
  align-items: stretch;
}

.install-intro,
.install-guide {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.install-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.install-tabs button {
  min-height: 46px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  color: #18365d;
  background: #f7fbff;
  font-weight: 900;
  cursor: pointer;
}

.install-tabs button.active {
  border-color: var(--blue);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.install-actions .btn {
  min-height: 42px;
  padding-inline: 14px;
}

.install-guide {
  display: grid;
  gap: 16px;
}

.install-guide > span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #bdeee5;
  border-radius: 8px;
  color: #08796d;
  background: #ecfffb;
  font-size: 13px;
  font-weight: 900;
}

.install-guide h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.36;
}

.install-guide ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-guide li {
  position: relative;
  min-height: 46px;
  padding: 12px 14px 12px 48px;
  border: 1px solid #d7e5f5;
  border-radius: 8px;
  color: #28384d;
  background: #f8fbff;
  line-height: 1.55;
  counter-increment: install-step;
}

.install-guide li::before {
  content: counter(install-step);
  position: absolute;
  left: 12px;
  top: 11px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

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

.install-checks div {
  min-height: 132px;
  padding: 16px;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: #f7fbff;
}

.install-checks div:nth-child(2) {
  border-top-color: var(--orange);
}

.install-checks b,
.install-checks span {
  display: block;
}

.install-checks b {
  margin-bottom: 8px;
  font-size: 17px;
}

.install-checks span {
  color: var(--muted);
  line-height: 1.65;
}

.service-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.service-lanes a {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-lanes a:hover,
.service-lanes a:focus-visible {
  border-color: #9dc4f6;
  box-shadow: 0 16px 34px rgba(23, 104, 233, .1);
  transform: translateY(-2px);
}

.service-lanes b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 18px;
}

.service-lanes span {
  color: var(--muted);
  line-height: 1.65;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}

.workflow-list span {
  color: var(--muted);
  line-height: 1.65;
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 20px;
  margin-top: 24px;
}

.platform-stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}

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

.platform-grid article,
.platform-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.platform-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.platform-card:hover,
.platform-card.active {
  border-color: #9dc4f6;
  background: #f7fbff;
  box-shadow: 0 18px 42px rgba(23, 104, 233, .1);
  transform: translateY(-2px);
}

.platform-grid b,
.platform-grid span {
  display: block;
}

.platform-grid b {
  font-size: 18px;
}

.platform-grid span {
  line-height: 1.6;
}

.platform-grid em {
  justify-self: start;
  margin-top: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.platform-grid em.ok,
.platform-grid em.demo {
  color: var(--teal);
  background: #e8faf5;
}

.platform-card:not(.active) em.demo {
  color: #9a5b00;
  background: #fff7ed;
}

.platform-status-panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 250, 255, .96)),
    #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
}

.platform-status-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0f766e;
  background: #e8faf5;
  font-size: 12px;
  font-weight: 900;
}

.platform-status-panel h3 {
  margin: 13px 0 8px;
  font-size: 22px;
  line-height: 1.34;
}

.platform-status-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.platform-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.platform-status-grid div {
  min-height: 102px;
  padding: 14px;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  background: #fff;
}

.platform-status-grid b,
.platform-status-grid span {
  display: block;
}

.platform-status-grid b {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 16px;
}

.platform-status-grid span {
  color: var(--muted);
  line-height: 1.56;
}

.platform-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.platform-status-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #bcd2ec;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.platform-status-actions a:first-child {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.platform-status-panel.is-switching {
  animation: panel-soft-in .28s ease both;
}

.support-section {
  max-width: none;
  margin: 18px 0 0;
  padding: 48px max(24px, calc((100vw - 1760px) / 2 + 24px));
  background:
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(340px, .66fr) minmax(720px, 1.34fr);
  gap: 22px;
  align-items: start;
  max-width: 1760px;
  margin: 0 auto;
}

.support-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.support-search {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.support-search label {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.support-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.support-search input {
  min-height: 44px;
  min-width: 0;
  padding: 0 13px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.support-search button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.support-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.support-search-chips button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.support-audience button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.support-audience button.active {
  border-color: var(--blue);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 26px rgba(23, 104, 233, .16);
}

.support-hub {
  display: grid;
  gap: 14px;
}

.support-panel,
.support-search-panel,
.support-faq {
  padding: 22px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.support-search-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.support-search-heading span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e8f8f0;
  font-size: 12px;
  font-weight: 900;
}

.support-search-heading b {
  color: #26364c;
  line-height: 1.45;
  text-align: right;
}

.support-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.support-search-results a {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  color: inherit;
  background: #f8fbff;
  text-decoration: none;
}

.support-search-results a:nth-child(2) { border-top-color: var(--green); }
.support-search-results a:nth-child(3) { border-top-color: var(--orange); }
.support-search-results a:nth-child(4) { border-top-color: var(--teal); }

.support-search-results b {
  color: var(--blue);
  font-size: 17px;
  line-height: 1.32;
}

.support-search-results span {
  color: var(--muted);
  line-height: 1.55;
}

.support-panel > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #08796d;
  background: #e8faf5;
  font-size: 13px;
  font-weight: 900;
}

.support-panel h3 {
  margin: 16px 0 10px;
  font-size: 25px;
  line-height: 1.35;
}

.support-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.support-action-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.support-action-list a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 20px 20px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.support-action-list a:nth-child(1) { border-top: 4px solid var(--blue); }
.support-action-list a:nth-child(2) { border-top: 4px solid var(--green); }
.support-action-list a:nth-child(3) { border-top: 4px solid var(--orange); }

.support-action-list a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 16px;
  color: #91a5bf;
  font-size: 26px;
  line-height: 1;
}

.support-action-list b {
  padding-right: 24px;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.28;
  word-break: keep-all;
}

.support-action-list span {
  color: var(--muted);
  line-height: 1.62;
}

.support-faq-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.support-faq-heading span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
}

.support-faq-heading b {
  font-size: 19px;
}

.support-faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.support-faq-list article {
  min-height: 128px;
  padding: 16px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #f7fbff;
}

.support-faq-list article:nth-child(2) { border-left-color: var(--teal); }
.support-faq-list article:nth-child(3) { border-left-color: var(--orange); }

.support-faq-list b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
  word-break: keep-all;
}

.support-faq-list span {
  display: block;
  color: var(--muted);
  line-height: 1.62;
}

.diagnosis-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.diagnosis-lead {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(23, 104, 233, .82)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

.diagnosis-lead > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(191, 214, 255, .42);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 900;
}

.diagnosis-lead h3 {
  margin: 22px 0 12px;
  font-size: 31px;
  line-height: 1.26;
}

.diagnosis-lead p {
  margin: 0;
  color: #d8e8fb;
  line-height: 1.82;
}

.diagnosis-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.diagnosis-tabs button {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(191, 214, 255, .24);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
  cursor: pointer;
}

.diagnosis-tabs button.active {
  color: #052e2b;
  border-color: #a8f2e1;
  background: #a8f2e1;
}

.diagnosis-panel {
  min-height: 430px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.diagnosis-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
}

.diagnosis-panel h3 {
  margin: 14px 0 8px;
  font-size: 25px;
  line-height: 1.34;
}

.diagnosis-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.diagnosis-steps article {
  min-height: 156px;
  padding: 18px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #f8fbff;
}

.diagnosis-steps article:nth-child(2) { border-top-color: var(--green); }
.diagnosis-steps article:nth-child(3) { border-top-color: var(--orange); }

.diagnosis-steps b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
}

.diagnosis-steps article:nth-child(2) b { background: var(--green); }
.diagnosis-steps article:nth-child(3) b { background: var(--orange); }

.diagnosis-steps span {
  color: var(--muted);
  line-height: 1.62;
}

.diagnosis-evidence {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  background: #f7fbff;
}

.diagnosis-evidence b {
  flex: none;
  color: var(--blue);
}

.diagnosis-evidence span {
  color: var(--muted);
  line-height: 1.58;
}

.diagnosis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.diagnosis-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue);
  background: #f5f9ff;
  font-weight: 900;
  text-decoration: none;
}

.diagnosis-actions a:first-child {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.warranty-section {
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef7f5 100%),
    #f8fbff;
}

.warranty-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.warranty-lead {
  display: flex;
  flex-direction: column;
  min-height: 482px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(10, 63, 155, .9)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

.warranty-lead > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(191, 214, 255, .42);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 900;
}

.warranty-lead h3 {
  margin: 22px 0 12px;
  font-size: 30px;
  line-height: 1.28;
}

.warranty-lead p {
  margin: 0;
  color: #d8e8fb;
  line-height: 1.82;
}

.warranty-disclaimer {
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(168, 242, 225, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.warranty-disclaimer b {
  display: block;
  margin-bottom: 6px;
  color: #a8f2e1;
}

.warranty-disclaimer span {
  color: #d8e8fb;
  line-height: 1.56;
}

.warranty-checker {
  min-height: 482px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.warranty-groups {
  display: grid;
  gap: 12px;
}

.warranty-groups fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 13px;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  background: #f8fbff;
}

.warranty-groups legend {
  padding: 0 6px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.warranty-groups button {
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.warranty-groups button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.warranty-result {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 250, 255, .98), rgba(239, 253, 247, .94)),
    #fff;
}

.warranty-result > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e8f8f0;
  font-size: 12px;
  font-weight: 900;
}

.warranty-result h3 {
  margin: 14px 0 8px;
  font-size: 25px;
  line-height: 1.34;
}

.warranty-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.warranty-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.warranty-checklist div {
  min-height: 118px;
  padding: 14px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}

.warranty-checklist div:nth-child(2) { border-top-color: var(--green); }
.warranty-checklist div:nth-child(3) { border-top-color: var(--orange); }

.warranty-checklist b {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  line-height: 1.35;
}

.warranty-checklist span {
  color: var(--muted);
  line-height: 1.55;
}

.warranty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.warranty-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.warranty-actions a:first-child {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.channels-section {
  padding-top: 54px;
}

.channels-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.channel-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 420px;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(17, 84, 112, .94)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

.channel-panel > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(168, 242, 225, .45);
  border-radius: 999px;
  color: #cbfff4;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
}

.channel-panel h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.34;
}

.channel-steps {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.channel-steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(191, 214, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.channel-steps b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  border-radius: 8px;
  color: #052e2b;
  background: #a8f2e1;
  font-size: 14px;
}

.channel-steps span {
  color: #d9e8f7;
  font-weight: 780;
  line-height: 1.55;
}

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

.channel-card {
  display: grid;
  gap: 10px;
  min-height: 196px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.channel-card b {
  font-size: 20px;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.channel-card span {
  align-self: end;
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #18365d;
  background: #f2f7ff;
  font-size: 12px;
  font-weight: 900;
}

.accent-teal { border-top: 4px solid var(--teal); }

.channel-route-advisor {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(243, 249, 255, .94)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.channel-route-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.channel-route-tabs button {
  min-height: 54px;
  padding: 11px 13px;
  border: 1px solid #c8d9ee;
  border-left: 4px solid transparent;
  border-radius: 8px;
  color: #22364f;
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.channel-route-tabs button:hover,
.channel-route-tabs button.active {
  border-color: #9dc4f6;
  border-left-color: var(--green);
  color: var(--blue-dark);
  background: #f4f9ff;
}

.channel-route-panel {
  min-width: 0;
}

.channel-route-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #164277;
  background: #e9f3ff;
  font-size: 12px;
  font-weight: 900;
}

.channel-route-panel h3 {
  margin: 13px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.channel-route-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.channel-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.channel-route-grid div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  background: #fff;
}

.channel-route-grid b {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 17px;
}

.channel-route-grid span {
  color: var(--muted);
  line-height: 1.56;
}

.channel-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.channel-route-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #bcd2ec;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.channel-route-actions a:hover {
  border-color: var(--green);
  color: #0f6b4c;
}

.buying-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.buying-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue);
  background: #f5f9ff;
  font-weight: 850;
  text-decoration: none;
}

.buying-shortcuts a:first-child {
  color: #fff;
  background: var(--blue);
}

.quality-section {
  padding-top: 58px;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.quality-lead {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 16, 30, .98), rgba(16, 92, 89, .9)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

.quality-lead > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(168, 242, 225, .45);
  border-radius: 8px;
  color: #cbfff4;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
}

.quality-lead h3 {
  margin: 22px 0 12px;
  font-size: 31px;
  line-height: 1.26;
}

.quality-lead p {
  margin: 0;
  color: #d9e8f7;
  line-height: 1.82;
}

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.quality-badges span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #052e2b;
  background: #a8f2e1;
  font-size: 12px;
  font-weight: 900;
}

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

.quality-proof-grid article {
  display: grid;
  gap: 9px;
  min-height: 208px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.quality-proof-grid article:nth-child(2) { border-top-color: var(--green); }
.quality-proof-grid article:nth-child(3) { border-top-color: var(--orange); }
.quality-proof-grid article:nth-child(4) { border-top-color: var(--teal); }

.quality-proof-grid b {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
}

.quality-proof-grid strong {
  font-size: 20px;
  line-height: 1.32;
}

.quality-proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.quality-gates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quality-gates article {
  min-height: 168px;
  padding: 18px;
  border: 1px solid #d4e2f4;
  border-radius: 8px;
  background: #f7fbff;
}

.quality-gates span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.quality-gates article:nth-child(2) span { background: var(--green); }
.quality-gates article:nth-child(3) span { background: var(--orange); }
.quality-gates article:nth-child(4) span { background: var(--teal); }

.quality-gates b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.quality-gates p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.quality-issue-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.quality-issue-map div {
  min-height: 136px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.quality-issue-map div:nth-child(2) { border-left-color: var(--teal); }
.quality-issue-map div:nth-child(3) { border-left-color: var(--orange); }
.quality-issue-map div:nth-child(4) { border-left-color: var(--green); }

.quality-issue-map b {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
}

.quality-issue-map span {
  display: block;
  color: var(--muted);
  line-height: 1.62;
}

.resources-section {
  padding-top: 56px;
  padding-bottom: 54px;
}

.resources-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.resources-lead {
  display: flex;
  flex-direction: column;
  min-height: 456px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(10, 63, 155, .88)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

.resources-lead > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(191, 214, 255, .42);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 900;
}

.resources-lead h3 {
  margin: 22px 0 12px;
  font-size: 31px;
  line-height: 1.26;
}

.resources-lead p {
  margin: 0;
  color: #d8e8fb;
  line-height: 1.82;
}

.resources-ledger {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.resources-ledger div {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(191, 214, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.resources-ledger b {
  display: block;
  margin-bottom: 5px;
  color: #a8f2e1;
  font-size: 15px;
}

.resources-ledger span {
  color: #d8e8fb;
  line-height: 1.5;
}

.resource-switcher {
  min-height: 456px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 250, 255, .96), rgba(240, 253, 250, .92)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.resource-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.resource-tabs button {
  min-height: 42px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.resource-tabs button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.resource-panel {
  margin-top: 18px;
}

.resource-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #164277;
  background: #e9f3ff;
  font-size: 12px;
  font-weight: 900;
}

.resource-panel h3 {
  margin: 14px 0 8px;
  font-size: 25px;
  line-height: 1.34;
}

.resource-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.resource-pack-list a {
  display: grid;
  gap: 8px;
  min-height: 166px;
  padding: 18px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.resource-pack-list a:nth-child(2) { border-top-color: var(--green); }
.resource-pack-list a:nth-child(3) { border-top-color: var(--orange); }
.resource-pack-list a:nth-child(4) { border-top-color: var(--teal); }

.resource-pack-list b {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
}

.resource-pack-list span {
  color: var(--muted);
  line-height: 1.62;
}

.document-request-assistant {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(240, 253, 250, .92)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.document-request-menu {
  display: grid;
  gap: 10px;
  align-content: start;
}

.document-request-menu button {
  min-height: 54px;
  padding: 11px 13px;
  border: 1px solid #c8d9ee;
  border-left: 4px solid transparent;
  border-radius: 8px;
  color: #22364f;
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.document-request-menu button:hover,
.document-request-menu button.active {
  border-color: #9dc4f6;
  border-left-color: var(--blue);
  color: var(--blue-dark);
  background: #f4f9ff;
}

.document-request-panel {
  min-width: 0;
}

.document-request-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e7f7ef;
  font-size: 12px;
  font-weight: 900;
}

.document-request-panel h3 {
  margin: 13px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.document-request-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.document-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.document-request-grid > div {
  min-height: 184px;
  padding: 18px;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  background: #fff;
}

.document-request-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 18px;
}

.document-request-grid ul,
.document-request-grid ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.58;
}

.document-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.document-request-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #bcd2ec;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.document-request-actions a:hover {
  border-color: var(--green);
  color: #0f6b4c;
}

.trust-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust-index a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.trust-index b {
  color: var(--blue);
  font-size: 18px;
}

.trust-index span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  padding-top: 54px;
  padding-bottom: 52px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, .9) 0%, rgba(8, 47, 73, .7) 52%, rgba(18, 155, 139, .34) 100%),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
  overflow: hidden;
}

.contact-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}

.contact-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(1.12) contrast(1.04);
}

.contact-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(20, 184, 166, .22), transparent 32%),
    linear-gradient(135deg, rgba(2, 6, 23, .74) 0%, rgba(8, 47, 73, .5) 48%, rgba(15, 118, 110, .2) 100%);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card > .contact-card-media {
  position: absolute;
  z-index: 0;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, .58));
  pointer-events: none;
}

.contact-card > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(168, 242, 225, .45);
  border-radius: 8px;
  color: #cbfff4;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
}

.contact-card h3 {
  margin: 22px 0 12px;
  font-size: 31px;
  line-height: 1.26;
}

.contact-card p {
  margin: 0;
  color: #d9e8f7;
  line-height: 1.82;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.contact-direct a {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(191, 214, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
}

.contact-direct b {
  color: #a8f2e1;
  font-size: 18px;
  line-height: 1.25;
}

.contact-direct span {
  color: #d8e8fb;
  line-height: 1.5;
}

.contact-router {
  min-height: 430px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-tabs button {
  min-height: 42px;
  border: 1px solid #bfd6ff;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #f7fbff;
  font-weight: 900;
  cursor: pointer;
}

.contact-tabs button.active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.contact-panel {
  margin-top: 18px;
}

.contact-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #064e45;
  background: #e7fbf7;
  font-size: 12px;
  font-weight: 900;
}

.contact-panel h3 {
  margin: 14px 0 8px;
  font-size: 25px;
  line-height: 1.34;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-checklist div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #f8fbff;
}

.contact-checklist div:nth-child(2) { border-top-color: var(--green); }
.contact-checklist div:nth-child(3) { border-top-color: var(--orange); }

.contact-checklist b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.35;
}

.contact-checklist span {
  color: var(--muted);
  line-height: 1.62;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #bfe7df;
  border-radius: 8px;
  color: #064e45;
  background: #e7fbf7;
  font-weight: 900;
  text-decoration: none;
}

.contact-actions a:first-child {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.contact-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.contact-note b {
  flex: none;
  color: var(--blue);
}

.contact-note span {
  color: var(--muted);
  line-height: 1.58;
}

.insights-section {
  padding-top: 54px;
  padding-bottom: 52px;
}

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.feature-article {
  display: flex;
  flex-direction: column;
  min-height: 408px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, .96), rgba(10, 63, 155, .9)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

.feature-article > span {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(191, 214, 255, .42);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 900;
}

.feature-article h3 {
  margin: 22px 0 12px;
  font-size: 30px;
  line-height: 1.24;
}

.feature-article p {
  margin: 0;
  color: #d8e8fb;
  line-height: 1.82;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.content-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #052e2b;
  background: #a8f2e1;
  font-size: 12px;
  font-weight: 900;
}

.article-action {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

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

.library-card {
  display: grid;
  gap: 10px;
  min-height: 196px;
  padding: 22px;
  border-top: 4px solid var(--blue);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.library-card b {
  font-size: 20px;
  line-height: 1.35;
}

.library-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.library-card span {
  align-self: end;
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #18365d;
  background: #f2f7ff;
  font-size: 12px;
  font-weight: 900;
}

.library-card:nth-child(2) {
  border-top-color: var(--green);
}

.library-card:nth-child(3) {
  border-top-color: var(--orange);
}

.library-card:nth-child(4) {
  border-top-color: var(--teal);
}

.content-library-filter {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 253, 247, .92)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.content-library-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.content-library-tabs button {
  min-height: 54px;
  padding: 11px 13px;
  border: 1px solid #c8d9ee;
  border-left: 4px solid transparent;
  border-radius: 8px;
  color: #22364f;
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.content-library-tabs button:hover,
.content-library-tabs button.active {
  border-color: #9dc4f6;
  border-left-color: var(--green);
  color: var(--blue-dark);
  background: #f4f9ff;
}

.content-library-panel {
  min-width: 0;
}

.content-library-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0f5f44;
  background: #e7f7ef;
  font-size: 12px;
  font-weight: 900;
}

.content-library-panel h3 {
  margin: 13px 0 8px;
  font-size: 24px;
  line-height: 1.35;
}

.content-library-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.content-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.content-topic-grid a {
  min-height: 128px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #d8e4f3;
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.content-topic-grid a:nth-child(2) { border-top-color: var(--green); }
.content-topic-grid a:nth-child(3) { border-top-color: var(--orange); }

.content-topic-grid b {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
}

.content-topic-grid span {
  color: var(--muted);
  line-height: 1.58;
}

.media-routing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.media-routing a {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.media-routing b {
  color: var(--blue);
  font-size: 18px;
}

.media-routing span {
  color: var(--muted);
  line-height: 1.55;
}

.entry-band {
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 30px 24px 42px;
}

.entry-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.entry-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 850;
}

.entry-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: 34px;
  line-height: 1.22;
}

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

.entry-card {
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(191, 214, 255, .2);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #14376c 100%);
  text-decoration: none;
}

.entry-card b {
  font-size: 22px;
}

.entry-card span {
  color: #c9d7eb;
  line-height: 1.68;
}

.site-footer {
  color: #cbd5e1;
  background: #0b1220;
  border-top: 1px solid rgba(191, 214, 255, .14);
}

.legal-main {
  background:
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 38%, #eef5ff 100%);
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 92px 24px 26px;
}

.legal-hero span {
  color: var(--blue);
  font-weight: 900;
}

.legal-hero h1 {
  margin: 12px 0 12px;
  font-size: 52px;
  line-height: 1.12;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.legal-hero small {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #08796d;
  background: #e8faf5;
  font-weight: 850;
}

.legal-shell {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 70px;
}

.legal-shell article {
  padding: 24px;
  border: 1px solid #d5e4f5;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}

.legal-shell article:nth-child(2n) { border-left-color: var(--green); }
.legal-shell article:nth-child(3n) { border-left-color: var(--orange); }

.legal-shell h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.legal-footer {
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 34px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand-mark strong {
  color: #fff;
}

.footer-brand-mark small {
  color: #94a3b8;
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  color: #a9b8cc;
  line-height: 1.78;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(191, 214, 255, .2);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 850;
}

.footer-links {
  display: grid;
  grid-template-columns: .85fr .85fr .85fr 1.45fr;
  gap: 22px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links b {
  color: #fff;
  font-size: 16px;
}

.footer-links a,
.footer-links span {
  color: #a9b8cc;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
}

.footer-links a[href^="tel:"] {
  white-space: nowrap;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(191, 214, 255, .14);
  color: #8ea1bb;
  font-size: 13px;
}

.footer-bottom a {
  color: #bfdbfe;
  font-weight: 800;
  text-decoration: none;
}

.login-page {
  min-height: 100vh;
  background: #eef3f9;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 24px;
}

.login-intro h1 {
  margin: 34px 0 16px;
  font-size: 56px;
  line-height: 1.12;
}

.login-intro p {
  max-width: 560px;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.login-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.login-points span {
  padding: 10px 12px;
  border: 1px solid #bfd6ff;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 800;
}

.login-card {
  position: relative;
  padding: 30px;
  box-shadow: var(--shadow);
}

.btn-close-top {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: #637083;
  background: #f0f4fa;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.login-card-heading {
  margin-bottom: 24px;
  padding-right: 40px;
}

.login-card-heading span {
  display: block;
  color: var(--blue);
  font-weight: 850;
  margin-bottom: 6px;
}

.login-card-heading b {
  font-size: 24px;
}

form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #344256;
  font-weight: 750;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  outline: none;
  background: #fff;
}

input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 104, 233, .12);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 16px;
}

.form-row a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 750;
}

.check-row {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 650;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.form-message {
  min-height: 22px;
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 750;
}

.login-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.workbench-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.workbench-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  background: #0f172a;
  color: #fff;
}

.workbench-sidebar .brand-mark small { color: #9fb0c8; }

.side-nav {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.side-nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 700;
}

.side-nav a.active,
.side-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.side-nav .side-home {
  color: #fff;
  background: rgba(23, 104, 233, .28);
}

.workbench-main {
  padding: 28px;
  min-width: 0;
}

.workbench-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.workbench-top span {
  color: var(--blue);
  font-weight: 850;
}

.workbench-top h1 {
  margin: 6px 0 0;
  font-size: 40px;
}

.top-actions {
  display: flex;
  gap: 10px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 20px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.stat-card b {
  display: block;
  margin: 8px 0 6px;
  color: var(--blue);
  font-size: 34px;
}

.wide-card {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .content-section {
    scroll-margin-top: 96px;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
  }

  .top-nav {
    width: auto;
    overflow-x: visible;
    gap: 0;
    padding-bottom: 0;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 68px;
  }
}

@media (max-width: 980px) {
  .site-footer,
  .entry-heading,
  .footer-bottom,
  .workbench-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .product-showcase,
  .product-advisor,
  .strength-layout,
  .validation-layout,
  .validation-proof,
  .story-layout,
  .patent-atlas,
  .patent-search-lab,
  .patent-map-heading,
  .install-hub,
  .split-section,
  .operations-grid,
  .support-layout,
  .diagnosis-layout,
  .warranty-layout,
  .channels-layout,
  .channel-route-advisor,
  .quality-layout,
  .resources-layout,
  .document-request-assistant,
  .contact-layout,
  .insights-layout,
  .content-library-filter,
  .footer-main,
  .login-shell,
  .workbench-page {
    grid-template-columns: 1fr;
  }

  .metrics-strip,
  .card-grid.three,
  .card-grid.four,
  .spec-grid,
  .product-advisor-metrics,
  .owner-steps,
  .strength-facts,
  .evidence-flow,
  .patent-evidence,
  .patent-source-panel,
  .patent-updates,
  .patent-search-metrics,
  .patent-search-list,
  .patent-track-metrics,
  .patent-portfolio,
  .patent-proof-flow,
  .install-checks,
  .service-lanes,
  .platform-grid,
  .platform-status-grid,
  .support-search-results,
  .support-action-list,
  .support-faq-list,
  .diagnosis-tabs,
  .diagnosis-steps,
  .warranty-checklist,
  .channel-market-grid,
  .channel-route-grid,
  .quality-proof-grid,
  .quality-gates,
  .quality-issue-map,
  .resource-pack-list,
  .document-request-grid,
  .trust-index,
  .contact-direct,
  .contact-checklist,
  .warranty-groups fieldset,
  .library-list,
  .content-topic-grid,
  .media-routing,
  .entry-grid,
  .footer-links,
  .capability-grid,
  .validation-metrics,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .patent-source-links {
    grid-template-columns: 1fr;
  }

  .support-search div,
  .support-search-heading {
    grid-template-columns: 1fr;
  }

  .support-search-heading {
    display: grid;
    align-items: start;
  }

  .support-search-heading b {
    text-align: left;
  }

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

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

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

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

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

  .workbench-sidebar {
    position: relative;
    height: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero-shell,
  .content-section,
  .metrics-strip,
  .validation-section,
  .support-section,
  .diagnosis-section,
  .channels-section,
  .story-section,
  .contact-section,
  .entry-band,
  .login-shell,
  .workbench-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark strong {
    font-size: 15px;
  }

  .brand-mark small {
    font-size: 12px;
  }

  .hero-shell {
    padding-top: 48px;
    padding-bottom: 54px;
    background-position: 63% center;
  }

  .hero-copy h1,
  .login-intro h1 {
    font-size: 34px;
  }

  .hero-copy p,
  .login-intro p {
    font-size: 16px;
    line-height: 1.74;
  }

  .hero-actions,
  .top-actions,
  .spec-heading,
  .form-row,
  .diagnosis-evidence {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .top-actions .btn {
    width: 100%;
  }

  .metrics-strip {
    margin-top: -18px;
  }

  .section-heading h2,
  .entry-heading h2,
  .workbench-top h1 {
    font-size: 28px;
  }

  .spec-grid dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .story-timeline {
    padding-left: 0;
  }

  .story-timeline::before {
    left: 19px;
  }

  .story-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 52px;
  }

  .story-timeline time {
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    min-height: 38px;
    padding: 0 5px;
    font-size: 11px;
  }
}

/* Modern youth-facing refresh layer */
.site-header {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.brand-icon {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1768e9 0%, #14b8a6 52%, #a3e635 100%);
}

.brand-icon::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .58) 42%, transparent 64%);
  transform: translateX(-60%) rotate(8deg);
  animation: logo-sheen 4.8s ease-in-out infinite;
}

.top-nav a:not(.nav-login) {
  position: relative;
  padding: 10px 2px;
  color: #26364c;
}

.top-nav a:not(.nav-login)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--fresh), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.top-nav a:not(.nav-login):hover::after,
.top-nav a:not(.nav-login).active::after {
  transform: scaleX(1);
}

.top-nav .nav-login,
.btn {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.top-nav .nav-login:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 104, 233, .18);
}

.btn.primary {
  background: linear-gradient(135deg, #1768e9, #14b8a6);
}

.hero-shell {
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  min-height: min(760px, calc(100svh - 76px));
  padding: 78px max(6vw, calc((100vw - 1180px) / 2 + 24px)) 82px;
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, .28), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(163, 230, 53, .13), transparent 30%),
    linear-gradient(112deg, #000 0%, #030712 46%, #071426 100%);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .32), transparent 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #eff6ff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 720px;
  color: rgba(239, 246, 255, .88);
}

.hero-proof span {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(10px);
}

.hero-live-panel {
  position: absolute;
  right: max(5vw, calc((100vw - 1180px) / 2 + 8px));
  bottom: 54px;
  width: min(420px, 38vw);
  min-height: 330px;
  z-index: 1;
  pointer-events: none;
}

.live-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 18, 38, .54);
  box-shadow: 0 28px 70px rgba(2, 6, 23, .34);
  backdrop-filter: blur(18px);
}

.live-card span {
  display: block;
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 900;
}

.live-card strong {
  display: block;
  margin-top: 7px;
  font-size: 24px;
  line-height: 1.18;
}

.live-card p {
  margin: 10px 0 0;
  color: rgba(239, 246, 255, .78);
  font-size: 14px;
  line-height: 1.7;
}

.live-card-product {
  inset: 0 44px auto auto;
  width: 310px;
  min-height: 238px;
  padding: 22px;
}

.live-card-product img {
  display: block;
  width: 104%;
  margin: 14px -16px -28px auto;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .26));
}

.live-card-fit {
  right: 0;
  bottom: 0;
  width: 284px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(23, 104, 233, .72), rgba(18, 155, 139, .72));
}

.live-card-fit a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 14px;
  padding: 0 13px;
  border-radius: 999px;
  color: #052e2b;
  background: #ecfeff;
  font-weight: 900;
  text-decoration: none;
}

.live-orbit {
  position: absolute;
  inset: 22px 12px 0 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  transform: rotate(-12deg);
  animation: orbit-turn 16s linear infinite;
}

.live-orbit i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(163, 230, 53, .85);
}

.live-orbit i:nth-child(1) { top: 18%; left: 7%; }
.live-orbit i:nth-child(2) { right: 4%; top: 46%; background: var(--fresh); }
.live-orbit i:nth-child(3) { left: 45%; bottom: -5px; background: var(--pink); }

.metrics-strip div {
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.metrics-strip div:hover,
.product-line:hover,
.fact-tile:hover,
.service-lanes a:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 104, 233, .34);
  box-shadow: 0 22px 46px rgba(15, 23, 42, .12);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

@keyframes logo-sheen {
  0%, 54% { transform: translateX(-70%) rotate(8deg); }
  74%, 100% { transform: translateX(70%) rotate(8deg); }
}

@keyframes orbit-turn {
  to { transform: rotate(348deg); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-icon::after,
  .live-orbit,
  .platform-status-panel.is-switching {
    animation: none;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }

  .platform-card:hover,
  .platform-card.active {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .top-nav {
    gap: 14px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-video-stage {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 112px;
    padding: 12px 18px;
  }

  .brand-mark {
    width: 100%;
    flex: none;
  }

  .brand-mark strong {
    font-size: 16px;
  }

  .brand-mark small {
    font-size: 12px;
  }

  .top-nav {
    width: 100%;
    max-width: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-switch {
    flex: none;
  }

  .floating-dock {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 12px;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 7px;
    border-radius: 999px;
    transform: none;
  }

  .floating-dock a,
  .floating-dock button {
    width: auto;
    min-height: 46px;
  }

  .floating-dock span {
    position: static;
    display: block;
    min-width: 0;
    margin-top: 2px;
    padding: 0;
    color: inherit;
    background: transparent;
    font-size: 11px;
    opacity: 1;
    transform: none;
  }

  .floating-dock svg {
    width: 18px;
    height: 18px;
  }

  .hero-shell {
    padding: 38px 18px 54px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-video-caption {
    position: static;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    background: #061225;
  }

  .hero-video-controls {
    width: 100%;
  }

  .hero-video-controls button {
    flex: 1;
    justify-content: center;
  }
}

.design-lab-section {
  max-width: none;
  padding: 64px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background:
    radial-gradient(circle at 18% 16%, rgba(34, 211, 238, .18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
}

.design-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin-top: 26px;
  align-items: stretch;
}

.design-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(23, 104, 233, .18);
  border-radius: 8px;
  color: #ecfeff;
  background:
    linear-gradient(135deg, rgba(8, 18, 38, .96), rgba(15, 63, 111, .9)),
    #0f172a;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
  transform:
    perspective(1200px)
    rotateX(calc(var(--tilt-y, 0) * -1deg))
    rotateY(calc(var(--tilt-x, 0) * 1deg));
  transition: transform .18s ease, box-shadow .18s ease;
}

.design-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -26% 30%;
  height: 260px;
  background: radial-gradient(circle, rgba(163, 230, 53, .24), transparent 64%);
  pointer-events: none;
}

.design-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--spot-x, 62%) var(--spot-y, 36%), rgba(255, 255, 255, .18), transparent 22%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .06) 45%, transparent 68%);
  opacity: .78;
  pointer-events: none;
  mix-blend-mode: screen;
}

.design-stage-top {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.design-stage-top span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #a7f3d0;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.design-stage-top b {
  display: block;
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

body[data-language="en"] .design-stage-top b {
  max-width: 680px;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.12;
}

.design-stage-top p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(236, 254, 255, .78);
  font-size: 17px;
  line-height: 1.8;
}

.wiper-blueprint {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 116px;
  height: 188px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
}

.wiper-blueprint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .22), transparent);
  transform: translateX(-110%);
  animation: blueprint-scan 4.8s ease-in-out infinite;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .7;
}

.blade {
  position: absolute;
  left: 9%;
  right: 9%;
  border-radius: 999px;
  transform-origin: center;
}

.blade-spine {
  top: 74px;
  height: 18px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee, #a3e635);
  box-shadow: 0 0 34px rgba(34, 211, 238, .36);
  transform: skewX(-14deg);
}

.blade-rubber {
  top: 100px;
  height: 11px;
  background: rgba(236, 254, 255, .92);
  transform: skewX(-14deg);
}

.blade-edge {
  top: 121px;
  height: 5px;
  background: rgba(163, 230, 53, .86);
  transform: skewX(-14deg);
}

.pin {
  position: absolute;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 18, 38, .62);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.pin-material { left: 16%; top: 28px; }
.pin-structure { left: 48%; top: 36px; }
.pin-fit { right: 12%; bottom: 26px; }

.design-meter-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.design-meter-grid div {
  min-height: 68px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.design-meter-grid b,
.design-meter-grid span {
  display: block;
}

.design-meter-grid b {
  color: #fff;
  font-size: 20px;
}

.design-meter-grid span {
  margin-top: 4px;
  color: rgba(236, 254, 255, .72);
  font-size: 13px;
}

.design-switcher {
  display: grid;
  gap: 10px;
  align-content: stretch;
}

.design-switcher button {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #c8d9ee;
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.design-switcher button:hover,
.design-switcher button.active {
  transform: translateY(-3px);
  border-color: rgba(23, 104, 233, .36);
  background: #fff;
  box-shadow: 0 22px 44px rgba(15, 23, 42, .11);
}

.design-switcher button.active {
  color: #fff;
  background: linear-gradient(135deg, #1768e9, #12a06e);
}

.design-switcher svg {
  grid-row: 1 / 3;
  align-self: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  stroke-width: 2.2;
}

.design-switcher button.active svg {
  color: #d9f99d;
}

.design-switcher b,
.design-switcher span {
  display: block;
}

.design-switcher b {
  font-size: 18px;
}

.design-switcher span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.design-switcher button.active span {
  color: rgba(255, 255, 255, .78);
}

.design-lab-section.lab-material .blade-spine { background: linear-gradient(90deg, #60a5fa, #22d3ee, #a3e635); }
.design-lab-section.lab-structure .blade-spine { background: linear-gradient(90deg, #c084fc, #60a5fa, #22d3ee); }
.design-lab-section.lab-color .blade-spine { background: linear-gradient(90deg, #fb7185, #fbbf24, #22d3ee, #a3e635); }
.design-lab-section.lab-fit .blade-spine { background: linear-gradient(90deg, #38bdf8, #1768e9, #f97316); }

@media (max-width: 980px) {
  .design-lab {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .design-lab-section {
    padding: 48px 18px;
  }

  .design-stage {
    min-height: 640px;
    padding: 20px;
  }

  .wiper-blueprint {
    left: 20px;
    right: 20px;
    bottom: 202px;
  }

  .design-meter-grid {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: 1fr;
  }

  .design-switcher {
    grid-template-columns: 1fr;
  }
}

@keyframes blueprint-scan {
  0%, 36% { transform: translateX(-110%); }
  72%, 100% { transform: translateX(110%); }
}

@keyframes process-pulse {
  0%, 18% { transform: translateX(0); opacity: 0; }
  28% { opacity: .86; }
  82% { opacity: .86; }
  100% { transform: translateX(calc(100vw - 190px)); opacity: 0; }
}

@keyframes signal-bounce {
  0%, 100% { transform: scaleY(.72); opacity: .72; }
  45% { transform: scaleY(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wiper-blueprint::after {
    animation: none;
  }

  .design-process-rail::after {
    animation: none;
  }

  .signal-wave em {
    animation: none;
  }

  .design-stage {
    transform: none;
  }
}

@media (max-width: 980px) {
  .design-process-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .design-process-rail::-webkit-scrollbar {
    display: none;
  }

  .design-process-rail article {
    flex: 0 0 238px;
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .validation-status-bar {
    grid-template-columns: 1fr;
  }

  .validation-status-bar small {
    justify-self: start;
  }
}

.secure-login-card {
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

.login-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
  padding: 5px;
  border-radius: 8px;
  background: #f3f6fb;
}

.login-mode-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  color: #475569;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.login-mode-tabs button.active {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.login-mode-tabs svg,
.erp-section-heading svg {
  width: 18px;
  height: 18px;
}

.wechat-login-panel {
  text-align: center;
}

.wechat-qr {
  position: relative;
  width: min(210px, 70vw);
  aspect-ratio: 1;
  margin: 4px auto 14px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #0f172a 10px, transparent 10px) 18px 18px / 44px 44px,
    linear-gradient(#0f172a 10px, transparent 10px) 18px 18px / 44px 44px,
    linear-gradient(135deg, rgba(34, 197, 94, .18), rgba(59, 130, 246, .18)),
    #fff;
  border: 10px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .1), 0 18px 38px rgba(15, 23, 42, .12);
}

.wechat-qr span {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 8px solid #0f172a;
}

.wechat-qr span:nth-child(1) { left: 14px; top: 14px; }
.wechat-qr span:nth-child(2) { right: 14px; top: 14px; }
.wechat-qr span:nth-child(3) { left: 14px; bottom: 14px; }
.wechat-qr span:nth-child(4) {
  right: 28px;
  bottom: 28px;
  width: 24px;
  height: 24px;
  border-width: 7px;
}

.form-message[data-tone="success"] {
  color: #047857;
}

.form-message[data-tone="error"] {
  color: #dc2626;
}

.erp-workbench-page {
  background: #eef3f9;
  overflow-x: hidden;
}

.erp-workbench-page .workbench-sidebar {
  background: linear-gradient(180deg, #25315f 0%, #202846 100%);
}

.erp-workbench-page .workbench-main {
  gap: 20px;
}

.erp-section {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
}

.erp-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.erp-section-heading span {
  display: block;
  margin-bottom: 6px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.erp-section-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #101827;
  font-size: 20px;
  line-height: 1.45;
}

.platform-connector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.platform-connector-grid article,
.finance-grid article {
  padding: 15px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  background: #f8fbff;
}

.platform-connector-grid b,
.finance-grid b {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.platform-connector-grid span,
.finance-grid span,
.platform-connector-grid em {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.platform-connector-grid em {
  color: #2563eb;
  font-style: normal;
  font-weight: 700;
}

.erp-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.erp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

.erp-table th,
.erp-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

.erp-table th {
  color: #475569;
  background: #f1f5f9;
  font-weight: 800;
}

.erp-table tr:last-child td {
  border-bottom: 0;
}

.inventory-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.erp-inventory-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 160px 160px;
  gap: 12px;
  margin: 0 0 14px;
}

.erp-inventory-toolbar label {
  position: relative;
  display: block;
}

.erp-inventory-toolbar svg {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: #64748b;
  transform: translateY(-50%);
  pointer-events: none;
}

.erp-inventory-toolbar input,
.erp-inventory-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: #0f172a;
  font: inherit;
  font-size: 14px;
}

.erp-inventory-toolbar input {
  padding: 0 14px 0 42px;
}

.erp-inventory-toolbar select {
  padding: 0 12px;
}

.inventory-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.inventory-summary-grid article {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--erp-accent-soft, rgba(37, 99, 235, .12)), transparent 58%),
    #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.inventory-summary-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--erp-accent, #2563eb), var(--erp-accent-2, #14b8a6));
  transform: translateX(-46%);
  animation: erp-scan 4.2s ease-in-out infinite;
}

.inventory-summary-grid span,
.inventory-summary-grid small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.inventory-summary-grid b {
  display: block;
  margin: 8px 0 5px;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
}

.inventory-archive-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 12px;
  min-height: 560px;
}

.inventory-tree-panel,
.inventory-table-panel {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .05);
}

.inventory-tree-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.inventory-tree-title,
.inventory-table-head,
.inventory-table-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, .24);
  background:
    linear-gradient(135deg, var(--erp-accent-soft, rgba(37, 99, 235, .12)), transparent 64%),
    #f8fafc;
}

.inventory-tree-title span {
  color: #0f172a;
  font-weight: 900;
}

.inventory-tree-title b,
.inventory-table-head small,
.inventory-table-foot {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.inventory-tree {
  overflow: auto;
  padding: 8px;
}

.inventory-tree-children {
  display: grid;
  gap: 3px;
}

.inventory-tree-children.nested {
  margin-left: 20px;
  padding-left: 10px;
  border-left: 0;
}

.inventory-tree-node {
  position: relative;
  display: grid;
  grid-template-columns: 22px 58px minmax(0, 1fr) auto;
  width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 8px;
  background: transparent;
  color: #334155;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.inventory-tree-node .tree-toggle {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  color: #1768e9;
  background: rgba(23, 104, 233, .08);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.inventory-tree-node .tree-spacer {
  width: 22px;
  height: 22px;
}

.inventory-tree-node.has-children:hover .tree-toggle,
.inventory-tree-node.has-children.active .tree-toggle {
  color: #0f766e;
  background: rgba(20, 184, 166, .15);
}

.inventory-tree-node:hover,
.inventory-tree-node.active {
  border-color: color-mix(in srgb, var(--erp-accent, #2563eb) 24%, #cbd5e1);
  background: linear-gradient(135deg, var(--erp-accent-soft, rgba(37, 99, 235, .12)), rgba(255, 255, 255, .92));
}

.inventory-tree-node.active::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--erp-accent, #2563eb), var(--erp-accent-2, #14b8a6));
}

.inventory-tree-node i,
.inventory-tree-node em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.inventory-tree-node strong {
  overflow: hidden;
  color: #0f172a;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-tree-node.root-node {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  margin-bottom: 6px;
}

.inventory-expand-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(148, 163, 184, .24);
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.inventory-expand-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--erp-accent, #2563eb);
}

.inventory-table-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.inventory-table-head strong,
.inventory-table-head span {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.inventory-table-head span {
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 12px;
  font-weight: 900;
}

.inventory-table-head strong {
  color: #0f172a;
  font-size: 18px;
}

.inventory-table-actions {
  display: flex;
  gap: 8px;
}

.inventory-table-actions .btn[disabled] {
  opacity: .48;
  pointer-events: none;
}

.inventory-archive-table-wrap {
  min-height: 0;
  overflow: auto;
  border: 0;
  border-radius: 0;
}

.inventory-archive-table {
  min-width: 900px;
}

.inventory-archive-table th,
.inventory-archive-table td {
  padding: 10px 12px;
}

.inventory-category-row {
  cursor: pointer;
}

.inventory-category-row:hover td {
  background: #eff6ff;
}

.inventory-row-low td {
  background: #fff7ed;
}

.inventory-table-foot {
  justify-content: flex-end;
  border-top: 1px solid rgba(148, 163, 184, .24);
  border-bottom: 0;
}

.inventory-card {
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #fff;
  animation: erp-panel-enter .34s cubic-bezier(.2, .8, .2, 1) both;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.inventory-card:hover {
  border-color: color-mix(in srgb, var(--erp-accent, #2563eb) 28%, #cbd5e1);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
}

.inventory-card div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.inventory-card span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.inventory-card b {
  color: #0f172a;
  font-size: 15px;
}

.inventory-card p {
  margin: 10px 0;
  color: #475569;
  font-size: 14px;
}

.inventory-card strong {
  display: block;
  color: #0f172a;
  font-size: 34px;
  line-height: 1;
}

.inventory-card small {
  display: block;
  margin-top: 6px;
  color: #64748b;
}

.inventory-card em {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #047857;
  background: #ecfdf5;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.inventory-card.is-low {
  border-color: rgba(220, 38, 38, .24);
  background: #fff8f8;
}

.inventory-card.is-low em {
  color: #b91c1c;
  background: #fee2e2;
}

.empty-stock-card,
.inventory-more-card {
  display: grid;
  min-height: 150px;
  align-content: center;
}

.inventory-more-card {
  border-style: dashed;
  background: rgba(248, 250, 252, .82);
}

.stock-meter {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.stock-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #22c55e);
}

.inventory-card.is-low .stock-meter i {
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.manual-entry-card {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(217, 119, 6, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 251, 235, .78), rgba(255, 255, 255, .94));
}

.manual-entry-copy {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(217, 119, 6, .14);
}

.manual-entry-copy span {
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
}

.manual-entry-copy p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.manual-flow-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.manual-flow-form label:nth-of-type(1),
.manual-flow-form label:nth-of-type(2) {
  grid-column: span 3;
}

.manual-flow-form label:nth-of-type(3) {
  grid-column: span 6;
}

.manual-flow-form label:nth-of-type(4) {
  grid-column: span 2;
}

.manual-flow-form label:nth-of-type(5) {
  grid-column: span 7;
}

.manual-flow-form .btn.primary {
  grid-column: span 3;
}

.manual-flow-form label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.manual-flow-form input,
.manual-flow-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 0 12px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.manual-flow-form input:focus,
.manual-flow-form select:focus {
  outline: none;
  border-color: var(--erp-accent, #2563eb);
  box-shadow: 0 0 0 3px var(--erp-accent-soft, rgba(37, 99, 235, .12));
}

.manual-record-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(248, 250, 252, .86);
}

.manual-record-toolbar[hidden] {
  display: none;
}

.manual-record-toolbar > div:first-child {
  display: grid;
  gap: 3px;
}

.manual-record-toolbar span {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

.manual-record-toolbar small {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.manual-record-toolbar .erp-filter-tabs {
  margin: 0;
}

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

@media (max-width: 1180px) {
  .platform-connector-grid,
  .inventory-summary-grid,
  .inventory-board,
  .finance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .erp-inventory-toolbar {
    grid-template-columns: 1fr;
  }

  .inventory-archive-shell {
    grid-template-columns: 1fr;
  }

  .inventory-tree-panel {
    min-height: 260px;
  }

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

  .manual-flow-form label:nth-of-type(1),
  .manual-flow-form label:nth-of-type(2),
  .manual-flow-form label:nth-of-type(3),
  .manual-flow-form label:nth-of-type(4),
  .manual-flow-form label:nth-of-type(5),
  .manual-flow-form .btn.primary {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .erp-section {
    padding: 16px;
  }

  .erp-section-heading {
    display: grid;
  }

  .platform-connector-grid,
  .inventory-summary-grid,
  .inventory-board,
  .finance-grid,
  .manual-flow-form {
    grid-template-columns: 1fr;
  }

  .inventory-table-head {
    display: grid;
  }

  .inventory-table-actions {
    justify-content: stretch;
  }

  .inventory-table-actions .btn {
    flex: 1;
  }

  .manual-entry-copy,
  .manual-record-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .manual-record-toolbar .erp-filter-tabs {
    width: 100%;
  }
}

.erp-workbench-page {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .08), transparent 34%),
    linear-gradient(315deg, rgba(20, 184, 166, .08), transparent 30%),
    #eef3f9;
}

.erp-sidebar {
  border-right: 1px solid rgba(255, 255, 255, .1);
  animation: erp-sidebar-in .52s cubic-bezier(.2, .8, .2, 1) both;
}

.erp-side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.erp-side-nav svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.erp-side-nav .nav-badge {
  display: inline-grid;
  min-width: 24px;
  height: 22px;
  place-items: center;
  margin-left: auto;
  padding: 0 7px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.erp-side-nav .nav-badge.has-count {
  color: #0f172a;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 8px 18px rgba(15, 23, 42, .18);
  animation: erp-badge-pulse 2.4s ease-in-out infinite;
}

.erp-side-nav a.active .nav-badge {
  color: #0f172a;
  background: #fff;
  transform: scale(1.04);
}

.erp-main {
  display: grid;
  gap: 20px;
  --erp-accent: #2563eb;
  --erp-accent-2: #14b8a6;
  --erp-accent-soft: rgba(37, 99, 235, .12);
}

.erp-main[data-current-view="orders"] {
  --erp-accent: #2563eb;
  --erp-accent-2: #14b8a6;
  --erp-accent-soft: rgba(37, 99, 235, .12);
}

.erp-main[data-current-view="inventory"] {
  --erp-accent: #059669;
  --erp-accent-2: #84cc16;
  --erp-accent-soft: rgba(5, 150, 105, .12);
}

.erp-main[data-current-view="manual"] {
  --erp-accent: #d97706;
  --erp-accent-2: #f97316;
  --erp-accent-soft: rgba(217, 119, 6, .13);
}

.erp-main[data-current-view="finance"] {
  --erp-accent: #7c3aed;
  --erp-accent-2: #0ea5e9;
  --erp-accent-soft: rgba(124, 58, 237, .12);
}

.erp-topbar {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--erp-accent-soft), transparent 38%),
    rgba(255, 255, 255, .92);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
  animation: erp-topbar-in .5s cubic-bezier(.2, .8, .2, 1) .06s both;
}

.erp-topbar::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--erp-accent), var(--erp-accent-2), transparent);
  transform: translateX(-60%);
  animation: erp-scan 4.8s ease-in-out infinite;
}

.erp-topbar .btn.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--erp-accent), var(--erp-accent-2));
  box-shadow: 0 16px 30px color-mix(in srgb, var(--erp-accent, #2563eb) 24%, transparent);
}

.erp-topbar .btn.primary svg,
.erp-topbar .btn.primary span {
  color: #fff;
  stroke: currentColor;
}

.erp-live-indicator {
  position: absolute;
  right: 22px;
  bottom: 13px;
  display: inline-flex;
  gap: 5px;
  align-items: end;
  height: 20px;
  pointer-events: none;
}

.erp-live-indicator span {
  width: 5px;
  height: 8px;
  border-radius: 999px;
  background: var(--erp-accent);
  opacity: .38;
  animation: erp-signal 1.4s ease-in-out infinite;
}

.erp-live-indicator span:nth-child(2) {
  height: 14px;
  background: var(--erp-accent-2);
  animation-delay: .14s;
}

.erp-live-indicator span:nth-child(3) {
  height: 10px;
  animation-delay: .28s;
}

.erp-topbar p {
  max-width: 740px;
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.erp-command-panel {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: stretch;
}

.erp-command-copy {
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), transparent 42%),
    linear-gradient(160deg, #172554, var(--erp-accent) 62%, var(--erp-accent-2));
  box-shadow: 0 20px 44px rgba(15, 23, 42, .18);
}

.erp-command-copy span {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 850;
}

.erp-command-copy h2 {
  margin: 12px 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.24;
  letter-spacing: 0;
}

.erp-command-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
}

.erp-summary-grid {
  gap: 12px;
}

.erp-summary-grid .stat-card {
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.erp-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: 20px;
  align-items: start;
}

.erp-panel-stage {
  min-width: 0;
}

.erp-panel[hidden] {
  display: none;
}

.erp-panel.is-entering {
  animation: erp-panel-enter .42s cubic-bezier(.2, .8, .2, 1) both;
}

.compact-heading h2 {
  font-size: 18px;
}

.platform-connector-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-connector-grid article {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.platform-connector-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .26);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .08);
}

.erp-alert-panel {
  position: sticky;
  top: 18px;
}

.erp-alert-list {
  display: grid;
  gap: 10px;
}

.erp-alert-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.erp-alert-item svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 8px;
}

.erp-alert-item b,
.erp-workflow-card b {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.erp-alert-item span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.erp-alert-item.blue svg { color: #2563eb; background: #eff6ff; }
.erp-alert-item.green svg { color: #059669; background: #ecfdf5; }
.erp-alert-item.red svg { color: #dc2626; background: #fef2f2; }
.erp-alert-item.amber svg { color: #d97706; background: #fffbeb; }
.erp-alert-item.slate svg { color: #475569; background: #f1f5f9; }

.erp-workflow-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(20, 184, 166, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #f0fdfa, #fff);
}

.erp-workflow-card ol {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.erp-workflow-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.erp-workflow-card li span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 900;
}

.erp-module-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.erp-module-strip article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.erp-module-strip svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  color: #2563eb;
  background: #eff6ff;
}

.erp-module-strip b {
  display: block;
  margin-top: 12px;
  color: #0f172a;
  font-size: 15px;
}

.erp-module-strip span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.erp-summary-grid .stat-card,
.inventory-card,
.erp-alert-item,
.finance-grid article {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.erp-summary-grid .stat-card:hover,
.inventory-card:hover,
.erp-alert-item:hover,
.finance-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
}

.erp-data-pulse .stat-card b,
.erp-data-pulse .inventory-card strong {
  animation: erp-number-pop .46s cubic-bezier(.2, .8, .2, 1);
}

.erp-data-pulse .erp-table tbody tr:first-child {
  animation: erp-row-flash 1s ease both;
}

.erp-side-nav a {
  position: relative;
  overflow: hidden;
}

.erp-side-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .14) 42%, transparent 74%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity .18s ease, transform .28s ease;
}

.erp-side-nav a:hover::before,
.erp-side-nav a.active::before {
  opacity: 1;
  transform: translateX(60%);
}

.erp-side-nav a::after {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 99px;
  background: #22c55e;
  opacity: 0;
  transform: scaleY(.3);
  transition: opacity .18s ease, transform .18s ease;
}

.erp-side-nav a.active::after {
  opacity: 1;
  transform: scaleY(1);
  background: var(--erp-accent, #22c55e);
}

.erp-main[data-current-view="inventory"] .inventory-card {
  border-color: rgba(5, 150, 105, .16);
}

.erp-main[data-current-view="finance"] .finance-grid article {
  border-color: rgba(124, 58, 237, .18);
  background: linear-gradient(180deg, rgba(245, 243, 255, .8), #fff);
}

@keyframes erp-panel-enter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes erp-sidebar-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes erp-topbar-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes erp-number-pop {
  0% { transform: translateY(0) scale(1); color: #2563eb; }
  38% { transform: translateY(-4px) scale(1.08); color: #14b8a6; }
  100% { transform: translateY(0) scale(1); color: #2563eb; }
}

@keyframes erp-row-flash {
  0% { background: #dcfce7; }
  100% { background: transparent; }
}

@keyframes erp-scan {
  0%, 38% { transform: translateX(-70%); opacity: .15; }
  58% { opacity: .8; }
  100% { transform: translateX(70%); opacity: .15; }
}

@keyframes erp-signal {
  0%, 100% {
    transform: scaleY(.72);
    opacity: .36;
  }
  48% {
    transform: scaleY(1.18);
    opacity: .9;
  }
}

@keyframes erp-status-scan {
  0%, 36% {
    opacity: .2;
    transform: translateX(-72%);
  }
  58% {
    opacity: .75;
  }
  100% {
    opacity: .2;
    transform: translateX(72%);
  }
}

@keyframes erp-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 8px 18px rgba(15, 23, 42, .18);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .2), 0 10px 26px rgba(34, 197, 94, .22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .erp-topbar::after,
  .erp-alert-panel::before,
  .erp-live-indicator span,
  .erp-side-nav .nav-badge.has-count,
  .erp-sidebar,
  .erp-topbar,
  .erp-panel.is-entering,
  .erp-data-pulse .stat-card b,
  .erp-data-pulse .inventory-card strong,
  .erp-data-pulse .erp-table tbody tr:first-child {
    animation: none;
  }

  .erp-summary-grid .stat-card:hover,
  .inventory-card:hover,
  .erp-alert-item:hover,
  .finance-grid article:hover,
  .platform-connector-grid article:hover {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .erp-command-panel,
  .erp-workspace-grid {
    grid-template-columns: 1fr;
  }

  .erp-alert-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .platform-connector-grid.compact,
  .erp-module-strip {
    grid-template-columns: 1fr;
  }

  .erp-command-copy h2 {
    font-size: 24px;
  }

  .erp-sidebar {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    padding: 14px 16px 12px;
  }

  .erp-sidebar .brand-mark {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-bottom: 12px;
  }

  .erp-side-nav {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-top: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .erp-side-nav::-webkit-scrollbar {
    display: none;
  }

  .erp-side-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
  }

  .erp-side-nav .nav-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 2px;
  }

  .erp-topbar {
    padding: 18px;
  }

  .erp-topbar .top-actions {
    gap: 8px;
  }

  .erp-action-strip {
    gap: 6px;
  }

  .erp-action-strip span {
    min-height: 34px;
    padding: 0 9px;
  }
}

.erp-main .erp-section {
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
}

.erp-main .erp-section-heading {
  margin-bottom: 12px;
}

.erp-main .erp-section-heading h2 {
  font-size: 18px;
}

.erp-main .erp-section-heading span {
  margin-bottom: 4px;
  font-size: 12px;
}

.erp-workspace-grid {
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, .68fr);
}

.platform-connector-grid.compact {
  gap: 8px;
  margin-bottom: 12px;
}

.erp-action-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 12px;
}

.erp-action-strip span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  color: #475569;
  background: rgba(248, 250, 252, .88);
  font-size: 12px;
  font-weight: 820;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.erp-action-strip svg {
  width: 15px;
  height: 15px;
  color: var(--erp-accent, #2563eb);
}

.erp-action-strip span:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--erp-accent, #2563eb) 32%, transparent);
  color: #0f172a;
  background: #fff;
}

.erp-filter-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 0 0 10px;
  padding: 4px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f1f5f9;
}

.erp-filter-tabs button {
  min-height: 30px;
  border: 0;
  border-radius: 7px;
  padding: 0 11px;
  color: #64748b;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.erp-filter-tabs button.active {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.erp-filter-tabs button:hover {
  color: var(--erp-accent, #2563eb);
}

.platform-connector-grid.compact article {
  position: relative;
  min-height: 86px;
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff, #f6f9fd);
}

.platform-connector-grid.compact article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #94a3b8;
}

.platform-connector-grid.compact article::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #94a3b8;
  box-shadow: 0 0 0 5px rgba(148, 163, 184, .12);
}

.platform-connector-grid.compact article[data-platform="tmall"]::before,
.platform-connector-grid.compact article[data-platform="taobao"]::before,
.platform-connector-grid.compact article[data-platform="douyin"]::before {
  background: #f97316;
}

.platform-connector-grid.compact article[data-platform="tmall"]::after,
.platform-connector-grid.compact article[data-platform="taobao"]::after,
.platform-connector-grid.compact article[data-platform="douyin"]::after {
  background: #f97316;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, .12);
}

.platform-connector-grid.compact article[data-platform="manual"]::before {
  background: #10b981;
}

.platform-connector-grid.compact article[data-platform="manual"]::after {
  background: #10b981;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.platform-connector-grid.compact b {
  font-size: 14px;
}

.platform-connector-grid.compact span,
.platform-connector-grid.compact em {
  margin-top: 4px;
  font-size: 12px;
}

.erp-alert-panel {
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--erp-accent, #2563eb) 10%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(240, 253, 250, .72));
}

.erp-alert-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--erp-accent, #2563eb), var(--erp-accent-2, #14b8a6), transparent);
  opacity: .72;
  transform: translateX(-65%);
  animation: erp-status-scan 3.8s ease-in-out infinite;
}

.erp-alert-list {
  gap: 8px;
}

.erp-alert-item {
  position: relative;
  grid-template-columns: 32px 1fr;
  padding: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
}

.erp-alert-item::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  border-radius: 99px;
  background: currentColor;
  opacity: .68;
}

.erp-alert-item.blue { color: #2563eb; }
.erp-alert-item.green { color: #059669; }
.erp-alert-item.red { color: #dc2626; }
.erp-alert-item.amber { color: #d97706; }
.erp-alert-item.slate { color: #475569; }

.erp-alert-item svg {
  width: 32px;
  height: 32px;
}

.erp-alert-item b,
.erp-alert-item span {
  position: relative;
  z-index: 1;
}

.erp-workflow-card {
  padding: 14px;
}

.erp-workflow-card li {
  min-height: 26px;
}

.erp-table-wrap {
  border-color: #dbe4f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.erp-table th,
.erp-table td {
  padding: 11px 14px;
}

.erp-table tbody tr {
  transition: background .16s ease;
}

.erp-table tbody tr:hover {
  background: #f8fafc;
}

.erp-status-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.erp-status-pill.success {
  color: #047857;
  background: #ecfdf5;
}

.erp-status-pill.warning {
  color: #b45309;
  background: #fffbeb;
}

.erp-status-pill.muted {
  color: #475569;
  background: #f1f5f9;
}

.erp-summary-grid .stat-card {
  min-height: 144px;
}

.inventory-board {
  gap: 10px;
}

.inventory-card {
  padding: 14px;
}

.empty-stock-card {
  display: grid;
  min-height: 130px;
  place-items: center;
  text-align: center;
}

.empty-stock-card p {
  margin: 6px 0 0;
}

.finance-grid article {
  min-height: 108px;
}

.finance-queue-wrap {
  margin-top: 12px;
}

.erp-pulse-rail {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
}

.erp-pulse-rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--erp-accent), var(--erp-accent-2), transparent);
  opacity: .45;
  animation: erp-rail-flow 3.8s ease-in-out infinite;
}

.erp-pulse-rail span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #64748b;
  background: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 850;
}

.erp-pulse-rail span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: #cbd5e1;
}

.erp-pulse-rail span.active {
  color: #0f172a;
  border-color: color-mix(in srgb, var(--erp-accent, #2563eb) 24%, transparent);
  background: #fff;
}

.erp-pulse-rail span.active::before {
  background: var(--erp-accent, #2563eb);
  box-shadow: 0 0 0 5px var(--erp-accent-soft, rgba(37, 99, 235, .12));
  animation: erp-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes erp-rail-flow {
  0%, 100% {
    transform: scaleX(.72);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes erp-dot-pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.18); opacity: 1; }
}

@media (max-width: 1180px) {
  .erp-workspace-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .erp-pulse-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .erp-pulse-rail::before,
  .erp-pulse-rail span.active::before {
    animation: none;
  }
}

.product-gallery-section {
  max-width: none;
  padding: 62px max(24px, calc((100vw - 1180px) / 2 + 24px)) 70px;
  background:
    linear-gradient(180deg, #fff 0%, #f6fbff 54%, #fff 100%),
    var(--paper);
}

.product-gallery-section .section-heading {
  max-width: 1180px;
  margin-inline: auto;
}

.product-gallery-shell {
  position: relative;
  max-width: 1180px;
  margin: 28px auto 0;
}

.product-gallery-stage {
  position: relative;
  min-height: clamp(440px, 56vw, 660px);
  overflow: hidden;
  border-radius: 8px;
  outline: none;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, .88), rgba(255, 255, 255, .98)),
    #fff;
}

.product-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto;
  height: 34%;
  background: linear-gradient(180deg, rgba(15, 23, 42, .055), rgba(15, 23, 42, .015), transparent);
  pointer-events: none;
}

.product-gallery-stage::after {
  content: "";
  position: absolute;
  inset: auto 9% 13%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, .16), transparent);
  pointer-events: none;
}

.product-gallery-item {
  --gallery-x: 0px;
  --gallery-y: 0px;
  --gallery-scale: .62;
  --gallery-opacity: 0;
  --gallery-z: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--gallery-z);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: clamp(260px, 36vw, 470px);
  min-height: clamp(330px, 42vw, 510px);
  margin: 0;
  border: 1px solid rgba(217, 228, 242, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .1);
  opacity: var(--gallery-opacity);
  pointer-events: none;
  transform: translate(calc(-50% + var(--gallery-x)), calc(-50% + var(--gallery-y))) scale(var(--gallery-scale));
  transition: transform .44s cubic-bezier(.22, .61, .36, 1), opacity .3s ease, filter .3s ease, box-shadow .3s ease;
}

.product-gallery-item.is-active {
  --gallery-scale: 1;
  --gallery-opacity: 1;
  --gallery-z: 6;
  pointer-events: auto;
  box-shadow: 0 34px 86px rgba(15, 23, 42, .16);
}

.product-gallery-item.is-prev,
.product-gallery-item.is-next {
  --gallery-scale: .78;
  --gallery-opacity: .72;
  --gallery-z: 4;
  filter: saturate(.82) contrast(.94);
}

.product-gallery-item.is-prev { --gallery-x: -330px; --gallery-y: 8px; }
.product-gallery-item.is-next { --gallery-x: 330px; --gallery-y: 8px; }

.product-gallery-item.is-far-prev,
.product-gallery-item.is-far-next {
  --gallery-scale: .58;
  --gallery-opacity: .34;
  --gallery-z: 2;
  filter: grayscale(.18) saturate(.72);
}

.product-gallery-item.is-far-prev { --gallery-x: -560px; --gallery-y: 28px; }
.product-gallery-item.is-far-next { --gallery-x: 560px; --gallery-y: 28px; }

.product-gallery-item figure {
  display: grid;
  min-height: 0;
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  place-items: center;
}

.product-gallery-item img {
  display: block;
  width: 100%;
  height: clamp(210px, 27vw, 360px);
  object-fit: contain;
}

.product-gallery-item div {
  display: grid;
  gap: 7px;
  padding: 0 clamp(18px, 2.5vw, 28px) clamp(18px, 2.5vw, 28px);
  text-align: center;
}

.product-gallery-item span {
  justify-self: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0f4473;
  background: #edf6ff;
  font-size: 12px;
  font-weight: 900;
}

.product-gallery-item h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
}

.product-gallery-item p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(191, 214, 255, .8);
  border-radius: 999px;
  color: #23344d;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.product-gallery-arrow:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-arrow.prev {
  left: -24px;
}

.product-gallery-arrow.next {
  right: -24px;
}

.product-gallery-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.product-gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.product-gallery-dots button.active {
  width: 30px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

@media (max-width: 980px) {
  .brand-video-layout,
  .company-profile-grid {
    grid-template-columns: 1fr;
  }

  .brand-video-copy,
  .company-profile-card {
    min-height: auto;
  }

  .product-gallery-item.is-prev { --gallery-x: -240px; }
  .product-gallery-item.is-next { --gallery-x: 240px; }
  .product-gallery-item.is-far-prev { --gallery-x: -420px; }
  .product-gallery-item.is-far-next { --gallery-x: 420px; }
}

@media (max-width: 720px) {
  .brand-video-section,
  .company-profile-section,
  .product-gallery-section {
    padding-inline: 18px;
  }

  .brand-video-points,
  .company-profile-proof,
  .company-profile-values {
    grid-template-columns: 1fr;
  }

  .product-gallery-stage {
    min-height: 560px;
  }

  .product-gallery-item {
    width: min(82vw, 360px);
    min-height: 430px;
  }

  .product-gallery-item.is-prev { --gallery-x: -180px; --gallery-y: 16px; }
  .product-gallery-item.is-next { --gallery-x: 180px; --gallery-y: 16px; }
  .product-gallery-item.is-far-prev,
  .product-gallery-item.is-far-next {
    --gallery-opacity: 0;
  }

  .product-gallery-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .product-gallery-arrow:hover {
    transform: scale(1.04);
  }

  .product-gallery-arrow.prev {
    left: calc(50% - 60px);
  }

  .product-gallery-arrow.next {
    right: calc(50% - 60px);
  }
}
