  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

  body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
      color: #1f2937;
      background:
          radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.16), transparent 24%),
          radial-gradient(circle at 82% 12%, rgba(192, 132, 252, 0.14), transparent 22%),
          radial-gradient(circle at 78% 72%, rgba(52, 211, 153, 0.12), transparent 20%),
          linear-gradient(180deg, #f8fdff 0%, #f7fbff 42%, #f7fcfa 100%);
      background-attachment: fixed;
  }

  .site-header {
      background:
          linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(22, 35, 59, 0.92) 48%, rgba(20, 92, 122, 0.88) 100%);
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-mobile-menu {
      background: rgba(15, 23, 42, 0.96);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link {
      color: rgba(255, 255, 255, 0.9);
  }

  .nav-link:hover {
      color: #67e8f9;
      transition: all 0.3s ease;
  }

  #menu-toggle {
      color: #ffffff;
  }

  .brand-mark {
      padding: 0.4rem 0.85rem 0.4rem 0.5rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow:
          0 10px 24px rgba(15, 23, 42, 0.14),
          inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .brand-title {
      background: linear-gradient(90deg, #22D3EE, #C084FC);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 0.01em;
  }

  .page {
      display: none;
      animation: fadeIn 0.5s ease-in;
  }

  .active-page {
      display: block;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .social-icon {
      transition: all 0.3s ease;
  }

  .social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .qr-code {
      transition: all 0.3s ease;
  }

  .qr-code:hover {
      transform: scale(1.05);
  }

  /* 🟦 Square Rounded Button */
  .qr-btn {
      width: clamp(48px, 5vw, 72px);
      height: clamp(48px, 5vw, 72px);
      border-radius: 16px;
      border-radius: 16px;
  }

  /* 🍬 Jelly Base */
  .jelly-btn {
      background: linear-gradient(145deg, #22D3EE, #06B6D4);
      box-shadow:
          inset -4px -4px 8px rgba(255, 255, 255, 0.3),
          inset 4px 4px 8px rgba(0, 0, 0, 0.2),
          0 10px 25px rgba(0, 0, 0, 0.3);

      transition: all 0.25s ease;
      cursor: pointer;
  }

  /* ✨ Gloss shine */
  .jelly-btn::before {
      content: "";
      position: absolute;
      top: 6px;
      left: 10px;
      width: 70%;
      height: 40%;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      filter: blur(4px);
  }

  /* 💓 Pulse Ring */
  .qr-btn::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: rgba(34, 211, 238, 0.5);
      z-index: -1;
      animation: pulse-ring 2s infinite;
  }

  /* 🔁 Pulse animation */
  @keyframes pulse-ring {
      0% {
          transform: scale(1);
          opacity: 0.6;
      }

      70% {
          transform: scale(1.6);
          opacity: 0;
      }

      100% {
          opacity: 0;
      }
  }

  /* 🫧 Hover effect */
  .qr-btn:hover {
      transform: scale(1.1);
  }

  /* 👇 Click press */
  .qr-btn:active {
      transform: scale(0.95);
  }

  .qr-btn:hover::after {
      animation: none;
  }

  /* Pulse adjusts automatically now */
  .qr-btn::after {
      border-radius: inherit;
  }

  .role-btn {
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid #ddd;
      transition: 0.3s;
  }

  .role-btn.active {
      background: #22D3EE;
      color: white;
      border-color: transparent;
  }

  .role-card {
      width: min(100%, 820px);
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(240, 249, 255, 0.95));
      border: 1px solid rgba(34, 211, 238, 0.14);
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
      text-align: left;
  }

  .role-card-inner {
      padding: 32px;
  }

  .role-eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      margin-bottom: 16px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0891b2;
      background: rgba(34, 211, 238, 0.12);
      border-radius: 999px;
  }

  .role-title {
      max-width: 16ch;
      margin-bottom: 14px;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 700;
      line-height: 1.1;
      color: #0f172a;
  }

  .role-summary {
      max-width: 60ch;
      margin-bottom: 22px;
      font-size: 1.05rem;
      line-height: 1.8;
      color: #475569;
  }

  .role-divider {
      width: 100%;
      height: 1px;
      margin-bottom: 22px;
      background: linear-gradient(90deg, rgba(34, 211, 238, 0.5), rgba(192, 132, 252, 0.18), transparent);
  }

  .role-highlights {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 24px;
      padding: 0;
      list-style: none;
  }

  .role-highlight-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 16px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 18px;
      color: #334155;
      line-height: 1.6;
  }

  .role-highlight-icon {
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      background: linear-gradient(135deg, #22D3EE, #6366F1);
      border-radius: 999px;
      box-shadow: 0 10px 20px rgba(99, 102, 241, 0.18);
      font-size: 0.8rem;
  }

  .role-outcome {
      max-width: 52ch;
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.7;
      color: #0f172a;
  }

  .about-story {
      position: relative;
  }

  .about-story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.82fr);
      gap: 24px;
      align-items: stretch;
  }

  .about-founder-card,
  .about-quote-card,
  .about-ops-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  }

  .about-founder-card {
      position: relative;
      display: grid;
      grid-template-columns: minmax(190px, 240px) 1fr;
      grid-column: 1;
      grid-row: 1 / span 2;
      gap: 22px;
      padding: 26px;
      height: 100%;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(148, 163, 184, 0.14);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  }

  .about-founder-aurora {
      display: none;
  }

  .about-founder-media {
      position: relative;
      display: grid;
      gap: 14px;
      align-content: start;
  }

  .about-founder-frame {
      position: relative;
      max-width: 220px;
      padding: 8px;
      border-radius: 20px;
      background: rgba(248, 250, 252, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.16);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  }

  .about-founder-image {
      width: 100%;
      aspect-ratio: 5 / 6;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .about-founder-badge {
      display: none;
  }

  .about-founder-note {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(248, 250, 252, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.14);
      box-shadow: none;
  }

  .about-founder-note-label {
      display: inline-block;
      margin-bottom: 8px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #0f766e;
  }

  .about-founder-note p {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.75;
      color: #155e75;
  }

  .about-founder-copy,
  .about-quote-card,
  .about-ops-card {
      padding: 28px;
  }

  .about-quote-card,
  .about-ops-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
  }

  .about-story-eyebrow {
      margin-bottom: 12px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #0f766e;
  }

  .about-story-title {
      max-width: 24ch;
      margin-bottom: 16px;
      font-size: clamp(1.3rem, 2vw, 1.8rem);
      font-weight: 700;
      line-height: 1.32;
      letter-spacing: -0.01em;
      color: #0f766e;
  }

  .about-story-text {
      max-width: 62ch;
      margin-bottom: 14px;
      font-size: 1rem;
      line-height: 1.9;
      color: #475569;
  }

  .about-story-text:last-child {
      margin-bottom: 0;
  }

  .about-founder-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
  }

  .about-founder-pill {
      display: inline-flex;
      align-items: center;
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #0f766e;
      background: linear-gradient(135deg, rgba(236, 254, 255, 0.92), rgba(245, 243, 255, 0.92));
      border: 1px solid rgba(192, 132, 252, 0.2);
      box-shadow: none;
  }

  .about-founder-journey {
      display: grid;
      gap: 14px;
      margin-top: 24px;
  }

  .about-founder-journey-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(248, 250, 252, 0.88);
      border: 1px solid rgba(148, 163, 184, 0.14);
      box-shadow: none;
      transition: border-color 0.2s ease, background 0.2s ease;
  }

  .about-founder-journey-item:hover {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(148, 163, 184, 0.22);
  }

  .about-founder-journey-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 800;
      color: #0f766e;
      background: linear-gradient(135deg, rgba(204, 251, 241, 0.95), rgba(224, 242, 254, 0.95));
      box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.24);
  }

  .about-founder-journey-item h3 {
      margin: 0 0 6px;
      font-size: 1rem;
      font-weight: 700;
      color: #0891b2;
  }

  .about-founder-journey-item p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.75;
      color: #475569;
  }

  .about-quote-card {
      grid-column: 2;
      grid-row: 1;
      background: rgba(248, 250, 252, 0.94);
      border: 1px solid rgba(148, 163, 184, 0.14);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  }

  .about-founder-quote {
      max-width: 22ch;
      margin: 0 0 16px;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 650;
      line-height: 1.2;
      color: #0891b2;
  }

  .about-quote-support {
      max-width: 58ch;
      margin: 0;
      font-size: 1rem;
      line-height: 1.85;
      color: #475569;
  }

  .about-inline-link {
      display: inline-flex;
      align-items: center;
      margin-top: 18px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #0891b2;
      text-decoration: none;
      border-bottom: 1px solid rgba(34, 211, 238, 0.4);
  }

  .about-inline-link:hover {
      color: #7c3aed;
      border-bottom-color: rgba(192, 132, 252, 0.45);
  }

  .survey-callout {
      padding: 24px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(236, 254, 255, 0.96), rgba(245, 243, 255, 0.96));
      border: 1px solid rgba(34, 211, 238, 0.18);
      box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  }

  .survey-chip {
      display: inline-flex;
      align-items: center;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0f172a;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(34, 211, 238, 0.18);
  }

  .survey-panel {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .survey-link {
      box-shadow: 0 16px 28px rgba(34, 211, 238, 0.18);
  }

  .survey-link:hover {
      box-shadow: 0 18px 32px rgba(34, 211, 238, 0.22);
  }

  .about-ops-card {
      grid-column: 2;
      grid-row: 2;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  }

  .about-ops-card h3 {
      color: #0891b2;
  }

  @keyframes founderFloat {
      0%,
      100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-8px);
      }
  }

  @keyframes founderAurora {
      0%,
      100% {
          transform: translate3d(0, 0, 0) scale(1);
          opacity: 0.85;
      }
      50% {
          transform: translate3d(-18px, -12px, 0) scale(1.06);
          opacity: 1;
      }
  }

  .flow-card {
      padding: 20px;
      background: white;
      border-radius: 12px;
      opacity: 0.4;
      transition: 0.4s;
  }

  .flow-card.active {
      opacity: 1;
      transform: scale(1.05);
      border: 2px solid #22D3EE;
  }

  .progress-item {
      padding: 16px;
      border-radius: 10px;
      background: white;
      display: flex;
      justify-content: space-between;
  }

  .progress-item[data-status="done"] {
      border-left: 5px solid green;
  }

  .progress-item[data-status="progress"] {
      border-left: 5px solid orange;
  }

  .progress-item[data-status="upcoming"] {
      border-left: 5px solid gray;
  }

  /* 🌊 Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ✨ Fade-in base */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* 🎯 When visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🎭 Stagger effect */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .stagger > *,
  .about-founder-aurora,
  .about-founder-frame,
  .about-founder-note,
  .about-founder-journey-item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

h1 {
  background: linear-gradient(90deg, #22D3EE, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Flow style start */
#ecosystem {
  scroll-margin-top: 110px;
}

.eco-wrapper {
  width: 100%;
  max-width: 860px;
  height: 540px;
  position: relative;
  margin: 0 auto;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.72));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.eco-wrapper::before {
  content: none;
}

/* ---------- LINES ---------- */
.eco-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}

.line {
  stroke: url(#lineGradient);
  stroke-width: 3.5;
  fill: none;
  opacity: 0.28;
  pointer-events: visibleStroke;
  transition: opacity 0.2s ease, stroke-width 0.2s ease;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.12));
}

/* highlight active */
.eco-wrapper.student-active .line-student-educator,
.eco-wrapper.student-active .line-student-employer,
.eco-wrapper.educator-active .line-student-educator,
.eco-wrapper.educator-active .line-educator-employer,
.eco-wrapper.employer-active .line-student-employer,
.eco-wrapper.employer-active .line-educator-employer {
  opacity: 0.9;
  stroke-width: 4;
}

/* dim others */
.eco-wrapper.student-active .line:not(.line-student-educator):not(.line-student-employer),
.eco-wrapper.educator-active .line:not(.line-student-educator):not(.line-educator-employer),
.eco-wrapper.employer-active .line:not(.line-student-employer):not(.line-educator-employer) {
  opacity: 0.05;
}

.eco-wrapper[data-active-connection="student-educator"] .line-student-educator,
.eco-wrapper[data-active-connection="student-employer"] .line-student-employer,
.eco-wrapper[data-active-connection="educator-employer"] .line-educator-employer {
  opacity: 1;
  stroke-width: 4.5;
}

/* ---------- NODES ---------- */
.eco-node {
  position: absolute;   /* 🔥 FIX */
  transform: translate(-50%, -50%);  /* 🔥 FIX */
  z-index: 1;
  transition: all 0.25s ease;
  width: clamp(180px, 20vw, 260px);
  padding: 22px 22px 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.eco-node i {
  font-size: 26px;
  color: #22D3EE;
  margin-bottom: 8px;
}

.eco-node span {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.eco-node:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/* positions aligned with SVG */
.top-node {
  top: 102px;
  left: 50%;
}

.left-node {
  top: 342px;
  left: 180px;
}

.right-node {
  top: 342px;
  left: 680px;
}

/* ---------- TOOLTIP ---------- */
.node-info {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  background: #111827;
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  opacity: 0;
  transition: 0.3s;
}

.eco-node:hover .node-info {
  opacity: 1;
}

/* ---------- DETAILS ---------- */
.node-details {
  display: none;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 10px;
  color: #475569;
}

.eco-node.expanded .node-details {
  display: block;
}

.eco-node.expanded .node-info {
  display: none;
}

/* ---------- LABELS ---------- */
.line-label {
  position: absolute;   /* 🔥 FIX */
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 12px;
  opacity: 0;

  color: #0f172a;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* better positions */
.student-educator {
  top: 214px;
  left: 306px;
}

.student-employer {
  top: 214px;
  left: 554px;
}

.educator-employer {
  top: 446px;
  left: 50%;
  transform: translateX(-50%);
}

.eco-wrapper[data-active-connection="student-educator"] .line-label[data-connection="student-educator"],
.eco-wrapper[data-active-connection="student-employer"] .line-label[data-connection="student-employer"],
.eco-wrapper[data-active-connection="educator-employer"] .line-label[data-connection="educator-employer"] {
  opacity: 1;
}

.eco-node.expanded {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.16);
}
/* push others slightly back */
.eco-wrapper .eco-node:not(.expanded) {
  opacity: 0.82;
}
@media (max-width: 768px) {

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-card {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
    padding: 24px;
  }

  .about-founder-frame {
    max-width: none;
  }

  .about-quote-card,
  .about-ops-card {
    grid-column: auto;
    grid-row: auto;
  }

  .about-story-title,
  .about-founder-quote {
    max-width: none;
  }

  .about-founder-badge {
    left: 24px;
    top: 24px;
  }

  .role-card-inner {
    padding: 24px;
  }

  .role-title {
    max-width: none;
  }

  .role-highlights {
    grid-template-columns: 1fr;
  }

  .survey-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .survey-link {
    margin-left: 0 !important;
  }

  .eco-wrapper {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    overflow: visible;
  }

  .eco-wrapper::before {
    content: "";
    position: absolute;
    top: 88px;
    bottom: 88px;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.9), rgba(192, 132, 252, 0.85));
    opacity: 0.5;
  }

  .eco-lines {
    display: none;
  }

  .eco-node {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    width: min(100%, 320px);
    max-width: 320px;
  }

  .eco-node:hover,
  .eco-node.expanded {
    transform: scale(1.02);
  }

  .eco-wrapper .eco-node:not(.expanded) {
    opacity: 1;
  }

  .top-node,
  .left-node,
  .right-node {
    top: auto;
    left: auto;
  }

  .line-label {
    display: none;
  }
}
/* flow style end */

.timeline {
  padding: 16px;
  border-left: 4px solid gray;
  background: white;
  border-radius: 8px;
}

.timeline.done {
  border-color: #22c55e;
}

.timeline.progress {
  border-color: #f59e0b;
}

.timeline.upcoming {
  border-color: #9ca3af;
}
