/* EXPERIENCE.CSS */
.timeline { position:relative; max-width:880px; z-index:2; }
.timeline::before { content:''; position:absolute; left:0; top:8px; bottom:0; width:1px; background:linear-gradient(to bottom,rgba(255,255,255,0.25),rgba(255,255,255,0.03)); }

.timeline-item { padding-left:2.75rem; padding-bottom:3.5rem; position:relative; transition:all var(--ts); }
.timeline-item:last-child { padding-bottom:0; }

.timeline-dot { position:absolute; left:-5px; top:10px; width:11px; height:11px; border-radius:50%; border:1px solid rgba(255,255,255,0.22); display:flex; align-items:center; justify-content:center; background:var(--bg); transition:border-color var(--tm); }
.dot-inner { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.35); transition:all var(--tm); }
.timeline-item:hover .timeline-dot { border-color:rgba(255,255,255,0.8); }
.timeline-item:hover .dot-inner { background:var(--wp); box-shadow:0 0 12px rgba(255,255,255,0.7); }

.timeline-card {
  background:var(--card);
  border:1px solid var(--border-md);
  border-radius:12px;
  padding:1.75rem 2rem;
  transition:border-color var(--tm),transform var(--tm),box-shadow var(--tm);
  position:relative;
  overflow:hidden;
}
.timeline-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent); opacity:0; transition:opacity var(--tm); }
.timeline-item:hover .timeline-card { border-color:var(--border-hi); transform:translateX(6px); box-shadow:0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06); }
.timeline-item:hover .timeline-card::before { opacity:1; }

/* ALL text visible on hover */
.timeline-item:hover .tl-points li,
.timeline-item:hover .tl-company,
.timeline-item:hover .tl-focus,
.timeline-item:hover .tl-date { color:var(--text-hi); }

.tl-meta { display:flex; align-items:center; gap:0.85rem; margin-bottom:0.7rem; }
.tl-date { font-family:var(--fm); font-size:0.68rem; color:var(--muted2); letter-spacing:0.1em; transition:color var(--tf); }
.tl-badge { display:inline-block; padding:0.18rem 0.65rem; background:rgba(255,255,255,0.06); border:1px solid var(--border-md); border-radius:100px; font-family:var(--fm); font-size:0.6rem; color:var(--muted2); letter-spacing:0.1em; text-transform:uppercase; }
.badge-outline { background:transparent; }

.tl-role { font-family:var(--fd); font-size:1.3rem; font-weight:800; color:var(--white); margin-bottom:0.25rem; }
.tl-company { font-size:0.86rem; color:var(--muted2); font-weight:500; margin-bottom:0.2rem; transition:color var(--tf); }
.tl-focus { font-family:var(--fm); font-size:0.68rem; color:var(--muted); letter-spacing:0.06em; margin-bottom:1.1rem; padding-bottom:0.9rem; border-bottom:1px solid var(--border); transition:color var(--tf); }

.tl-points { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.tl-points li { font-size:0.87rem; color:var(--muted2); padding-left:1.2rem; position:relative; line-height:1.7; transition:color var(--tf); }
.tl-points li::before { content:'▸'; position:absolute; left:0; color:rgba(255,255,255,0.3); font-size:0.6rem; top:0.32rem; }
.timeline-item:hover .tl-points li::before { color:rgba(255,255,255,0.55); }

/* Hackathon tag */
.tl-hackathon-tag { display:inline-flex; align-items:center; gap:0.4rem; margin-bottom:0.6rem; font-family:var(--fm); font-size:0.6rem; color:var(--muted2); background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:100px; padding:0.18rem 0.65rem; letter-spacing:0.1em; }
