@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

.kfw-section{
  --kfw-cyan:#1FB5E8;
  --kfw-cyan-600:#0E9ACB;
  --kfw-ink:#0F1419;
  --kfw-ink-300:#4B5159;
  --kfw-line:#E4E7EB;
  --kfw-line-fill:#1FB5E8;
  --kfw-paper:#FAFBFC;
  --kfw-white:#FFFFFF;
  --kfw-active:#10B981;
  --kfw-line-thickness:2px;
  --kfw-line-offset:20px;
  --kfw-node-size:20px;
  --kfw-node-border:2px;
  --kfw-content-offset:60px;
  --kfw-milestone-gap:48px;

  background:transparent;
  padding:110px 0;
  font-family:"Plus Jakarta Sans",ui-sans-serif,system-ui,-apple-system,sans-serif;
  color:var(--kfw-ink);
}
.kfw-section *,
.kfw-section *::before,
.kfw-section *::after{box-sizing:border-box;}
.kfw-section img{display:block;max-width:100%;}

.kfw-wrap{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* ── TIMELINE ──────────────────────────────── */
.kfw-timeline{
  position:relative;
  padding-left:var(--kfw-content-offset);
}
.kfw-line{
  position:absolute;
  left:var(--kfw-line-offset);
  top:0;bottom:0;
  width:var(--kfw-line-thickness);
  background:var(--kfw-line);
}
.kfw-line-fill{
  position:absolute;
  top:0;left:0;right:0;
  height:100%;
  background:var(--kfw-line-fill);
  transform-origin:top center;
  transform:scaleY(0);
  transition:transform 0.15s linear;
}
.kfw-milestone{
  position:relative;
  margin-bottom:var(--kfw-milestone-gap);
}
.kfw-milestone:last-child{margin-bottom:0;}
.kfw-node{
  position:absolute;
  left:calc(-1 * (var(--kfw-content-offset) - var(--kfw-line-offset) + var(--kfw-node-size)/2 - var(--kfw-line-thickness)/2));
  top:4px;
  width:var(--kfw-node-size);
  height:var(--kfw-node-size);
  border-radius:50%;
  border:var(--kfw-node-border) solid var(--kfw-cyan);
  background:var(--kfw-white);
  z-index:1;
}
.kfw-node--active{
  background:var(--kfw-active);
  border-color:var(--kfw-active);
}
.kfw-year{
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:12px;
  color:var(--kfw-cyan);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
  font-weight:500;
}
.kfw-milestone h3{
  font-family:"Raleway",ui-sans-serif,system-ui,sans-serif;
  font-size:20px;font-weight:700;letter-spacing:-0.015em;
  margin:0 0 6px;
  color:var(--kfw-ink);
}
.kfw-milestone p{
  font-size:14.5px;
  color:var(--kfw-ink-300);
  margin:0;
  line-height:1.6;
}

/* Reveal */
.kfw-reveal{
  opacity:0;transform:translateY(24px);
  transition:opacity .8s ease,transform .8s ease;
}
.kfw-reveal.kfw-visible{opacity:1;transform:translateY(0);}

@media (max-width:720px){
  .kfw-section{ --kfw-content-offset:44px; --kfw-line-offset:11px; }
}
@media (prefers-reduced-motion:reduce){
  .kfw-section *{transition:none !important;animation:none !important;}
  .kfw-reveal{opacity:1;transform:none;}
}
