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

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

/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  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;
}

/* 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);
  display: block;
}

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

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

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

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

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

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

.split-content {
  padding: 0;
}

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

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

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

.references-list a {
  font-weight: 600;
  color: #47577c;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.references-list a:hover {
  color: #bf3425;
}

/* ============================================
   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;
  text-align: center;
  margin: 2rem 0;
}

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

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

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

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

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

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

.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #bf3425;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
}

.author-title {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0 0 1rem 0;
}

.author-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  text-decoration: none !important;
  transition:
    background 0.2s,
    transform 0.2s;
}

.author-social a:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

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

.about-author-label {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #9d9d9c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

  /* Mobile Nav Toggle — show */
  .mobile-nav-toggle {
    display: flex;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .cta-section {
    padding: 1.25rem;
  }
}

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

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

/* <!-- INFOGRAPHIC 1: Ukraine Air Defense Kills Monthly Breakdown --> */
.uad-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.uad-header {
  margin-bottom: 6px;
}

.uad-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

.uad-subtitle span {
  color: #bf3425;
  font-weight: 600;
}

/* Bar breakdown section */
.uad-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.uad-row {
  display: grid;
  grid-template-columns: 180px 1fr 52px;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.uad-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-align: right;
}

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

.uad-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.uad-bar-label-inner {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease 0.8s;
  white-space: nowrap;
}

.uad-row:hover .uad-bar-track {
  box-shadow: 0 0 0 2px #e2e8f0;
}

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

.uad-pct {
  font-size: 14px;
  font-weight: 700;
  color: #47577c;
  text-align: right;
}

/* Tooltip */
.uad-row {
  position: relative;
}

.uad-tooltip {
  display: none;
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.uad-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}

.uad-row:hover .uad-tooltip {
  display: block;
}

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

/* Stats row */
.uad-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.uad-stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
  cursor: default;
}

.uad-stat-card:hover {
  box-shadow: 0 4px 12px rgba(71, 87, 124, 0.12);
  transform: translateY(-2px);
}

.uad-stat-card.uad-accent-navy {
  border-left: 4px solid #47577c;
}

.uad-stat-card.uad-accent-red {
  border-left: 4px solid #bf3425;
}

.uad-stat-card.uad-accent-gray {
  border-left: 4px solid #9d9d9c;
}

.uad-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 6px;
}

.uad-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 4px;
}

.uad-stat-value.uad-red {
  color: #bf3425;
}
.uad-stat-value.uad-navy {
  color: #47577c;
}

.uad-stat-sub {
  font-size: 11px;
  color: #64748b;
}

/* Cost compare */
.uad-cost-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.uad-cost-card {
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow 0.2s ease;
  cursor: default;
}

.uad-cost-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.uad-cost-card.uad-cost-low {
  background: rgba(71, 87, 124, 0.06);
  border: 1px solid rgba(71, 87, 124, 0.18);
}

.uad-cost-card.uad-cost-high {
  background: rgba(191, 52, 37, 0.06);
  border: 1px solid rgba(191, 52, 37, 0.18);
}

.uad-cost-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.uad-cost-low .uad-cost-type {
  color: #47577c;
}
.uad-cost-high .uad-cost-type {
  color: #bf3425;
}

.uad-cost-range {
  font-size: 17px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
}

.uad-cost-label {
  font-size: 11px;
  color: #64748b;
}

.uad-cost-efficiency {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.uad-cost-low .uad-cost-efficiency {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}

.uad-cost-high .uad-cost-efficiency {
  background: rgba(191, 52, 37, 0.12);
  color: #bf3425;
}

/* Source footer */
.uad-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 580px) {
  .uad-row {
    grid-template-columns: 130px 1fr 44px;
  }
  .uad-stats {
    grid-template-columns: 1fr;
  }
  .uad-cost-compare {
    grid-template-columns: 1fr;
  }
}
/* <!-- INFOGRAPHIC 2: Interceptor Drone Cost vs Traditional Air Defense --> */
.idc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.idc-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Section headers */
.idc-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.idc-section-header:first-of-type {
  margin-top: 0;
}

.idc-section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.idc-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Table */
.idc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.idc-table thead tr {
  border-bottom: 2px solid #e2e8f0;
}

.idc-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding: 8px 12px;
  text-align: left;
}

.idc-table th:nth-child(2) {
  text-align: right;
}

.idc-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.18s ease;
  cursor: default;
  opacity: 0;
  transform: translateX(-12px);
  animation: idc-row-in 0.4s ease forwards;
}

@keyframes idc-row-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.idc-table tbody tr:last-child {
  border-bottom: none;
}

.idc-table td {
  padding: 11px 12px;
  vertical-align: middle;
}

/* System name cell */
.idc-sys-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.idc-sys-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Cost cell */
.idc-cost-cell {
  text-align: right;
  white-space: nowrap;
}

.idc-cost-value {
  font-size: 15px;
  font-weight: 800;
  display: block;
}

/* Cost bar */
.idc-cost-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.idc-mini-bar-track {
  flex: 1;
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.idc-mini-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Notes cell */
.idc-note {
  font-size: 12px;
  color: #64748b;
  max-width: 280px;
}

.idc-note strong {
  color: #475569;
}

/* Drone rows */
.idc-drone-row .idc-cost-value {
  color: #47577c;
}
.idc-drone-row .idc-mini-bar-fill {
  background: #47577c;
}
.idc-drone-row .idc-sys-tag {
  background: rgba(71, 87, 124, 0.1);
  color: #47577c;
}

/* Traditional rows */
.idc-trad-row .idc-cost-value {
  color: #bf3425;
}
.idc-trad-row .idc-mini-bar-fill {
  background: #bf3425;
}
.idc-trad-row .idc-sys-tag {
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
}

/* Section separator */
.idc-sep-row td {
  padding: 0;
  height: 10px;
  background: transparent !important;
  border: none !important;
}

/* Advantage banner */
.idc-banner {
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.07) 0%,
    rgba(191, 52, 37, 0.05) 100%
  );
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s ease 1.2s,
    transform 0.6s ease 1.2s;
}

.idc-banner.idc-visible {
  opacity: 1;
  transform: translateY(0);
}

.idc-banner-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.idc-banner-value {
  font-size: 26px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
}

.idc-banner-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.idc-banner-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.idc-banner-item {
  flex: 1;
  min-width: 120px;
}

/* Source */
.idc-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .idc-table th:nth-child(3),
  .idc-table td:nth-child(3) {
    display: none;
  }
  .idc-banner-divider {
    display: none;
  }
}
/* <!-- INFOGRAPHIC 3: Interceptor Drone Material Selection Hierarchy --> */
.msh-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.msh-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* SVG tree */
.msh-tree-wrap {
  width: 100%;
  overflow-x: auto;
}

.msh-tree-wrap svg {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* Nodes */
.msh-root-rect {
  fill: #47577c;
  rx: 8;
}
.msh-root-text {
  fill: #fff;
  font-size: 13px;
  font-weight: 700;
}

.msh-zone-rect {
  fill: #f8fafc;
  stroke: #cbd5e1;
  stroke-width: 1.5;
}
.msh-zone-text-head {
  fill: #47577c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.msh-zone-text-body {
  fill: #475569;
  font-size: 10px;
}

.msh-mat-navy {
  fill: #47577c;
}
.msh-mat-red {
  fill: #bf3425;
}
.msh-mat-gray {
  fill: #9d9d9c;
}

.msh-mat-text-head {
  fill: #fff;
  font-size: 12px;
  font-weight: 700;
}
.msh-mat-text-body {
  fill: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}

.msh-connector {
  stroke: #cbd5e1;
  stroke-width: 1.5;
  fill: none;
}
.msh-arrow {
  stroke: #cbd5e1;
  stroke-width: 1.5;
  fill: #cbd5e1;
}

/* Hover effects on SVG groups */
.msh-zone-group,
.msh-mat-group {
  cursor: pointer;
  transition: filter 0.2s;
}
.msh-zone-group:hover rect,
.msh-zone-group:hover .msh-zone-rect {
  filter: drop-shadow(0 4px 10px rgba(71, 87, 124, 0.18));
}
.msh-mat-group:hover {
  filter: brightness(1.08) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

/* Tooltip */
.msh-tooltip {
  position: absolute;
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 100;
  max-width: 220px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.msh-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.msh-tooltip.msh-visible {
  opacity: 1;
}

/* Hybrid layup strip */
.msh-layup {
  margin-top: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.msh-layup-header {
  background: #f8fafc;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.msh-layup-strips {
  display: flex;
  height: 70px;
}

.msh-strip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  transition:
    filter 0.2s ease,
    flex 0.4s ease;
  cursor: default;
}

.msh-strip:hover {
  filter: brightness(1.07);
  flex: 2.2 !important;
}

.msh-strip-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
}

.msh-strip-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.msh-strip-navy {
  background: #47577c;
  flex: 2;
}
.msh-strip-mid {
  background: #9d9d9c;
  flex: 1.4;
}
.msh-strip-red {
  background: #bf3425;
  flex: 1.6;
}

/* Source */
.msh-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

/* Animate connectors */
.msh-line-anim {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 0.6s ease;
}
.msh-line-anim.msh-drawn {
  stroke-dashoffset: 0;
}
/* <!-- INFOGRAPHIC 4: Interceptor Performance Envelope vs Target Speeds --> */
.ipe-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.ipe-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Legend */
.ipe-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.ipe-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}

.ipe-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Speed axis header */
.ipe-axis-header {
  display: grid;
  grid-template-columns: 156px 1fr 68px;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 0 0 6px 0;
  border-bottom: 2px solid #e2e8f0;
}

.ipe-axis-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.ipe-axis-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.ipe-axis-tick {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

/* Rows */
.ipe-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 0;
}

.ipe-row {
  display: grid;
  grid-template-columns: 156px 1fr 68px;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: default;
}

.ipe-row-label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  text-align: right;
  line-height: 1.3;
}

.ipe-row-label small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #94a3b8;
}

/* Bar track */
.ipe-track {
  position: relative;
  height: 28px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: visible;
}

/* Vertical grid lines inside track */
.ipe-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e2e8f0;
  pointer-events: none;
  z-index: 0;
}

/* The fill bar */
.ipe-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ipe-fill-inner-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.9s;
}

/* Speed value */
.ipe-speed-val {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

/* Tooltip */
.ipe-row {
  position: relative;
}
.ipe-tooltip {
  display: none;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.ipe-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.ipe-row:hover .ipe-tooltip {
  display: block;
}
.ipe-row:hover .ipe-track {
  box-shadow: 0 0 0 2px #e2e8f0;
}

/* Threshold annotation */
.ipe-threshold-wrap {
  grid-column: 2;
  position: relative;
  height: 0;
  margin-top: -4px;
}

.ipe-threshold-line {
  position: absolute;
  top: 0;
  bottom: -8px;
  width: 2px;
  background: #bf3425;
  opacity: 0;
  transition: opacity 0.4s ease 1.3s;
  z-index: 5;
}

.ipe-threshold-tag {
  position: absolute;
  top: -22px;
  transform: translateX(-50%);
  background: #bf3425;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease 1.3s;
}

.ipe-threshold-line.ipe-shown,
.ipe-threshold-tag.ipe-shown {
  opacity: 1;
}

/* Divider between targets and interceptors */
.ipe-section-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 2px 0;
}
.ipe-section-divider-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.ipe-section-divider-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Composite threshold banner */
.ipe-banner {
  margin-top: 18px;
  background: rgba(191, 52, 37, 0.05);
  border: 1px solid rgba(191, 52, 37, 0.2);
  border-left: 4px solid #bf3425;
  border-radius: 8px;
  padding: 12px 16px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease 1.5s,
    transform 0.5s ease 1.5s;
}
.ipe-banner.ipe-shown {
  opacity: 1;
  transform: translateY(0);
}

.ipe-banner-top {
  font-size: 13px;
  font-weight: 700;
  color: #bf3425;
  margin-bottom: 3px;
}
.ipe-banner-body {
  font-size: 12px;
  color: #475569;
}

.ipe-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

/* Jet icon */
.ipe-jet-icon {
  font-size: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

@media (max-width: 580px) {
  .ipe-axis-header,
  .ipe-row {
    grid-template-columns: 110px 1fr 58px;
  }
  .ipe-row-label {
    font-size: 11px;
  }
}
/* <!-- INFOGRAPHIC 5: Manufacturing Method Comparison --> */
.mmc-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.mmc-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Column headers */
.mmc-header {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
  align-items: end;
}

.mmc-header-metric {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
}

.mmc-method-header {
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}

.mmc-method-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.mmc-method-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.mmc-mh-gray {
  background: #9d9d9c;
}
.mmc-mh-navy {
  background: #47577c;
}
.mmc-mh-red {
  background: #bf3425;
}

/* Metric rows */
.mmc-metric-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: start;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: default;
}

.mmc-metric-row.mmc-visible {
  opacity: 1;
  transform: translateY(0);
}

.mmc-metric-row:last-child {
  border-bottom: none;
}

.mmc-metric-row:hover {
  background: #fafbfc;
  border-radius: 8px;
}

.mmc-metric-label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  padding-top: 3px;
  line-height: 1.4;
}

/* Cell */
.mmc-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mmc-cell-value {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

/* Mini bar */
.mmc-bar-track {
  height: 7px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

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

/* Badge for qualitative ratings */
.mmc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 2px;
}

.mmc-badge-poor {
  background: rgba(157, 157, 156, 0.15);
  color: #9d9d9c;
}
.mmc-badge-good {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}
.mmc-badge-excel {
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
}

/* Workers / shift pills */
.mmc-workers {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.mmc-worker-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

/* Cost bar */
.mmc-cost-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mmc-cost-label {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* Best-for chips */
.mmc-tags {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}

.mmc-tag {
  font-size: 10px;
  color: #475569;
  background: #f1f5f9;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.4;
}

/* Tooltip */
.mmc-metric-row {
  position: relative;
}
.mmc-tooltip {
  display: none;
  position: absolute;
  top: -36px;
  left: 165px;
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.mmc-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.mmc-metric-row:hover .mmc-tooltip {
  display: block;
}

/* Summary strip */
.mmc-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mmc-summary-card {
  border-radius: 10px;
  padding: 13px 14px;
  cursor: default;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.mmc-summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.mmc-sc-gray {
  background: rgba(157, 157, 156, 0.08);
  border: 1px solid rgba(157, 157, 156, 0.25);
}
.mmc-sc-navy {
  background: rgba(71, 87, 124, 0.07);
  border: 1px solid rgba(71, 87, 124, 0.2);
}
.mmc-sc-red {
  background: rgba(191, 52, 37, 0.06);
  border: 1px solid rgba(191, 52, 37, 0.2);
}

.mmc-sc-method {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.mmc-sc-gray .mmc-sc-method {
  color: #9d9d9c;
}
.mmc-sc-navy .mmc-sc-method {
  color: #47577c;
}
.mmc-sc-red .mmc-sc-method {
  color: #bf3425;
}

.mmc-sc-best {
  font-size: 12px;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
}

.mmc-sc-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

.mmc-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 620px) {
  .mmc-header,
  .mmc-metric-row {
    grid-template-columns: 120px 1fr 1fr 1fr;
  }
  .mmc-summary {
    grid-template-columns: 1fr;
  }
}
/* <!-- INFOGRAPHIC 6: Thermoset AFP vs Thermoplastic AFP --> */
.tva-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.tva-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Process section labels */
.tva-section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.tva-section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tva-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Process flow */
.tva-process {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tva-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  flex: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.tva-step.tva-in {
  opacity: 1;
  transform: translateX(0);
}

.tva-step-box {
  width: 100%;
  border-radius: 8px;
  padding: 10px 8px 8px;
  text-align: center;
  position: relative;
  cursor: default;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.tva-step-box:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  z-index: 5;
}

.tva-step-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.tva-step-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* Tooltip */
.tva-step {
  position: relative;
}
.tva-step-tip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 30;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}
.tva-step-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.tva-step:hover .tva-step-tip {
  display: block;
}

/* Arrow connector */
.tva-arrow {
  display: flex;
  align-items: center;
  padding: 0 3px;
  flex-shrink: 0;
  padding-bottom: 24px;
}

.tva-arrow svg {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tva-arrow svg.tva-in {
  opacity: 1;
}

/* Cycle time banner under each process */
.tva-cycle {
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tva-cycle-icon {
  font-size: 14px;
}
.tva-cycle-text {
  color: #334155;
}
.tva-cycle-text strong {
  font-weight: 800;
}
.tva-cycle-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
}
.tva-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Thermoset colours */
.tva-ts-bg {
  background: rgba(157, 157, 156, 0.08);
  border: 1px solid rgba(157, 157, 156, 0.25);
}
.tva-ts-step {
  background: #9d9d9c;
}
.tva-ts-step-warn {
  background: #5a5a59;
}
.tva-ts-arrow {
  color: #9d9d9c;
}
.tva-ts-pill {
  background: rgba(157, 157, 156, 0.15);
  color: #5a5a59;
}

/* Thermoplastic colours */
.tva-tp-bg {
  background: rgba(71, 87, 124, 0.06);
  border: 1px solid rgba(71, 87, 124, 0.18);
}
.tva-tp-step {
  background: #47577c;
}
.tva-tp-step-accent {
  background: #bf3425;
}
.tva-tp-done {
  background: #2d6a4f;
}
.tva-tp-arrow {
  color: #47577c;
}
.tva-tp-pill {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}
.tva-tp-pill-green {
  background: rgba(45, 106, 79, 0.12);
  color: #2d6a4f;
}

/* Section wrapper */
.tva-section {
  border-radius: 10px;
  padding: 14px 14px 10px;
  margin-bottom: 12px;
}

/* Divider */
.tva-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 4px 0 20px;
}

/* Advantages grid */
.tva-adv-title {
  font-size: 13px;
  font-weight: 700;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.tva-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.tva-adv-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  cursor: default;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s ease;
}
.tva-adv-card.tva-in {
  opacity: 1;
  transform: translateY(0);
}
.tva-adv-card:hover {
  box-shadow: 0 4px 14px rgba(71, 87, 124, 0.12);
  transform: translateY(-2px) !important;
}

.tva-adv-icon {
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.tva-adv-stat {
  font-size: 20px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
  margin-bottom: 3px;
}

.tva-adv-stat.tva-red {
  color: #bf3425;
}

.tva-adv-label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 2px;
}

.tva-adv-note {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.tva-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .tva-step {
    min-width: 80px;
  }
  .tva-step-name {
    font-size: 10px;
  }
}
/* <!-- INFOGRAPHIC 7: Hybrid LFAM + AFP Workflow --> */
.hla-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.hla-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Step wrapper */
.hla-step-block {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.hla-step-block.hla-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step header */
.hla-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  gap: 12px;
}

.hla-step-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hla-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hla-step-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1px;
}

.hla-step-time {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Step body */
.hla-step-body {
  background: #fff;
  padding: 18px 18px 16px;
}

/* ─── STEP 1: LFAM Airframe SVG ─── */
.hla-airframe-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hla-airframe-svg-wrap {
  flex: 1;
  min-width: 260px;
}

.hla-airframe-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.hla-lfam-specs {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hla-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #9d9d9c;
  cursor: default;
  transition: box-shadow 0.2s ease;
}

.hla-spec-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hla-spec-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.hla-spec-value {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

/* ─── STEP 2: AFP Reinforcement zones ─── */
.hla-afp-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hla-afp-svg-wrap {
  flex: 1;
  min-width: 260px;
}

.hla-afp-legend {
  flex: 1;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hla-zone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: default;
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hla-zone-item:hover {
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.hla-zone-swatch {
  width: 28px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.hla-zone-text {
  flex: 1;
}

.hla-zone-name {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.hla-zone-detail {
  font-size: 10px;
  color: #64748b;
}

/* AFP accuracy pills */
.hla-afp-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hla-afp-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(71, 87, 124, 0.1);
  color: #47577c;
}

/* Connector arrow */
.hla-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hla-connector.hla-visible {
  opacity: 1;
}

.hla-connector-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, #e2e8f0, #47577c);
}

.hla-connector-head {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #47577c;
}

/* ─── RESULT BLOCK ─── */
.hla-result-block {
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.07) 0%,
    rgba(191, 52, 37, 0.05) 100%
  );
  border: 1px solid rgba(71, 87, 124, 0.2);
  padding: 20px 20px 16px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.hla-result-block.hla-visible {
  opacity: 1;
  transform: translateY(0);
}

.hla-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hla-result-title {
  font-size: 14px;
  font-weight: 700;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hla-result-time {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #47577c;
  padding: 4px 12px;
  border-radius: 20px;
}

.hla-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.hla-result-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: default;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.2s ease;
}
.hla-result-card.hla-visible {
  opacity: 1;
  transform: translateY(0);
}
.hla-result-card:hover {
  box-shadow: 0 4px 12px rgba(71, 87, 124, 0.12);
  transform: translateY(-2px) !important;
}

.hla-rc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #47577c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  margin-top: 1px;
}

.hla-rc-stat {
  font-size: 15px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
  margin-bottom: 2px;
}

.hla-rc-label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.hla-rc-note {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

.hla-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

/* Pulse animation on airframe outline */
@keyframes hla-pulse-wing {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
}

.hla-pulse {
  animation: hla-pulse-wing 2.5s ease-in-out infinite;
}

@media (max-width: 580px) {
  .hla-airframe-wrap,
  .hla-afp-wrap {
    flex-direction: column;
  }
  .hla-result-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* <!-- INFOGRAPHIC 8: Automated Composite Drone Manufacturing Capability — EU vs US vs China --> */
.cap-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.cap-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Column headers */
.cap-header {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
  align-items: stretch;
}

.cap-header-metric {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}

.cap-country-header {
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: default;
  transition: filter 0.2s ease;
}

.cap-country-header:hover {
  filter: brightness(1.06);
}

.cap-country-flag {
  font-size: 20px;
  line-height: 1;
}
.cap-country-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.cap-country-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.cap-ch-usa {
  background: #47577c;
}
.cap-ch-china {
  background: #bf3425;
}
.cap-ch-eu {
  background: #9d9d9c;
}

/* Metric rows */
.cap-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: default;
}

.cap-row:last-child {
  border-bottom: none;
}
.cap-row.cap-visible {
  opacity: 1;
  transform: translateY(0);
}
.cap-row:hover {
  background: #fafbfc;
  border-radius: 8px;
}

.cap-metric-label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  line-height: 1.4;
  padding-top: 2px;
}

.cap-metric-label small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 2px;
}

/* Cell */
.cap-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Strength indicator */
.cap-strength-row {
  display: flex;
  gap: 2px;
  align-items: center;
}

.cap-block {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cap-block.cap-filled {
  opacity: 1;
  transform: scale(1);
}
.cap-block.cap-empty {
  opacity: 1;
  transform: scale(1);
  background: #e2e8f0 !important;
}

/* Status badge */
.cap-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  width: fit-content;
}

.cap-badge-strong {
  background: rgba(71, 87, 124, 0.1);
  color: #47577c;
}
.cap-badge-strong-r {
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
}
.cap-badge-gap {
  background: rgba(157, 157, 156, 0.12);
  color: #9d9d9c;
}
.cap-badge-none {
  background: #fef2f2;
  color: #dc2626;
}

/* Program text */
.cap-program {
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
}

.cap-program strong {
  color: #1e293b;
  font-weight: 700;
}

/* Tooltip */
.cap-row {
  position: relative;
}
.cap-tip {
  display: none;
  position: absolute;
  top: -38px;
  left: 205px;
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cap-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.cap-row:hover .cap-tip {
  display: block;
}

/* Legend */
.cap-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.cap-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
  font-weight: 600;
}

.cap-legend-blocks {
  display: flex;
  gap: 2px;
}

.cap-legend-block {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* EU procurement highlight */
.cap-procurement-row {
  background: rgba(191, 52, 37, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(191, 52, 37, 0.12);
  margin-top: 4px;
}

/* Summary bar at bottom */
.cap-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.cap-sum-card {
  border-radius: 10px;
  padding: 12px 14px;
  cursor: default;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s ease;
}

.cap-sum-card.cap-visible {
  opacity: 1;
  transform: translateY(0);
}
.cap-sum-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px) !important;
}

.cap-sum-usa {
  background: rgba(71, 87, 124, 0.07);
  border: 1px solid rgba(71, 87, 124, 0.2);
}
.cap-sum-china {
  background: rgba(191, 52, 37, 0.06);
  border: 1px solid rgba(191, 52, 37, 0.18);
}
.cap-sum-eu {
  background: rgba(157, 157, 156, 0.07);
  border: 1px solid rgba(157, 157, 156, 0.22);
}

.cap-sum-country {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.cap-sum-usa .cap-sum-country {
  color: #47577c;
}
.cap-sum-china .cap-sum-country {
  color: #bf3425;
}
.cap-sum-eu .cap-sum-country {
  color: #9d9d9c;
}

.cap-sum-verdict {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 3px;
}

.cap-sum-note {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.cap-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .cap-header,
  .cap-row {
    grid-template-columns: 130px 1fr 1fr 1fr;
  }
  .cap-summary {
    grid-template-columns: 1fr;
  }
  .cap-program {
    font-size: 10px;
  }
}
/* <!-- INFOGRAPHIC 9: EU Defense Procurement Content --> */
.edp-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.edp-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* Column headers */
.edp-col-headers {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
  align-items: center;
}

.edp-col-metric {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
}

.edp-col-head {
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
}

.edp-col-head-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.edp-col-head-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1px;
}

.edp-ch-current {
  background: #9d9d9c;
}
.edp-ch-target {
  background: #47577c;
}

/* Rows */
.edp-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.edp-row {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.edp-row.edp-visible {
  opacity: 1;
  transform: translateY(0);
}

.edp-row-header {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 7px;
}

.edp-source-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 7px;
}

.edp-source-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.edp-pct-cell {
  text-align: center;
}

.edp-pct-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.edp-pct-note {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}

.edp-pct-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Dual bar track */
.edp-bar-group {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.edp-bar-spacer {
  /* empty first column */
}

.edp-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.edp-bar-track {
  height: 22px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.edp-bar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.edp-bar-inner-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.9s;
}

.edp-bar-track-label {
  font-size: 10px;
  color: #94a3b8;
  text-align: right;
  padding-right: 4px;
}

/* Gap arrow between current → target */
.edp-gap-annotation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 0 0 170px;
  opacity: 0;
  transition: opacity 0.5s ease 1.3s;
}

.edp-gap-annotation.edp-visible {
  opacity: 1;
}

.edp-gap-arrow {
  font-size: 18px;
  color: #bf3425;
}

.edp-gap-label {
  font-size: 11px;
  font-weight: 700;
  color: #bf3425;
  background: rgba(191, 52, 37, 0.07);
  border: 1px solid rgba(191, 52, 37, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Divider */
.edp-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 4px 0 18px;
}

/* Key findings */
.edp-findings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}

.edp-finding-card {
  border-radius: 10px;
  padding: 14px 16px;
  cursor: default;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s ease;
}

.edp-finding-card.edp-visible {
  opacity: 1;
  transform: translateY(0);
}
.edp-finding-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px) !important;
}

.edp-fc-red {
  background: rgba(191, 52, 37, 0.06);
  border: 1px solid rgba(191, 52, 37, 0.18);
  border-left: 4px solid #bf3425;
}
.edp-fc-navy {
  background: rgba(71, 87, 124, 0.06);
  border: 1px solid rgba(71, 87, 124, 0.18);
  border-left: 4px solid #47577c;
}

.edp-fc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.edp-fc-red .edp-fc-label {
  color: #bf3425;
}
.edp-fc-navy .edp-fc-label {
  color: #47577c;
}

.edp-fc-stat {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.edp-fc-red .edp-fc-stat {
  color: #bf3425;
}
.edp-fc-navy .edp-fc-stat {
  color: #47577c;
}

.edp-fc-desc {
  font-size: 12px;
  color: #334155;
  font-weight: 600;
  margin-bottom: 2px;
}

.edp-fc-note {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.edp-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 580px) {
  .edp-col-headers,
  .edp-row-header,
  .edp-bar-group {
    grid-template-columns: 120px 1fr 1fr;
  }
  .edp-findings {
    grid-template-columns: 1fr;
  }
  .edp-gap-annotation {
    padding-left: 120px;
  }
}
/* <!-- INFOGRAPHIC 10: Addcomposites Product Ecosystem --> */
.ape-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.ape-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* ── AddPath hub ── */
.ape-hub-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.ape-hub-wrap.ape-in {
  opacity: 1;
  transform: translateY(0);
}

.ape-hub {
  background: #1e293b;
  border-radius: 12px;
  padding: 16px 26px;
  width: 320px;
  cursor: default;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
  position: relative;
  z-index: 2;
}

.ape-hub:hover {
  box-shadow: 0 8px 24px rgba(30, 41, 59, 0.22);
  transform: translateY(-2px);
}

.ape-hub-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.ape-hub-name span {
  color: #bf3425;
}

.ape-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.ape-hub-feature {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.ape-hub-bullet {
  color: #bf3425;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SVG connectors ── */
.ape-svg-connectors {
  display: block;
  width: 100%;
  overflow: visible;
  margin: 0;
  height: 52px;
}

/* ── Product cards row ── */
.ape-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.ape-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  cursor: default;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.2s ease;
}

.ape-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px) !important;
}

.ape-card.ape-in {
  opacity: 1;
  transform: translateY(0);
}

.ape-card-header {
  padding: 13px 14px 10px;
}

.ape-card-product {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.ape-card-role {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Highlight stat pill */
.ape-card-stat {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ape-card-body {
  padding: 12px 14px 14px;
  background: #fff;
}

.ape-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ape-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: #475569;
  line-height: 1.4;
  padding: 5px 8px;
  border-radius: 6px;
  background: #f8fafc;
  transition: background 0.15s ease;
}

.ape-feature-list li:hover {
  background: #f1f5f9;
}

.ape-fl-icon {
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.ape-feature-list strong {
  color: #1e293b;
  font-weight: 700;
}

/* Card colours */
.ape-c-afpxs {
  background: #9d9d9c;
}
.ape-c-afpx {
  background: #47577c;
}
.ape-c-addx {
  background: #bf3425;
}

/* ── Arrow down connectors card → outcome ── */
.ape-down-arrows {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 6px 0 0;
}

.ape-down-arrow {
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ape-down-arrow.ape-in {
  opacity: 1;
}

.ape-down-arrow svg {
  display: block;
}

/* ── Outcome chips ── */
.ape-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.ape-outcome {
  border-radius: 8px;
  padding: 9px 12px;
  text-align: center;
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.ape-outcome.ape-in {
  opacity: 1;
  transform: translateY(0);
}
.ape-outcome strong {
  display: block;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 2px;
}

/* ── Combined workflow banner ── */
.ape-workflow-banner {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.05) 0%,
    rgba(71, 87, 124, 0.06) 50%,
    rgba(191, 52, 37, 0.05) 100%
  );
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.ape-workflow-banner.ape-in {
  opacity: 1;
  transform: translateY(0);
}

.ape-wf-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 10px;
}

.ape-wf-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ape-wf-step {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: default;
  transition: filter 0.2s ease;
}

.ape-wf-step:hover {
  filter: brightness(1.1);
}

.ape-wf-step-addx {
  background: #bf3425;
}
.ape-wf-step-afpx {
  background: #47577c;
}
.ape-wf-step-path {
  background: #1e293b;
}

.ape-wf-arrow {
  font-size: 18px;
  color: #cbd5e1;
  font-weight: 700;
}

/* Result row */
.ape-result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ape-result-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: box-shadow 0.2s ease;
}

.ape-result-card:hover {
  box-shadow: 0 3px 10px rgba(71, 87, 124, 0.1);
}

.ape-result-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.ape-result-stat {
  font-size: 18px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
}

.ape-result-label {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
}

.ape-result-note {
  font-size: 10px;
  color: #64748b;
}

.ape-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 620px) {
  .ape-cards,
  .ape-down-arrows,
  .ape-outcomes {
    grid-template-columns: 1fr;
  }
  .ape-hub {
    width: 100%;
  }
  .ape-result-row {
    grid-template-columns: 1fr;
  }
  .ape-svg-connectors {
    display: none;
  }
}
/* ── INFOGRAPHIC 11: Forward Manufacturing Deployment Concept ── */
.fmd-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.fmd-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

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

/* ── Top flow row: Hub → arrows → Cell ── */
.fmd-flow-row {
  display: grid;
  grid-template-columns: 200px auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fmd-flow-row.fmd-in {
  opacity: 1;
  transform: translateY(0);
}

/* Design Hub box */
.fmd-hub {
  background: #1e293b;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: default;
  align-self: stretch;
  transition: box-shadow 0.2s;
}
.fmd-hub:hover {
  box-shadow: 0 8px 24px rgba(30, 41, 59, 0.22);
}

.fmd-hub-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.fmd-hub-location {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -6px;
  margin-bottom: 4px;
}
.fmd-hub-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}
.fmd-hub-feature-icon {
  font-size: 12px;
  flex-shrink: 0;
}

/* Middle arrows column */
.fmd-mid-arrows {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  padding: 0 16px;
  align-self: stretch;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.fmd-arrow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.fmd-arrow-label {
  font-size: 9px;
  font-weight: 700;
  color: #47577c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}
.fmd-arrow-line {
  position: relative;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #47577c, #bf3425);
  border-radius: 1px;
}
.fmd-arrow-line::after {
  content: "▶";
  position: absolute;
  right: -7px;
  top: -7px;
  font-size: 10px;
  color: #bf3425;
}

/* Production Cell */
.fmd-cell {
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.05) 0%,
    rgba(191, 52, 37, 0.04) 100%
  );
  border: 1px solid rgba(71, 87, 124, 0.2);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
}
.fmd-cell-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #47577c;
}
.fmd-hw-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fmd-hw-box {
  border-radius: 8px;
  padding: 9px 12px;
  text-align: center;
  flex: 1;
  cursor: default;
  transition: filter 0.2s;
}
.fmd-hw-box:hover {
  filter: brightness(1.07);
}
.fmd-hw-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.fmd-hw-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}
.fmd-hw-robot {
  background: #9d9d9c;
}
.fmd-hw-head {
  background: #47577c;
}
.fmd-hw-plus {
  font-size: 18px;
  color: #9d9d9c;
  font-weight: 700;
  flex-shrink: 0;
}
.fmd-output-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fmd-output-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.fmd-output-stat {
  font-size: 17px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
}
.fmd-output-label {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
}
.fmd-output-note {
  font-size: 9px;
  color: #64748b;
}

.fmd-loc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.fmd-loc-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(71, 87, 124, 0.08);
  color: #47577c;
}

/* ── Down arrow + Launch ── */
.fmd-launch-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0 18px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.fmd-launch-row.fmd-in {
  opacity: 1;
  transform: translateY(0);
}

.fmd-launch-box {
  background: #47577c;
  border-radius: 10px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: box-shadow 0.2s;
}
.fmd-launch-box:hover {
  box-shadow: 0 4px 16px rgba(71, 87, 124, 0.3);
}
.fmd-launch-icon {
  font-size: 22px;
}
.fmd-launch-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.fmd-launch-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

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

/* ── Network section ── */
.fmd-network-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 14px;
}
.fmd-cells-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 0;
}
.fmd-node {
  border-radius: 10px;
  border: 1px solid rgba(71, 87, 124, 0.2);
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s;
}
.fmd-node.fmd-in {
  opacity: 1;
  transform: translateY(0);
}
.fmd-node:hover {
  box-shadow: 0 4px 14px rgba(71, 87, 124, 0.15);
  transform: translateY(-2px) !important;
}

.fmd-node-header {
  background: #47577c;
  padding: 8px 10px;
  text-align: center;
}
.fmd-node-flag {
  font-size: 18px;
  margin-bottom: 2px;
}
.fmd-node-id {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.65);
}
.fmd-node-country {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-top: 1px;
}
.fmd-node-body {
  background: #fff;
  padding: 10px;
  text-align: center;
}
.fmd-node-rate {
  font-size: 18px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
}
.fmd-node-unit {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

/* Converging SVG */
.fmd-net-svg {
  width: 100%;
  height: 44px;
  display: block;
  margin: 0 0 10px;
}

/* Combined banner */
.fmd-combined {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.07) 0%,
    rgba(191, 52, 37, 0.05) 100%
  );
  border: 1px solid rgba(71, 87, 124, 0.18);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fmd-combined.fmd-in {
  opacity: 1;
  transform: translateY(0);
}
.fmd-combined-stat {
  text-align: center;
}
.fmd-combined-val {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}
.fmd-combined-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
}
.fmd-combined-note {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}
.fmd-combined-sep {
  width: 1px;
  height: 50px;
  background: #e2e8f0;
}
.fmd-vs-badge {
  display: inline-block;
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* Model cards */
.fmd-model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.fmd-model-card {
  border-radius: 8px;
  padding: 12px 14px;
  cursor: default;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s;
}
.fmd-model-card.fmd-in {
  opacity: 1;
  transform: translateY(0);
}
.fmd-model-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px) !important;
}

.fmd-mc-navy {
  background: rgba(71, 87, 124, 0.07);
  border: 1px solid rgba(71, 87, 124, 0.18);
  border-left: 4px solid #47577c;
}
.fmd-mc-red {
  background: rgba(191, 52, 37, 0.06);
  border: 1px solid rgba(191, 52, 37, 0.16);
  border-left: 4px solid #bf3425;
}
.fmd-mc-gray {
  background: rgba(157, 157, 156, 0.07);
  border: 1px solid rgba(157, 157, 156, 0.2);
  border-left: 4px solid #9d9d9c;
}

.fmd-mc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.fmd-mc-navy .fmd-mc-label {
  color: #47577c;
}
.fmd-mc-red .fmd-mc-label {
  color: #bf3425;
}
.fmd-mc-gray .fmd-mc-label {
  color: #9d9d9c;
}
.fmd-mc-value {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 3px;
}
.fmd-mc-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.fmd-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .fmd-flow-row {
    grid-template-columns: 1fr;
  }
  .fmd-mid-arrows {
    flex-direction: row;
    justify-content: center;
    padding: 12px 0;
  }
  .fmd-arrow-line {
    width: 50px;
  }
  .fmd-cells-row {
    grid-template-columns: 1fr 1fr;
  }
  .fmd-combined {
    grid-template-columns: 1fr;
  }
  .fmd-combined-sep {
    display: none;
  }
  .fmd-model-cards {
    grid-template-columns: 1fr;
  }
}
/* <!-- INFOGRAPHIC 12: European Drone Defence Funding Landscape --> */
.edf-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.edf-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* ── Funding table ── */
.edf-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.edf-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.edf-table-header {
  display: grid;
  grid-template-columns: 210px 130px 1fr;
  gap: 8px;
  padding: 0 0 8px 0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 4px;
}

.edf-th {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.edf-program-row {
  display: grid;
  grid-template-columns: 210px 130px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: default;
  position: relative;
}

.edf-program-row:last-child {
  border-bottom: none;
}
.edf-program-row.edf-in {
  opacity: 1;
  transform: translateX(0);
}
.edf-program-row:hover {
  background: #fafbfc;
  border-radius: 6px;
}

/* Tooltip */
.edf-tip {
  display: none;
  position: absolute;
  top: -36px;
  left: 214px;
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.edf-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.edf-program-row:hover .edf-tip {
  display: block;
}

.edf-prog-name {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.edf-prog-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
}

.edf-funding-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.edf-funding-val {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.edf-funding-mini-bar {
  height: 5px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

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

.edf-req {
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
}

.edf-req strong {
  color: #1e293b;
  font-weight: 700;
}

/* Funding tier colours */
.edf-tier-xl {
  color: #47577c;
}
.edf-tier-l {
  color: #47577c;
}
.edf-tier-m {
  color: #bf3425;
}
.edf-tier-s {
  color: #9d9d9c;
}

.edf-fill-xl {
  background: #47577c;
}
.edf-fill-l {
  background: rgba(71, 87, 124, 0.7);
}
.edf-fill-m {
  background: #bf3425;
}
.edf-fill-s {
  background: #9d9d9c;
}

.edf-badge-flagship {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}
.edf-badge-defense {
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
}
.edf-badge-rd {
  background: rgba(157, 157, 156, 0.15);
  color: #5a5a59;
}

/* Funding total strip */
.edf-total-strip {
  background: linear-gradient(
    135deg,
    rgba(71, 87, 124, 0.07) 0%,
    rgba(191, 52, 37, 0.05) 100%
  );
  border: 1px solid rgba(71, 87, 124, 0.18);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 26px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.edf-total-strip.edf-in {
  opacity: 1;
}

.edf-total-val {
  font-size: 24px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
}

.edf-total-label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.edf-total-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.edf-total-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.edf-total-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

/* ── Market growth chart ── */
.edf-chart-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.edf-market-row {
  display: grid;
  grid-template-columns: 44px 90px 1fr 70px;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: default;
}

.edf-market-row.edf-in {
  opacity: 1;
  transform: translateY(0);
}

.edf-market-row:hover .edf-mbar-fill {
  filter: brightness(1.1);
}

.edf-mrow-year {
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  text-align: right;
}

.edf-mrow-val {
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.edf-mbar-track {
  height: 30px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.edf-mbar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding-left: 10px;
  min-width: 0;
}

.edf-mbar-inner {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.9s;
}

.edf-mrow-cagr {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 3px 6px;
  border-radius: 4px;
}

/* Year-specific styling — gradient from gray→navy→red deepening */
.edf-bar-y24 {
  background: #9d9d9c;
}
.edf-bar-y26 {
  background: #7a8ba8;
}
.edf-bar-y28 {
  background: #5e70a0;
}
.edf-bar-y30 {
  background: #47577c;
}
.edf-bar-y34 {
  background: #bf3425;
}

.edf-cagr-y26 {
  background: rgba(122, 139, 168, 0.12);
  color: #7a8ba8;
}
.edf-cagr-y28 {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}
.edf-cagr-y30 {
  background: rgba(71, 87, 124, 0.12);
  color: #47577c;
}
.edf-cagr-y34 {
  background: rgba(191, 52, 37, 0.1);
  color: #bf3425;
}

/* Growth summary */
.edf-growth-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.edf-growth-banner.edf-in {
  opacity: 1;
  transform: translateY(0);
}

.edf-growth-card {
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  cursor: default;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.edf-growth-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.edf-gc-navy {
  background: rgba(71, 87, 124, 0.07);
  border: 1px solid rgba(71, 87, 124, 0.18);
}
.edf-gc-red {
  background: rgba(191, 52, 37, 0.06);
  border: 1px solid rgba(191, 52, 37, 0.16);
}
.edf-gc-gray {
  background: rgba(157, 157, 156, 0.07);
  border: 1px solid rgba(157, 157, 156, 0.18);
}

.edf-gc-val {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.edf-gc-navy .edf-gc-val {
  color: #47577c;
}
.edf-gc-red .edf-gc-val {
  color: #bf3425;
}
.edf-gc-gray .edf-gc-val {
  color: #9d9d9c;
}

.edf-gc-label {
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 2px;
}

.edf-gc-note {
  font-size: 10px;
  color: #64748b;
}

.edf-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .edf-table-header,
  .edf-program-row {
    grid-template-columns: 150px 100px 1fr;
  }
  .edf-market-row {
    grid-template-columns: 36px 76px 1fr 54px;
  }
  .edf-growth-banner {
    grid-template-columns: 1fr;
  }
  .edf-total-strip {
    flex-direction: column;
    text-align: center;
  }
  .edf-total-divider {
    display: none;
  }
}
/* <!-- INFOGRAPHIC 13: Ethical Positioning — The Interceptor Drone in the Spectrum --> */
.eps-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.eps-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* ── Spectrum axis ── */
.eps-axis-wrap {
  position: relative;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.eps-axis-wrap.eps-in {
  opacity: 1;
  transform: translateY(0);
}

.eps-axis-bar {
  position: relative;
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(
    to right,
    #bf3425 0%,
    #c0705a 25%,
    #9d9d9c 50%,
    #6a82a8 75%,
    #47577c 100%
  );
  margin: 0 10px;
}

.eps-axis-labels {
  display: flex;
  justify-content: space-between;
  margin: 6px 10px 0;
}

.eps-axis-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.eps-axis-label.eps-left {
  color: #bf3425;
}
.eps-axis-label.eps-right {
  color: #47577c;
}

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

/* ── Column headers ── */
.eps-col-header {
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eps-col-header-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.eps-col-header-text {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eps-ch-offensive {
  background: rgba(191, 52, 37, 0.08);
  border: 1px solid rgba(191, 52, 37, 0.2);
}
.eps-ch-offensive .eps-col-header-text {
  color: #bf3425;
}

.eps-ch-defensive {
  background: rgba(71, 87, 124, 0.08);
  border: 1px solid rgba(71, 87, 124, 0.2);
}
.eps-ch-defensive .eps-col-header-text {
  color: #47577c;
}

/* ── System cards ── */
.eps-system-card {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 12px 14px;
  margin-bottom: 8px;
  cursor: default;
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.2s ease;
  position: relative;
}

.eps-system-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.eps-off-card {
  border-left: 4px solid #bf3425;
  transform: translateX(-10px);
}

.eps-def-card {
  border-left: 4px solid #47577c;
  transform: translateX(10px);
}

.eps-featured-card {
  border-left: 4px solid #47577c;
  background: rgba(71, 87, 124, 0.04);
  transform: translateX(10px);
}

.eps-system-card.eps-in {
  opacity: 1;
  transform: translateX(0);
}

/* Position dot on axis */
.eps-dot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.eps-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.eps-dot-off {
  background: #bf3425;
  box-shadow: 0 0 0 3px rgba(191, 52, 37, 0.15);
}
.eps-dot-def {
  background: #47577c;
  box-shadow: 0 0 0 3px rgba(71, 87, 124, 0.15);
}
.eps-dot-feat {
  background: #47577c;
  box-shadow: 0 0 0 4px rgba(71, 87, 124, 0.25);
  width: 13px;
  height: 13px;
}

.eps-system-name {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.eps-system-examples {
  font-size: 10px;
  color: #94a3b8;
  font-style: italic;
}

.eps-system-traits {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.eps-system-traits li {
  font-size: 11px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.4;
}

.eps-trait-bullet {
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 2px;
}

.eps-trait-bullet-off {
  color: #bf3425;
}
.eps-trait-bullet-def {
  color: #47577c;
}

/* Featured interceptor card */
.eps-featured-card .eps-system-name {
  color: #47577c;
  font-size: 14px;
}

.eps-feat-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.eps-feat-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
}

.eps-feat-stat-val {
  font-size: 13px;
  font-weight: 800;
  color: #47577c;
  line-height: 1;
}

.eps-feat-stat-label {
  font-size: 9px;
  color: #64748b;
  margin-top: 2px;
}

/* ── Spectrum position indicator row ── */
.eps-position-row {
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.eps-position-row.eps-in {
  opacity: 1;
}

.eps-pos-track {
  position: relative;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  margin: 0 10px;
}

.eps-pos-items {
  position: relative;
  height: 50px;
  margin: 4px 10px 0;
}

.eps-pos-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  cursor: default;
  transition: filter 0.2s ease;
}

.eps-pos-item:hover {
  filter: brightness(0.85);
}

.eps-pos-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.eps-pos-label {
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

/* Tooltip */
.eps-system-card {
  position: relative;
}
.eps-tip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 30;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}
.eps-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.eps-system-card:hover .eps-tip {
  display: block;
}

/* ── ICRC quote banner ── */
.eps-icrc-banner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #47577c;
  border-radius: 10px;
  padding: 15px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.eps-icrc-banner.eps-in {
  opacity: 1;
  transform: translateY(0);
}

.eps-icrc-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.eps-icrc-body {
  flex: 1;
}

.eps-icrc-quote {
  font-size: 13px;
  color: #334155;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 6px;
}

.eps-icrc-quote strong {
  color: #47577c;
  font-style: normal;
}

.eps-icrc-conclusion {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.eps-icrc-conclusion strong {
  color: #bf3425;
  font-style: normal;
}

.eps-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .eps-columns {
    grid-template-columns: 1fr;
  }
  .eps-feat-stats {
    grid-template-columns: 1fr 1fr;
  }
}
/* <!-- INFOGRAPHIC 14: The Pivot — From Civil Aerospace to Distributed Drone Production --> */
.pvt-container {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.pvt-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

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

/* ── Pivot diagram ── */
.pvt-pivot-section {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.pvt-pivot-section.pvt-in {
  opacity: 1;
  transform: translateY(0);
}

/* Column headers */
.pvt-col-header {
  border-radius: 10px 10px 0 0;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pvt-ch-current {
  background: #9d9d9c;
  color: #fff;
}
.pvt-ch-target {
  background: #47577c;
  color: #fff;
}

/* Source / dest items */
.pvt-state-box {
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.pvt-state-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  cursor: default;
  transition: background 0.18s ease;
}

.pvt-state-item:last-child {
  border-bottom: none;
}
.pvt-state-item:hover {
  background: #fafbfc;
}

.pvt-state-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.pvt-state-dot-gray {
  background: #9d9d9c;
}
.pvt-state-dot-navy {
  background: #47577c;
}

.pvt-state-name {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.pvt-state-sub {
  font-size: 11px;
  color: #64748b;
}

/* Central pivot arrow column */
.pvt-pivot-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  gap: 6px;
  padding: 8px 0;
  position: relative;
}

.pvt-pivot-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bf3425;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.pvt-pivot-arrow {
  font-size: 22px;
  color: #bf3425;
  animation: pvt-pulse-arrow 1.8s ease-in-out infinite;
}

@keyframes pvt-pulse-arrow {
  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0.6;
    transform: translateX(3px);
  }
}

/* ── Barrier table ── */
.pvt-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pvt-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.pvt-barrier-header {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 8px;
  padding: 0 0 8px 0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 4px;
}

.pvt-bth {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.pvt-barrier-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  cursor: default;
  position: relative;
}

.pvt-barrier-row:last-child {
  border-bottom: none;
}
.pvt-barrier-row.pvt-in {
  opacity: 1;
  transform: translateY(0);
}
.pvt-barrier-row:hover {
  background: #fafbfc;
  border-radius: 6px;
}

.pvt-tip {
  display: none;
  position: absolute;
  top: -36px;
  left: 165px;
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.pvt-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
.pvt-barrier-row:hover .pvt-tip {
  display: block;
}

.pvt-barrier-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

/* Traditional cell */
.pvt-cell-trad {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pvt-trad-val {
  font-size: 13px;
  font-weight: 700;
  color: #9d9d9c;
}

.pvt-trad-bar {
  height: 5px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.pvt-trad-fill {
  height: 100%;
  background: #9d9d9c;
  border-radius: 3px;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Addcomposites cell */
.pvt-cell-add {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pvt-add-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #47577c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.pvt-add-check.pvt-in {
  opacity: 1;
  transform: scale(1);
}

.pvt-add-text {
  flex: 1;
}

.pvt-add-val {
  font-size: 13px;
  font-weight: 800;
  color: #47577c;
  line-height: 1.2;
}

.pvt-add-note {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

/* ── Closing statement ── */
.pvt-closing {
  margin-top: 22px;
  background: #1e293b;
  border-radius: 12px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.pvt-closing.pvt-in {
  opacity: 1;
  transform: translateY(0);
}

.pvt-closing-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  transition: background 0.2s ease;
}

.pvt-closing-item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.pvt-closing-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pvt-closing-text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.pvt-closing-text strong {
  color: #fff;
  font-weight: 700;
}

/* Final question row */
.pvt-question-row {
  grid-column: 1 / -1;
  text-align: center;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}

.pvt-question {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.pvt-question span {
  color: #bf3425;
}

.pvt-source {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .pvt-pivot-section {
    grid-template-columns: 1fr 50px 1fr;
  }
  .pvt-barrier-header,
  .pvt-barrier-row {
    grid-template-columns: 120px 1fr 1fr;
  }
  .pvt-closing {
    grid-template-columns: 1fr;
  }
}
