/* ============================================
   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 --> */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

.cfrpw-root {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 24px rgba(71, 87, 124, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.cfrpw-header {
  text-align: center;
  margin-bottom: 36px;
}

.cfrpw-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 8px;
}

.cfrpw-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: #47577c;
  line-height: 1.2;
  margin: 0 0 6px;
}

.cfrpw-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

/* Wave cards */
.cfrpw-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cfrpw-wave-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    box-shadow 0.3s ease;
}

.cfrpw-wave-card.cfrpw-visible {
  transform: translateY(0);
  opacity: 1;
}

.cfrpw-wave-card:hover {
  box-shadow: 0 12px 36px rgba(71, 87, 124, 0.18);
  transform: translateY(-3px);
}

/* Wave 1 - Navy */
.cfrpw-wave-1 {
  background: linear-gradient(135deg, #47577c 0%, #3a4766 100%);
}
/* Wave 2 - Slate/Gray */
.cfrpw-wave-2 {
  background: linear-gradient(135deg, #5a6a7e 0%, #47577c 100%);
}
/* Wave 3 - Red/Crimson */
.cfrpw-wave-3 {
  background: linear-gradient(135deg, #bf3425 0%, #9c2318 100%);
}

.cfrpw-card-inner {
  padding: 28px 28px 36px;
  position: relative;
  z-index: 2;
}

.cfrpw-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.cfrpw-wave-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.cfrpw-wave-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  margin-bottom: 1px;
}

.cfrpw-wave-num {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
}

.cfrpw-card-heading {
  flex: 1;
}

.cfrpw-wave-era {
  font-family: "DM Serif Display", serif;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.25;
}

.cfrpw-wave-period {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2px 10px;
}

/* Rows */
.cfrpw-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cfrpw-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease;
}

.cfrpw-row:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cfrpw-row-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  min-width: 52px;
  padding-top: 2px;
  flex-shrink: 0;
}

.cfrpw-row-content {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.cfrpw-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 12px;
  margin: 2px 2px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

/* Animated wave SVG at bottom of each card */
.cfrpw-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 1;
  opacity: 0.15;
}

.cfrpw-wave-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cfrpw-visible .cfrpw-wave-path {
  stroke-dashoffset: 0;
}

/* Transition connector */
.cfrpw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.5s ease 0.3s,
    transform 0.5s ease 0.3s;
}

.cfrpw-connector.cfrpw-visible {
  opacity: 1;
  transform: scale(1);
}

.cfrpw-connector-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fc;
  border: 1.5px solid #e2e8f0;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #47577c;
}

.cfrpw-connector-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #bf3425;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Stagger delays */
.cfrpw-wave-card:nth-child(1) {
  transition-delay: 0s;
}
.cfrpw-wave-card:nth-child(3) {
  transition-delay: 0.15s;
}
.cfrpw-wave-card:nth-child(5) {
  transition-delay: 0.3s;
}

@media (max-width: 600px) {
  .cfrpw-root {
    padding: 20px 14px 24px;
  }
  .cfrpw-card-inner {
    padding: 20px 16px 30px;
  }
  .cfrpw-row-label {
    min-width: 44px;
  }
}
.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. --> */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

.tpc-root {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 24px rgba(71, 87, 124, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

/* ── Header ── */
.tpc-header {
  text-align: center;
  margin-bottom: 32px;
}
.tpc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 8px;
}
.tpc-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #47577c;
  line-height: 1.2;
  margin: 0 0 10px;
}

/* ── Column legend ── */
.tpc-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tpc-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.tpc-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tpc-dot-ts {
  background: #47577c;
}
.tpc-dot-tp {
  background: #bf3425;
}

/* ── Phase sections ── */
.tpc-phases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tpc-phase {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.tpc-phase.tpc-visible {
  opacity: 1;
  transform: translateY(0);
}
.tpc-phase:nth-child(1) {
  transition-delay: 0s;
}
.tpc-phase:nth-child(2) {
  transition-delay: 0.12s;
}
.tpc-phase:nth-child(3) {
  transition-delay: 0.24s;
}

.tpc-phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.tpc-phase-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #47577c;
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tpc-phase-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #47577c;
}
.tpc-phase-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e2e8f0, transparent);
}

/* ── Comparison grid ── */
.tpc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .tpc-compare {
    grid-template-columns: 1fr;
  }
}

.tpc-card {
  border-radius: 12px;
  padding: 16px 18px 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.tpc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Thermoset – light navy tinted */
.tpc-card-ts {
  background: #f4f6fb;
  border: 1.5px solid #d3d9e8;
}
/* Thermoplastic – light red tinted */
.tpc-card-tp {
  background: #fdf4f3;
  border: 1.5px solid #f0cbc7;
}

.tpc-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tpc-card-ts .tpc-card-label {
  color: #47577c;
}
.tpc-card-tp .tpc-card-label {
  color: #bf3425;
}

.tpc-card-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tpc-card-ts .tpc-card-label-dot {
  background: #47577c;
}
.tpc-card-tp .tpc-card-label-dot {
  background: #bf3425;
}

.tpc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tpc-bullets li {
  font-size: 13px;
  color: #374151;
  line-height: 1.45;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.tpc-bullets li::before {
  content: "·";
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.tpc-card-ts .tpc-bullets li::before {
  color: #47577c;
}
.tpc-card-tp .tpc-bullets li::before {
  color: #bf3425;
}

/* Outcome badge */
.tpc-outcome {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 0.2s ease;
}
.tpc-card:hover .tpc-outcome {
  transform: scale(1.02);
}
.tpc-card-ts .tpc-outcome {
  background: rgba(71, 87, 124, 0.1);
  color: #3a4766;
  border: 1px solid rgba(71, 87, 124, 0.2);
}
.tpc-card-tp .tpc-outcome {
  background: rgba(191, 52, 37, 0.1);
  color: #9c2318;
  border: 1px solid rgba(191, 52, 37, 0.2);
}
.tpc-outcome-icon {
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Footer ── */
.tpc-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #f4f6fb 0%, #fdf4f3 100%);
  border-radius: 12px;
  border: 1px solid #e8eaf0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease 0.4s,
    transform 0.5s ease 0.4s;
}
.tpc-footer.tpc-visible {
  opacity: 1;
  transform: translateY(0);
}
.tpc-footer-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.tpc-footer-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}
.tpc-footer-text strong {
  color: #bf3425;
}
.tpc-footnote {
  margin-top: 10px;
  font-size: 11px;
  color: #9d9d9c;
  text-align: right;
  font-style: italic;
}
.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 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

.tmsm-root {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 24px rgba(71, 87, 124, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.tmsm-header {
  text-align: center;
  margin-bottom: 24px;
}
.tmsm-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 7px;
}
.tmsm-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 3vw, 27px);
  color: #47577c;
  margin: 0 0 6px;
  line-height: 1.2;
}
.tmsm-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

/* ── Map container ── */
.tmsm-map-wrap {
  position: relative;
  display: flex;
  gap: 0;
}

/* Y-axis label */
.tmsm-y-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #47577c;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 10px;
  user-select: none;
}

.tmsm-map-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* The scatter map */
.tmsm-scatter {
  position: relative;
  width: 100%;
  padding-bottom: 60%; /* aspect ratio */
  background: #f9fafc;
  border-radius: 12px;
  border: 1px solid #e8edf4;
  overflow: visible;
}

/* Grid lines */
.tmsm-grid-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Zone overlays */
.tmsm-zone {
  position: absolute;
  border-radius: 10px;
  pointer-events: none;
}
.tmsm-zone-aero {
  background: rgba(71, 87, 124, 0.07);
  border: 1.5px dashed rgba(71, 87, 124, 0.2);
}
.tmsm-zone-auto {
  background: rgba(191, 52, 37, 0.06);
  border: 1.5px dashed rgba(191, 52, 37, 0.18);
}

.tmsm-zone-label {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Material nodes */
.tmsm-node {
  position: absolute;
  transform: translate(-50%, 50%);
  cursor: pointer;
  z-index: 10;
}

.tmsm-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  letter-spacing: 0.02em;
  user-select: none;
  position: relative;
}

.tmsm-node:hover .tmsm-bubble,
.tmsm-node.tmsm-active .tmsm-bubble {
  transform: scale(1.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* Pulse ring */
.tmsm-bubble::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.tmsm-node:hover .tmsm-bubble::after,
.tmsm-node.tmsm-active .tmsm-bubble::after {
  opacity: 0.4;
  transform: scale(1.1);
}

/* X-axis */
.tmsm-x-axis {
  display: flex;
  align-items: center;
  padding: 8px 0 0 0;
  gap: 0;
}
.tmsm-x-low {
  font-size: 11px;
  color: #9d9d9c;
  font-weight: 600;
  white-space: nowrap;
}
.tmsm-x-bar {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #9d9d9c, #47577c);
  border-radius: 2px;
  margin: 0 10px;
  position: relative;
}
.tmsm-x-bar::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -4px;
  border-left: 8px solid #47577c;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tmsm-x-high {
  font-size: 11px;
  color: #47577c;
  font-weight: 600;
  white-space: nowrap;
}
.tmsm-x-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #47577c;
  margin-top: 4px;
}

/* ── Detail card ── */
.tmsm-detail {
  margin-top: 20px;
  border-radius: 12px;
  padding: 18px 20px;
  background: #f4f6fb;
  border: 1.5px solid #d3d9e8;
  min-height: 90px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(8px);
}
.tmsm-detail.tmsm-detail-show {
  opacity: 1;
  transform: translateY(0);
}
.tmsm-detail-prompt {
  color: #9d9d9c;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  padding: 12px 0;
}
.tmsm-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tmsm-detail-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.tmsm-detail-name {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: #1e293b;
  margin: 0 0 2px;
}
.tmsm-detail-domain {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.tmsm-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.tmsm-spec-chip {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
}
.tmsm-spec-chip-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 2px;
}
.tmsm-spec-chip-value {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.tmsm-detail-apps {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}
.tmsm-detail-apps strong {
  font-weight: 600;
  color: #47577c;
}

/* ── Legend ── */
.tmsm-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.tmsm-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #374151;
  font-weight: 500;
}
.tmsm-legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* entrance */
.tmsm-root {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.tmsm-root.tmsm-visible {
  opacity: 1;
  transform: translateY(0);
}

.tmsm-node {
  opacity: 0;
  transform: translate(-50%, 50%) scale(0.3);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tmsm-visible .tmsm-node {
  opacity: 1;
  transform: translate(-50%, 50%) scale(1);
}
.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 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

.cpr-root {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 32px;
  box-shadow: 0 4px 24px rgba(71, 87, 124, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

/* Header */
.cpr-header {
  text-align: center;
  margin-bottom: 28px;
}
.cpr-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 7px;
}
.cpr-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 3vw, 27px);
  color: #47577c;
  margin: 0 0 6px;
  line-height: 1.2;
}
.cpr-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

/* Source node at top */
.cpr-source {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.cpr-source-node {
  background: linear-gradient(135deg, #47577c, #2e3f5c);
  color: white;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(71, 87, 124, 0.3);
}

/* Fork SVG */
.cpr-fork-svg {
  display: block;
  width: 100%;
  height: 40px;
  overflow: visible;
}

/* Two-track layout */
.cpr-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
@media (max-width: 600px) {
  .cpr-tracks {
    grid-template-columns: 1fr;
  }
  .cpr-fork-svg {
    display: none;
  }
}

/* Track */
.cpr-track {
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.cpr-track.cpr-visible {
  opacity: 1;
  transform: translateY(0);
}
.cpr-track-cont {
  transition-delay: 0s;
}
.cpr-track-disc {
  transition-delay: 0.12s;
}

.cpr-track-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 12px;
  border-radius: 14px 14px 0 0;
}
.cpr-track-cont .cpr-track-header {
  background: #47577c;
}
.cpr-track-disc .cpr-track-header {
  background: #bf3425;
}

.cpr-track-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cpr-track-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  line-height: 1.2;
}
.cpr-track-count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  padding: 2px 9px;
}

/* Track body */
.cpr-track-body {
  background: #f9fafc;
  border: 1px solid #e8edf4;
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 4px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Rail line */
.cpr-rail {
  position: relative;
  padding-left: 22px;
}
.cpr-rail::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
}
.cpr-track-cont .cpr-rail::before {
  background: linear-gradient(to bottom, #47577c44, #47577c22);
}
.cpr-track-disc .cpr-rail::before {
  background: linear-gradient(to bottom, #bf342544, #bf342522);
}

/* Process node */
.cpr-process {
  position: relative;
  padding: 10px 0 4px 14px;
  cursor: default;
}

/* dot on rail */
.cpr-process::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  transition: transform 0.2s ease;
}
.cpr-track-cont .cpr-process::before {
  background: #47577c;
}
.cpr-track-disc .cpr-process::before {
  background: #bf3425;
}
.cpr-process:hover::before {
  transform: scale(1.4);
}

.cpr-process-card {
  background: white;
  border-radius: 10px;
  padding: 11px 13px 10px;
  border: 1.5px solid #e8edf4;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}
.cpr-process:hover .cpr-process-card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}
.cpr-track-cont .cpr-process:hover .cpr-process-card {
  border-color: #c5ccdc;
}
.cpr-track-disc .cpr-process:hover .cpr-process-card {
  border-color: #f0cbc7;
}

.cpr-process-name {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cpr-track-cont .cpr-process-name {
  color: #2e3f5c;
}
.cpr-track-disc .cpr-process-name {
  color: #9c2318;
}

.cpr-process-variant {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.6;
  background: #f1f5f9;
  border-radius: 4px;
  padding: 1px 6px;
  color: #475569;
}

.cpr-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.cpr-output-tag {
  font-size: 11.5px;
  color: #374151;
  background: #f1f5f9;
  border-radius: 5px;
  padding: 2px 8px;
  border: 1px solid #e2e8f0;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}
.cpr-process:hover .cpr-output-tag {
  background: #eef1f8;
}
.cpr-track-disc .cpr-process:hover .cpr-output-tag {
  background: #fdf4f3;
}

.cpr-example {
  font-size: 11px;
  color: #9d9d9c;
  font-style: italic;
  line-height: 1.4;
  padding-top: 4px;
  border-top: 1px dashed #e8edf4;
  margin-top: 2px;
}
.cpr-example em {
  font-style: normal;
  font-weight: 600;
  color: #64748b;
}

/* Stagger animation for cards */
.cpr-process {
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.cpr-track-disc .cpr-process {
  transform: translateX(10px);
}
.cpr-visible .cpr-process {
  opacity: 1;
  transform: translateX(0);
}
.cpr-visible .cpr-process:nth-child(1) {
  transition-delay: 0.05s;
}
.cpr-visible .cpr-process:nth-child(2) {
  transition-delay: 0.13s;
}
.cpr-visible .cpr-process:nth-child(3) {
  transition-delay: 0.21s;
}
.cpr-visible .cpr-process:nth-child(4) {
  transition-delay: 0.29s;
}
.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 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

.mffd-root {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 32px;
  box-shadow: 0 4px 24px rgba(71, 87, 124, 0.1);
  max-width: 860px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.mffd-root.mffd-visible {
  opacity: 1;
  transform: translateY(0);
}

.mffd-header {
  text-align: center;
  margin-bottom: 28px;
}
.mffd-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 7px;
}
.mffd-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #47577c;
  margin: 0 0 6px;
  line-height: 1.2;
}
.mffd-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

.mffd-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 620px) {
  .mffd-tracks {
    grid-template-columns: 1fr;
  }
}

.mffd-track {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mffd-track.mffd-anim {
  opacity: 1;
  transform: translateY(0);
}

.mffd-track-header {
  border-radius: 12px 12px 0 0;
  padding: 14px 16px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mffd-upper .mffd-track-header {
  background: #47577c;
}
.mffd-lower .mffd-track-header {
  background: #bf3425;
}

.mffd-track-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.mffd-track-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: white;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 2px;
}
.mffd-track-partner {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.mffd-steps {
  background: #f9fafc;
  border: 1px solid #e8edf4;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 6px 10px 10px;
  flex: 1;
}

.mffd-rail {
  position: relative;
  padding-left: 24px;
}
.mffd-rail::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 2px;
}
.mffd-upper .mffd-rail::before {
  background: linear-gradient(to bottom, #47577c55, #47577c22);
}
.mffd-lower .mffd-rail::before {
  background: linear-gradient(to bottom, #bf342555, #bf342522);
}

.mffd-step {
  position: relative;
  padding: 10px 0 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}
.mffd-lower .mffd-step {
  transform: translateX(8px);
}
.mffd-anim .mffd-step {
  opacity: 1;
  transform: translateX(0);
}
.mffd-anim .mffd-step:nth-child(1) {
  transition-delay: 0.05s;
}
.mffd-anim .mffd-step:nth-child(2) {
  transition-delay: 0.15s;
}
.mffd-anim .mffd-step:nth-child(3) {
  transition-delay: 0.25s;
}

.mffd-step::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  transition: transform 0.2s;
  z-index: 2;
}
.mffd-upper .mffd-step::before {
  background: #47577c;
}
.mffd-lower .mffd-step::before {
  background: #bf3425;
}
.mffd-step:hover::before {
  transform: scale(1.5);
}

.mffd-step-card {
  background: white;
  border-radius: 10px;
  padding: 11px 13px 10px;
  border: 1.5px solid #e8edf4;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
  cursor: default;
}
.mffd-step:hover .mffd-step-card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  transform: translateX(3px);
}
.mffd-upper .mffd-step:hover .mffd-step-card {
  border-color: #c5ccdc;
}
.mffd-lower .mffd-step:hover .mffd-step-card {
  border-color: #f0cbc7;
}

.mffd-step-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.mffd-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.mffd-upper .mffd-step-num {
  background: #47577c;
}
.mffd-lower .mffd-step-num {
  background: #bf3425;
}

.mffd-step-name {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}
.mffd-upper .mffd-step-name {
  color: #2e3f5c;
}
.mffd-lower .mffd-step-name {
  color: #7a1e12;
}

.mffd-step-details {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 6px;
}
.mffd-step-details em {
  font-style: normal;
  color: #1e293b;
  font-weight: 600;
}

.mffd-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mffd-metric {
  display: flex;
  flex-direction: column;
  background: #f1f5f9;
  border-radius: 6px;
  padding: 4px 8px;
  border: 1px solid #e2e8f0;
}
.mffd-metric-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 1px;
}
.mffd-metric-value {
  font-size: 12px;
  font-weight: 700;
}
.mffd-upper .mffd-metric-value {
  color: #2e3f5c;
}
.mffd-lower .mffd-metric-value {
  color: #7a1e12;
}

/* Funnel join */
.mffd-join-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2px;
}
.mffd-join-svg {
  width: 100%;
  height: 52px;
  display: block;
  overflow: visible;
}

.mffd-join-card {
  background: linear-gradient(135deg, #2e3f5c 0%, #47577c 48%, #78291d 100%);
  border-radius: 14px;
  padding: 20px 24px;
  color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 0.55s ease 0.3s,
    transform 0.55s ease 0.3s;
}
.mffd-join-card.mffd-anim {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mffd-join-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.mffd-join-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.mffd-join-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mffd-join-title {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  color: white;
  margin: 0;
}
.mffd-join-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.mffd-join-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 480px) {
  .mffd-join-specs {
    grid-template-columns: 1fr;
  }
}

.mffd-join-spec {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s;
}
.mffd-join-spec:hover {
  background: rgba(255, 255, 255, 0.18);
}
.mffd-join-spec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.mffd-join-spec-value {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}
.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 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

.cmf-root {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 32px;
  box-shadow: 0 4px 24px rgba(71, 87, 124, 0.1);
  max-width: 860px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.cmf-root.cmf-visible {
  opacity: 1;
  transform: translateY(0);
}

.cmf-header {
  text-align: center;
  margin-bottom: 28px;
}
.cmf-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d9d9c;
  margin-bottom: 7px;
}
.cmf-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 3vw, 27px);
  color: #47577c;
  margin: 0 0 6px;
  line-height: 1.2;
}
.cmf-subtitle {
  font-size: 13px;
  color: #9d9d9c;
  margin: 0;
}

/* ── Diagram canvas ── */
.cmf-canvas {
  position: relative;
  width: 100%;
}

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

/* ── Grid layout for nodes ── */
.cmf-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  grid-template-rows: auto;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* Utility */
.cmf-col-left {
  grid-column: 1;
}
.cmf-col-mid {
  grid-column: 2;
}
.cmf-col-right {
  grid-column: 3;
}
.cmf-col-span {
  grid-column: 1 / -1;
}

/* Vertical arrow spacer in center */
.cmf-v-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #c8d0dc;
  line-height: 1;
  padding: 2px 0;
}
.cmf-v-arrow-navy {
  color: #47577c;
  opacity: 0.5;
}
.cmf-v-arrow-red {
  color: #bf3425;
  opacity: 0.5;
}

/* ── Node cards ── */
.cmf-node {
  border-radius: 10px;
  padding: 11px 14px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
  margin: 4px;
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.22s;
}
.cmf-node.cmf-anim {
  opacity: 1;
  transform: scale(1);
}
.cmf-node:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Flavors */
.cmf-node-input {
  background: linear-gradient(135deg, #47577c, #3a4766);
  color: white;
  text-align: center;
}
.cmf-node-process {
  background: #f4f6fb;
  border: 1.5px solid #d3d9e8;
  color: #2e3f5c;
}
.cmf-node-output-primary {
  background: linear-gradient(135deg, #2e3f5c, #47577c);
  color: white;
}
.cmf-node-recycle {
  background: #fdf4f3;
  border: 1.5px solid #f0cbc7;
  color: #7a1e12;
}
.cmf-node-output-secondary {
  background: linear-gradient(135deg, #bf3425, #9c2318);
  color: white;
}
.cmf-node-pellets {
  background: #f9fafc;
  border: 1.5px dashed #c5ccdc;
  color: #374151;
}

.cmf-node-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}
.cmf-node-sub {
  font-size: 11px;
  opacity: 0.72;
  line-height: 1.4;
}
.cmf-node-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 5px;
}
.cmf-tag {
  font-size: 10.5px;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 7px;
}
.cmf-tag-light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.cmf-tag-navy {
  background: rgba(71, 87, 124, 0.1);
  color: #2e3f5c;
  border: 1px solid rgba(71, 87, 124, 0.18);
}
.cmf-tag-red {
  background: rgba(191, 52, 37, 0.1);
  color: #9c2318;
  border: 1px solid rgba(191, 52, 37, 0.18);
}

/* Horizontal arrow connector between columns */
.cmf-h-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  margin: 4px 0;
}
.cmf-h-connector svg {
  width: 100%;
  height: 20px;
  overflow: visible;
}

/* Savings badge */
.cmf-savings {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

/* Section dividers */
.cmf-section-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 6px;
}
.cmf-section-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 3px 10px;
  border-radius: 20px;
}
.cmf-section-label-navy {
  background: #eef1f8;
  color: #47577c;
}
.cmf-section-label-red {
  background: #fdf0ef;
  color: #bf3425;
}
.cmf-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e2e8f0, transparent);
}

/* Row spacers */
.cmf-spacer {
  height: 8px;
  grid-column: 1 / -1;
}

/* Merge row - two inputs converging */
.cmf-merge-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 4px;
}
.cmf-merge-node {
  flex: 1;
}
.cmf-merge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  font-size: 20px;
  color: #9d9d9c;
  flex-shrink: 0;
  width: 28px;
}

/* Loop badge */
.cmf-loop-badge {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin: 6px 4px;
}
.cmf-loop-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9fafc;
  border: 1.5px dashed #d3d9e8;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: #47577c;
}
.cmf-loop-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #47577c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Full-width bottom convergence */
.cmf-bottom {
  grid-column: 1 / -1;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cmf-bottom-arrow {
  font-size: 20px;
  color: #bf3425;
  opacity: 0.6;
  line-height: 1.2;
  padding: 4px 0;
}
.cmf-bottom-node {
  width: 100%;
  max-width: 420px;
}

@media (max-width: 580px) {
  .cmf-grid {
    grid-template-columns: 1fr 40px 1fr;
  }
  .cmf-node {
    padding: 9px 10px;
    margin: 3px;
  }
  .cmf-node-name {
    font-size: 12px;
  }
}
.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;
  }
}
