/* ============================================
   THERMOPLASTIC AFP BLOG — CSS
   Consistent with Addcomposites design system
   ============================================ */

/* Reset & Base */
*,
*::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 p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.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;
}

/* Subtitle */
.subtitle {
  font-size: 1.25rem;
  font-style: italic;
  color: #47577c;
  margin-bottom: 2rem;
}

/* 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: center;
  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-text h3 {
  margin-top: 0;
}

/* ============================================
   IMAGE GRID (3-UP)
   ============================================ */
.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

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

.image-grid-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

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

/* ============================================
   INTRO / HIGHLIGHT CARDS
   ============================================ */
.intro-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.intro-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #bf3425, #47577c);
}

.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;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #47577c;
  box-shadow: 0 8px 25px -5px rgba(71, 87, 124, 0.15);
  transform: translateY(-2px);
}

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

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

.feature-item h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.feature-item p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #475569;
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.stat-value {
  font-family: "Archivo", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #bf3425;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
}

/* ============================================
   DATA TABLE
   ============================================ */
.data-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #ffffff;
}

.data-table thead {
  background: linear-gradient(135deg, #1e293b 0%, #2d3a52 100%);
}

.data-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: top;
}

.data-table tbody tr:hover {
  background-color: #f8fafc;
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   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;
}

/* ============================================
   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;
  }

  .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;
  }

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

  .image-grid-3 {
    grid-template-columns: repeat(2, 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;
  }

  .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;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — 640px
   ============================================ */
@media (max-width: 640px) {
  .blog-layout {
    padding: 20px 12px;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .highlight-box {
    padding: 1.25rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .learn-more-card {
    padding: 1rem;
  }

  .learn-more-icon {
    width: 40px;
    height: 40px;
  }

  .learn-more-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-item {
    flex-direction: column;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }

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

  .author-card {
    padding: 1.25rem;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .blog-layout {
    padding: 16px 10px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-section {
    padding: 1.25rem;
  }

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

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .blog-sidebar,
  .mobile-nav-toggle,
  .cta-section,
  .author-social {
    display: none;
  }

  .blog-layout {
    display: block;
    padding: 0;
  }

  .blog-content {
    max-width: 100%;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   HIGH CONTRAST
   ============================================ */
@media (prefers-contrast: high) {
  .blog-sidebar-link.active {
    outline: 2px solid #bf3425;
  }

  .learn-more-card,
  .feature-item,
  .stat-card {
    border-width: 2px;
  }
}
/* <!-- INFOGRAPHIC 1: THERMOSET vs. THERMOPLASTIC — PHASE BEHAVIOUR --> */
.cfep-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cfep-header {
  text-align: center;
  margin-bottom: 32px;
}

.cfep-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 6px 0;
}

.cfep-header p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ── Main three-column layout ── */
.cfep-body {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

/* ── Column headings ── */
.cfep-col-head {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px 10px;
  border-radius: 6px 6px 0 0;
  margin-bottom: 12px;
}

.cfep-col-head.benefit {
  background: rgba(71, 87, 124, 0.08);
  color: #47577c;
}

.cfep-col-head.cost {
  background: rgba(191, 52, 37, 0.08);
  color: #bf3425;
}

.cfep-col-head span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.75;
  margin-top: 2px;
}

/* ── Cards (benefit & cost) ── */
.cfep-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-left: 3px solid transparent;
  cursor: default;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  position: relative;
}

.cfep-left .cfep-card {
  border-left-color: #47577c;
}

.cfep-right .cfep-card {
  border-left: none;
  border-right: 3px solid #bf3425;
}

.cfep-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
  background: #ffffff;
}

.cfep-left .cfep-card:hover {
  background: rgba(71, 87, 124, 0.04);
}

.cfep-right .cfep-card:hover {
  background: rgba(191, 52, 37, 0.04);
}

.cfep-card-label {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
}

.cfep-card-value {
  font-size: 11px;
  color: #64748b;
}

.cfep-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-top: 5px;
}

.cfep-left .cfep-card-badge {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}

.cfep-right .cfep-card-badge {
  background: rgba(191, 52, 37, 0.12);
  color: #bf3425;
}

/* ── Connector line overlay ── */
.cfep-left {
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}

.cfep-right {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}

/* ── Center column ── */
.cfep-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.cfep-center-node {
  background: #47577c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 14px 10px;
  border-radius: 10px;
  width: 120px;
  box-shadow: 0 4px 12px rgba(71, 87, 124, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}

.cfep-center-node:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(71, 87, 124, 0.4);
}

.cfep-center-node svg {
  display: block;
  margin: 0 auto 6px;
}

/* SVG connector layer */
.cfep-svg-connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.cfep-connector-left {
  stroke: #47577c;
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  fill: none;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.cfep-connector-right {
  stroke: #bf3425;
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  fill: none;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.cfep-body:hover .cfep-connector-left,
.cfep-body:hover .cfep-connector-right {
  opacity: 0.65;
}

/* ── Question banner ── */
.cfep-question {
  margin-top: 28px;
  background: linear-gradient(135deg, #47577c 0%, #2d3a52 100%);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease 0.1s,
    transform 0.5s ease 0.1s;
}

.cfep-question.cfep-visible {
  opacity: 1;
  transform: translateY(0);
}

.cfep-question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cfep-question-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.cfep-question-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 3px;
}

/* ── Scroll-reveal on cards ── */
.cfep-card {
  opacity: 0;
  transform: translateX(0) translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.cfep-left .cfep-card {
  transform: translateX(-12px);
}

.cfep-right .cfep-card {
  transform: translateX(12px);
}

.cfep-card.cfep-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* preserve hover lift after reveal */
.cfep-card.cfep-visible:hover {
  transform: translateY(-2px) !important;
}

.cfep-center-node {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.45s ease 0.2s,
    transform 0.45s ease 0.2s,
    box-shadow 0.2s ease;
}

.cfep-center-node.cfep-visible {
  opacity: 1;
  transform: scale(1);
}

.cfep-center-node.cfep-visible:hover {
  transform: scale(1.05) !important;
}

/* ── Tooltip ── */
.cfep-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: #1e293b;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  pointer-events: none;
}

.cfep-tooltip strong {
  color: #bf3425;
}

.cfep-card:hover .cfep-tooltip {
  display: block;
}

@media (max-width: 600px) {
  .cfep-body {
    grid-template-columns: 1fr;
  }
  .cfep-center {
    flex-direction: row;
    justify-content: center;
    margin: 4px 0;
  }
  .cfep-center-node {
    width: auto;
    padding: 10px 20px;
  }
  .cfep-svg-connectors {
    display: none;
  }
  .cfep-right .cfep-card {
    border-right: none;
    border-left: 3px solid #bf3425;
  }
}
.tpvts-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tpvts-title {
  font-size: 20px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

/* ── Section header ── */
.tpvts-section {
  margin-bottom: 28px;
}

.tpvts-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.tpvts-section-label.thermoset {
  background: #47577c;
  color: #ffffff;
}
.tpvts-section-label.thermoplastic {
  background: #bf3425;
  color: #ffffff;
}

/* ── Flow row ── */
.tpvts-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 16px;
}

.tpvts-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
  cursor: default;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
}
.tpvts-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tpvts-node-label {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}
.tpvts-node-sub {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

/* node colour variants */
.tpvts-node.start-ts {
  background: #eef1f7;
  border: 1.5px solid #47577c;
}
.tpvts-node.end-ts {
  background: #47577c;
  border: 1.5px solid #47577c;
}
.tpvts-node.end-ts .tpvts-node-label {
  color: #fff;
}
.tpvts-node.end-ts .tpvts-node-sub {
  color: #c8d0e0;
}

.tpvts-node.start-tp {
  background: #fdf1f0;
  border: 1.5px solid #bf3425;
}
.tpvts-node.mid-tp {
  background: #bf3425;
  border: 1.5px solid #bf3425;
}
.tpvts-node.mid-tp .tpvts-node-label {
  color: #fff;
}
.tpvts-node.mid-tp .tpvts-node-sub {
  color: #f0c0bb;
}
.tpvts-node.end-tp {
  background: #fdf1f0;
  border: 1.5px solid #bf3425;
}

/* ── Arrows / labels between nodes ── */
.tpvts-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  flex: 1;
  min-width: 60px;
}
.tpvts-arrow-line {
  width: 100%;
  height: 2px;
  position: relative;
  display: flex;
  align-items: center;
}
.tpvts-arrow-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
}
.tpvts-arrow-line.ts-color::after {
  background: #47577c;
}
.tpvts-arrow-line.tp-color::after {
  background: #bf3425;
}

.tpvts-arrow-head {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  flex-shrink: 0;
}
.tpvts-arrow-head.ts-color {
  border-left: 8px solid #47577c;
}
.tpvts-arrow-head.tp-color {
  border-left: 8px solid #bf3425;
}

.tpvts-arrow-caption {
  font-size: 10px;
  color: #64748b;
  margin-top: 4px;
  text-align: center;
  font-style: italic;
  white-space: nowrap;
}

/* ── Outcome callout ── */
.tpvts-outcome {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}
.tpvts-outcome:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.tpvts-outcome.negative {
  background: #fdf1f0;
  border-left: 4px solid #bf3425;
}
.tpvts-outcome.positive {
  background: #eef1f7;
  border-left: 4px solid #47577c;
}

.tpvts-outcome-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.tpvts-outcome-body {
}
.tpvts-outcome-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tpvts-outcome.negative .tpvts-outcome-title {
  color: #bf3425;
}
.tpvts-outcome.positive .tpvts-outcome-title {
  color: #47577c;
}

.tpvts-outcome-text {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}

/* ── Divider ── */
.tpvts-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 24px 0;
}

/* ── Comparison footer ── */
.tpvts-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.tpvts-compare-card {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.tpvts-compare-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.tpvts-compare-card.ts {
  border-top: 3px solid #47577c;
}
.tpvts-compare-card.tp {
  border-top: 3px solid #bf3425;
}

.tpvts-compare-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tpvts-compare-card.ts .tpvts-compare-card-title {
  color: #47577c;
}
.tpvts-compare-card.tp .tpvts-compare-card-title {
  color: #bf3425;
}

.tpvts-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11.5px;
  color: #475569;
  margin-bottom: 5px;
  line-height: 1.4;
}
.tpvts-compare-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.tpvts-compare-card.ts .tpvts-compare-dot {
  background: #47577c;
}
.tpvts-compare-card.tp .tpvts-compare-dot {
  background: #bf3425;
}

/* ── Scroll-reveal animation ── */
.tpvts-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.tpvts-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .tpvts-flow {
    flex-direction: column;
    align-items: flex-start;
  }
  .tpvts-arrow {
    flex-direction: row;
    width: 100%;
    padding: 4px 0;
  }
  .tpvts-compare {
    grid-template-columns: 1fr;
  }
}
/* <!-- INFOGRAPHIC 2: Thermoplastic Matrix Comparison for AFP. Table comparing PA12, PA6, PPS, PEI (Ultem), PAEK, PEEK, PEKK by Tg (°C), Tm (°C), AFP process temperature, and key characteristic. Temperature range from 220°C (PA12) up to 420°C (PEEK/PEKK). Note amorphous polymers soften above Tg without distinct melt point. --> */

.wfag-container {
  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 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── Header ── */
.wfag-header {
  margin-bottom: 28px;
}

.wfag-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}

.wfag-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ── Grid ── */
.wfag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Column ── */
.wfag-col {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px 18px 18px;
  border: 1px solid #e9eef5;
  position: relative;
  overflow: hidden;
}

.wfag-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: #9d9d9c;
}

.wfag-col.afp::before {
  background: #47577c;
}

.wfag-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-top: 4px;
}

.wfag-col-title span {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  background: #e2e8f0;
  color: #64748b;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

.wfag-col.afp .wfag-col-title span {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}

/* ── 100% input bar ── */
.wfag-input-bar {
  height: 10px;
  border-radius: 5px;
  background: #cbd5e1;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}

.wfag-input-fill {
  height: 100%;
  width: 0;
  border-radius: 5px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.wfag-col .wfag-input-fill {
  background: #9d9d9c;
}
.wfag-col.afp .wfag-input-fill {
  background: #47577c;
}

.wfag-input-label {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-align: right;
}

/* ── Segments ── */
.wfag-segment {
  margin-bottom: 12px;
  cursor: default;
}

.wfag-seg-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.wfag-seg-name {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wfag-seg-pct {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.wfag-part-pct {
  color: #47577c;
}
.wfag-scrap-pct {
  color: #bf3425;
}

.wfag-bar-track {
  height: 28px;
  background: #e9eef5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.wfag-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* part-into fill colors */
.wfag-col .wfag-seg-part .wfag-bar-fill {
  background: #9d9d9c;
}
.wfag-col.afp .wfag-seg-part .wfag-bar-fill {
  background: #47577c;
}

/* scrap fill colors */
.wfag-scrap-fill {
  background: #bf3425 !important;
  opacity: 0.7;
}
.wfag-col.afp .wfag-scrap-fill {
  opacity: 0.55;
}

/* Hover highlight on bar */
.wfag-segment:hover .wfag-bar-fill {
  filter: brightness(1.1);
}

.wfag-segment:hover .wfag-seg-pct {
  text-shadow: 0 0 12px currentColor;
}

/* ── Divider ── */
.wfag-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 14px 0;
}

/* ── Energy waste callout ── */
.wfag-energy {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}

.wfag-energy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.wfag-energy-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.wfag-col .wfag-energy-icon {
  background: rgba(157, 157, 156, 0.15);
}
.wfag-col.afp .wfag-energy-icon {
  background: rgba(71, 87, 124, 0.1);
}

.wfag-energy-text {
  flex: 1;
}

.wfag-energy-value {
  font-size: 22px;
  font-weight: 800;
  color: #bf3425;
  line-height: 1;
}

.wfag-col.afp .wfag-energy-value {
  color: #47577c;
}

.wfag-energy-desc {
  font-size: 10px;
  color: #64748b;
  line-height: 1.4;
  margin-top: 2px;
}

/* ── Improvement badge (bottom) ── */
.wfag-improvement {
  margin-top: 20px;
  background: linear-gradient(135deg, #47577c 0%, #2d3a52 100%);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.wfag-improvement.wfag-visible {
  opacity: 1;
  transform: translateY(0);
}

.wfag-imp-stat {
  text-align: center;
  flex: 1;
}

.wfag-imp-value {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.wfag-imp-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  line-height: 1.3;
}

.wfag-imp-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Scroll-reveal states ── */
.wfag-col {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.wfag-col.wfag-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .wfag-grid {
    grid-template-columns: 1fr;
  }
  .wfag-improvement {
    flex-wrap: wrap;
    gap: 12px;
  }
  .wfag-imp-divider {
    display: none;
  }
}

.tpmc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tpmc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.tpmc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 22px;
}

/* ── Temperature scale header ── */
.tpmc-scale-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 0 2px;
}
.tpmc-scale-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  min-width: 110px;
}
.tpmc-scale-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tpmc-scale-tick {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: #cbd5e1;
}

/* ── Row ── */
.tpmc-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px 2px;
  border-top: 1px solid #f1f5f9;
  cursor: default;
  border-radius: 8px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease;
  position: relative;
}
.tpmc-row:hover {
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(71, 87, 124, 0.07);
}
.tpmc-row:last-of-type {
  border-bottom: 1px solid #f1f5f9;
}

/* Matrix name + stats */
.tpmc-row-left {
  min-width: 110px;
  max-width: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tpmc-matrix-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}
.tpmc-matrix-temps {
  font-size: 10px;
  color: #9d9d9c;
  margin-top: 3px;
  line-height: 1.5;
}

/* Bar zone */
.tpmc-bar-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.tpmc-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tpmc-bar-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9d9d9c;
  width: 24px;
  flex-shrink: 0;
  text-align: right;
}
.tpmc-bar-track {
  flex: 1;
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: visible;
  position: relative;
}
.tpmc-bar-fill {
  height: 100%;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}
.tpmc-bar-fill.tg {
  background: #47577c;
}
.tpmc-bar-fill.tm {
  background: #9d9d9c;
}
.tpmc-bar-fill.afp {
  background: #bf3425;
}

/* AFP range bar (two-point range) */
.tpmc-bar-range {
  height: 100%;
  border-radius: 5px;
  position: absolute;
  top: 0;
  transition:
    left 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.85;
}
.tpmc-bar-range.afp {
  background: #bf3425;
}

.tpmc-bar-val {
  font-size: 10px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  min-width: 64px;
}

/* Key characteristic */
.tpmc-row-right {
  min-width: 200px;
  max-width: 220px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  border-left: 2px solid #f1f5f9;
}
.tpmc-char-text {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.4;
}
.tpmc-char-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 4px;
}
.tpmc-char-badge.aero {
  background: #47577c;
  color: #fff;
}
.tpmc-char-badge.auto {
  background: #eef1f7;
  color: #47577c;
}
.tpmc-char-badge.struct {
  background: #fdf1f0;
  color: #bf3425;
}

/* ── Legend ── */
.tpmc-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
.tpmc-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}
.tpmc-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* ── Footnote ── */
.tpmc-note {
  margin-top: 14px;
  font-size: 11px;
  color: #9d9d9c;
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

/* ── Scroll-reveal ── */
.tpmc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.tpmc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tooltip */
.tpmc-row:hover .tpmc-row-right .tpmc-char-text {
  color: #1e293b;
}

@media (max-width: 640px) {
  .tpmc-row {
    flex-direction: column;
    gap: 6px;
  }
  .tpmc-row-right {
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding-left: 0;
    padding-top: 6px;
    min-width: unset;
    max-width: unset;
  }
  .tpmc-row-left {
    min-width: unset;
    max-width: unset;
  }
}
/* INFOGRAPHIC 3: In-Situ Consolidation */
.rmm-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

.rmm-header {
  margin-bottom: 20px;
}

.rmm-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}

.rmm-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ── Chart area ── */
.rmm-chart-wrap {
  position: relative;
  width: 100%;
}

.rmm-canvas-wrap {
  position: relative;
  width: 100%;
  height: 340px;
}

@media (min-width: 640px) {
  .rmm-canvas-wrap {
    height: 380px;
  }
}

/* ── Legend ── */
.rmm-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.rmm-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  cursor: default;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}

.rmm-legend-item:hover {
  background: #f1f5f9;
}

.rmm-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Citation ── */
.rmm-citation {
  margin-top: 16px;
  font-size: 11px;
  color: #94a3b8;
  text-align: right;
  font-style: italic;
}

/* ── Tooltip card ── */
.rmm-tooltip {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 10;
  min-width: 200px;
  max-width: 240px;
}

.rmm-tooltip.rmm-tt-visible {
  opacity: 1;
}

.rmm-tt-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rmm-tt-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #475569;
  margin-bottom: 4px;
}

.rmm-tt-row strong {
  color: #1e293b;
  font-weight: 600;
}

.rmm-tt-note {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid #f1f5f9;
  font-size: 10px;
  color: #64748b;
  line-height: 1.4;
}

/* ── Scroll reveal ── */
.rmm-container {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.rmm-container.rmm-visible {
  opacity: 1;
  transform: translateY(0);
}
.isc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.isc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.isc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Two-column layout ── */
.isc-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Process flow (left) ── */
.isc-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.isc-flow-node {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}
.isc-flow-node:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.isc-node-tape {
  background: #eef1f7;
  border: 1.5px solid #47577c;
}
.isc-node-heat {
  background: #47577c;
  color: #fff;
  border: 1.5px solid #47577c;
}
.isc-node-nip {
  background: #1e293b;
  color: #fff;
  border: 1.5px solid #1e293b;
  letter-spacing: 2px;
}
.isc-node-roller {
  background: #9d9d9c;
  color: #fff;
  border: 1.5px solid #9d9d9c;
}
.isc-node-lam {
  background: #fdf1f0;
  border: 1.5px solid #bf3425;
}

.isc-node-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}
.isc-node-temp {
  font-size: 10px;
  opacity: 0.8;
  line-height: 1.4;
}
.isc-node-tape .isc-node-title {
  color: #47577c;
}
.isc-node-tape .isc-node-temp {
  color: #64748b;
}
.isc-node-lam .isc-node-title {
  color: #bf3425;
}
.isc-node-lam .isc-node-temp {
  color: #64748b;
}

/* flow row — always full width, centered */
.isc-flow-row {
  width: 100%;
  position: relative;
}
/* callout appears as a tooltip above the node on hover */
.isc-callout {
  display: none; /* hidden — info is in node body already */
}

/* arrows between nodes */
.isc-arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2px 0;
  gap: 0;
}
.isc-arrow-shaft {
  width: 2px;
  height: 18px;
  background: #cbd5e1;
}
.isc-arrow-tip {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #cbd5e1;
}

/* NIP label row */
.isc-nip-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
  margin: 4px 0;
}
.isc-nip-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #1e293b 30%,
    #1e293b 70%,
    transparent
  );
}
.isc-nip-badge {
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 5px 14px;
  border-radius: 4px;
}
.isc-nip-dir {
  font-size: 9px;
  color: #9d9d9c;
  white-space: nowrap;
  font-style: italic;
}

/* ── Four variables (right) ── */
.isc-vars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.isc-vars-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 2px;
}

.isc-var-card {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.isc-var-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.isc-var-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 10px 0 0 10px;
}
.isc-var-card.v1::before {
  background: #47577c;
}
.isc-var-card.v2::before {
  background: #bf3425;
}
.isc-var-card.v3::before {
  background: #9d9d9c;
}
.isc-var-card.v4::before {
  background: #1e293b;
}

.isc-var-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.isc-var-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.v1 .isc-var-num {
  background: #47577c;
}
.v2 .isc-var-num {
  background: #bf3425;
}
.v3 .isc-var-num {
  background: #9d9d9c;
}
.v4 .isc-var-num {
  background: #1e293b;
}

.isc-var-name {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.3px;
}
.isc-var-desc {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 8px;
  padding-left: 32px;
  line-height: 1.5;
}

/* Too-low / Too-high / Target pills */
.isc-effect-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-left: 32px;
}
.isc-effect {
  font-size: 10px;
  border-radius: 4px;
  padding: 3px 8px;
  line-height: 1.4;
  font-weight: 500;
}
.isc-effect.low {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f9c5bd;
}
.isc-effect.high {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f9c5bd;
}
.isc-effect.target {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}

/* ── Scroll-reveal ── */
.isc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.isc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .isc-layout {
    grid-template-columns: 1fr;
  }
}
/* INFOGRAPHIC 4 */

.vcr-container {
  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 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 760px;
  margin: 0 auto;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.vcr-container.vcr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ── */
.vcr-header {
  margin-bottom: 26px;
}

.vcr-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin: 0 0 4px;
}

.vcr-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ── Row ── */
.vcr-row {
  display: grid;
  grid-template-columns: 200px 1fr 48px;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  cursor: default;
  border-radius: 8px;
  padding: 8px 10px;
  transition: background 0.2s ease;
  position: relative;
}

.vcr-row:hover {
  background: #f8fafc;
}

/* ── Label ── */
.vcr-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  position: relative;
}

.vcr-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 3px;
  background: rgba(71, 87, 124, 0.1);
  color: #47577c;
}

/* ── Bar track ── */
.vcr-bar-track {
  height: 24px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.vcr-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

/* colour tiers by readiness level */
.vcr-tier-high .vcr-bar-fill {
  background: #47577c;
}
.vcr-tier-mid .vcr-bar-fill {
  background: #6b7fa8;
}
.vcr-tier-low .vcr-bar-fill {
  background: #9d9d9c;
}
.vcr-tier-vlow .vcr-bar-fill {
  background: #cbd5e1;
}

/* TOSCA row highlight */
.vcr-tosca .vcr-bar-fill {
  background: #bf3425;
}
.vcr-tosca .vcr-label {
  color: #bf3425;
}

.vcr-row:hover .vcr-bar-fill {
  filter: brightness(1.08);
}

/* ── Percentage ── */
.vcr-pct {
  font-size: 14px;
  font-weight: 800;
  color: #47577c;
  text-align: right;
}

.vcr-tosca .vcr-pct {
  color: #bf3425;
}

/* ── Divider ── */
.vcr-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 6px 0 16px;
}

/* ── Inline bar label (shown when bar is wide enough) ── */
.vcr-bar-inner-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.4s ease 0.8s;
}

.vcr-bar-fill.vcr-wide .vcr-bar-inner-label {
  opacity: 1;
}

/* ── Tooltip popup ── */
.vcr-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 210px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11px;
  color: #475569;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 10;
  pointer-events: none;
  line-height: 1.5;
}

.vcr-tooltip strong {
  color: #1e293b;
}
.vcr-row:hover .vcr-tooltip {
  display: block;
}

/* ── Footer ── */
.vcr-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #47577c 0%, #2d3a52 100%);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s ease 0.3s,
    transform 0.5s ease 0.3s;
}

.vcr-footer.vcr-visible {
  opacity: 1;
  transform: translateY(0);
}

.vcr-footer-icon {
  font-size: 24px;
  flex-shrink: 0;
  color: #fff;
}

.vcr-footer-text {
  flex: 1;
}

.vcr-footer-value {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.vcr-footer-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

.vcr-footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  line-height: 1.5;
  max-width: 220px;
}

@media (max-width: 520px) {
  .vcr-row {
    grid-template-columns: 140px 1fr 40px;
    gap: 8px;
  }
  .vcr-label {
    font-size: 11px;
  }
  .vcr-footer {
    flex-wrap: wrap;
  }
  .vcr-footer-note {
    text-align: left;
    max-width: 100%;
  }
}
.hsc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hsc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.hsc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 24px;
}

/* ── Tab nav ── */
.hsc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hsc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  transition: all 0.2s ease;
  user-select: none;
}
.hsc-tab:hover {
  border-color: #47577c;
  color: #47577c;
  background: #eef1f7;
}
.hsc-tab.active {
  color: #fff;
  border-color: transparent;
}
.hsc-tab.active.t-laser {
  background: #47577c;
}
.hsc-tab.active.t-hotgas {
  background: #bf3425;
}
.hsc-tab.active.t-ultra {
  background: #9d9d9c;
}

.hsc-tab-icon {
  font-size: 16px;
  line-height: 1;
}

/* ── Cards grid ── */
.hsc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hsc-card {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  cursor: default;
}
.hsc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}
.hsc-card.c-laser:hover {
  border-color: #47577c;
}
.hsc-card.c-hotgas:hover {
  border-color: #bf3425;
}
.hsc-card.c-ultra:hover {
  border-color: #9d9d9c;
}

.hsc-card-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-laser .hsc-card-header {
  background: #47577c;
}
.c-hotgas .hsc-card-header {
  background: #bf3425;
}
.c-ultra .hsc-card-header {
  background: #9d9d9c;
}

.hsc-card-icon {
  font-size: 20px;
  line-height: 1;
}
.hsc-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.hsc-card-body {
  padding: 14px 16px;
}

.hsc-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  margin-top: 10px;
}
.hsc-section-label:first-child {
  margin-top: 0;
}
.hsc-section-label.adv {
  color: #47577c;
}
.hsc-section-label.lim {
  color: #bf3425;
}

.hsc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hsc-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11.5px;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 5px;
}
.hsc-list li .hsc-bullet {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 5px;
}
.hsc-list.adv li .hsc-bullet {
  background: #47577c;
}
.hsc-list.lim li .hsc-bullet {
  background: #bf3425;
}

/* ── Radar / score bar ── */
.hsc-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.hsc-score-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #e2e8f0;
}
.hsc-score-title {
  font-size: 11px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.hsc-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.hsc-score-name {
  font-size: 10px;
  color: #64748b;
  width: 68px;
  flex-shrink: 0;
}
.hsc-score-track {
  flex: 1;
  height: 7px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.hsc-score-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hsc-score-val {
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  text-align: right;
}

/* colour per metric */
.hsc-score-fill.s-laser {
  background: #47577c;
}
.hsc-score-fill.s-hotgas {
  background: #bf3425;
}
.hsc-score-fill.s-ultra {
  background: #9d9d9c;
}

/* ── Scroll-reveal ── */
.hsc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.hsc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  .hsc-grid {
    grid-template-columns: 1fr;
  }
  .hsc-scores {
    grid-template-columns: 1fr;
  }
}
/* INFOGRAPHIC 5 */
.tah-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tah-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.tah-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Two-column layout ── */
.tah-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* ── Component flow (left) ── */
.tah-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* Feed row: spool label + card */
.tah-feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.tah-feed-label {
  font-size: 10px;
  font-weight: 600;
  color: #9d9d9c;
  text-align: right;
  white-space: nowrap;
  min-width: 90px;
  padding-right: 4px;
}
.tah-feed-arrow {
  display: flex;
  align-items: center;
  gap: 0;
}
.tah-feed-arrow-line {
  width: 20px;
  height: 2px;
  background: #cbd5e1;
}
.tah-feed-arrow-tip {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #cbd5e1;
}

.tah-component {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
  flex: 1;
}
.tah-component:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.tah-comp-header {
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c1 .tah-comp-header {
  background: #47577c;
}
.c2 .tah-comp-header {
  background: #1e293b;
}
.c3 .tah-comp-header {
  background: #9d9d9c;
}

.tah-comp-icon {
  font-size: 18px;
  line-height: 1;
}
.tah-comp-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.tah-comp-body {
  padding: 12px 16px;
}

.tah-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tah-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 5px;
}
.tah-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.c1 .tah-dot {
  background: #47577c;
}
.c2 .tah-dot {
  background: #1e293b;
}
.c3 .tah-dot {
  background: #9d9d9c;
}

/* Arrow between components */
.tah-arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0;
  padding-left: 103px; /* align with card centre accounting for spool label */
}
.tah-arr-shaft {
  width: 2px;
  height: 18px;
  background: #cbd5e1;
}
.tah-arr-tip {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #cbd5e1;
}

/* ── Thermal gradient (right) ── */
.tah-thermal {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tah-thermal-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}

/* Gradient bar */
.tah-gradient-bar {
  width: 100%;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(
    to bottom,
    #bf3425 0%,
    #e87060 25%,
    #f4a896 55%,
    #c8d0e0 80%,
    #eef1f7 100%
  );
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Vertical temperature stack */
.tah-temp-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tah-temp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.tah-temp-row:hover {
  transform: translateX(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}
.tah-temp-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
}
.tr-nip::before {
  background: #bf3425;
}
.tr-head::before {
  background: #e87060;
}
.tr-robot::before {
  background: #9d9d9c;
}
.tr-grad::before {
  background: #47577c;
}

.tah-temp-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.tah-temp-body {
  flex: 1;
}
.tah-temp-zone {
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1px;
}
.tah-temp-val {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.tr-nip .tah-temp-val {
  color: #bf3425;
}
.tr-head .tah-temp-val {
  color: #c05a50;
}
.tr-robot .tah-temp-val {
  color: #9d9d9c;
}
.tr-grad .tah-temp-val {
  color: #47577c;
  font-size: 11px;
}
.tah-temp-note {
  font-size: 9.5px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: 1.4;
}

/* Animated temperature bar inside row */
.tah-temp-bar-wrap {
  width: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tah-temp-bar-track {
  width: 8px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.tah-temp-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 4px;
  width: 100%;
  height: 0;
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.tr-nip .tah-temp-bar-fill {
  background: #bf3425;
}
.tr-head .tah-temp-bar-fill {
  background: #e87060;
}
.tr-robot .tah-temp-bar-fill {
  background: #9d9d9c;
}
.tr-grad .tah-temp-bar-fill {
  background: #47577c;
  height: 60% !important;
}

/* ── Scroll-reveal ── */
.tah-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.tah-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .tah-layout {
    grid-template-columns: 1fr;
  }
  .tah-arrow-down {
    padding-left: 0;
  }
  .tah-feed-label {
    display: none;
  }
  .tah-feed-arrow {
    display: none;
  }
}
/* INFOGRAPHIC 6 */
.twm-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.twm-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.twm-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Method cards ── */
.twm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.twm-card {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
}
.twm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}
.twm-card.m1:hover {
  border-color: #47577c;
}
.twm-card.m2:hover {
  border-color: #bf3425;
}
.twm-card.m3:hover {
  border-color: #9d9d9c;
}

.twm-card-header {
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.m1 .twm-card-header {
  background: #47577c;
}
.m2 .twm-card-header {
  background: #bf3425;
}
.m3 .twm-card-header {
  background: #9d9d9c;
}

.twm-card-icon {
  font-size: 20px;
  line-height: 1;
}
.twm-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.twm-card-body {
  padding: 14px 16px;
}

/* ── Process flow inside card ── */
.twm-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}

.twm-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dashed #f1f5f9;
}
.twm-step:last-child {
  border-bottom: none;
}

.twm-step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.m1 .twm-step-num {
  background: #47577c;
}
.m2 .twm-step-num {
  background: #bf3425;
}
.m3 .twm-step-num {
  background: #9d9d9c;
}

.twm-step-text {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.45;
}

/* Interface badge */
.twm-interface {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.m1 .twm-interface {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}
.m2 .twm-interface {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f9c5bd;
}
.m3 .twm-interface {
  background: #f5f5f5;
  color: #9d9d9c;
  border: 1px solid #d8d8d8;
}

/* Stats row */
.twm-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}
.twm-stat {
  flex: 1;
  min-width: 80px;
  background: #f8fafc;
  border-radius: 6px;
  padding: 7px 9px;
  text-align: center;
}
.twm-stat-val {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
}
.m1 .twm-stat-val {
  color: #47577c;
}
.m2 .twm-stat-val {
  color: #bf3425;
}
.m3 .twm-stat-val {
  color: #9d9d9c;
}
.twm-stat-label {
  font-size: 9px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Use-case pill */
.twm-usecase {
  margin-top: 10px;
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.5;
  font-style: italic;
}

/* ── Comparison bar table ── */
.twm-compare {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}
.twm-compare-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}

.twm-cmp-row {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.twm-cmp-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-align: right;
  padding-right: 8px;
}
.twm-cmp-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.twm-cmp-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.twm-cmp-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf1 {
  background: #47577c;
}
.cf2 {
  background: #bf3425;
}
.cf3 {
  background: #9d9d9c;
}

.twm-cmp-val {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}

/* Header row for compare */
.twm-cmp-header {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.twm-cmp-hcell {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 3px 0;
  border-radius: 4px;
}
.twm-cmp-hcell.h1 {
  color: #fff;
  background: #47577c;
}
.twm-cmp-hcell.h2 {
  color: #fff;
  background: #bf3425;
}
.twm-cmp-hcell.h3 {
  color: #fff;
  background: #9d9d9c;
}

/* ── Scroll-reveal ── */
.twm-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.twm-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  .twm-grid {
    grid-template-columns: 1fr;
  }
  .twm-cmp-row {
    grid-template-columns: 90px 1fr 1fr 1fr;
  }
  .twm-cmp-header {
    grid-template-columns: 90px 1fr 1fr 1fr;
  }
}
/* INFOGRAPHIC 7 */
.trf-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.trf-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.trf-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Process flow strip ── */
.trf-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 22px;
}

.trf-stage {
  flex: 1;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
}
.trf-stage:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.11);
  z-index: 2;
}
.trf-stage.s1:hover {
  border-color: #47577c;
}
.trf-stage.s2:hover {
  border-color: #9d9d9c;
}
.trf-stage.s3:hover {
  border-color: #bf3425;
}

.trf-stage-header {
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s1 .trf-stage-header {
  background: #47577c;
}
.s2 .trf-stage-header {
  background: #9d9d9c;
}
.s3 .trf-stage-header {
  background: #bf3425;
}

.trf-stage-icon {
  font-size: 18px;
  line-height: 1;
}
.trf-stage-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.trf-stage-body {
  padding: 12px 14px;
}
.trf-stage-desc {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 8px;
}
.trf-stage-detail {
  font-size: 10.5px;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.4;
}

/* ── Arrow between stages ── */
.trf-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  gap: 3px;
  flex-shrink: 0;
}
.trf-arrow-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.trf-arr-shaft {
  width: 2px;
  height: 24px;
}
.trf-arr-tip {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* heat arrow */
.trf-arrow.heat .trf-arrow-label {
  color: #bf3425;
}
.trf-arrow.heat .trf-arr-shaft {
  background: #bf3425;
}
.trf-arrow.heat .trf-arr-tip {
  border-left: 7px solid #bf3425;
}

/* pressure arrow */
.trf-arrow.press .trf-arrow-label {
  color: #47577c;
}
.trf-arrow.press .trf-arr-shaft {
  background: #47577c;
}
.trf-arrow.press .trf-arr-tip {
  border-left: 7px solid #47577c;
}

/* ── Advantage callout ── */
.trf-advantage {
  border-radius: 10px;
  border: 1.5px solid #eef1f7;
  background: #eef1f7;
  padding: 16px 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.trf-advantage:hover {
  box-shadow: 0 6px 18px rgba(71, 87, 124, 0.12);
}
.trf-advantage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #47577c;
  border-radius: 10px 0 0 10px;
}
.trf-adv-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #47577c;
  margin-bottom: 10px;
}
.trf-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.trf-adv-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: #475569;
  line-height: 1.45;
}
.trf-adv-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #47577c;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── Geometry chips ── */
.trf-geo-section {
  margin-top: 4px;
}
.trf-geo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 10px;
}
.trf-geo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trf-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  cursor: default;
}
.trf-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
  border-color: #bf3425;
  color: #bf3425;
}
.trf-chip-icon {
  font-size: 14px;
  line-height: 1;
}

/* ── Scroll-reveal ── */
.trf-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.trf-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .trf-flow {
    flex-direction: column;
  }
  .trf-arrow {
    flex-direction: row;
    padding: 6px 0;
  }
  .trf-arr-shaft {
    width: 24px;
    height: 2px;
  }
  .trf-arr-tip {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: none;
  }
  .trf-arrow.heat .trf-arr-tip {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #bf3425;
  }
  .trf-arrow.press .trf-arr-tip {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #47577c;
  }
  .trf-adv-grid {
    grid-template-columns: 1fr;
  }
}
/* INFOGRAPHIC 8 */
.rpc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.rpc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.rpc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Two-column layout ── */
.rpc-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

/* ── Column header ── */
.rpc-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.rpc-col-header.ts {
  background: #47577c;
}
.rpc-col-header.tp {
  background: #bf3425;
}

.rpc-col-icon {
  font-size: 20px;
  line-height: 1;
}
.rpc-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ── Step list ── */
.rpc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rpc-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

/* Connector line runs through the left gutter */
.rpc-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
}
.rpc-step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.2s ease;
}
.rpc-step:hover .rpc-step-circle {
  transform: scale(1.15);
}

.ts-col .rpc-step-circle {
  background: #47577c;
}
.tp-col .rpc-step-circle {
  background: #bf3425;
}

.rpc-step-line {
  width: 2px;
  flex: 1;
  min-height: 16px;
}
.ts-col .rpc-step-line {
  background: #c5cde0;
}
.tp-col .rpc-step-line {
  background: #f0b8b2;
}

/* last step has no line below */
.rpc-step:last-child .rpc-step-line {
  display: none;
}

.rpc-step-content {
  flex: 1;
  padding: 2px 0 14px 0;
}
.rpc-step-label {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 2px;
  cursor: default;
  transition: color 0.15s;
}
.rpc-step:hover .rpc-step-label {
  color: #47577c;
}
.tp-col .rpc-step:hover .rpc-step-label {
  color: #bf3425;
}

.rpc-step-detail {
  font-size: 10.5px;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.4;
}

/* ── Summary card ── */
.rpc-summary {
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s ease;
}
.rpc-summary:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
}
.ts-col .rpc-summary {
  background: #eef1f7;
  border: 1.5px solid #c5cde0;
}
.tp-col .rpc-summary {
  background: #fdf1f0;
  border: 1.5px solid #f0b8b2;
}

.rpc-sum-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  line-height: 1.4;
}
.rpc-sum-icon {
  font-size: 13px;
  flex-shrink: 0;
}
.ts-col .rpc-sum-row {
  color: #334155;
}
.tp-col .rpc-sum-row {
  color: #334155;
}

.rpc-sum-strong {
  font-weight: 700;
}
.ts-col .rpc-sum-strong {
  color: #47577c;
}
.tp-col .rpc-sum-strong {
  color: #bf3425;
}

/* ── Comparison metrics ── */
.rpc-metrics {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}
.rpc-metrics-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}

.rpc-metric-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rpc-metric-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  text-align: right;
  padding-right: 8px;
}

.rpc-metric-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rpc-metric-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.rpc-metric-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.mf-ts {
  background: #47577c;
}
.mf-tp {
  background: #bf3425;
}

.rpc-metric-val {
  font-size: 9.5px;
  font-weight: 700;
  text-align: center;
}
.mf-ts ~ .rpc-metric-val,
.rpc-metric-cell.mt .rpc-metric-val {
  color: #47577c;
}
.rpc-metric-cell.tp .rpc-metric-val {
  color: #bf3425;
}

/* Column header for metrics */
.rpc-metric-header {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}
.rpc-mh-cell {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 3px 0;
  border-radius: 4px;
  color: #fff;
}
.rpc-mh-cell.ts {
  background: #47577c;
}
.rpc-mh-cell.tp {
  background: #bf3425;
}

/* ── Scroll-reveal ── */
.rpc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.rpc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .rpc-columns {
    grid-template-columns: 1fr;
  }
  .rpc-metric-row {
    grid-template-columns: 90px 1fr 1fr;
  }
  .rpc-metric-header {
    grid-template-columns: 90px 1fr 1fr;
  }
}
/* INFOGRAPHIC 9 */
.eol-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.eol-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.eol-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Two-column layout ── */
.eol-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Column ── */
.eol-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.eol-col-header.ts {
  background: #47577c;
}
.eol-col-header.tp {
  background: #bf3425;
}

.eol-col-icon {
  font-size: 20px;
  line-height: 1;
}
.eol-col-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.eol-col-tag {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 3px 7px;
  border-radius: 4px;
}

/* ── Source node ── */
.eol-source {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
}
.ts-side .eol-source {
  background: #eef1f7;
  color: #47577c;
  border: 1.5px solid #c5cde0;
}
.tp-side .eol-source {
  background: #fdf1f0;
  color: #bf3425;
  border: 1.5px solid #f0b8b2;
}

/* ── Branch trunk line ── */
.eol-trunk {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-left: 20px;
}
.eol-trunk-line {
  width: 2px;
  align-self: stretch;
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 0;
}
.ts-side .eol-trunk-line {
  background: #c5cde0;
}
.tp-side .eol-trunk-line {
  background: #f0b8b2;
}

.eol-branches {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
}

/* ── Individual pathway card ── */
.eol-pathway {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 10px;
  position: relative;
}

/* horizontal stub connecting trunk to card */
.eol-stub {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 14px;
}
.eol-stub-h {
  width: 16px;
  height: 2px;
}
.ts-side .eol-stub-h {
  background: #c5cde0;
}
.tp-side .eol-stub-h {
  background: #f0b8b2;
}
.eol-stub-tip {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.ts-side .eol-stub-tip {
  border-left: 6px solid #c5cde0;
}
.tp-side .eol-stub-tip {
  border-left: 6px solid #f0b8b2;
}

.eol-path-card {
  flex: 1;
  border-radius: 9px;
  border: 1.5px solid #e2e8f0;
  padding: 10px 12px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  cursor: default;
}
.eol-path-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
}
.ts-side .eol-path-card:hover {
  border-color: #47577c;
}
.tp-side .eol-path-card:hover {
  border-color: #bf3425;
}

.eol-path-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.eol-path-icon {
  font-size: 14px;
  line-height: 1;
}
.eol-path-name {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.eol-path-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.45;
  padding-left: 21px;
}

/* Status badge */
.eol-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-top: 5px;
  margin-left: 21px;
}
.badge-bad {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f0b8b2;
}
.badge-medium {
  background: #f5f5f5;
  color: #9d9d9c;
  border: 1px solid #d8d8d8;
}
.badge-good {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}
.badge-best {
  background: #47577c;
  color: #fff;
}

/* ── Value retained bar ── */
.eol-value-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.eol-value-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}
.eol-value-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.eol-value-name {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
  min-width: 200px;
  flex-shrink: 0;
}
.eol-value-track {
  flex: 1;
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
}
.eol-value-fill {
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.vf-bad {
  background: #e2e8f0;
}
.vf-medium {
  background: #9d9d9c;
}
.vf-good {
  background: #47577c;
}
.vf-best {
  background: #bf3425;
}

.eol-value-pct {
  font-size: 10px;
  font-weight: 700;
  min-width: 36px;
  text-align: right;
}

/* ── Scroll-reveal ── */
.eol-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.eol-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .eol-columns {
    grid-template-columns: 1fr;
  }
  .eol-value-name {
    min-width: 140px;
  }
}
/* INFOGRAPHIC 10 */
.vcb-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

.vcb-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.vcb-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Scale header ── */
.vcb-scale-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
  padding-left: 236px;
  padding-right: 16px;
  box-sizing: border-box;
}
.vcb-scale-tick {
  flex: 1;
  font-size: 9px;
  color: #cbd5e1;
  font-weight: 600;
  text-align: center;
}
.vcb-scale-tick:first-child {
  text-align: left;
}
.vcb-scale-tick:last-child {
  text-align: right;
}

/* ── Qualification threshold line ── */
.vcb-chart-area {
  position: relative;
  padding-left: 236px;
  padding-right: 16px;
  box-sizing: border-box;
}

/* Threshold hairline at 2% = 40% of 0–5% scale */
.vcb-threshold-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(236px + 40%);
  width: 1.5px;
  background: #bf3425;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
.vcb-threshold-label {
  position: absolute;
  top: -18px;
  left: calc(236px + 40% + 4px);
  font-size: 9px;
  font-weight: 700;
  color: #bf3425;
  white-space: nowrap;
}

/* ── Row ── */
.vcb-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  position: relative;
}

.vcb-row-label {
  min-width: 220px;
  max-width: 220px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}
.vcb-row-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}
.vcb-row-year {
  font-size: 9.5px;
  color: #94a3b8;
}

/* Type badge */
.vcb-type-badge {
  min-width: 16px;
  max-width: 16px;
  flex-shrink: 0;
  margin-right: 6px; /* small gap before bar */
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-ts {
  background: #47577c;
}
.dot-tp {
  background: #9d9d9c;
}
.dot-tp-o {
  background: #bf3425;
}
.dot-press {
  background: #47577c;
  opacity: 0.6;
}

/* Bar track — scale 0–5%, so 1% = 20% width */
.vcb-bar-wrap {
  flex: 1;
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}
.vcb-bar-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
}
/* range bar */
.vcb-bar-range {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition:
    width 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
/* single-value bar (< x%) starts at 0 */
.vcb-bar-single {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  border-radius: 5px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-ts {
  background: #47577c;
}
.bar-tp-e {
  background: #e2e8f0;
} /* early — very light */
.bar-tp-20 {
  background: #9d9d9c;
}
.bar-tp-24 {
  background: #bf3425;
}
.bar-press {
  background: #47577c;
  opacity: 0.6;
}

/* value label right of bar */
.vcb-bar-val {
  position: absolute;
  right: -60px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.vcb-bar-val.ts {
  color: #47577c;
}
.vcb-bar-val.tp-e {
  color: #9d9d9c;
}
.vcb-bar-val.tp-20 {
  color: #9d9d9c;
}
.vcb-bar-val.tp-24 {
  color: #bf3425;
}
.vcb-bar-val.press {
  color: #47577c;
}

/* Qual badge inline */
.vcb-qual {
  margin-left: 66px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.qual-met {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}
.qual-none {
  background: #f8fafc;
  color: #cbd5e1;
  border: 1px solid #e2e8f0;
}

/* Hover lift */
.vcb-row-card {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 8px 0;
  border-radius: 8px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease;
  cursor: default;
}
.vcb-row-card:hover {
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(71, 87, 124, 0.07);
}

/* ── Progress timeline at bottom ── */
.vcb-timeline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.vcb-tl-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}
.vcb-tl-track {
  position: relative;
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  margin-bottom: 8px;
}
.vcb-tl-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, #9d9d9c, #bf3425);
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.vcb-tl-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -22px;
  padding-bottom: 22px;
}
.vcb-tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
  transition: transform 0.2s ease;
}
.vcb-tl-node:hover {
  transform: translateY(-3px);
}
.vcb-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #9d9d9c;
}
.vcb-tl-node:last-child .vcb-tl-dot {
  box-shadow: 0 0 0 1.5px #bf3425;
  background: #bf3425;
}
.vcb-tl-node-year {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  margin-top: 6px;
}
.vcb-tl-node-val {
  font-size: 9.5px;
  color: #94a3b8;
}

/* ── Status note ── */
.vcb-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #eef1f7;
  border-left: 4px solid #47577c;
  font-size: 12px;
  color: #334155;
  line-height: 1.5;
  transition: box-shadow 0.2s ease;
}
.vcb-status:hover {
  box-shadow: 0 4px 12px rgba(71, 87, 124, 0.1);
}
.vcb-status strong {
  color: #47577c;
}

/* ── Scroll-reveal ── */
.vcb-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.vcb-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .vcb-scale-wrap {
    padding-left: 130px;
  }
  .vcb-chart-area {
    padding-left: 130px;
  }
  .vcb-threshold-line {
    left: calc(130px + 40%);
  }
  .vcb-threshold-label {
    left: calc(130px + 40% + 4px);
  }
  .vcb-row-label {
    min-width: 124px;
    max-width: 124px;
  }
  .vcb-bar-val {
    right: -50px;
    font-size: 9px;
  }
  .vcb-qual {
    margin-left: 50px;
  }
}
/* INFOGRAPHIC 11 */
.crc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.crc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.crc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Four regime cards ── */
.crc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.crc-card {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.crc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.11);
  z-index: 2;
}
.crc-card.r1:hover {
  border-color: #9d9d9c;
}
.crc-card.r2:hover {
  border-color: #47577c;
}
.crc-card.r3:hover {
  border-color: #bf3425;
}
.crc-card.r4:hover {
  border-color: #e2e8f0;
}

.crc-card-header {
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.r1 .crc-card-header {
  background: #9d9d9c;
}
.r2 .crc-card-header {
  background: #47577c;
}
.r3 .crc-card-header {
  background: #bf3425;
}
.r4 .crc-card-header {
  background: #1e293b;
}

.crc-card-rate {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.crc-card-range {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.crc-card-body {
  padding: 12px 13px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Crystallinity gauge */
.crc-gauge-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.crc-gauge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #94a3b8;
}
.crc-gauge-track {
  width: 100%;
  height: 12px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.crc-gauge-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.r1 .crc-gauge-fill {
  background: #9d9d9c;
}
.r2 .crc-gauge-fill {
  background: #47577c;
}
.r3 .crc-gauge-fill {
  background: #bf3425;
}
.r4 .crc-gauge-fill {
  background: #e2e8f0;
}

.crc-gauge-val {
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.r1 .crc-gauge-val {
  color: #9d9d9c;
}
.r2 .crc-gauge-val {
  color: #47577c;
}
.r3 .crc-gauge-val {
  color: #bf3425;
}
.r4 .crc-gauge-val {
  color: #94a3b8;
}

/* Tg badge */
.crc-tg-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
}
.crc-tg-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tg-high {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}
.tg-target {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.tg-low {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}
.tg-vlow {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f0b8b2;
}

/* Behaviour text */
.crc-behaviour {
  font-size: 11px;
  color: #475569;
  line-height: 1.45;
  padding-top: 6px;
  border-top: 1px dashed #f1f5f9;
}

/* Suitability badge */
.crc-suit {
  margin-top: auto;
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.3px;
}
.suit-no {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f0b8b2;
}
.suit-target {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}
.suit-ok {
  background: #f5f5f5;
  color: #9d9d9c;
  border: 1px solid #d8d8d8;
}

/* ── Continuous cooling curve schematic ── */
.crc-chart-wrap {
  margin-bottom: 22px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.crc-chart-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 12px;
}

/* ── AFP challenge callout ── */
.crc-challenge {
  padding: 14px 16px;
  border-radius: 10px;
  background: #eef1f7;
  border-left: 4px solid #47577c;
  transition: box-shadow 0.2s ease;
}
.crc-challenge:hover {
  box-shadow: 0 4px 14px rgba(71, 87, 124, 0.1);
}
.crc-challenge-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #47577c;
  margin-bottom: 8px;
}
.crc-challenge-body {
  font-size: 12px;
  color: #334155;
  line-height: 1.6;
}
.crc-challenge-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.crc-ch-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
  background: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}
.crc-ch-item-icon {
  font-size: 13px;
}

/* ── Scroll-reveal ── */
.crc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.crc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  .crc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .crc-grid {
    grid-template-columns: 1fr;
  }
}
/* INFOGRAPHIC 12 */
.tpc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tpc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.tpc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Scale header ── */
.tpc-scale-row {
  display: grid;
  grid-template-columns: 200px 16px 1fr 90px;
  gap: 0 6px;
  margin-bottom: 4px;
  box-sizing: border-box;
}
.tpc-scale-ticks {
  display: flex;
  justify-content: space-between;
}
.tpc-scale-tick {
  font-size: 9px;
  color: #cbd5e1;
  font-weight: 600;
}

/* ── Chart area ── */
.tpc-chart {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  margin-bottom: 22px;
}

/* Reference line at €80 = 40% of bar-zone width.
     Bar zone starts after label (210px) + dot (16px) = 226px,
     ends 100px before right edge (value label column).
     We place it via JS after layout. Fallback: a thin hairline. */
.tpc-ref-line {
  position: absolute;
  top: 0;
  bottom: 0;
  /* positioned by JS */
  width: 1.5px;
  background: #47577c;
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}
.tpc-ref-label {
  position: absolute;
  top: -16px;
  font-size: 9px;
  font-weight: 700;
  color: #47577c;
  white-space: nowrap;
  opacity: 0.7;
}

/* ── Row ── */
.tpc-row-card {
  display: grid;
  grid-template-columns: 200px 16px 1fr 90px;
  align-items: center;
  gap: 0 6px;
  padding: 7px 4px;
  border-radius: 8px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease;
  cursor: default;
  margin-bottom: 4px;
}
.tpc-row-card:hover {
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(71, 87, 124, 0.07);
}

.tpc-row-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 10px;
}
.tpc-row-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}
.tpc-row-note {
  font-size: 9.5px;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.3;
}

/* type dot */
.tpc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  justify-self: center;
}
.dot-ts {
  background: #47577c;
}
.dot-pps {
  background: #9d9d9c;
}
.dot-pei {
  background: #9d9d9c;
  opacity: 0.7;
}
.dot-pk {
  background: #bf3425;
  opacity: 0.6;
}
.dot-peek {
  background: #bf3425;
}
.dot-pekk {
  background: #bf3425;
  opacity: 0.8;
}

/* Bar zone — scale 0–200 €/kg */
.tpc-bar-wrap {
  position: relative;
  height: 26px;
  display: flex;
  align-items: center;
}
.tpc-bar-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
}
.tpc-bar-range {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition:
    width 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.br-ts {
  background: #47577c;
}
.br-pps {
  background: #9d9d9c;
}
.br-pei {
  background: rgba(157, 157, 156, 0.7);
}
.br-paek {
  background: rgba(191, 52, 37, 0.55);
}
.br-peek {
  background: #bf3425;
}
.br-pekk {
  background: rgba(191, 52, 37, 0.8);
}

/* Value label — fourth grid column, inline */
.tpc-bar-val {
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  color: #64748b;
  text-align: right;
  padding-right: 4px;
}

/* ── Separator ── */
.tpc-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  padding-left: 222px;
}
.tpc-sep-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.tpc-sep-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  white-space: nowrap;
}

/* ── Premium summary ── */
.tpc-premium-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fdf1f0;
  border-radius: 8px;
  border: 1.5px solid #f0b8b2;
  margin-bottom: 20px;
}
.tpc-prem-icon {
  font-size: 22px;
}
.tpc-prem-text {
  font-size: 12px;
  color: #334155;
  line-height: 1.5;
  flex: 1;
}
.tpc-prem-text strong {
  color: #bf3425;
}
.tpc-prem-range {
  font-size: 22px;
  font-weight: 800;
  color: #bf3425;
  white-space: nowrap;
}
.tpc-prem-range-sub {
  font-size: 10px;
  color: #9d9d9c;
  text-align: center;
  margin-top: 2px;
}

/* ── Offset factors ── */
.tpc-offsets {
  background: #eef1f7;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #c5cde0;
}
.tpc-offsets-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #47577c;
  margin-bottom: 12px;
}
.tpc-offset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tpc-offset-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  cursor: default;
}
.tpc-offset-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 87, 124, 0.09);
}
.tpc-offset-icon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}
.tpc-offset-text {
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
}

/* ── Scroll-reveal ── */
.tpc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.tpc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .tpc-row-card {
    grid-template-columns: 120px 14px 1fr 72px;
  }
  .tpc-scale-row {
    grid-template-columns: 120px 14px 1fr 72px;
  }
  .tpc-separator {
    padding-left: 140px;
  }
  .tpc-offset-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* INFOGRAPHIC 13 */
.qls-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.qls-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.qls-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Readiness legend ── */
.qls-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.qls-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}
.qls-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* ── Tier rows ── */
.qls-tier {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 12px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
}
.qls-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.qls-tier.t-sec:hover {
  border-color: #47577c;
}
.qls-tier.t-semi:hover {
  border-color: #9d9d9c;
}
.qls-tier.t-prim:hover {
  border-color: #bf3425;
}
.qls-tier.t-space:hover {
  border-color: #47577c;
}
.qls-tier.t-def:hover {
  border-color: #9d9d9c;
}

/* header strip */
.qls-tier-header {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
}
.t-sec .qls-tier-header {
  background: #eef1f7;
  border-bottom: 1.5px solid #c5cde0;
}
.t-semi .qls-tier-header {
  background: #f5f5f5;
  border-bottom: 1.5px solid #d8d8d8;
}
.t-prim .qls-tier-header {
  background: #fdf1f0;
  border-bottom: 1.5px solid #f0b8b2;
}
.t-space .qls-tier-header {
  background: #eef1f7;
  border-bottom: 1.5px solid #c5cde0;
}
.t-def .qls-tier-header {
  background: #f5f5f5;
  border-bottom: 1.5px solid #d8d8d8;
}

.qls-tier-label-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.qls-tier-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.qls-tier-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #1e293b;
}
.qls-tier-tagline {
  font-size: 10px;
  color: #94a3b8;
  font-style: italic;
  margin-top: 1px;
}

/* examples */
.qls-examples {
  font-size: 11px;
  color: #475569;
  line-height: 1.5;
}

/* status badge */
.qls-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.qls-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.s-qualified {
  background: #47577c;
  color: #fff;
}
.s-inprog {
  background: #9d9d9c;
  color: #fff;
}
.s-demo {
  background: #fdf1f0;
  color: #bf3425;
  border: 1.5px solid #f0b8b2;
}
.s-specdriven {
  background: #eef1f7;
  color: #47577c;
  border: 1.5px solid #c5cde0;
}

/* body */
.qls-tier-body {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Programme chips */
.qls-programmes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.qls-prog-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.qls-tier:hover .qls-prog-chip {
  border-color: #c5cde0;
  color: #1e293b;
}

/* TRL meter */
.qls-trl-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qls-trl-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 28px;
}
.qls-trl-pips {
  display: flex;
  gap: 3px;
}
.qls-trl-pip {
  width: 16px;
  height: 8px;
  border-radius: 3px;
  background: #f1f5f9;
  transition: background 0.3s ease;
}
.qls-trl-pip.filled.c-ts {
  background: #47577c;
}
.qls-trl-pip.filled.c-gray {
  background: #9d9d9c;
}
.qls-trl-pip.filled.c-red {
  background: #bf3425;
}
.qls-trl-val {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  margin-left: 4px;
}

/* ── Maturity timeline ── */
.qls-timeline {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}
.qls-tl-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}
.qls-tl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.qls-tl-name {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  min-width: 180px;
  flex-shrink: 0;
}
.qls-tl-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}
.qls-tl-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.tf-sec {
  background: #47577c;
}
.tf-semi {
  background: #9d9d9c;
}
.tf-prim {
  background: #bf3425;
}
.tf-space {
  background: #47577c;
  opacity: 0.7;
}
.tf-def {
  background: #9d9d9c;
  opacity: 0.7;
}

.qls-tl-badge {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ── Scroll-reveal ── */
.qls-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.qls-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  .qls-tier-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .qls-status {
    align-items: flex-start;
  }
  .qls-tl-name {
    min-width: 120px;
  }
}
/* INFOGRAPHIC 14 */
.fpc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.fpc-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.fpc-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Step card ── */
.fpc-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 0;
  position: relative;
}

/* Left column: number + connector */
.fpc-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}
.fpc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.22s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.fpc-step:hover .fpc-step-num {
  transform: scale(1.12);
}

.n1 {
  background: #47577c;
}
.n2 {
  background: #6b7a99;
}
.n3 {
  background: #bf3425;
}
.n4 {
  background: #d94e3e;
}
.n5 {
  background: #9d9d9c;
}
.n6 {
  background: #1e293b;
}

.fpc-connector {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, #c5cde0, #e2e8f0);
  margin: 4px 0;
}
.fpc-step:last-child .fpc-connector {
  display: none;
}

/* Right column: card */
.fpc-card {
  flex: 1;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 14px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  cursor: default;
}
.fpc-step:hover .fpc-card {
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.s1:hover .fpc-card {
  border-color: #47577c;
}
.s2:hover .fpc-card {
  border-color: #6b7a99;
}
.s3:hover .fpc-card {
  border-color: #bf3425;
}
.s4:hover .fpc-card {
  border-color: #d94e3e;
}
.s5:hover .fpc-card {
  border-color: #9d9d9c;
}
.s6:hover .fpc-card {
  border-color: #1e293b;
}

.fpc-card-header {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s1 .fpc-card-header {
  background: #47577c;
}
.s2 .fpc-card-header {
  background: #6b7a99;
}
.s3 .fpc-card-header {
  background: #bf3425;
}
.s4 .fpc-card-header {
  background: #d94e3e;
}
.s5 .fpc-card-header {
  background: #9d9d9c;
}
.s6 .fpc-card-header {
  background: #1e293b;
}

.fpc-card-icon {
  font-size: 18px;
  line-height: 1;
}
.fpc-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.fpc-card-body {
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 18px;
}

.fpc-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: #475569;
  line-height: 1.45;
}
.fpc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.s1 .fpc-dot {
  background: #47577c;
}
.s2 .fpc-dot {
  background: #6b7a99;
}
.s3 .fpc-dot {
  background: #bf3425;
}
.s4 .fpc-dot {
  background: #d94e3e;
}
.s5 .fpc-dot {
  background: #9d9d9c;
}
.s6 .fpc-dot {
  background: #1e293b;
}

/* highlight note (italic) */
.fpc-item.note {
  grid-column: 1 / -1;
  font-style: italic;
  color: #94a3b8;
  font-size: 10.5px;
}
.fpc-item.note .fpc-dot {
  background: #cbd5e1;
}

/* ── Summary bar ── */
.fpc-summary {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.fpc-sum-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
  font-weight: 500;
  padding: 4px 10px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.fpc-sum-item:hover {
  border-color: #47577c;
  box-shadow: 0 2px 8px rgba(71, 87, 124, 0.08);
}
.fpc-sum-icon {
  font-size: 14px;
}

/* ── Scroll-reveal ── */
.fpc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fpc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .fpc-card-body {
    grid-template-columns: 1fr;
  }
  .fpc-item.note {
    grid-column: 1;
  }
}
/* INFOGRAPHIC 15 */
.hae-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hae-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.hae-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 26px;
}

/* ── Two era columns ── */
.hae-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.hae-era {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
}
.hae-era.before:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  border-color: #9d9d9c;
}
.hae-era.now:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  border-color: #47577c;
}

.hae-era-header {
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.before .hae-era-header {
  background: #9d9d9c;
}
.now .hae-era-header {
  background: #47577c;
}

.hae-era-icon {
  font-size: 20px;
  line-height: 1;
}
.hae-era-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.hae-era-range {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  white-space: nowrap;
}

.hae-era-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Spec row ── */
.hae-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #f1f5f9;
  transition: background 0.15s;
  border-radius: 4px;
}
.hae-spec-row:last-child {
  border-bottom: none;
}
.hae-spec-row:hover {
  background: #f8fafc;
}

.hae-spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #94a3b8;
  min-width: 110px;
  flex-shrink: 0;
  padding-top: 1px;
}
.hae-spec-val {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  flex: 1;
}
.hae-spec-val.highlight-bad {
  color: #bf3425;
}
.hae-spec-val.highlight-good {
  color: #47577c;
}

/* ── Delta arrows ── */
.hae-vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  gap: 8px;
  flex-shrink: 0;
}
.hae-vs-badge {
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Comparison metric bars ── */
.hae-compare {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}
.hae-compare-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 14px;
}
.hae-cmp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hae-cmp-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  min-width: 120px;
  flex-shrink: 0;
}
.hae-cmp-tracks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hae-cmp-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.hae-cmp-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf-before {
  background: #9d9d9c;
}
.cf-now {
  background: #47577c;
}
.hae-cmp-vals {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 90px;
}
.hae-cmp-val {
  font-size: 10px;
  font-weight: 700;
}
.hae-cmp-val.v-before {
  color: #9d9d9c;
}
.hae-cmp-val.v-now {
  color: #47577c;
}

/* bar header labels */
.hae-cmp-header {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  padding-left: 130px;
}
.hae-cmp-hcell {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  color: #fff;
  margin-right: 10px;
}
.hae-cmp-hcell.hb {
  background: #9d9d9c;
}
.hae-cmp-hcell.hn {
  background: #47577c;
}

/* ── Closing statement ── */
.hae-closing {
  border-radius: 10px;
  padding: 16px 20px;
  background: #eef1f7;
  border-left: 4px solid #47577c;
  transition: box-shadow 0.2s ease;
}
.hae-closing:hover {
  box-shadow: 0 4px 14px rgba(71, 87, 124, 0.12);
}
.hae-closing-main {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 8px;
}
.hae-closing-main strong {
  color: #47577c;
}
.hae-closing-sub {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  font-style: italic;
}
.hae-closing-sub strong {
  color: #bf3425;
  font-style: normal;
}

/* ── Scroll-reveal ── */
.hae-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.hae-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hae-columns {
    grid-template-columns: 1fr;
  }
  .hae-cmp-header {
    padding-left: 100px;
  }
  .hae-cmp-label {
    min-width: 94px;
  }
}
/* INFOGRAPHIC 16 */
.adt-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.adt-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.adt-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 22px;
}

.adt-chart-wrap {
  position: relative;
  width: 100%;
  height: 400px;
}

/* ── "We are here" annotation ── */
.adt-here-line {
  position: absolute;
  top: 0;
  bottom: 40px;
  left: calc(27%); /* 2026 position */
  width: 1.5px;
  background: #bf3425;
  opacity: 0.55;
  pointer-events: none;
  z-index: 3;
}
.adt-here-label {
  position: absolute;
  bottom: 44px;
  left: calc(27% + 5px);
  font-size: 9.5px;
  font-weight: 700;
  color: #bf3425;
  white-space: nowrap;
  z-index: 3;
  background: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid #f0b8b2;
}

/* ── Legend ── */
.adt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.adt-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  cursor: default;
}
.adt-legend-item:hover {
  border-color: #47577c;
  box-shadow: 0 2px 6px rgba(71, 87, 124, 0.08);
}
.adt-legend-swatch {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Scroll-reveal ── */
.adt-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.adt-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* INFOGRAPHIC 17 */
.ds25-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ds25-title {
  font-size: 18px;
  font-weight: 700;
  color: #47577c;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.ds25-subtitle {
  font-size: 12px;
  color: #9d9d9c;
  margin-bottom: 24px;
}

/* ── Column header row ── */
.ds25-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  border-bottom: none;
}
.ds25-hcell {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ds25-hcell.dim {
  background: #f8fafc;
  color: #64748b;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.ds25-hcell.ts {
  background: #47577c;
  color: #fff;
}
.ds25-hcell.tp {
  background: #bf3425;
  color: #fff;
}

/* ── Table body ── */
.ds25-table {
  border: 1.5px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.ds25-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid #f1f5f9;
  transition: background 0.16s ease;
  cursor: default;
}
.ds25-row:hover {
  background: #f8fafc;
}
.ds25-row:first-child {
  border-top: none;
}

.ds25-cell {
  padding: 10px 16px;
  font-size: 11.5px;
  line-height: 1.45;
  border-right: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ds25-cell:last-child {
  border-right: none;
}

.ds25-cell.dim-cell {
  font-weight: 600;
  color: #334155;
  font-size: 11.5px;
  background: #fafbfc;
}

.ds25-cell.ts-cell {
  color: #475569;
}
.ds25-cell.tp-cell {
  color: #475569;
}

/* Verdict icons */
.ds25-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}

/* Outcome chips */
.ds25-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.chip-good {
  background: #eef1f7;
  color: #47577c;
  border: 1px solid #c5cde0;
}
.chip-bad {
  background: #fdf1f0;
  color: #bf3425;
  border: 1px solid #f0b8b2;
}
.chip-neut {
  background: #f5f5f5;
  color: #9d9d9c;
  border: 1px solid #d8d8d8;
}
.chip-tp {
  background: #bf3425;
  color: #fff;
}
.chip-ts {
  background: #47577c;
  color: #fff;
}

/* ── Score strip ── */
.ds25-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.ds25-score-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ds25-score-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.ds25-score-title {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ds25-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ds25-score-name {
  font-size: 10.5px;
  color: #64748b;
  min-width: 90px;
}
.ds25-score-track {
  flex: 1;
  height: 7px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.ds25-score-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.sf-ts {
  background: #47577c;
}
.sf-tp {
  background: #bf3425;
}
.ds25-score-val {
  font-size: 10px;
  font-weight: 700;
  min-width: 30px;
  text-align: right;
}
.sv-ts {
  color: #47577c;
}
.sv-tp {
  color: #bf3425;
}

/* ── Scroll-reveal ── */
.ds25-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.ds25-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .ds25-cell {
    padding: 8px 10px;
    font-size: 10.5px;
  }
  .ds25-scores {
    grid-template-columns: 1fr;
  }
}
