
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 60px; }
.stat-box { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 44px; color: var(--pink); letter-spacing: -0.03em; line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-top: 6px; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--pink), var(--pink-dark)); border-radius: 2px; }
.year-block { position: relative; margin-bottom: 40px; scroll-margin-top: 100px; }
.year-block::before { content: ''; position: absolute; left: -32px; top: 10px; width: 16px; height: 16px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--pink); }
.year-block h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.year-block h3 em { color: var(--pink); font-style: normal; }
.year-tag { font-size: 14px; color: var(--muted); margin-bottom: 16px; font-style: italic; }
.achievements-list { display: flex; flex-direction: column; gap: 10px; }
.ach { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px; transition: all 0.2s; }
.ach:hover { border-color: var(--pink); transform: translateX(4px); }
.ach-medal { width: 40px; height: 40px; border-radius: 50%; background: rgba(230,0,126,0.1); color: var(--pink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ach-title { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.ach-title.gold { color: var(--pink); }
.ach-meta { font-size: 13px; color: var(--muted); }
.highlight { background: linear-gradient(135deg, #0d0d0d, #1a1a1a); color: #fff; padding: 32px; border-radius: 14px; margin-bottom: 16px; }
.highlight h3 { color: #fff; }
.highlight h3 em { color: var(--pink-light); }
.highlight .year-tag { color: rgba(255,255,255,0.7); font-size: 15px; }
.highlight .ach { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #fff; }
.highlight .ach-meta { color: rgba(255,255,255,0.7); }
.highlight .ach-medal { background: rgba(255,255,255,0.12); color: var(--pink-light); }
.highlight .ach-title.gold { color: var(--pink-light); }
@media (max-width: 640px) {
  .year-block h3 { font-size: 28px; }
  .highlight { padding: 22px; }
  .timeline { padding-left: 24px; }
  .year-block::before { left: -22px; width: 12px; height: 12px; }
  .stat-num { font-size: 34px; }
  .ach { padding: 14px 14px; gap: 10px; }
  .ach-medal { width: 34px; height: 34px; }
  .ach-medal svg { width: 20px; height: 20px; }
}
@media (max-width: 380px) {
  .year-block h3 { font-size: 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
