/* ============================================================
   MILESTONE MAKERS PAGE — NEW STYLES ONLY
   Reuses tokens, .about-hero, .section-heading, .founder-card,
   .founders-grid, .outcomes-list and .eyebrow from main.css
   ============================================================ */

   :root {
    --seg-blue:    #3d8bff;
    --seg-blue-bg:    #dce9ff;
    --seg-green:   #16a34a;
    --seg-green-bg:   #d7f5e2;
    --seg-orange:  #e2762c;
    --seg-orange-bg:  #ffe3c7;
    --seg-yellow:  #b8901a;
    --seg-yellow-bg:  #fbeeb8;
    --seg-purple:  #7c3aed;
    --seg-purple-bg:  #e8defc;
  }
  
  
  /* ---------- Page hero (gradient variant of .about-hero, no video) ---------- */
  
  .about-hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
  }
  
  .about-hero-content .eyebrow {
    margin-bottom: 1.25rem;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
  }
  
  .eyebrow
  {font-size: 1.1rem;}
  
  .about-hero-content p {
    max-width: 1000px;
    margin: 1.25rem auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 2rem;
  }
  
  
  /* ---------- Intro / program summary ---------- */
  
  .milestone-summary {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.3rem;
  }
  
  
  /* ---------- Milestone scorecard + accountability journey ---------- */
  
  .milestone-scorecard-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 4rem;
  }
  
  .milestone-result-card {
    background: #ffffff;
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .milestone-result-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 0.75rem;
  }
  
  .milestone-result-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--seg-green);
    margin-bottom: 0.75rem;
  }
  
  .milestone-result-card p {
    font-size: 1.2rem;
    color: #374151;
  }
  
  .milestone-scorecard {
    background: #ffffff;
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light-card);
    padding: 2rem;
  }
  
  .milestone-scorecard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  
  .milestone-scorecard-title h3 {
    font-size: 1.4rem;
    color: var(--color-light-heading);
  }
  
  .scorecard-bar {
    display: flex;
    width: 100%;
    height: 68px;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  
  .scorecard-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
  }
  
  .seg-blue   { background: var(--seg-blue-bg);   color: var(--seg-blue); }
  .seg-green  { background: var(--seg-green-bg);  color: var(--seg-green); }
  .seg-orange { background: var(--seg-orange-bg); color: var(--seg-orange); }
  .seg-yellow { background: var(--seg-yellow-bg); color: var(--seg-yellow); }
  .seg-purple { background: var(--seg-purple-bg); color: var(--seg-purple); }
  
  .scorecard-legend {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 1.75rem;
  }
  
  .legend-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.4;
  }
  
  .legend-dot {
    width: 12px;
    min-width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.3rem;
  }
  
  .dot-blue   { background: var(--seg-blue); }
  .dot-green  { background: var(--seg-green); }
  .dot-orange { background: var(--seg-orange); }
  .dot-yellow { background: var(--seg-yellow); }
  .dot-purple { background: var(--seg-purple); }
  
  /* Accountability journey */
  
  .journey-wrap {
    margin-top: 3rem;
    background: #ffffff;
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light-card);
    padding: 2.5rem 2rem 2rem;
  }
  
  .journey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.75rem;
  }
  
  .journey-header h3 {
    font-size: 1.4rem;
    color: var(--color-light-heading);
  }
  
  .journey-header span {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .journey-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .journey-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--seg-blue), var(--seg-green));
    z-index: 0;
  }
  
  .journey-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
  }
  
  .journey-percent {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-light-text);
  }
  
  .journey-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--seg-blue);
  }
  
  .journey-dot-final {
    border-color: var(--seg-green);
    background: var(--seg-green);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
  }
  
  .journey-cycle {
    color: #6b7280;
    font-size: 0.88rem;
    font-weight: 600;
  }
  
  
  /* ---------- CEO & industry leaders validation list ---------- */
  
  .validation-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }
  
  .validation-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-light-surface);
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light-card);
  }
  
  .validation-list i {
    color: var(--seg-green);
    font-size: 1.4rem;
    margin-top: 0.2rem;
  }
  
  .validation-list strong {
    display: block;
    color: var(--color-light-text);
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
  }
  
  .validation-list p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
  }
  
  .validation-summary {
    margin-top: 3rem;
    text-align: center;
    max-width: 860px;
    margin-inline: auto;
    padding: 2rem;
    border-top: 1px solid var(--color-light-border);
  }
  
  .validation-summary h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-light-heading);
  }
  
  
  /* ---------- Leaders grid (avatar-initials variant of .founder-card) ---------- */
  
  
  
  /* ---------- Strategic partners & promoters ---------- */
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .partner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
    padding: 2rem 1.25rem;
    background: #ffffff;
    border: 1px solid var(--color-light-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light-card);
    transition: var(--transition);
    min-height: 170px;
  }
  
  .partner-badge:hover {
    transform: translateY(-6px);
  }
  
  .partner-badge-icon {
    width: 80%;
   
    display: flex;
    align-items: center;
    justify-content: center;
   
    color: var(--color-primary);
   
  }
  
  .partner-badge h4 {
    font-size: 1.4rem;
    color: var(--color-light-text);
    line-height: 1.3;
  }
  
  .partner-badge span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    font-weight: 600;
  }
  
  
  /* ---------- Responsive ---------- */
  
  @media (max-width: 992px) {
    .milestone-scorecard-wrap {
      grid-template-columns: 1fr;
    }
  
    .scorecard-legend {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .validation-list {
      grid-template-columns: 1fr;
    }
  
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .scorecard-bar {
      flex-direction: row;
      height: auto;
    }
  
    .scorecard-segment {
      padding: 0.85rem;
    }
  
    .journey-track {
      flex-wrap: wrap;
      row-gap: 2rem;
    }
  
    .journey-track::before {
      display: none;
    }
  
    .journey-step {
      flex: 0 0 33%;
    }
  
    .partners-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ---------- Accountability journey — value-positioned line chart ---------- */
  
  .journey-chart {
    width: 100%;
  }
  
  .journey-chart svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
  }
  
  .journey-baseline {
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 2;
  }
  
  .journey-line {
    fill: none;
    stroke: url(#journeyLineGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .journey-point {
    fill: #ffffff;
    stroke: var(--seg-blue);
    stroke-width: 3;
  }
  
  .journey-point-final {
    fill: var(--seg-green);
    stroke: var(--seg-green);
  }
  
  .journey-check {
    font-size: 13px;
    font-weight: 800;
    fill: #ffffff;
    text-anchor: middle;
  }
  
  .journey-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    fill: var(--color-light-text);
    text-anchor: middle;
  }
  
  .journey-value-final {
    fill: var(--seg-green);
  }
  
  .journey-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    fill: #6b7280;
    text-anchor: middle;
  }
  
  @media (max-width: 768px) {
    .journey-value {
      font-size: 3rem;
    }
  
    .journey-label {
      font-size: 2.5rem;
    }
  }