/* 
 * How It Works - Premium Redesign Styles
 * Author: Antigravity
 * Focus: Flow-State Timeline, Perspective Tilt, State-Shift Comparison
 */

/* ==========================================================================
   1. FLOW-STATE TIMELINE (The 4-Step Journey)
   ========================================================================== */
.pm-timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Background Track */
.pm-timeline-track {
  position: absolute;
  top: 60px;
  /* Aligns with the center of the nodes */
  left: 5%;
  width: 90%;
  height: 4px;
  background: rgba(15, 23, 42, 0.1);
  /* Visible on light background */
  border-radius: 2px;
  z-index: 1;
}

/* Foreground Draw Line */
.pm-timeline-fill {
  position: absolute;
  top: 60px;
  /* Aligns with track */
  left: 5%;
  height: 4px;
  /* Thin line, not massive block */
  width: 0%;
  max-width: 90%;
  /* Cap it at track width */
  background: linear-gradient(90deg, #8ED21F, #DFF7A1);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(142, 210, 31, 0.5);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

/* Timeline Node */
.pm-timeline-node {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  opacity: 0.45;
  /* Much more readable when inactive */
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.pm-timeline-node.active {
  opacity: 1;
  transform: translateY(0);
}

.pm-timeline-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.pm-timeline-node.active .pm-timeline-icon-wrap {
  border-color: rgba(142, 210, 31, 0.8);
  box-shadow: 0 20px 50px rgba(142, 210, 31, 0.3), 0 0 40px rgba(142, 210, 31, 0.2);
  transform: translateY(-10px);
}

.pm-timeline-icon-wrap img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.pm-timeline-node.active .pm-timeline-icon-wrap img {
  transform: scale(1.1);
}

.pm-timeline-node h3 {
  font-size: 1.25rem;
  color: #0F172A;
  /* Dark navy for light background */
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.pm-timeline-node p {
  font-size: 0.9rem;
  color: #475569;
  /* Slate-600 */
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pm-timeline-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .pm-timeline-track {
    top: 5%;
    left: 45px;
    width: 4px;
    height: 90%;
  }

  .pm-timeline-fill {
    top: 5%;
    left: 45px;
    width: 4px;
    height: 0%;
    max-height: 90%;
    max-width: none;
    transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .pm-timeline-node {
    flex-direction: row;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 0;
  }

  .pm-timeline-icon-wrap {
    margin-bottom: 0;
    margin-right: 24px;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   2. CONTROL DASHBOARD PEEK (Split Pane)
   ========================================================================== */
.pm-split-pane {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Perspective Tilt Wrapper */
.pm-tilt-wrapper {
  perspective: 1200px;
  position: relative;
  width: 100%;
}

.pm-tilt-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  /* Smooth JS follow */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-tilt-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Blocks */
.pm-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pm-feature-block {
  background: #0F172A;
  /* Solid dark background for premium contrast */
  border: 1px solid rgba(142, 210, 31, 0.2);
  /* Subtle green border */
  padding: 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pm-feature-block:hover {
  background: #16243A;
  /* Slightly lighter solid dark blue for hover */
  border-color: rgba(142, 210, 31, 0.6);
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(142, 210, 31, 0.1);
}

.pm-fb-icon {
  width: 40px;
  height: 40px;
  background: rgba(142, 210, 31, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ED21F;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pm-fb-content h3 {
  color: #F8FAFC;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.pm-fb-content p {
  color: #FFFFFF !important;
  /* Much brighter slate for better legibility */
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .pm-split-pane {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   3. STATE-SHIFT COMPARISON (Chaos vs Order)
   ========================================================================== */
.pm-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  /* Flush together for stark contrast */
  max-width: 1300px;
  margin: 60px auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-state-panel {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

/* Chaos Side */
.pm-state-chaos {
  filter: grayscale(0.5) blur(0.5px);
  background-color: #0F172A;
}

.pm-comparison-grid:hover .pm-state-chaos {
  filter: grayscale(1) blur(2px);
  /* Intensify chaos on hover */
}

/* Order Side */
.pm-state-order {
  border-left: 1px solid rgba(142, 210, 31, 0.5);
  position: relative;
  z-index: 2;
  box-shadow: -5px 0 20px rgba(142, 210, 31, 0.05);
}

.pm-comparison-grid:hover .pm-state-order {
  box-shadow: -15px 0 50px rgba(142, 210, 31, 0.2);
}

/* Overlays for Text Readability */
.pm-state-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0) 100%);
  z-index: 1;
}

.pm-state-content {
  position: relative;
  z-index: 2;
}

.pm-state-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.pm-state-chaos .pm-state-label {
  background: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  backdrop-filter: blur(10px);
}

.pm-state-order .pm-state-label {
  background: rgba(142, 210, 31, 0.15);
  color: #8ED21F;
  border: 1px solid rgba(142, 210, 31, 0.3);
  backdrop-filter: blur(10px);
}

.pm-state-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-state-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.15rem;
  line-height: 1.5;
}

.pm-state-chaos .pm-state-list li {
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.8);
}

.pm-state-chaos .pm-state-list i {
  color: #FF3B30; /* Bright Red */
  font-size: 1.15rem;
  margin-top: 2px;
  text-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
}

.pm-state-order .pm-state-list li {
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.8);
}

.pm-state-order .pm-state-list i {
  color: #8ED21F; /* Lime Green */
  font-size: 1.15rem;
  margin-top: 2px;
  text-shadow: 0 0 8px rgba(142, 210, 31, 0.6);
}

@media (max-width: 992px) {
  .pm-comparison-grid {
    grid-template-columns: 1fr;
  }

  .pm-state-panel {
    min-height: 400px;
  }

  .pm-state-order {
    border-left: none;
    border-top: 2px solid #8ED21F;
  }
}

/* ==========================================================================
   4. CAREER PROGRESS (New Timeline Card)
   ========================================================================== */
.pm-cp-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.pm-cp-timeline {
  position: relative;
  margin-top: 80px;
  margin-bottom: 60px;
}

.pm-cp-arcs {
  position: absolute;
  top: 25px; /* aligns with center of circles */
  left: 10%; /* offset half node */
  width: 80%;
  height: 50px;
  display: flex;
  z-index: 1;
}

.pm-cp-arc {
  flex: 1;
  border-top: 2px dashed #8ED21F;
  border-radius: 50% 50% 0 0;
  margin: 0 -2px; /* slight overlap to prevent gaps */
}

.pm-cp-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.pm-cp-node {
  flex: 1;
  text-align: left;
  padding: 0 15px;
}

.pm-cp-num {
  width: 50px;
  height: 50px;
  background: #8ED21F;
  color: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(142, 210, 31, 0.3);
}

.pm-cp-node h3 {
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.pm-cp-node p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
}

/* Node 5 CTA Styling */
.pm-cp-cta-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.pm-cp-btn {
  background: #0F172A; /* Dark button */
  color: #FFFFFF;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.3);
  transition: all 0.3s ease;
  line-height: 1.2;
  margin-top: -10px;
}

.pm-cp-btn:hover {
  background: #8ED21F;
  color: #0F172A;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(142, 210, 31, 0.4);
}

.pm-cp-illustration {
  text-align: center;
  margin-top: 40px;
}

.pm-cp-illustration img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 992px) {
  .pm-cp-card {
    padding: 40px 20px;
  }
  .pm-cp-arcs {
    display: none; /* Hide curves on mobile */
  }
  
  .pm-cp-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: dashed 2px #8ED21F;
    z-index: 1;
  }
  
  .pm-cp-nodes {
    flex-direction: column;
    gap: 40px;
  }
  
  .pm-cp-node {
    display: flex;
    flex-direction: column;
    padding-left: 80px; /* space for the line/node */
    position: relative;
  }
  
  .pm-cp-num {
    position: absolute;
    left: 15px;
    top: 0;
    margin-bottom: 0;
  }
  
  .pm-cp-cta-node {
    align-items: flex-start;
    padding-left: 80px;
  }
}

/* ==========================================================================
   5. INTERACTIVE EXECUTIVE ROADMAP (Section 2 Overhaul)
   ========================================================================== */
.pm-roadmap-wrapper {
  position: relative;
  margin-top: 80px;
  padding: 40px 0;
}

.pm-roadmap-svg-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.pm-roadmap-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pm-roadmap-path-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 4px;
  stroke-dasharray: 10 10;
}

.pm-roadmap-path-fill {
  fill: none;
  stroke: #8ED21F;
  stroke-width: 4px;
  filter: drop-shadow(0 0 10px rgba(142, 210, 31, 0.8));
  /* dash properties set via JS */
  transition: stroke-dashoffset 0.1s linear;
}

.pm-roadmap-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 30px;
}

.pm-roadmap-card {
  flex: 1;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(142, 210, 31, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  /* Spring physics reveal: starts hidden & lower */
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pm-roadmap-card.active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(142, 210, 31, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(142, 210, 31, 0.1);
}

.pm-roadmap-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

/* Icon pulse on hover */
.pm-roadmap-card:hover .pm-roadmap-icon-wrap {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  animation: pm-pulse-glow 2s infinite;
}

.pm-roadmap-icon-wrap img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.pm-roadmap-card:hover .pm-roadmap-icon-wrap img {
  transform: scale(1.15);
}

.pm-roadmap-step {
  font-size: 0.85rem;
  color: #8ED21F;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.pm-roadmap-content h3 {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.3;
}

.pm-roadmap-content p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
}

@keyframes pm-pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(142, 210, 31, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(142, 210, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(142, 210, 31, 0); }
}

@media (max-width: 992px) {
  .pm-roadmap-svg-container {
    display: none; /* Hide SVG on mobile */
  }
  
  .pm-roadmap-nodes {
    flex-direction: column;
    position: relative;
    padding-left: 30px;
  }
  
  /* Vertical glowing line fallback */
  .pm-roadmap-nodes::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .pm-roadmap-nodes::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    height: var(--scroll-progress, 0%);
    width: 2px;
    background: #8ED21F;
    box-shadow: 0 0 10px #8ED21F;
    transition: height 0.1s linear;
  }

  .pm-roadmap-card {
    text-align: left;
    padding: 30px 20px;
  }
  
  .pm-roadmap-icon-wrap {
    margin: 0 0 20px 0;
    width: 70px;
    height: 70px;
  }
}

/* ==========================================================================
   6. ABOUT US & MISSION SECTION
   ========================================================================== */
.pm-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.pm-about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pm-about-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.4);
  padding: 40px;
  border: 1px solid rgba(142, 210, 31, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
}

.pm-about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pm-about-img-wrap:hover img {
  transform: translateY(-15px) scale(1.05);
}

/* Background soft glow */
.pm-about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(142, 210, 31, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.pm-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pm-about-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.pm-about-headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-top: 20px;
  border-left: 4px solid #8ED21F;
  padding-left: 24px;
}

.pm-about-headline em {
  color: #8ED21F;
  font-style: normal;
}

@media (max-width: 992px) {
  .pm-about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }
  
  .pm-about-visual {
    order: -1; /* Image on top */
  }
  
  .pm-about-img-wrap {
    padding: 20px;
  }
  
  .pm-about-headline {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   7. 3-PART FEATURE SPLIT SECTIONS (AI, Mentorship, Tech Ecosystem)
   ========================================================================== */
.pm-feature-split {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 60px 0;
}

/* Reverse layout for alternating sections */
.pm-feature-split.pm-fs-reverse {
  flex-direction: row-reverse;
}

.pm-fs-content {
  flex: 1;
}

.pm-fs-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pm-fs-visual img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}

.pm-feature-split:hover .pm-fs-visual img {
  transform: translateY(-10px);
}

.pm-success-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
  max-width: 450px;
}

.pm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(132, 214, 0, 0.1);
  border: 2px solid #84D600;
  color: #166534;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
}

.pm-badge i {
  font-size: 1.3rem;
  color: #84D600;
}

@media (max-width: 992px) {
  .pm-feature-split,
  .pm-feature-split.pm-fs-reverse {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 40px 0;
  }
  
  .pm-fs-content {
    max-width: 100%;
  }
  
  .pm-fs-visual img {
    max-height: 350px;
  }
}

/* ==========================================================================
   8. AI MATCH DIAGRAM (Custom CSS UI)
   ========================================================================== */
.pm-ai-diagram {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  margin: 0 auto;
}

/* Connecting Lines */
.pm-ai-lines {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.pm-ai-lines::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, #A6FF00, transparent);
  animation: pm-ai-flow 2s infinite linear;
  box-shadow: 0 0 10px #A6FF00;
}

@keyframes pm-ai-flow {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Nodes */
.pm-ai-node {
  position: relative;
  z-index: 2;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pm-ai-node i {
  font-size: 1.5rem;
  color: #94A3B8;
}

/* Center AI Engine */
.pm-ai-engine {
  border-color: rgba(166, 255, 0, 0.4);
  box-shadow: 0 0 30px rgba(166, 255, 0, 0.15), inset 0 0 15px rgba(166, 255, 0, 0.1);
  transform: scale(1.15);
  animation: pm-ai-pulse 2s infinite;
}

.pm-ai-engine i {
  color: #A6FF00;
}

@keyframes pm-ai-pulse {
  0% { box-shadow: 0 0 30px rgba(166, 255, 0, 0.15); }
  50% { box-shadow: 0 0 50px rgba(166, 255, 0, 0.3); }
  100% { box-shadow: 0 0 30px rgba(166, 255, 0, 0.15); }
}

/* Right side matches stack */
.pm-ai-matches {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}

.pm-ai-match-card {
  background: #16243A;
  border: 1px solid rgba(166, 255, 0, 0.2);
  border-left: 3px solid #A6FF00;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pm-ai-match-card i {
  color: #A6FF00;
}

/* New Benefits List Styling */
.pm-fs-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-fs-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E2E8F0;
  font-size: 1rem;
}

.pm-fs-benefits i {
  color: #A6FF00;
  font-size: 1.1rem;
}
}