/* ── Page hero ──────────────────────────────────────────────── */
.uni-hero {
  padding: 80px 0 0;
}

.timeline-section {
  padding: 60px 0 100px;
}

/* ── Timeline wrapper ────────────────────────────────────────── */
.timeline-wrapper {
  overflow-x: auto;
  padding-bottom: 8px;
}

/* ── Track — flex row with gradient connecting line ─────────── */
.timeline-track {
  display: flex;
  gap: 14px;
  position: relative;
}

/* Horizontal line through dot centres (dots are 22px, so top: 11px) */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.3;
}

/* ── Node ───────────────────────────────────────────────────── */
.timeline-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ── Dot ────────────────────────────────────────────────────── */
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.7);
}

/* ── Card ───────────────────────────────────────────────────── */
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 14px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  flex: 1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 101, 242, 0.35);
}

.timeline-card.grant-partner {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08), rgba(0, 209, 178, 0.05));
  border-color: rgba(88, 101, 242, 0.3);
}

/* ── Card content ───────────────────────────────────────────── */
.uni-abbr {
  font-size: 2.3rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.uni-full {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.grant-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(0, 209, 178, 0.2));
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.launch-date {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 2px;
}

/* ── Countdown ──────────────────────────────────────────────── */
.countdown {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 5px 8px;
  min-width: 40px;
}

.count-val {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.countdown-launched {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  padding: 8px 0;
}

/* ── Footnote ───────────────────────────────────────────────── */
.uni-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 40px;
}
