/* ═══════════════════════════════════════════════════════════════════
   MATG — Cybernetic Engineering & Materials Intelligence Stylesheet
   Polymer Chain Wallpapers, BOM Live Streams & Interactive Simulators
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Fonts & Global Reset ────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}

::selection {
  background: var(--copper);
  color: var(--copper-ink);
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--ivory);
  text-wrap: balance;
}

.si {
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.015em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 680px) {
  .wrap {
    padding: 0 20px;
  }
}

/* Scroll reveal utility */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── 2. Floating Centered Pill Navigation (#nav & #navpill) ────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px clamp(18px, 3vw, 32px);
  pointer-events: none;
}

#nav > * {
  pointer-events: auto;
}

#navpill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  padding: 0 0 0 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  overflow: visible;
  position: relative;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, backdrop-filter 0.25s, max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.scrolled #navpill {
  max-width: 780px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--line-2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 107, 0, 0.08);
}

body.light.scrolled #navpill {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 20, 24, 0.12);
  box-shadow: 0 6px 24px rgba(18, 20, 24, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--brand-font);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: opacity 0.2s;
  padding: 10px 0;
}

.brand:hover {
  opacity: 0.85;
}

.brand-svg {
  height: 28px;
  width: auto;
  color: var(--ivory);
}

#navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ivory-2);
}

#navlinks a, .nav-dropdown-toggle {
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#navlinks a:hover, .nav-dropdown-toggle:hover, #navlinks a.active {
  opacity: 1;
  color: var(--ivory);
}

/* Nav Solutions Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 300px;
  background: var(--screen);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 107, 0, 0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 9999;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

body.light .nav-dropdown-menu {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.14);
  box-shadow: 0 16px 36px -16px rgba(18, 20, 24, 0.25), 0 0 0 1px rgba(18, 20, 24, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background var(--dur-fast);
  cursor: pointer;
}

.nav-dropdown-item:hover {
  background: var(--card-2);
}

.nav-dropdown-item-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 2px;
}

.nav-dropdown-item-desc {
  display: block;
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

.navcta {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.navcta .toggle {
  margin: 6px 0;
}

.navcta .btn-p {
  height: 100%;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 0 999px 999px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  box-shadow: none;
}

.navcta .btn-p:hover {
  filter: brightness(1.12);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.25), 0 0 24px var(--accent-glow);
  transform: none;
}

@media (max-width: 860px) {
  #navlinks {
    display: none;
  }
  body.scrolled #navpill {
    max-width: 420px;
  }
}

/* ── 3. Buttons & Toggles (Cybernetic Flame & Neon Glow) ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: filter 0.18s, border-color 0.18s, color 0.18s, background 0.18s, box-shadow 0.25s, transform 0.18s;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-p {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-p:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2), 0 8px 28px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
}

.btn-g {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  border-color: var(--line-2);
}

.btn-g:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-bg);
  box-shadow: 0 0 16px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15.5px;
}

.toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: none;
  color: var(--ivory-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

.toggle:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.toggle svg {
  width: 15px;
  height: 15px;
}

/* ── 4. Hero Section & Interactive Polymer Wallpaper Canvas ─────────── */
.hero {
  position: relative;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 229, 255, 0.14) 0%, rgba(255, 107, 0, 0.07) 50%, var(--bg) 100%), var(--bg);
  overflow: hidden;
  padding: 150px clamp(20px, 4vw, 56px) clamp(56px, 7vw, 84px);
  transition: background 0.3s;
}

body.light .hero {
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 151, 167, 0.12) 0%, rgba(232, 89, 12, 0.06) 50%, var(--bg) 100%), var(--bg);
}

/* 60fps Polymer Chains Interactive Canvas (Translucent) */
#polymerCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 0;
  opacity: 0.65;
  mix-blend-mode: screen;
}

body.light #polymerCanvas {
  opacity: 0.45;
  mix-blend-mode: multiply;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

body.light .hero-stars {
  display: none;
}

.hero-stars i {
  position: absolute;
  border-radius: 50%;
  background: #00E5FF;
  box-shadow: 0 0 6px #00E5FF;
  animation: hstw 6s ease-in-out infinite;
}

@keyframes hstw {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.12; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stars i { animation: none !important; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
}

.flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 24px;
  background: var(--cyan-bg);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.flag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  display: inline-block;
  animation: ndp2 2.2s infinite;
}

@keyframes ndp2 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.03em;
}

.hero h1 .l2 {
  display: block;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.02em;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 22px auto 0;
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: var(--ivory-2);
  line-height: 1.6;
  max-width: 58ch;
  text-wrap: balance;
}

.hero-sub b {
  color: var(--ivory);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.hero-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-2);
}

.hero-note b {
  color: var(--ivory-2);
}

/* Hero Stat Row (Hairline dividers with cyan glow) */
.hero-stats {
  display: flex;
  align-items: stretch;
  margin-top: 42px;
  flex-wrap: wrap;
  justify-content: center;
}

.hs {
  padding: 2px 28px;
  text-align: center;
}

.hs:first-child {
  padding-left: 0;
}

.hs:last-child {
  padding-right: 0;
}

.hs + .hs {
  border-left: 1px solid var(--line-2);
}

.hs .hn {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 16px var(--cyan-glow);
}

.hs .hl {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 768px) {
  .hs {
    padding: 2px 14px;
  }
}

/* ── 5. Product Screen Mock (Cybernetic Window Chrome) ──────────────── */
.hero-map-wrap {
  width: 100%;
  margin-top: 48px;
}

.screen {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: var(--screen);
  color: #DDDEE3;
  box-shadow: 0 24px 70px -38px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.06);
  position: relative;
}

body.light .screen {
  border-color: rgba(18, 20, 24, 0.22);
  box-shadow: 0 24px 56px -38px rgba(18, 20, 24, 0.28);
}

.screen .tb {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--screen-2);
}

.screen .tb::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-right: 32px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 11px 0 0 rgba(255, 255, 255, 0.25), 22px 0 0 rgba(255, 255, 255, 0.25);
}

body.light .screen .tb::before {
  background: rgba(18, 20, 24, 0.2);
  box-shadow: 11px 0 0 rgba(18, 20, 24, 0.2), 22px 0 0 rgba(18, 20, 24, 0.2);
}

.screen .tb b {
  font-size: 13px;
  font-weight: 700;
  color: #ECECEE;
  margin-right: auto;
}

body.light .screen .tb b {
  color: #121418;
}

.screen .tb span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.screen .body {
  padding: 24px;
}

/* ── 6. Section Shell & Headers ────────────────────────────────────── */
section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  transition: background-color 0.3s;
}

section.alt {
  background: var(--bg-2);
}

section.deep {
  background: var(--bg-3);
}

@media (max-width: 680px) {
  section {
    padding: 66px 0;
  }
}

.sec-h {
  max-width: 760px;
  margin: 0 0 48px;
}

.sec-h.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-h h2 {
  font-size: clamp(28px, 3.8vw, 48px);
}

.sec-h p {
  margin: 16px 0 0;
  font-size: 16px;
  color: var(--ivory-2);
  line-height: 1.65;
  max-width: 60ch;
}

.sec-h.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ── 7. RADIAL TREE DIAGRAM (The Intelligence Graph) ───────────────── */
.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 920px) {
  .audit-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.tree-screen {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: var(--screen);
  overflow: hidden;
  box-shadow: 0 24px 70px -38px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 229, 255, 0.05);
}

body.light .tree-screen {
  border-color: rgba(18, 20, 24, 0.22);
}

.tree-screen .tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--screen-2);
}

.tree-screen .tb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--screen-2);
  border-bottom: 1px solid var(--line-2);
}

.tree-screen .tb b {
  font-size: 13.5px;
  font-weight: 800;
  color: #ECECEE;
  letter-spacing: -0.01em;
}

body.light .tree-screen .tb b {
  color: #0F172A !important;
}

.tree-screen .tb span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

body.light .tree-screen .tb span {
  color: #FF6B00 !important;
}

.tstage {
  position: relative;
  background: #08090C;
  padding: 10px 0;
}

body.light .tstage {
  background: #FFFFFF;
}

.tree-screen svg {
  display: block;
  width: 100%;
  height: auto;
}

.tree-screen .tnode {
  fill: #222634;
  transition: fill 0.4s ease, r 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

body.light .tree-screen .tnode {
  fill: #E2E8F0;
}

.tree-screen .tnode.lit {
  fill: var(--cyan);
  filter: drop-shadow(0 0 8px var(--cyan));
}

body.light .tree-screen .tnode.lit {
  fill: #0098A6;
  filter: drop-shadow(0 0 8px rgba(0, 152, 166, 0.4));
}

.tree-screen .tnode.active-hub {
  fill: var(--accent);
  filter: drop-shadow(0 0 10px var(--accent));
}

body.light .tree-screen .tnode.active-hub {
  fill: #FF6B00;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
}

.tree-screen .tlink {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.2;
  transition: stroke 0.3s;
}

.tree-screen .tlink.lit {
  stroke: var(--cyan);
  stroke-width: 1.6;
}

body.light .tree-screen .tlink {
  stroke: rgba(18, 20, 24, 0.12);
}

body.light .tree-screen .tlink.lit {
  stroke: #0098A6;
  stroke-width: 1.6;
}

.tree-screen .tlabel {
  font-family: var(--brand-font);
  font-size: 8.8px;
  letter-spacing: 0.14em;
  fill: #8E8E98;
  text-transform: uppercase;
  font-weight: 600;
}

body.light .tree-screen .tlabel {
  fill: #475569;
  font-weight: 700;
}

.audit-status {
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #8A8B93;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--screen-2);
}

body.light .audit-status {
  border-top-color: #E2E8F0;
  background: #F8FAFC;
  color: #475569;
}

.audit-status b {
  color: #ECECEE;
}

body.light .audit-status b {
  color: #0F172A;
}

.audit-brain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0F17;
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
  z-index: 10;
  transition: all 0.3s ease;
}

body.light .audit-brain {
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 152, 166, 0.45);
  box-shadow: 0 8px 24px rgba(0, 152, 166, 0.18), 0 0 0 1px rgba(0, 152, 166, 0.1);
}

.audit-brain img, .audit-hub-logo {
  width: 58%;
  height: 58%;
  object-fit: contain;
  display: block;
}

/* ── 8. INTERACTIVE TENSILE LOAD SIMULATOR WIDGET ──────────────────── */
.tensile-sim-wrap {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--screen);
  padding: 28px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 107, 0, 0.06);
}

.tensile-sim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 880px) {
  .tensile-sim-grid {
    grid-template-columns: 1fr;
  }
}

.tensile-grade-display {
  background: var(--card-2);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 24px rgba(16, 185, 129, 0.25);
  transition: all 0.25s ease;
  min-height: 220px;
}

.tensile-grade-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tensile-grade-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--ivory);
  margin: 6px 0 2px;
  letter-spacing: -0.01em;
}

.tensile-grade-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--ivory-2);
}

.tensile-app-box {
  background: var(--screen-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 12px 0;
}

.tensile-app-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.tensile-app-desc {
  font-size: 12.5px;
  color: var(--ivory);
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.4;
}

.tensile-std-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tensile-std-chips span {
  font-size: 10.5px;
  font-family: var(--mono);
  background: var(--card);
  border: 1px solid var(--line-2);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--cyan);
  font-weight: 700;
}

.sim-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: var(--card-2);
  outline: none;
  cursor: ew-resize;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF6B00;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 14px rgba(255, 107, 0, 0.8);
  cursor: pointer;
}

.sim-metric-chips {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.sim-chip {
  background: var(--card-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.sim-chip span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-2);
}

.sim-chip b {
  display: block;
  font-size: 16px;
  color: var(--ivory);
  margin-top: 2px;
}

/* ── 9. INTERACTIVE REAL-TIME BOM COST CALCULATOR ──────────────────── */
.bom-calc-wrap {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--screen);
  padding: 28px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 229, 255, 0.06);
}

.bom-option-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bom-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--card);
  font-size: 13px;
  font-weight: 700;
  color: var(--ivory-2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bom-pill:hover, .bom-pill.active {
  border-color: var(--cyan);
  background: var(--cyan-bg);
  color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.bom-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .bom-stat-grid {
    grid-template-columns: 1fr;
  }
}

.bom-stat-box {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.bom-stat-box span.lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-2);
  letter-spacing: 0.12em;
}

.bom-stat-box b.val {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: 34px;
  color: var(--ivory);
  line-height: 1.1;
  margin: 6px 0;
}

.bom-stat-box span.delta {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.bom-graph-card {
  margin-top: 24px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 24px 28px;
}

.bom-graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.bom-graph-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
}

.bom-graph-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  margin-top: 4px;
}

.bom-graph-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ivory-2);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.bom-chart-stage {
  width: 100%;
  overflow-x: auto;
}

.bom-svg-chart {
  width: 100%;
  height: auto;
  min-width: 600px;
  display: block;
}

.bom-svg-chart path {
  transition: d 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bom-svg-chart circle {
  transition: cy 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bom-svg-chart text {
  transition: y 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light .bom-svg-chart text {
  fill: #0F172A;
}

body.light .bom-svg-chart text#lblWeightA,
body.light .bom-svg-chart text#lblWeightB,
body.light .bom-svg-chart text#lblWeightC {
  fill: #0284C7;
}

body.light .bom-svg-chart text#lblCostA,
body.light .bom-svg-chart text#lblCostB,
body.light .bom-svg-chart text#lblCostC {
  fill: #EA580C;
}

body.light .bom-svg-chart text#lblEffA,
body.light .bom-svg-chart text#lblEffB,
body.light .bom-svg-chart text#lblEffC {
  fill: #10B981;
}

body.light .bom-graph-card {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.12);
  box-shadow: 0 4px 16px rgba(18, 20, 24, 0.05);
}

/* ── 10. FLAGSHIP PLATFORMS (SIDE-BY-SIDE CARDS) ───────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.bento-card {
  background: var(--screen);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 107, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

body.light .bento-card {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.12);
  box-shadow: 0 16px 36px -16px rgba(18, 20, 24, 0.12);
}

.bento-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8), 0 0 30px var(--cyan-glow);
  transform: translateY(-4px);
}

.flagship-card {
  padding: 36px 32px;
  justify-content: space-between;
}

.flagship-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-glow);
  transform: translateY(-5px);
}

.flagship-card:nth-child(2):hover {
  border-color: var(--cyan);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8), 0 0 30px var(--cyan-glow);
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.flagship-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.flagship-desc {
  font-size: 14.5px;
  color: var(--ivory-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bento-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bento-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ivory-2);
  line-height: 1.5;
}

.bento-features li strong {
  color: var(--ivory);
}

.bento-features .tick {
  color: var(--green);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.flagship-btn-wrap {
  margin-top: auto;
  padding-top: 12px;
}

.btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ── 11. WORKFLOW 4-STAGE STEPS ────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: var(--screen);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}

.step:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.6), 0 0 20px rgba(0, 229, 255, 0.1);
  transform: translateY(-3px);
}

.step .n {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan);
  background: var(--cyan-bg);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 10px;
}

.step p {
  font-size: 13.5px;
  color: var(--ivory-2);
  line-height: 1.6;
}

/* ── 12. FREQUENTLY ASKED QUESTIONS (FAQ ACCORDION) ───────────────── */
.faq-wrap {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--screen);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--line);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 107, 0, 0.08);
}

.faq-q {
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q .caret {
  font-size: 11px;
  color: var(--ink-2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-q .caret {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  display: none;
  padding: 0 24px 22px 24px;
  font-size: 14.5px;
  color: var(--ivory-2);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

.faq-item.open .faq-a {
  display: block;
  animation: faqFade 0.25s ease-out;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── 11. Enterprise Footer (Matching User Reference) ──────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 48px 0 0;
  transition: background var(--dur-base);
}

body.light .site-footer {
  background: #FFFFFF;
  border-top-color: rgba(18, 20, 24, 0.1);
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding-bottom: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
}

.footer-col-brand {
  display: flex;
  align-items: center;
}

@media (max-width: 960px) {
  .footer-col-brand {
    justify-content: center;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 960px) {
  .footer-logo-row {
    justify-content: center;
  }
}

.footer-logo-wrap {
  display: inline-block;
}

.footer-logo-wrap img {
  width: 160px;
  height: auto;
  display: block;
}

.social-in-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--card);
  color: var(--ivory);
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

body.light .social-in-btn {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.16);
  color: #0077B5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.social-in-btn:hover {
  border-color: #0077B5;
  color: #FFFFFF;
  background: #0077B5;
  box-shadow: 0 0 14px rgba(0, 119, 181, 0.4);
  transform: translateY(-2px);
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (max-width: 960px) {
  .footer-col-nav {
    align-items: center;
  }
}

.footer-tagline-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .footer-tagline-wrap {
    align-items: center;
  }
}

.footer-tagline {
  font-size: 18.5px;
  font-weight: 800;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.015em;
}

body.light .footer-tagline {
  color: #0F172A;
}

.footer-tagline-bar {
  width: 40px;
  height: 3px;
  background: #FF6B00;
  border-radius: 2px;
  margin-top: 8px;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

@media (max-width: 960px) {
  .footer-nav-links {
    justify-content: center;
    gap: 14px 20px;
  }
}

.footer-nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #FF6B00;
  transition: color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.footer-nav-links a:hover {
  color: #FF9944;
  text-decoration: underline;
}

.footer-col-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 960px) {
  .footer-col-badges {
    justify-content: center;
  }
}

.footer-badge-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tisax-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 94px;
}

.tisax-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 8px 4px;
  background: #FFFFFF;
}

.tisax-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF5500;
}

.tisax-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #007799;
}

.tisax-bottom {
  width: 100%;
  background: #FF5500;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  text-align: center;
  padding: 3px 2px;
  letter-spacing: 0.05em;
}

/* Bottom Copyright Strip */
.footer-sub-strip {
  background: var(--screen);
  border-top: 1px solid var(--line);
  padding: 16px 0;
  transition: background var(--dur-base);
}

body.light .footer-sub-strip {
  background: #F8FAFC;
  border-top-color: rgba(18, 20, 24, 0.08);
}

.footer-sub-inner {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}

body.light .footer-sub-inner {
  color: #64748B;
}

/* ── 12. AUTOMOTIVE INSTRUMENT PANEL (IP) EXPLODED VIEW VISUALIZER ─── */
.ip-exploded-wrap {
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background: var(--screen);
  overflow: hidden;
  box-shadow: 0 24px 70px -30px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 229, 255, 0.08);
}

body.light .ip-exploded-wrap {
  border-color: rgba(18, 20, 24, 0.18);
  box-shadow: 0 24px 50px -30px rgba(18, 20, 24, 0.2);
}

.ip-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-2);
  background: var(--screen-2);
  flex-wrap: wrap;
  gap: 16px;
}

.ip-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ip-btn-auto {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--card);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ip-btn-auto:hover, .ip-btn-auto.active {
  border-color: var(--cyan);
  background: var(--cyan-bg);
  color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.ip-slider-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ivory-2);
}

.ip-range {
  -webkit-appearance: none;
  width: 140px;
  height: 6px;
  border-radius: 99px;
  background: var(--card-2);
  outline: none;
  cursor: ew-resize;
}

.ip-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 10px var(--cyan-glow);
  cursor: pointer;
}

.ip-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ip-chip {
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ip-chip:hover, .ip-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
  box-shadow: 0 0 10px var(--accent-glow);
}

.ip-main-stage {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 480px;
}

@media (max-width: 960px) {
  .ip-main-stage {
    grid-template-columns: 1fr;
  }
}

.ip-canvas-wrap {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%), var(--screen);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.ip-stage-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  overflow: visible;
}

.ip-part-group {
  cursor: pointer;
  transition: transform 0.15s ease-out, filter 0.2s ease;
}

.ip-part-group:hover, .ip-part-group.highlighted {
  filter: drop-shadow(0 0 12px var(--cyan)) brightness(1.2);
}

.ip-part-path {
  stroke-width: 1.2;
  transition: stroke 0.2s, fill 0.2s, stroke-width 0.2s;
}

.ip-leader-line {
  stroke: rgba(0, 229, 255, 0.6);
  stroke-width: 1.2;
  stroke-dasharray: 4, 3;
  transition: opacity 0.2s ease;
}

.ip-table-panel {
  border-left: 1px solid var(--line-2);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

@media (max-width: 960px) {
  .ip-table-panel {
    border-left: none;
    border-top: 1px solid var(--line-2);
  }
}

.ip-table-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ip-table-header b {
  font-size: 13px;
  color: var(--ivory);
}

.ip-table-header span {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 700;
}

.ip-bom-list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 440px;
}

.ip-bom-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.18s ease, border-left 0.18s ease;
  border-left: 3px solid transparent;
}

.ip-bom-row:hover, .ip-bom-row.active {
  background: var(--card-2);
  border-left-color: var(--cyan);
}

.ip-bom-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--card-2);
  color: var(--cyan);
}

.ip-bom-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ivory);
  display: block;
}

.ip-bom-mat {
  font-size: 11px;
  color: var(--ivory-2);
  display: block;
  margin-top: 2px;
}

.ip-bom-spec {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  display: block;
}

.ip-bom-val {
  text-align: right;
}

.ip-bom-weight {
  font-size: 12px;
  font-weight: 700;
  color: var(--ivory);
  display: block;
}

.ip-bom-cost {
  font-size: 10.5px;
  color: var(--green);
  font-weight: 700;
  display: block;
}

.ip-footer-stats {
  padding: 14px 20px;
  border-top: 1px solid var(--line-2);
  background: var(--screen-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ivory-2);
}

.ip-footer-stats b {
  color: var(--cyan);
}

/* =========================================================================
 * 12. MATPLUS-STYLE 3D MATERIALS INNOVATION PARTICLE SPHERE
 * ======================================================================= */
.sphere-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(13,15,22,0.95) 0%, rgba(20,23,34,0.98) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 340px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.light .sphere-wrap {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.14);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

@media (max-width: 960px) {
  .sphere-wrap {
    grid-template-columns: 1fr;
  }
}

.sphere-stage {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  transition: background 0.3s ease;
}

body.light .sphere-stage {
  background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.08) 0%, #F8FAFC 75%);
}

.sphere-stage:active {
  cursor: grabbing;
}

.sphere-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.sphere-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(13, 15, 22, 0.8);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body.light .sphere-overlay-badge {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 180, 216, 0.3);
  color: #0284C7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sphere-overlay-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseDot 2s infinite ease-in-out;
}

body.light .sphere-overlay-badge::before {
  background: #0284C7;
  box-shadow: 0 0 8px #0284C7;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}

.sphere-hud-panel {
  background: var(--screen);
  border-left: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease;
}

body.light .sphere-hud-panel {
  background: #F8FAFC;
  border-left-color: rgba(18, 20, 24, 0.12);
}

.sphere-hud-head {
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

body.light .sphere-hud-head {
  border-bottom-color: rgba(18, 20, 24, 0.1);
}

.sphere-hud-head h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

body.light .sphere-hud-head h3 {
  color: #0F172A;
}

.sphere-hud-head span {
  font-size: 11.5px;
  color: var(--ink-2);
  display: block;
  margin-top: 4px;
}

body.light .sphere-hud-head span {
  color: #64748B;
}

.sphere-hud-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: all var(--duration-fast) ease;
}

body.light .sphere-hud-card {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sphere-hud-cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.sphere-hud-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.3;
  margin-bottom: 8px;
}

body.light .sphere-hud-title {
  color: #0284C7;
}

.sphere-hud-desc {
  font-size: 13px;
  color: var(--ivory-2);
  line-height: 1.55;
}

body.light .sphere-hud-desc {
  color: #475569;
}

.sphere-hud-controls {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sphere-btn-control {
  width: 100%;
  background: var(--screen-2);
  border: 1px solid var(--line-2);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--duration-fast) ease;
}

body.light .sphere-btn-control {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.16);
  color: #0F172A;
}

.sphere-btn-control:hover, .sphere-btn-control.active {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

body.light .sphere-btn-control:hover, body.light .sphere-btn-control.active {
  background: rgba(2, 132, 199, 0.1);
  border-color: #0284C7;
  color: #0284C7;
}

.sphere-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

body.light .sphere-legend {
  border-top-color: rgba(18, 20, 24, 0.1);
}

.sphere-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ivory-2);
}

body.light .sphere-legend-item {
  color: #475569;
}

.sphere-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ── 15. MOBILE NAVIGATION DRAWER & ADVANCED RESPONSIVENESS ─────────── */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--screen-2);
  color: var(--ivory);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: var(--bg);
  border-left: 1px solid var(--line-2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 32px;
  overflow-y: auto;
}

body.light .mobile-drawer {
  background: #FFFFFF;
  border-left-color: rgba(18, 20, 24, 0.12);
  box-shadow: -10px 0 40px rgba(18, 20, 24, 0.15);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--card);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.mobile-nav-section-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-top: 10px;
  margin-bottom: 2px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line-2);
  color: var(--ivory);
  text-decoration: none;
  transition: all 0.2s ease;
}

body.light .mobile-nav-item {
  background: #F8FAFC;
  border-color: rgba(18, 20, 24, 0.08);
}

.mobile-nav-item:hover, .mobile-nav-item:active {
  border-color: var(--accent);
  background: var(--card-2);
  transform: translateX(3px);
}

.mobile-nav-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
}

.mobile-nav-item-desc {
  font-size: 11px;
  color: var(--ivory-2);
  margin-top: 2px;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile Breakpoint Tweaks */
@media (max-width: 860px) {
  .mobile-menu-btn {
    display: inline-flex;
  }
  #navlinks {
    display: none !important;
  }
}

@media (max-width: 600px) {
  #navpill {
    width: calc(100% - 20px) !important;
    height: 50px !important;
    padding: 0 6px 0 12px !important;
    top: 10px !important;
  }
  
  .brand-svg {
    width: 95px !important;
    height: 24px !important;
  }

  .navcta .btn-p {
    padding: 0 14px !important;
    font-size: 12px !important;
    min-height: 38px !important;
    border-radius: 999px !important;
  }

  .hero {
    padding: 100px 16px 40px !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 12px !important;
    width: 100% !important;
  }

  .hs + .hs {
    border-left: none !important;
  }

  .hs {
    padding: 12px 8px !important;
    background: var(--card) !important;
    border: 1px solid var(--line-2) !important;
    border-radius: 12px !important;
  }

  .bom-stat-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .bom-option-pills {
    flex-direction: column !important;
  }

  .bom-pill {
    width: 100% !important;
    text-align: center !important;
  }

  .audit-layout {
    grid-template-columns: 1fr !important;
  }

  .foot-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 18px !important;
  }

  .foot-links {
    justify-content: center !important;
  }
}

/* ── 15. BUSINESS VALUE SECTION & CARDS ───────────────────────────── */
.biz-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .biz-value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.biz-value-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}

.biz-value-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

body.light .biz-value-card {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.light .biz-value-card:hover {
  border-color: #FF6B00;
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.12);
}

.biz-val-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-val-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.biz-val-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.01em;
}

body.light .biz-val-title {
  color: #0F172A;
}

.biz-val-desc {
  font-size: 14px;
  color: var(--ivory-2);
  line-height: 1.6;
  margin: 0;
}

body.light .biz-val-desc {
  color: #64748B;
}

/* ── 16. SELECTED FEATURES & PROPERTIES GRID (MATCHING USER REFERENCE) ── */
.feature-props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 860px) {
  .feature-props-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.feature-prop-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.22s ease;
}

.feature-prop-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

body.light .feature-prop-card {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

body.light .feature-prop-card:hover {
  border-color: #FF6B00;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.1);
}

.feature-check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FF6B00;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35);
  margin-top: 2px;
}

.feature-prop-content {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ivory-2);
}

body.light .feature-prop-content {
  color: #475569;
}

.feature-prop-content strong {
  color: var(--ivory);
  font-weight: 700;
}

body.light .feature-prop-content strong {
  color: #0F172A;
}

/* ── 17. COMPANY ABOUT PAGE & MISSION STATEMENT (MATPLUS AESTHETIC) ─── */
.mission-card-enhanced {
  background: linear-gradient(135deg, var(--card) 0%, var(--screen) 100%);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 107, 0, 0.08);
  margin: 32px 0 48px;
}

body.light .mission-card-enhanced {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mission-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.mission-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--ivory);
  letter-spacing: -0.015em;
  margin: 0;
}

body.light .mission-quote {
  color: #0F172A;
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .competencies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.competency-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 24px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.competency-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

body.light .competency-card {
  background: #FFFFFF;
  border-color: rgba(18, 20, 24, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

body.light .competency-card:hover {
  border-color: #FF6B00;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.1);
}

.competency-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.competency-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: #FF6B00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.competency-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

body.light .competency-title {
  color: #0F172A;
}

.competency-desc {
  font-size: 14px;
  color: var(--ivory-2);
  line-height: 1.6;
  margin: 0;
}

body.light .competency-desc {
  color: #475569;
}

body.light .competency-title {
  color: #0F172A;
}

.competency-desc {
  font-size: 14px;
  color: var(--ivory-2);
  line-height: 1.6;
  margin: 0;
}

body.light .competency-desc {
  color: #64748B;
}

/* ── 18. BOM LIVE DASHBOARD (REV B -> REV C COMPARISON) ──────────────── */
.bom-live-dashboard {
  background: var(--screen);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 32px 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.05);
  margin-top: 36px;
}

body.light .bom-live-dashboard {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.bom-dash-tag {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #00ACC1;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.light .bom-dash-tag {
  color: #0D9488;
}

.bom-dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .bom-dash-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .bom-dash-kpis {
    grid-template-columns: 1fr;
  }
}

.bom-dash-kpi {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.light .bom-dash-kpi {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.bom-dash-kpi-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ivory-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.light .bom-dash-kpi-label {
  color: #64748B;
}

.bom-dash-kpi-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body.light .bom-dash-kpi-val {
  color: #0F172A;
}

.bom-dash-kpi-delta {
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bom-dash-kpi-delta.green {
  color: #10B981;
}

body.light .bom-dash-kpi-delta.green {
  color: #16A34A;
}

.bom-dash-kpi-delta.neutral {
  color: var(--ivory-2);
}

body.light .bom-dash-kpi-delta.neutral {
  color: #64748B;
}

.bom-dash-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 860px) {
  .bom-dash-charts {
    grid-template-columns: 1fr;
  }
}

.bom-dash-panel {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.light .bom-dash-panel {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.bom-dash-chart-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ivory);
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

body.light .bom-dash-chart-title {
  color: #0F172A;
}

.bom-bar-chart-container {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

/* SVG Chart Elements */
.chart-grid-line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
  stroke-dasharray: 2 2;
}

body.light .chart-grid-line {
  stroke: #F1F5F9;
}

.chart-base-line {
  stroke: var(--line);
  stroke-width: 1.5;
}

body.light .chart-base-line {
  stroke: #CBD5E1;
}

.chart-axis-text {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  fill: var(--ivory-2);
  font-weight: 500;
}

body.light .chart-axis-text {
  fill: #64748B;
}

.chart-x-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  fill: var(--ivory);
  font-weight: 700;
}

body.light .chart-x-text {
  fill: #0F172A;
}

.chart-axis-title-left {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  fill: #3B82F6;
}

body.light .chart-axis-title-left {
  fill: #2563EB;
}

.chart-axis-title-right {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  fill: #00E5FF;
}

body.light .chart-axis-title-right {
  fill: #0098A6;
}

.bar-weight {
  fill: #2563EB;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.bar-weight:hover {
  opacity: 0.85;
}

.bar-cost {
  fill: #0098A6;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.bar-cost:hover {
  opacity: 0.85;
}

.bar-label-weight {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  fill: #3B82F6;
}

body.light .bar-label-weight {
  fill: #2563EB;
}

.bar-label-cost {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  fill: #00E5FF;
}

body.light .bar-label-cost {
  fill: #0098A6;
}

.bom-donut-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
  padding: 10px 0;
}

@media (max-width: 500px) {
  .bom-donut-layout {
    flex-direction: column;
    gap: 16px;
  }
}

.bom-donut-chart-wrap {
  flex-shrink: 0;
  position: relative;
}

.donut-seg {
  transition: stroke-width 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.donut-seg:hover {
  opacity: 0.85;
  stroke-width: 36;
}

.donut-pct-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  pointer-events: none;
}

.bom-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ivory);
}

body.light .legend-row {
  color: #334155;
}

.legend-bar {
  width: 20px;
  height: 4px;
  border-radius: 2px;
}

.legend-name {
  font-size: 12px;
}

.bom-dash-footnote {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ivory-2);
  line-height: 1.5;
}

body.light .bom-dash-footnote {
  color: #64748B;
}

