/* ============================================
   THERMOPLASTIC COMPOSITES BLOG - STYLES
   Brand Colors: Red #bf3425, Blue #47577c, Gray #9d9d9c
   Typography: Archivo (headers), Assistant (body)
   ============================================ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  color: #334155;
  line-height: 1.8;
  background-color: #fff;
}

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

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

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

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

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

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

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

/* Blog Meta */
.blog-meta {
  display: flex;
  align-items: center;
  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;
}

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

.image-caption {
  font-size: 0.875rem;
  color: #9d9d9c;
  text-align: center;
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

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

.intro-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(191, 52, 37, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Key Question Box */
.key-question {
  background: linear-gradient(135deg, #47577c 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
}

.key-question p {
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  font-style: italic;
  margin: 0;
}

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

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

.data-table thead {
  background-color: #47577c;
  color: white;
}

.data-table th {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
}

.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.data-table tbody tr:hover {
  background-color: #f8fafc;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

/* ============================================
   INNOVATION META
   ============================================ */
.innovation-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.innovation-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #bf3425 0%, #9d2a1e 100%);
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.innovation-partners {
  font-size: 0.875rem;
  color: #64748b;
  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%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.split-content {
  padding: 0;
}

.split-content h3,
.split-content h4 {
  margin-top: 0;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #bf3425, #47577c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.process-step-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #1e293b;
}

.process-step-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: #475569;
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

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

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: "Archivo", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #bf3425;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.5rem;
  display: block;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   CONVERGENCE CARDS
   ============================================ */
.convergence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.convergence-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.convergence-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.convergence-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #bf3425, #47577c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.convergence-card h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: #1e293b;
}

.convergence-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: #475569;
}

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

.infographic-label {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  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;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: linear-gradient(135deg, #fef7f6 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(191, 52, 37, 0.2);
}

.highlight-box p {
  margin: 0;
  color: #1e293b;
}

/* ============================================
   REFERENCES
   ============================================ */
.references-list {
  font-size: 0.875rem;
  color: #475569;
}

.references-list p {
  margin-bottom: 1rem;
  padding-left: 2rem;
  text-indent: -2rem;
  word-break: break-word;
}

.references-list em {
  color: #47577c;
}

/* ============================================
   LEARN MORE SECTION
   ============================================ */
.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;
}

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

/* ============================================
   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 BREAKPOINTS
   ============================================ */

/* Tablet Large & Below (1024px) */
@media (max-width: 1024px) {
  .blog-layout {
    flex-direction: column;
    gap: 32px;
  }

  .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 {
    max-width: 100%;
  }

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

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

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

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

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

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

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

/* Tablet (768px) */
@media (max-width: 768px) {
  .blog-layout {
    padding: 24px 16px;
  }

  /* Mobile Nav Toggle */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide sidebar on mobile, show on toggle */
  .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);
  }

  .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: 40px;
  }

  .convergence-cards {
    grid-template-columns: 1fr;
  }

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

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

/* Mobile Large (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: repeat(2, 1fr);
  }

  .intro-card,
  .highlight-box,
  .key-question {
    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;
  }

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

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

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

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

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

  .author-card {
    padding: 1.25rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-section {
    padding: 1.25rem;
  }

  .innovation-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .blog-content h1 {
    font-size: 24pt;
  }

  .blog-content h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .blog-content h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .full-width-image {
    max-width: 100%;
    page-break-inside: avoid;
  }

  .data-table-container {
    overflow: visible;
  }

  .data-table {
    font-size: 10pt;
  }

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

  .intro-card,
  .highlight-box,
  .key-question {
    page-break-inside: avoid;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}

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

  .cta-button {
    border: 2px solid #ffffff;
  }

  .data-table th,
  .data-table td {
    border: 1px solid #334155;
  }
}
/* <!-- Infographic Placeholder 1 --> */
.wrp-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

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

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

/* === STAGE CARDS === */
.wrp-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.wrp-stage-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  overflow: hidden;
}

.wrp-stage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
  transition: width 0.3s ease;
}

.wrp-stage-card[data-stage="1"]::before {
  background: #47577c;
}
.wrp-stage-card[data-stage="2"]::before {
  background: #bf3425;
}
.wrp-stage-card[data-stage="3"]::before {
  background: #9d9d9c;
}

.wrp-stage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.wrp-stage-card:hover::before {
  width: 6px;
}

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

.wrp-stage-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}

.wrp-stage-card[data-stage="1"] .wrp-stage-badge {
  background: #47577c;
}
.wrp-stage-card[data-stage="2"] .wrp-stage-badge {
  background: #bf3425;
}
.wrp-stage-card[data-stage="3"] .wrp-stage-badge {
  background: #9d9d9c;
}

.wrp-stage-badge-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.wrp-stage-card:hover .wrp-stage-badge-ring {
  animation: wrp-pulse-ring 1.5s ease-in-out infinite;
}

.wrp-stage-card[data-stage="1"]:hover .wrp-stage-badge-ring {
  border-color: rgba(71, 87, 124, 0.3);
}
.wrp-stage-card[data-stage="2"]:hover .wrp-stage-badge-ring {
  border-color: rgba(191, 52, 37, 0.3);
}
.wrp-stage-card[data-stage="3"]:hover .wrp-stage-badge-ring {
  border-color: rgba(157, 157, 156, 0.3);
}

@keyframes wrp-pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

.wrp-stage-title-group {
  flex: 1;
}

.wrp-stage-name {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.wrp-stage-partner {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0 0;
}

/* === STAGE BODY === */
.wrp-stage-body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .wrp-stage-body {
    flex-direction: column;
  }
}

.wrp-stage-visual {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
  .wrp-stage-visual {
    width: 100%;
    height: 100px;
  }
}

.wrp-stage-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wrp-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.wrp-detail-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

/* === CONNECTOR ARROWS === */
.wrp-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 48px;
  position: relative;
  overflow: visible;
}

.wrp-connector-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
  position: relative;
}

.wrp-connector-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #94a3b8;
}

.wrp-connector-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  white-space: nowrap;
}

/* === ANIMATED PARTICLES ON CONNECTORS === */
.wrp-connector-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.wrp-stage-card:hover ~ .wrp-connector .wrp-connector-particle,
.wrp-connector:hover .wrp-connector-particle {
  animation: wrp-flow-down 1.2s ease-in-out infinite;
}

.wrp-connector-particle.p1 {
  background: #47577c;
  animation-delay: 0s;
}
.wrp-connector-particle.p2 {
  background: #bf3425;
  animation-delay: 0.4s;
}
.wrp-connector-particle.p3 {
  background: #9d9d9c;
  animation-delay: 0.8s;
}

@keyframes wrp-flow-down {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* === SVG ANIMATIONS === */
.wrp-svg-tape-line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 0.8s ease;
}

.wrp-stage-card:hover .wrp-svg-tape-line {
  stroke-dashoffset: 0;
}

.wrp-svg-press {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center top;
}

.wrp-stage-card:hover .wrp-svg-press {
  transform: translateY(8px);
}

.wrp-svg-ir-ray {
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.wrp-stage-card:hover .wrp-svg-ir-ray {
  animation: wrp-ir-glow 0.8s ease-in-out infinite alternate;
}

@keyframes wrp-ir-glow {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.9;
  }
}

.wrp-svg-weld-join {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.6s ease 0.3s;
}

.wrp-stage-card:hover .wrp-svg-weld-join {
  stroke-dashoffset: 0;
}

/* === RESULT BANNER === */
.wrp-result {
  margin-top: 20px;
  background: linear-gradient(135deg, #47577c 0%, #3a4868 100%);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .wrp-result {
    flex-direction: column;
    text-align: center;
  }
}

.wrp-result-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.wrp-result-text {
  flex: 1;
}

.wrp-result-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.wrp-result-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.wrp-result-stats {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.wrp-stat-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  transition: background 0.3s ease;
}

.wrp-stat-box:hover {
  background: rgba(255, 255, 255, 0.22);
}

.wrp-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.wrp-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* === SOURCE === */
.wrp-source {
  margin-top: 14px;
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
}

/* === HOVER EXPAND DETAIL === */
.wrp-expand-detail {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.wrp-stage-card:hover .wrp-expand-detail {
  max-height: 60px;
  opacity: 1;
}

.wrp-expand-text {
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  line-height: 1.5;
}
/* <!-- Infographic Placeholder 2 --> */
.cryo-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.cryo-header {
  text-align: center;
  margin-bottom: 24px;
}

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

.cryo-temp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #47577c, #3a4868);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.cryo-temp-badge svg {
  width: 14px;
  height: 14px;
}

/* === COMPARISON GRID === */
.cryo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 680px) {
  .cryo-compare {
    grid-template-columns: 1fr;
  }
}

/* === PANEL CARDS === */
.cryo-panel {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.cryo-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.12);
}

.cryo-panel--fail {
  border-top: 3px solid #bf3425;
}

.cryo-panel--pass {
  border-top: 3px solid #47577c;
}

.cryo-panel-head {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cryo-panel--fail .cryo-panel-head {
  background: rgba(191, 52, 37, 0.04);
}
.cryo-panel--pass .cryo-panel-head {
  background: rgba(71, 87, 124, 0.04);
}

.cryo-panel-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cryo-panel--fail .cryo-panel-icon {
  background: rgba(191, 52, 37, 0.1);
}
.cryo-panel--pass .cryo-panel-icon {
  background: rgba(71, 87, 124, 0.1);
}

.cryo-panel-label {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.cryo-panel--fail .cryo-panel-label {
  color: #bf3425;
}
.cryo-panel--pass .cryo-panel-label {
  color: #47577c;
}

.cryo-panel-sub {
  font-size: 11px;
  color: #64748b;
  margin: 1px 0 0 0;
}

/* === MICROSTRUCTURE VISUAL === */
.cryo-visual {
  padding: 10px 14px;
  display: flex;
  justify-content: center;
}

.cryo-visual svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}

/* === CRACK ANIMATIONS === */
.cryo-crack {
  opacity: 0;
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
}

.cryo-panel--fail:hover .cryo-crack {
  animation: cryo-crack-grow 0.6s ease forwards;
}

.cryo-panel--fail:hover .cryo-crack.c1 {
  animation-delay: 0.1s;
}
.cryo-panel--fail:hover .cryo-crack.c2 {
  animation-delay: 0.2s;
}
.cryo-panel--fail:hover .cryo-crack.c3 {
  animation-delay: 0.3s;
}
.cryo-panel--fail:hover .cryo-crack.c4 {
  animation-delay: 0.4s;
}
.cryo-panel--fail:hover .cryo-crack.c5 {
  animation-delay: 0.15s;
}
.cryo-panel--fail:hover .cryo-crack.c6 {
  animation-delay: 0.35s;
}
.cryo-panel--fail:hover .cryo-crack.c7 {
  animation-delay: 0.5s;
}
.cryo-panel--fail:hover .cryo-crack.c8 {
  animation-delay: 0.25s;
}
.cryo-panel--fail:hover .cryo-crack.c9 {
  animation-delay: 0.45s;
}

@keyframes cryo-crack-grow {
  0% {
    opacity: 0;
    stroke-dashoffset: 12;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

/* Arrested crack in thermoplastic - subtle, just one */
.cryo-crack-arrested {
  opacity: 0;
  stroke-dasharray: 6;
  stroke-dashoffset: 6;
}

.cryo-panel--pass:hover .cryo-crack-arrested {
  animation: cryo-crack-arrest 1s ease forwards;
}

@keyframes cryo-crack-arrest {
  0% {
    opacity: 0;
    stroke-dashoffset: 6;
  }
  50% {
    opacity: 0.6;
    stroke-dashoffset: 3;
  }
  100% {
    opacity: 0.3;
    stroke-dashoffset: 3;
  }
}

/* H2 permeation particles for thermoset */
.cryo-h2-particle {
  opacity: 0;
  fill: #bf3425;
}

.cryo-panel--fail:hover .cryo-h2-particle {
  animation: cryo-h2-leak 1.8s ease-in-out infinite;
}

.cryo-h2-particle.h1 {
  animation-delay: 0.6s;
}
.cryo-h2-particle.h2 {
  animation-delay: 1s;
}
.cryo-h2-particle.h3 {
  animation-delay: 1.4s;
}

@keyframes cryo-h2-leak {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  20% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* Shield glow for thermoplastic */
.cryo-shield {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cryo-panel--pass:hover .cryo-shield {
  opacity: 1;
  animation: cryo-shield-pulse 2s ease-in-out infinite;
}

@keyframes cryo-shield-pulse {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.3;
  }
}

/* === PROPERTIES LIST === */
.cryo-props {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cryo-prop {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  transition: transform 0.2s ease;
}

.cryo-panel:hover .cryo-prop {
  transform: translateX(3px);
}

.cryo-prop-bullet {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.cryo-prop-value {
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 2px;
}

.cryo-panel--fail .cryo-prop-value {
  background: rgba(191, 52, 37, 0.08);
  color: #bf3425;
}

.cryo-panel--pass .cryo-prop-value {
  background: rgba(71, 87, 124, 0.08);
  color: #47577c;
}

/* === RESULT STRIP === */
.cryo-result {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.cryo-panel--fail .cryo-result {
  background: rgba(191, 52, 37, 0.06);
  color: #bf3425;
  border-top: 1px solid rgba(191, 52, 37, 0.12);
}

.cryo-panel--pass .cryo-result {
  background: rgba(71, 87, 124, 0.06);
  color: #47577c;
  border-top: 1px solid rgba(71, 87, 124, 0.12);
}

.cryo-result-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* === Gc COMPARISON BAR === */
.cryo-gc-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
}

.cryo-gc-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.cryo-gc-subtitle {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 16px 0;
}

.cryo-gc-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cryo-gc-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cryo-gc-label {
  width: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  flex-shrink: 0;
  text-align: right;
}

.cryo-gc-track {
  flex: 1;
  height: 28px;
  background: #f1f5f9;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.cryo-gc-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.cryo-gc-fill--epoxy {
  background: linear-gradient(90deg, #bf3425, #d94a3a);
}

.cryo-gc-fill--tp {
  background: linear-gradient(90deg, #47577c, #5a6d94);
}

.cryo-gc-multiplier {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  opacity: 0;
  transition: opacity 0.3s ease 0.8s;
}

/* === SOURCE === */
.cryo-source {
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}
/* <!-- Infographic Placeholder 3 --> */
.fenix-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.fenix-header {
  text-align: center;
  margin-bottom: 24px;
}

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

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

/* === SECTION LABELS === */
.fenix-section {
  margin-bottom: 24px;
}

.fenix-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #47577c;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(71, 87, 124, 0.06);
  border-radius: 6px;
}

.fenix-section-label svg {
  width: 14px;
  height: 14px;
}

/* === EXPLODED VIEW === */
.fenix-exploded {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.fenix-exploded svg {
  width: 100%;
  max-width: 580px;
  height: auto;
}

/* Tube slide-in animation */
.fenix-tube-left {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fenix-exploded:hover .fenix-tube-left {
  transform: translateX(18px) translateY(10px);
}

.fenix-tube-right {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fenix-exploded:hover .fenix-tube-right {
  transform: translateX(-18px) translateY(10px);
}

/* Lug pulse */
.fenix-lug-glow {
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.fenix-exploded:hover .fenix-lug-glow {
  opacity: 1;
  animation: fenix-lug-pulse 1.6s ease-in-out infinite;
}

@keyframes fenix-lug-pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

/* Dashed guide lines */
.fenix-guide-line {
  stroke-dasharray: 4, 4;
  stroke-dashoffset: 0;
}

.fenix-exploded:hover .fenix-guide-line {
  animation: fenix-dash-flow 1s linear infinite;
}

@keyframes fenix-dash-flow {
  to {
    stroke-dashoffset: -8;
  }
}

/* Tooltip callouts */
.fenix-callout {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fenix-exploded:hover .fenix-callout {
  opacity: 1;
}

/* === DETAIL & WORKFLOW GRID === */
.fenix-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .fenix-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* === WELD DETAIL PANEL === */
.fenix-weld-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fenix-weld-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.1);
}

.fenix-weld-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.fenix-weld-visual svg {
  width: 100%;
  max-width: 240px;
  height: auto;
}

/* Induction coil glow */
.fenix-coil-field {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fenix-weld-panel:hover .fenix-coil-field {
  animation: fenix-induction-heat 1s ease-in-out infinite alternate;
}

@keyframes fenix-induction-heat {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.45;
  }
}

/* Weld zone melt animation */
.fenix-weld-zone-melt {
  transition:
    fill 0.5s ease,
    opacity 0.5s ease;
  fill: #e2e8f0;
}

.fenix-weld-panel:hover .fenix-weld-zone-melt {
  fill: #bf3425;
  opacity: 0.7;
  animation: fenix-melt-pulse 1.2s ease-in-out infinite alternate;
}

@keyframes fenix-melt-pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.8;
  }
}

/* Molecular bond particles */
.fenix-bond-dot {
  opacity: 0;
}

.fenix-weld-panel:hover .fenix-bond-dot {
  animation: fenix-bond-appear 0.8s ease forwards;
}

.fenix-bond-dot.b1 {
  animation-delay: 0.3s;
}
.fenix-bond-dot.b2 {
  animation-delay: 0.5s;
}
.fenix-bond-dot.b3 {
  animation-delay: 0.7s;
}
.fenix-bond-dot.b4 {
  animation-delay: 0.4s;
}
.fenix-bond-dot.b5 {
  animation-delay: 0.6s;
}

@keyframes fenix-bond-appear {
  0% {
    opacity: 0;
    r: 0;
  }
  100% {
    opacity: 0.8;
    r: 2;
  }
}

.fenix-weld-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fenix-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
}

.fenix-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* === WORKFLOW PANEL === */
.fenix-workflow-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fenix-workflow-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.1);
}

.fenix-wf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.fenix-wf-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  cursor: default;
}

.fenix-wf-step:hover {
  background: rgba(71, 87, 124, 0.04);
  transform: translateX(4px);
}

.fenix-wf-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}

.fenix-wf-step:nth-child(1) .fenix-wf-num {
  background: #bf3425;
}
.fenix-wf-step:nth-child(2) .fenix-wf-num {
  background: #47577c;
}
.fenix-wf-step:nth-child(3) .fenix-wf-num {
  background: #47577c;
}
.fenix-wf-step:nth-child(4) .fenix-wf-num {
  background: #9d9d9c;
}

.fenix-wf-text {
  flex: 1;
}

.fenix-wf-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.fenix-wf-desc {
  font-size: 11px;
  color: #64748b;
  margin: 2px 0 0 0;
}

/* Workflow connector */
.fenix-wf-connector {
  display: flex;
  justify-content: center;
  padding: 0 0 0 14px;
}

.fenix-wf-connector-line {
  width: 2px;
  height: 14px;
  background: #cbd5e1;
  margin-left: 13px;
}

/* Recycle badge */
.fenix-recycle-badge {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(71, 87, 124, 0.06);
  border: 1px dashed rgba(71, 87, 124, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.fenix-recycle-badge:hover {
  background: rgba(71, 87, 124, 0.1);
  border-color: rgba(71, 87, 124, 0.35);
}

.fenix-recycle-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  animation: fenix-recycle-spin 6s linear infinite;
}

@keyframes fenix-recycle-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fenix-recycle-text {
  font-size: 12px;
  color: #47577c;
  font-weight: 600;
  line-height: 1.4;
}

.fenix-recycle-sub {
  font-weight: 400;
  color: #64748b;
}

/* === KEY ADVANTAGES STRIP === */
.fenix-advantages {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.fenix-adv-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.fenix-adv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.fenix-adv-card:nth-child(1)::after {
  background: #47577c;
}
.fenix-adv-card:nth-child(2)::after {
  background: #bf3425;
}
.fenix-adv-card:nth-child(3)::after {
  background: #9d9d9c;
}

.fenix-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.1);
}

.fenix-adv-card:hover::after {
  transform: scaleX(1);
}

.fenix-adv-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}

.fenix-adv-value {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.fenix-adv-card:nth-child(1) .fenix-adv-value {
  color: #47577c;
}
.fenix-adv-card:nth-child(2) .fenix-adv-value {
  color: #bf3425;
}
.fenix-adv-card:nth-child(3) .fenix-adv-value {
  color: #9d9d9c;
}

.fenix-adv-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 2px 0 0 0;
}

/* === SOURCE === */
.fenix-source {
  margin-top: 16px;
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
}
/* <!-- Infographic Placeholder 4 --> */
.evlca-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

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

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

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

/* === CHART AREA === */
.evlca-chart-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .evlca-chart-wrap {
    height: 320px;
  }
}

/* === SAVINGS CALLOUT === */
.evlca-savings-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #47577c 0%, #3a4868 100%);
  border-radius: 12px;
  padding: 16px 22px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .evlca-savings-banner {
    flex-direction: column;
    text-align: center;
  }
}

.evlca-savings-ring {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  position: relative;
}

.evlca-savings-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.evlca-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 6;
}

.evlca-ring-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.evlca-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.evlca-savings-text {
  flex: 1;
}

.evlca-savings-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
}

.evlca-savings-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

/* === KEY FINDINGS === */
.evlca-findings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

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

@media (max-width: 420px) {
  .evlca-findings {
    grid-template-columns: 1fr;
  }
}

.evlca-finding-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.evlca-finding-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.1);
}

.evlca-finding-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.evlca-finding-card:hover::before {
  transform: scaleX(1);
}

.evlca-finding-card:nth-child(1)::before {
  background: #47577c;
}
.evlca-finding-card:nth-child(2)::before {
  background: #bf3425;
}
.evlca-finding-card:nth-child(3)::before {
  background: #9d9d9c;
}
.evlca-finding-card:nth-child(4)::before {
  background: #47577c;
}

.evlca-finding-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.evlca-finding-value {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.evlca-finding-card:nth-child(1) .evlca-finding-value {
  color: #47577c;
}
.evlca-finding-card:nth-child(2) .evlca-finding-value {
  color: #bf3425;
}
.evlca-finding-card:nth-child(3) .evlca-finding-value {
  color: #9d9d9c;
}
.evlca-finding-card:nth-child(4) .evlca-finding-value {
  color: #47577c;
}

.evlca-finding-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin: 3px 0 0 0;
  line-height: 1.4;
}

/* === PHASE LEGEND (below chart) === */
.evlca-phase-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.evlca-phase-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  cursor: default;
  transition: opacity 0.2s ease;
}

.evlca-phase-item:hover {
  opacity: 0.7;
}

.evlca-phase-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* === SOURCE === */
.evlca-source {
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}
/* <!-- Infographic Placeholder 5 --> */
.tpce-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.tpce-header {
  text-align: center;
  margin-bottom: 24px;
}

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

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

.tpce-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(71, 87, 124, 0.07);
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* === CIRCULAR FLOW LAYOUT === */
.tpce-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

/* === AIRCRAFT NODES (Source & Destination) === */
.tpce-aircraft-node {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.tpce-aircraft-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.12);
}

.tpce-aircraft-node--source {
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.06),
    rgba(71, 87, 124, 0.02)
  );
  border: 1px solid rgba(71, 87, 124, 0.15);
}

.tpce-aircraft-node--dest {
  background: linear-gradient(
    135deg,
    rgba(191, 52, 37, 0.04),
    rgba(191, 52, 37, 0.01)
  );
  border: 1px solid rgba(191, 52, 37, 0.15);
}

.tpce-aircraft-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.tpce-aircraft-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.tpce-aircraft-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.tpce-aircraft-node--source .tpce-aircraft-name {
  color: #47577c;
}
.tpce-aircraft-node--dest .tpce-aircraft-name {
  color: #bf3425;
}

.tpce-aircraft-meta {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0 0;
}

.tpce-aircraft-detail {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

.tpce-aircraft-detail strong {
  color: #1e293b;
}

.tpce-aircraft-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.tpce-aircraft-node--source .tpce-aircraft-tag {
  background: rgba(71, 87, 124, 0.1);
  color: #47577c;
}

.tpce-aircraft-node--dest .tpce-aircraft-tag {
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
}

/* === PROCESS STEPS === */
.tpce-step-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 480px;
}

.tpce-step {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}

.tpce-step:hover {
  background: #fff;
  border-color: #cbd5e1;
  transform: translateX(6px);
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.08);
}

.tpce-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tpce-step:nth-child(1) .tpce-step-num {
  background: #47577c;
}
.tpce-step:nth-child(3) .tpce-step-num {
  background: #9d9d9c;
}
.tpce-step:nth-child(5) .tpce-step-num {
  background: #bf3425;
}

.tpce-step-body {
  flex: 1;
}

.tpce-step-name {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.tpce-step-desc {
  font-size: 11px;
  color: #64748b;
  margin: 3px 0 0 0;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.tpce-step:hover .tpce-step-desc {
  max-height: 50px;
  opacity: 1;
}

.tpce-step-arrow-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.tpce-step:hover .tpce-step-arrow-icon {
  opacity: 0.5;
  transform: translateX(0);
}

/* === CONNECTORS === */
.tpce-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 36px;
  position: relative;
}

.tpce-connector-stem {
  width: 2px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.tpce-connector-stem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
}

.tpce-connector-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #47577c;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: tpce-dot-fall 2s ease-in-out infinite;
}

.tpce-connector-dot.d1 {
  animation-delay: 0s;
}
.tpce-connector-dot.d2 {
  animation-delay: 0.7s;
}
.tpce-connector-dot.d3 {
  animation-delay: 1.4s;
}

@keyframes tpce-dot-fall {
  0% {
    top: -4px;
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.tpce-connector-tip {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #94a3b8;
}

/* === CIRCULAR RETURN ARROW === */
.tpce-circular-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.tpce-circular-arrow {
  position: absolute;
  right: -24px;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
}

@media (max-width: 640px) {
  .tpce-circular-arrow {
    display: none;
  }
}

.tpce-circular-arrow svg {
  width: 100%;
  height: 100%;
}

.tpce-circular-label {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 10px;
  font-weight: 700;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .tpce-circular-label {
    display: none;
  }
}

/* Flowing dashes on return arrow */
.tpce-return-path {
  stroke-dasharray: 8, 6;
  animation: tpce-return-flow 1.5s linear infinite;
}

@keyframes tpce-return-flow {
  to {
    stroke-dashoffset: -28;
  }
}

/* === IMPACT METRICS === */
.tpce-impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

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

.tpce-impact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.tpce-impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.1);
}

.tpce-impact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tpce-impact-card:nth-child(1)::after {
  background: #47577c;
}
.tpce-impact-card:nth-child(2)::after {
  background: #bf3425;
}
.tpce-impact-card:nth-child(3)::after {
  background: #9d9d9c;
}
.tpce-impact-card:nth-child(4)::after {
  background: #47577c;
}

.tpce-impact-card:hover::after {
  transform: scaleX(1);
}

.tpce-impact-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.tpce-impact-value {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.tpce-impact-card:nth-child(1) .tpce-impact-value {
  color: #47577c;
}
.tpce-impact-card:nth-child(2) .tpce-impact-value {
  color: #bf3425;
}
.tpce-impact-card:nth-child(3) .tpce-impact-value {
  color: #9d9d9c;
}
.tpce-impact-card:nth-child(4) .tpce-impact-value {
  color: #47577c;
}

.tpce-impact-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 3px 0 0 0;
  line-height: 1.4;
}

/* === KEY ENABLER BANNER === */
.tpce-enabler {
  background: linear-gradient(135deg, #47577c 0%, #3a4868 100%);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .tpce-enabler {
    flex-direction: column;
    text-align: center;
  }
}

.tpce-enabler-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.tpce-enabler-text {
  flex: 1;
}

.tpce-enabler-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
}

.tpce-enabler-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.tpce-enabler-vs {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.tpce-vs-chip {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease;
}

.tpce-vs-chip:hover {
  transform: scale(1.05);
}

.tpce-vs-chip--tp {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tpce-vs-chip--ts {
  background: rgba(191, 52, 37, 0.3);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(191, 52, 37, 0.4);
  text-decoration: line-through;
}

/* === SOURCE === */
.tpce-source {
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}

/* === PROPERTY BAR (inside destination node) === */
.tpce-prop-bar-wrap {
  margin-top: 10px;
}

.tpce-prop-bar-label {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.tpce-prop-bar-track {
  height: 20px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tpce-prop-bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.tpce-prop-bar-fill--recycled {
  background: linear-gradient(90deg, #bf3425, #d94a3a);
}

.tpce-prop-bar-end {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}
/* <!-- Infographic Placeholder 6 --> */
nip-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.nip-header {
  text-align: center;
  margin-bottom: 22px;
}

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

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

/* === SECTION LABELS === */
.nip-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #47577c;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(71, 87, 124, 0.06);
  border-radius: 6px;
}

.nip-section-label svg {
  width: 13px;
  height: 13px;
}

/* === TOP GRID: MECHANISM + TEMP PROFILE === */
.nip-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

@media (max-width: 720px) {
  .nip-top-grid {
    grid-template-columns: 1fr;
  }
}

/* === MECHANISM PANEL === */
.nip-mech-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  transition: box-shadow 0.3s ease;
}

.nip-mech-panel:hover {
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.08);
}

.nip-mech-svg {
  display: flex;
  justify-content: center;
}

.nip-mech-svg svg {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* Laser beam animation */
.nip-laser-beam {
  opacity: 0.3;
}

.nip-mech-panel:hover .nip-laser-beam {
  animation: nip-laser-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes nip-laser-pulse {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.85;
  }
}

/* Tape feed flow */
.nip-tape-feed {
  stroke-dasharray: 8, 5;
  animation: nip-tape-flow 1.2s linear infinite;
}

@keyframes nip-tape-flow {
  to {
    stroke-dashoffset: -13;
  }
}

/* Nip point glow */
.nip-point-glow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nip-mech-panel:hover .nip-point-glow {
  opacity: 1;
  animation: nip-glow-throb 1s ease-in-out infinite alternate;
}

@keyframes nip-glow-throb {
  0% {
    opacity: 0.3;
    r: 10;
  }
  100% {
    opacity: 0.7;
    r: 16;
  }
}

/* Roller rotation */
.nip-roller-stripe {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nip-mech-panel:hover .nip-roller-stripe {
  animation: nip-roller-spin 2s linear infinite;
}

@keyframes nip-roller-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Cooling zone dashes */
.nip-cool-zone {
  stroke-dasharray: 3, 3;
  opacity: 0.4;
}

.nip-mech-panel:hover .nip-cool-zone {
  animation: nip-cool-flow 1.5s linear infinite;
}

@keyframes nip-cool-flow {
  to {
    stroke-dashoffset: -12;
  }
}

/* Hover callout labels */
.nip-mech-callout {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nip-mech-panel:hover .nip-mech-callout {
  opacity: 1;
}

/* === TEMPERATURE PROFILE === */
.nip-temp-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.nip-temp-chart-wrap {
  position: relative;
  flex: 1;
  min-height: 240px;
}

/* === PROCESS PARAMETERS === */
.nip-params {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

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

@media (max-width: 440px) {
  .nip-params {
    grid-template-columns: 1fr;
  }
}

.nip-param-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.nip-param-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.1);
}

.nip-param-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 10px 0 0 10px;
  transition: width 0.2s ease;
}

.nip-param-card:hover::before {
  width: 5px;
}

.nip-param-card:nth-child(1)::before {
  background: #bf3425;
}
.nip-param-card:nth-child(2)::before {
  background: #47577c;
}
.nip-param-card:nth-child(3)::before {
  background: #9d9d9c;
}
.nip-param-card:nth-child(4)::before {
  background: #47577c;
}
.nip-param-card:nth-child(5)::before {
  background: #bf3425;
}
.nip-param-card:nth-child(6)::before {
  background: #9d9d9c;
}

.nip-param-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 4px 0;
}

.nip-param-value {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.nip-param-note {
  font-size: 11px;
  color: #94a3b8;
  margin: 3px 0 0 0;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.nip-param-card:hover .nip-param-note {
  max-height: 40px;
  opacity: 1;
}

/* === KEY ADVANTAGES === */
.nip-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

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

.nip-adv-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.04),
    rgba(71, 87, 124, 0.01)
  );
  border: 1px solid rgba(71, 87, 124, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
}

.nip-adv-card:hover {
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.08),
    rgba(71, 87, 124, 0.03)
  );
  border-color: rgba(71, 87, 124, 0.2);
  transform: translateX(4px);
}

.nip-adv-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.2s ease;
}

.nip-adv-card:hover .nip-adv-check {
  transform: scale(1.15);
}

.nip-adv-card:nth-child(1) .nip-adv-check {
  background: rgba(71, 87, 124, 0.1);
}
.nip-adv-card:nth-child(2) .nip-adv-check {
  background: rgba(191, 52, 37, 0.1);
}
.nip-adv-card:nth-child(3) .nip-adv-check {
  background: rgba(157, 157, 156, 0.1);
}
.nip-adv-card:nth-child(4) .nip-adv-check {
  background: rgba(71, 87, 124, 0.1);
}

.nip-adv-text {
  flex: 1;
}

.nip-adv-name {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.nip-adv-card:nth-child(1) .nip-adv-name {
  color: #47577c;
}
.nip-adv-card:nth-child(2) .nip-adv-name {
  color: #bf3425;
}
.nip-adv-card:nth-child(3) .nip-adv-name {
  color: #9d9d9c;
}
.nip-adv-card:nth-child(4) .nip-adv-name {
  color: #47577c;
}

.nip-adv-desc {
  font-size: 12px;
  color: #64748b;
  margin: 3px 0 0 0;
  line-height: 1.45;
}

/* === SOURCE === */
.nip-source {
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}
