*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Assistant", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   LAYOUT
   ============================================ */
.blog-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
  gap: 60px;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.blog-sidebar {
  position: sticky;
  top: 40px;
  width: 280px;
  min-width: 280px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-sidebar::-webkit-scrollbar {
  display: none;
}

/* Close button — hidden on desktop */
.sidebar-close {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Assistant", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.sidebar-close:hover {
  color: #bf3425;
  background: #fef7f6;
}

.sidebar-close svg {
  flex-shrink: 0;
}

.blog-sidebar-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #9d9d9c;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 12px;
}

.blog-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-sidebar-link {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #64748b;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.blog-sidebar-link:hover {
  color: #47577c;
  background-color: #f8fafc;
}

.blog-sidebar-link.active {
  color: #bf3425;
  background-color: #fef7f6;
  font-weight: 700;
}

/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(191, 52, 37, 0.4);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle:hover {
  transform: scale(1.1);
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.blog-content {
  flex: 1;
  max-width: 900px;
  min-width: 0;
}

/* ============================================
   BLOG META
   ============================================ */
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-icon {
  width: 16px;
  height: 16px;
  color: #64748b;
  flex-shrink: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.blog-content h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #1e293b;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #bf3425;
}

.blog-content h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #47577c;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.blog-content h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.625rem;
  font-size: 1.0625rem;
}

.blog-content a {
  color: #47577c;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s;
}

.blog-content a:hover {
  color: #bf3425;
}

/* Drop Cap */
.drop-cap::first-letter {
  float: left;
  font-family: "Archivo", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.8;
  color: #bf3425;
  margin-right: 12px;
  margin-top: 8px;
}

/* ============================================
   IMAGES
   ============================================ */
.full-width-image {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.full-width-image:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin-top: -1.25rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin: 2.5rem 0;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.split-image img:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.split-image .image-caption {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.split-text h3 {
  margin-top: 0;
}

/* ============================================
   HIGHLIGHT BOXES
   ============================================ */
.highlight-box {
  background: linear-gradient(135deg, #fef7f6 0%, #fff8f7 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border: 1px solid #fbd5d0;
}

.highlight-box p {
  margin-bottom: 0;
}

.highlight-box h4 {
  color: #bf3425;
  margin-top: 0;
}

.highlight-box.dark {
  background: linear-gradient(135deg, #1e293b 0%, #2d3a52 100%);
  border-color: #334155;
  color: #e2e8f0;
}

.highlight-box.dark h4 {
  color: #f87171;
}

.highlight-box.dark p {
  color: #cbd5e1;
  margin-bottom: 0;
}

/* ============================================
   INFOGRAPHIC PLACEHOLDERS
   ============================================ */
.infographic-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
  color: #64748b;
}

.infographic-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.infographic-description {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  text-align: left;
}

/* ============================================
   LEARN MORE CARDS
   ============================================ */
.learn-more-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.learn-more-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-card:hover {
  border-color: #bf3425;
  box-shadow: 0 8px 25px -5px rgba(191, 52, 37, 0.15);
  transform: translateY(-2px);
}

.learn-more-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #47577c 0%, #1e293b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  color: #ffffff;
}

.learn-more-card:hover .learn-more-icon {
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
}

.learn-more-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.learn-more-text {
  display: flex;
  flex-direction: column;
}

.learn-more-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
  transition: color 0.3s;
}

.learn-more-card:hover .learn-more-title {
  color: #bf3425;
}

.learn-more-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #fef7f6 0%, #ffffff 100%);
  border: 2px solid #bf3425;
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #bf3425, #47577c);
}

.cta-section p {
  margin-bottom: 1.25rem;
  color: #1e293b;
  font-size: 1.125rem;
}

.cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
  color: #ffffff !important;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(191, 52, 37, 0.4);
  color: #ffffff !important;
}

/* ============================================
   REFERENCES LIST
   ============================================ */
.references-list {
  padding-left: 1.5rem;
}

.references-list li {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.references-list a {
  font-weight: 400;
  word-break: break-all;
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.author-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.author-image-wrapper {
  flex-shrink: 0;
}

.author-image {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.author-info {
  flex: 1;
  min-width: 0;
}

.author-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 4px;
  text-decoration: underline;
  text-decoration-color: #bf3425;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.author-title {
  font-size: 1rem;
  font-weight: 600;
  color: #47577c;
  margin-bottom: 16px;
}

.author-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 10px;
  transition:
    transform 0.2s,
    background 0.2s;
  text-decoration: none;
}

.author-social a:hover {
  transform: scale(1.1);
  background: #e2e8f0;
}

.author-social svg {
  width: 24px;
  height: 24px;
}

.about-author-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #bf3425;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.author-bio {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

/* ============================================
   SECTION SCROLL MARGIN
   ============================================ */
section {
  scroll-margin-top: 40px;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .blog-layout {
    flex-direction: column;
    gap: 32px;
  }

  /* Sidebar becomes horizontal pills on tablet */
  .blog-sidebar {
    position: relative;
    top: 0;
    width: 100%;
    min-width: 100%;
    max-height: none;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    align-self: auto;
  }

  .blog-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-sidebar-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  .blog-content h1 {
    font-size: 2rem;
  }

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

  .split-layout.reverse {
    direction: ltr;
  }

  .split-layout.reverse > * {
    direction: ltr;
  }

  .learn-more-container {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-social {
    justify-content: center;
  }

  .author-bio {
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — 768px (Mobile, sidebar overlay)
   ============================================ */
@media (max-width: 768px) {
  /* Show hamburger button */
  .mobile-nav-toggle {
    display: flex;
  }

  /* Sidebar becomes full-screen overlay */
  .blog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: none;
    max-height: 100vh;
    align-self: auto;
  }

  .blog-sidebar.active {
    transform: translateY(0);
  }

  /* Show close button inside sidebar */
  .sidebar-close {
    display: flex;
  }

  .blog-sidebar-nav {
    flex-direction: column;
    gap: 4px;
  }

  .blog-sidebar-link {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .blog-sidebar-title {
    font-size: 12px;
    margin-bottom: 20px;
    padding-top: 8px;
  }

  .blog-layout {
    padding: 20px 16px;
    gap: 0;
  }

  .blog-content h1 {
    font-size: 1.75rem;
  }

  .blog-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .split-layout.reverse {
    direction: ltr;
  }

  .split-layout.reverse > * {
    direction: ltr;
  }

  .learn-more-container {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .author-social {
    justify-content: center;
  }

  .author-bio {
    text-align: left;
  }

  .highlight-box {
    padding: 1.25rem 1.5rem;
  }

  .infographic-placeholder {
    padding: 1.5rem 1rem;
  }
}

/* ============================================
   RESPONSIVE — 640px
   ============================================ */
@media (max-width: 640px) {
  .blog-content h1 {
    font-size: 1.5rem;
  }

  .blog-content h2 {
    font-size: 1.25rem;
  }

  .blog-meta {
    gap: 10px;
    font-size: 13px;
  }

  .cta-section {
    padding: 1.5rem 1rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .author-image {
    width: 140px;
    height: 140px;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .blog-content h1 {
    font-size: 1.35rem;
  }

  .blog-layout {
    padding: 16px 12px;
  }
}
/* <!-- INFOGRAPHIC PLACEHOLDER 1 --> */
.cmkt-root {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}
.cmkt-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.cmkt-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 6px;
}
.cmkt-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0 0 28px;
}
.cmkt-chart-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cmkt-row {
  display: grid;
  grid-template-columns: 188px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  cursor: default;
  border-radius: 8px;
  transition: background 0.18s;
}
.cmkt-row:hover {
  background: #f8fafc;
}
.cmkt-label {
  font-size: 13px;
  font-weight: 500;
  color: #47577c;
  text-align: right;
  padding-right: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s;
}
.cmkt-row:hover .cmkt-label {
  color: #bf3425;
}
.cmkt-bar-track {
  background: #f1f5f9;
  border-radius: 6px;
  height: 28px;
  position: relative;
  overflow: hidden;
}
.cmkt-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  min-width: 0;
  position: relative;
}
.cmkt-bar-inner-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s 0.8s;
  white-space: nowrap;
}
.cmkt-bar-fill.cmkt-animated .cmkt-bar-inner-label {
  opacity: 1;
}
.cmkt-pct {
  font-size: 14px;
  font-weight: 700;
  color: #47577c;
  text-align: right;
  min-width: 36px;
}
.cmkt-dominant {
  background: #47577c;
}
.cmkt-secondary {
  background: #bf3425;
}
.cmkt-tertiary {
  background: #9d9d9c;
}
.cmkt-muted {
  background: #c8cdd8;
}
.cmkt-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 0;
}
.cmkt-legend {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.cmkt-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #9d9d9c;
}
.cmkt-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cmkt-tooltip {
  position: absolute;
  right: 0;
  top: -36px;
  background: #47577c;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.18s,
    transform 0.18s;
  z-index: 10;
}
.cmkt-bar-track:hover .cmkt-tooltip {
  opacity: 1;
  transform: translateY(0);
}
/* <!-- INFOGRAPHIC PLACEHOLDER 2 --> */
.tsrc-root {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.tsrc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.tsrc-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}
.tsrc-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0 0 28px;
}
.tsrc-chart-wrap {
  position: relative;
}
.tsrc-axis-labels {
  display: flex;
  margin-left: 160px;
  margin-bottom: 6px;
  position: relative;
}
.tsrc-axis-tick {
  position: absolute;
  font-size: 11px;
  color: #9d9d9c;
  transform: translateX(-50%);
  font-weight: 500;
}
.tsrc-grid-area {
  margin-left: 160px;
  position: relative;
  height: 260px;
}
.tsrc-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #f1f5f9;
}
.tsrc-row {
  display: flex;
  align-items: center;
  margin-left: 160px;
  height: 44px;
  position: relative;
}
.tsrc-row-label {
  position: absolute;
  left: -168px;
  width: 156px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #47577c;
  white-space: nowrap;
  transition: color 0.18s;
}
.tsrc-row:hover .tsrc-row-label {
  color: #bf3425;
}
.tsrc-track {
  position: relative;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  cursor: default;
}
.tsrc-range-bar {
  position: absolute;
  height: 22px;
  border-radius: 6px;
  opacity: 0;
  transition:
    opacity 0.3s,
    left 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.tsrc-range-bar.tsrc-visible {
  opacity: 1;
}
.tsrc-range-label {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  display: flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  opacity: 0;
  transition: opacity 0.4s 0.7s;
}
.tsrc-range-label.tsrc-visible {
  opacity: 1;
}
.tsrc-range-end-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: #47577c;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
}
.tsrc-tooltip {
  display: none;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #47577c;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 7px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
}
.tsrc-track:hover .tsrc-tooltip {
  display: block;
}
.tsrc-axis-bottom {
  margin-left: 160px;
  border-top: 1.5px solid #e2e8f0;
  margin-top: 2px;
  margin-bottom: 20px;
}
.tsrc-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.tsrc-meta-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #f1f5f9;
  transition: background 0.18s;
}
.tsrc-meta-card:hover {
  background: #f1f5f9;
}
.tsrc-meta-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.tsrc-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.tsrc-meta-label {
  font-size: 12px;
  font-weight: 600;
  color: #47577c;
}
.tsrc-meta-value {
  font-size: 12px;
  color: #64748b;
}
/* <!-- INFOGRAPHIC PLACEHOLDER 3 --> */
.uavts-root {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 0 auto;
}
.uavts-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.uavts-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}
.uavts-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0 0 28px;
}
.uavts-matrix {
  display: grid;
  grid-template-columns: 120px repeat(5, 1fr);
  gap: 8px;
  align-items: center;
}
.uavts-col-header {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #47577c;
  line-height: 1.3;
  padding: 4px 6px 10px;
  border-bottom: 2px solid #47577c;
}
.uavts-col-header-empty {
  border-bottom: 2px solid #e2e8f0;
}
.uavts-row-label {
  font-size: 13px;
  font-weight: 700;
  color: #47577c;
  padding: 8px 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.uavts-material-badge {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.uavts-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  border-radius: 10px;
  cursor: default;
  transition:
    transform 0.16s,
    box-shadow 0.16s;
  position: relative;
  min-height: 64px;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
}
.uavts-cell.uavts-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.45s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.18s,
    box-shadow 0.16s;
}
.uavts-cell:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.uavts-cell-high {
  background: #47577c;
}
.uavts-cell-med {
  background: #e8ebf2;
}
.uavts-cell-low {
  background: #f8f9fb;
  border: 1px solid #e2e8f0;
}
.uavts-cell-rating {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.uavts-cell-high .uavts-cell-rating {
  color: #ffffff;
}
.uavts-cell-med .uavts-cell-rating {
  color: #47577c;
}
.uavts-cell-low .uavts-cell-rating {
  color: #9d9d9c;
}
.uavts-cell-sub {
  font-size: 10px;
  margin-top: 3px;
  font-weight: 500;
}
.uavts-cell-high .uavts-cell-sub {
  color: rgba(255, 255, 255, 0.7);
}
.uavts-cell-med .uavts-cell-sub {
  color: #7a8bae;
}
.uavts-cell-low .uavts-cell-sub {
  color: #c0c0c0;
}
.uavts-cell-flag {
  position: absolute;
  top: 5px;
  right: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #bf3425;
  background: rgba(191, 52, 37, 0.12);
  padding: 1px 5px;
  border-radius: 4px;
}
.uavts-dots {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}
.uavts-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.uavts-cell-high .uavts-dot {
  background: rgba(255, 255, 255, 0.5);
}
.uavts-cell-med .uavts-dot {
  background: #9daabf;
}
.uavts-cell-low .uavts-dot {
  background: #dde1e9;
}
.uavts-dot-filled-high {
  background: #ffffff !important;
}
.uavts-dot-filled-med {
  background: #47577c !important;
}
.uavts-dot-filled-low {
  background: #9d9d9c !important;
}
.uavts-afrp-high {
  background: #bf3425;
}
.uavts-afrp-high .uavts-cell-rating {
  color: #ffffff;
}
.uavts-afrp-high .uavts-cell-sub {
  color: rgba(255, 255, 255, 0.7);
}
.uavts-afrp-high .uavts-dot {
  background: rgba(255, 255, 255, 0.4);
}
.uavts-afrp-high .uavts-dot-filled-high {
  background: #ffffff !important;
}
.uavts-divider-row {
  grid-column: 1 / -1;
  height: 1px;
  background: #f1f5f9;
  margin: 2px 0;
}
.uavts-legend {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
  align-items: center;
}
.uavts-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
}
.uavts-legend-swatch {
  width: 28px;
  height: 18px;
  border-radius: 5px;
}
.uavts-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: #fff8f7;
  border-radius: 8px;
  border: 1px solid #f5d5d0;
  font-size: 11px;
  color: #7a3020;
  line-height: 1.6;
}
.uavts-note-marker {
  font-weight: 800;
  color: #bf3425;
}
/* <!-- INFOGRAPHIC PLACEHOLDER 4 --> */
.bhev-root {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.bhev-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.bhev-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}
.bhev-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0 0 32px;
}
.bhev-era-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.bhev-era-pill {
  border-radius: 8px;
  padding: 9px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.bhev-era-pill.bhev-vis {
  opacity: 1;
  transform: translateY(0);
}
.bhev-era-steel {
  background: #ebedf2;
  color: #47577c;
}
.bhev-era-aramid {
  background: #47577c;
  color: #ffffff;
}
.bhev-era-hybrid {
  background: #bf3425;
  color: #ffffff;
}
.bhev-timeline-wrap {
  position: relative;
}
.bhev-spine {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}
.bhev-spine-fill {
  height: 100%;
  width: 0;
  background: #9d9d9c;
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}
.bhev-nodes {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}
.bhev-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  position: relative;
}
.bhev-node-dot-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.bhev-node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  opacity: 0;
  transform: scale(0.3);
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bhev-node-dot.bhev-vis {
  opacity: 1;
  transform: scale(1);
}
.bhev-node:hover .bhev-node-dot {
  transform: scale(1.35);
}
.bhev-dot-steel {
  background: #9d9d9c;
}
.bhev-dot-aramid {
  background: #47577c;
}
.bhev-dot-hybrid {
  background: #bf3425;
}
.bhev-node-year {
  font-size: 11px;
  font-weight: 700;
  color: #9d9d9c;
  margin-top: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.bhev-node-year.bhev-vis {
  opacity: 1;
}
.bhev-node-name {
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  margin-top: 8px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.bhev-node-name.bhev-vis {
  opacity: 1;
  transform: translateY(0);
}
.bhev-name-steel {
  color: #6b7280;
}
.bhev-name-aramid {
  color: #47577c;
}
.bhev-name-hybrid {
  color: #bf3425;
}
.bhev-node-desc {
  font-size: 10px;
  color: #9d9d9c;
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
  max-width: 88px;
  opacity: 0;
  transition: opacity 0.3s;
}
.bhev-node-desc.bhev-vis {
  opacity: 1;
}
.bhev-node-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
  padding: 7px 11px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 30;
  pointer-events: none;
  text-align: center;
}
.bhev-node:hover .bhev-node-tooltip {
  display: block;
}
.bhev-material-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bhev-band-card {
  border-radius: 10px;
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.bhev-band-card.bhev-vis {
  opacity: 1;
  transform: translateY(0);
}
.bhev-band-steel {
  background: #f1f3f7;
}
.bhev-band-aramid {
  background: #ebedf5;
}
.bhev-band-hybrid {
  background: #fdf1ef;
}
.bhev-band-era {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.bhev-band-steel .bhev-band-era {
  color: #9d9d9c;
}
.bhev-band-aramid .bhev-band-era {
  color: #47577c;
}
.bhev-band-hybrid .bhev-band-era {
  color: #bf3425;
}
.bhev-band-helmets {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}
.bhev-band-material {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
}
/* <!-- INFOGRAPHIC PLACEHOLDER 5 --> */
.ngdc-root {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.ngdc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.ngdc-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}
.ngdc-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0 0 32px;
}
.ngdc-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 360px;
}
.ngdc-hub-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
  position: relative;
}
.ngdc-hub {
  background: #47577c;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  width: 148px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.45s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 2;
}
.ngdc-hub.ngdc-vis {
  opacity: 1;
  transform: scale(1);
}
.ngdc-hub-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.ngdc-hub-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin-bottom: 6px;
}
.ngdc-hub-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}
.ngdc-connector-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 0;
}
.ngdc-svg-connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.ngdc-branches {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 8px 56px;
}
.ngdc-branch {
  display: flex;
  align-items: stretch;
  gap: 0;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.4s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ngdc-branch.ngdc-vis {
  opacity: 1;
  transform: translateX(0);
}
.ngdc-branch:hover .ngdc-branch-card {
  background: #f0f3f9;
  transform: translateX(4px);
}
.ngdc-branch-card {
  flex: 1;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e8ecf3;
  padding: 14px 16px;
  transition:
    background 0.18s,
    transform 0.18s;
  cursor: default;
}
.ngdc-branch-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.ngdc-branch-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ngdc-branch-num {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ngdc-branch-name {
  font-size: 14px;
  font-weight: 700;
  color: #47577c;
  line-height: 1.2;
}
.ngdc-branch-arrow {
  font-size: 12px;
  font-weight: 700;
  color: #9d9d9c;
  margin: 0 6px;
  flex-shrink: 0;
  align-self: center;
}
.ngdc-branch-outcome {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 5px;
  align-self: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.ngdc-branch-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 2px;
}
.ngdc-color-1 {
  background: #47577c;
}
.ngdc-color-2 {
  background: #5c6d91;
}
.ngdc-color-3 {
  background: #bf3425;
}
.ngdc-color-4 {
  background: #47577c;
}
.ngdc-color-5 {
  background: #8b3d32;
}
.ngdc-outcome-1 {
  background: #ebedf5;
  color: #2e3f5c;
}
.ngdc-outcome-2 {
  background: #ebedf5;
  color: #2e3f5c;
}
.ngdc-outcome-3 {
  background: #fdecea;
  color: #7a2418;
}
.ngdc-outcome-4 {
  background: #ebedf5;
  color: #2e3f5c;
}
.ngdc-outcome-5 {
  background: #fdecea;
  color: #7a2418;
}
/* <!-- INFOGRAPHIC PLACEHOLDER 6 --> */
.csd-root {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.csd-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin: 0 0 8px;
}
.csd-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}
.csd-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0 0 28px;
}
.csd-legend {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.csd-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.csd-legend-badge {
  height: 20px;
  padding: 0 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.csd-badge-wins {
  background: #47577c;
  color: #fff;
}
.csd-badge-wins-vs {
  background: #2e3f5c;
  color: #fff;
}
.csd-badge-contested {
  background: #f1f3f7;
  color: #47577c;
  border: 1.5px solid #c8cdd8;
}
.csd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .csd-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.csd-card {
  border-radius: 12px;
  padding: 16px 16px 14px;
  border: 1px solid #e2e8f0;
  cursor: default;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.csd-card.csd-vis {
  opacity: 1;
  transform: translateY(0);
}
.csd-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.csd-card-wins {
  background: #f4f6fb;
  border-color: #c8cdd8;
}
.csd-card-wins-vs {
  background: #eef0f6;
  border-color: #b8bfcf;
}
.csd-card-contested {
  background: #fafbfc;
  border-color: #e2e8f0;
}
.csd-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
}
.csd-accent-wins {
  background: #47577c;
}
.csd-accent-wins-vs {
  background: #2e3f5c;
}
.csd-accent-contested {
  background: #9d9d9c;
}
.csd-card-inner {
  padding-left: 4px;
}
.csd-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.csd-domain {
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  flex: 1;
}
.csd-status-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
}
.csd-row {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 5px;
}
.csd-row-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9d9d9c;
  width: 34px;
  flex-shrink: 0;
  padding-top: 1px;
  line-height: 1.4;
}
.csd-row-value {
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
}
.csd-divider {
  height: 1px;
  background: #e8ecf3;
  margin: 8px 0;
}
.csd-challenge-row {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.csd-challenge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bf3425;
  width: 34px;
  flex-shrink: 0;
  padding-top: 1px;
  line-height: 1.4;
}
.csd-challenge-value {
  font-size: 11px;
  color: #7a3020;
  line-height: 1.4;
  font-weight: 500;
}
